diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index c9168e863..a88a0e28a 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -141,7 +141,13 @@ jobs: # macOS: set minimum deployment target so delocate doesn't reject the wheel CIBW_ENVIRONMENT_MACOS: 'MACOSX_DEPLOYMENT_TARGET=10.13' # Linux: install Rust toolchain and OpenSSL inside manylinux containers - CIBW_BEFORE_ALL_LINUX: "yum install -y openssl-devel perl-IPC-Cmd && curl https://sh.rustup.rs -sSf | sh -s -- -y" + CIBW_BEFORE_ALL_LINUX: >- + if command -v yum &>/dev/null; then + yum install -y openssl-devel perl-IPC-Cmd; + elif command -v apk &>/dev/null; then + apk add --no-cache openssl-dev perl musl-dev; + fi && + curl https://sh.rustup.rs -sSf | sh -s -- -y CIBW_ENVIRONMENT_LINUX: 'PATH=$HOME/.cargo/bin:$PATH' - name: Upload artifacts diff --git a/README.md b/README.md index ec876f5f4..ee6d2302c 100644 --- a/README.md +++ b/README.md @@ -79,7 +79,10 @@ fmt.Printf("Valid: %t, Signer: %s\n", result.Valid, result.SignerID) ### Rust / CLI ```bash -cargo install jacs +cargo install jacs --features cli + +# Upgrade to latest (overwrite existing install) +cargo install jacs --features cli --force # Create an agent jacs init diff --git a/binding-core/src/lib.rs b/binding-core/src/lib.rs index 1846fd365..5e53e82a0 100644 --- a/binding-core/src/lib.rs +++ b/binding-core/src/lib.rs @@ -754,6 +754,231 @@ impl AgentWrapper { Ok(()) } + /// Returns diagnostic information including loaded agent details as a JSON string. + pub fn diagnostics(&self) -> String { + let mut info = jacs::simple::diagnostics(); + + if let Ok(agent) = self.inner.lock() { + if agent.ready() { + info["agent_loaded"] = json!(true); + if let Some(value) = agent.get_value() { + info["agent_id"] = + json!(value.get("jacsId").and_then(|v| v.as_str())); + info["agent_version"] = + json!(value.get("jacsVersion").and_then(|v| v.as_str())); + } + } + if let Some(config) = &agent.config { + if let Some(dir) = config.jacs_data_directory().as_ref() { + info["data_directory"] = json!(dir); + } + if let Some(dir) = config.jacs_key_directory().as_ref() { + info["key_directory"] = json!(dir); + } + if let Some(storage) = config.jacs_default_storage().as_ref() { + info["default_storage"] = json!(storage); + } + if let Some(algo) = config.jacs_agent_key_algorithm().as_ref() { + info["key_algorithm"] = json!(algo); + } + } + } + + serde_json::to_string_pretty(&info).unwrap_or_default() + } + + /// Returns setup instructions for publishing DNS records, enabling DNSSEC, + /// and registering with HAI.ai. + /// + /// Requires a loaded agent (call `load()` first). + pub fn get_setup_instructions( + &self, + domain: &str, + ttl: u32, + ) -> BindingResult { + use jacs::agent::boilerplate::BoilerPlate; + use jacs::dns::bootstrap::{ + DigestEncoding, build_dns_record, dnssec_guidance, emit_azure_cli, + emit_cloudflare_curl, emit_gcloud_dns, emit_plain_bind, + emit_route53_change_batch, tld_requirement_text, + }; + + let agent = self.lock()?; + let agent_value = agent.get_value().cloned().unwrap_or(json!({})); + let agent_id = agent_value + .get("jacsId") + .and_then(|v| v.as_str()) + .unwrap_or(""); + if agent_id.is_empty() { + return Err(BindingCoreError::agent_load( + "Agent not loaded or has no jacsId. Call load() first.", + )); + } + + let pk = agent.get_public_key().map_err(|e| { + BindingCoreError::generic(format!("Failed to get public key: {}", e)) + })?; + let digest = jacs::dns::bootstrap::pubkey_digest_b64(&pk); + let rr = build_dns_record(domain, ttl, agent_id, &digest, DigestEncoding::Base64); + + let dns_record_bind = emit_plain_bind(&rr); + let dns_owner = rr.owner.clone(); + let dns_record_value = rr.txt.clone(); + + let mut provider_commands = std::collections::HashMap::new(); + provider_commands.insert("bind".to_string(), dns_record_bind.clone()); + provider_commands.insert("route53".to_string(), emit_route53_change_batch(&rr)); + provider_commands.insert("gcloud".to_string(), emit_gcloud_dns(&rr, "YOUR_ZONE_NAME")); + provider_commands.insert("azure".to_string(), emit_azure_cli(&rr, "YOUR_RG", domain, "_v1.agent.jacs")); + provider_commands.insert("cloudflare".to_string(), emit_cloudflare_curl(&rr, "YOUR_ZONE_ID")); + + let mut dnssec_instructions = std::collections::HashMap::new(); + for name in &["aws", "cloudflare", "azure", "gcloud"] { + dnssec_instructions.insert(name.to_string(), dnssec_guidance(name).to_string()); + } + + let tld_requirement = tld_requirement_text().to_string(); + + let well_known = json!({ + "jacs_agent_id": agent_id, + "jacs_public_key_hash": digest, + "jacs_dns_record": dns_owner, + }); + let well_known_json = serde_json::to_string_pretty(&well_known).unwrap_or_default(); + + let hai_url = std::env::var("HAI_API_URL") + .unwrap_or_else(|_| "https://api.hai.ai".to_string()); + let hai_registration_url = format!("{}/v1/agents", hai_url.trim_end_matches('/')); + let hai_payload = json!({ + "agent_id": agent_id, + "public_key_hash": digest, + "domain": domain, + }); + let hai_registration_payload = serde_json::to_string_pretty(&hai_payload).unwrap_or_default(); + let hai_registration_instructions = format!( + "POST the payload to {} with your HAI API key in the Authorization header.", + hai_registration_url + ); + + let summary = format!( + "Setup instructions for agent {agent_id} on domain {domain}:\n\ + \n\ + 1. DNS: Publish the following TXT record:\n\ + {bind}\n\ + \n\ + 2. DNSSEC: {dnssec}\n\ + \n\ + 3. Domain requirement: {tld}\n\ + \n\ + 4. .well-known: Serve the well-known JSON at /.well-known/jacs-agent.json\n\ + \n\ + 5. HAI registration: {hai_instr}", + agent_id = agent_id, + domain = domain, + bind = dns_record_bind, + dnssec = dnssec_guidance("aws"), + tld = tld_requirement, + hai_instr = hai_registration_instructions, + ); + + let result = json!({ + "dns_record_bind": dns_record_bind, + "dns_record_value": dns_record_value, + "dns_owner": dns_owner, + "provider_commands": provider_commands, + "dnssec_instructions": dnssec_instructions, + "tld_requirement": tld_requirement, + "well_known_json": well_known_json, + "hai_registration_url": hai_registration_url, + "hai_registration_payload": hai_registration_payload, + "hai_registration_instructions": hai_registration_instructions, + "summary": summary, + }); + + serde_json::to_string_pretty(&result).map_err(|e| { + BindingCoreError::serialization_failed(format!( + "Failed to serialize setup instructions: {}", e + )) + }) + } + + /// Register this agent with HAI.ai. + /// + /// If `preview` is true, returns a preview without actually registering. + #[cfg(not(target_arch = "wasm32"))] + pub fn register_with_hai( + &self, + api_key: Option<&str>, + hai_url: &str, + preview: bool, + ) -> BindingResult { + if preview { + let result = json!({ + "hai_registered": false, + "hai_error": "preview mode", + "dns_record": "", + "dns_route53": "", + }); + return serde_json::to_string_pretty(&result).map_err(|e| { + BindingCoreError::serialization_failed(format!("Failed to serialize: {}", e)) + }); + } + + let key = match api_key { + Some(k) => k.to_string(), + None => std::env::var("HAI_API_KEY").map_err(|_| { + BindingCoreError::invalid_argument( + "No API key provided and HAI_API_KEY environment variable not set", + ) + })?, + }; + + let agent_json = self.get_agent_json()?; + let url = format!("{}/api/v1/agents/register", hai_url.trim_end_matches('/')); + + let client = reqwest::blocking::Client::builder() + .timeout(std::time::Duration::from_secs(30)) + .build() + .map_err(|e| BindingCoreError::network_failed(format!("Failed to build HTTP client: {}", e)))?; + + let response = client + .post(&url) + .header("Authorization", format!("Bearer {}", key)) + .header("Content-Type", "application/json") + .json(&json!({ "agent_json": agent_json })) + .send() + .map_err(|e| BindingCoreError::network_failed(format!("HAI registration request failed: {}", e)))?; + + if !response.status().is_success() { + let status = response.status(); + let body = response.text().unwrap_or_default(); + let result = json!({ + "hai_registered": false, + "hai_error": format!("HTTP {}: {}", status, body), + "dns_record": "", + "dns_route53": "", + }); + return serde_json::to_string_pretty(&result).map_err(|e| { + BindingCoreError::serialization_failed(format!("Failed to serialize: {}", e)) + }); + } + + let body: Value = response.json().map_err(|e| { + BindingCoreError::network_failed(format!("Failed to parse HAI response: {}", e)) + })?; + + let result = json!({ + "hai_registered": true, + "hai_error": "", + "dns_record": body.get("dns_record").and_then(|v| v.as_str()).unwrap_or_default(), + "dns_route53": body.get("dns_route53").and_then(|v| v.as_str()).unwrap_or_default(), + }); + + serde_json::to_string_pretty(&result).map_err(|e| { + BindingCoreError::serialization_failed(format!("Failed to serialize: {}", e)) + }) + } + /// Get the agent's JSON representation as a string. /// /// Returns the agent's full JSON document, suitable for registration @@ -769,6 +994,16 @@ impl AgentWrapper { } } +// ============================================================================= +// Standalone diagnostics (no agent required) +// ============================================================================= + +/// Returns basic JACS diagnostic info as a pretty-printed JSON string. +/// Does not require a loaded agent. +pub fn diagnostics_standalone() -> String { + serde_json::to_string_pretty(&jacs::simple::diagnostics()).unwrap_or_default() +} + // ============================================================================= // Standalone verification (no agent required) // ============================================================================= diff --git a/jacs-mcp/src/hai_tools.rs b/jacs-mcp/src/hai_tools.rs index 151bcea6a..a458f181e 100644 --- a/jacs-mcp/src/hai_tools.rs +++ b/jacs-mcp/src/hai_tools.rs @@ -638,6 +638,213 @@ pub struct AdoptStateResult { pub error: Option, } +// ============================================================================= +// Message Request/Response Types +// ============================================================================= + +/// Parameters for sending a signed message to another agent. +#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)] +pub struct MessageSendParams { + /// The recipient agent's ID (UUID format). + #[schemars(description = "The JACS agent ID of the recipient (UUID format)")] + pub recipient_agent_id: String, + + /// The message content to send. + #[schemars(description = "The message content to send")] + pub content: String, + + /// The MIME type of the content (default: "text/plain"). + #[schemars(description = "MIME type of the content (default: 'text/plain')")] + pub content_type: Option, +} + +/// Result of sending a signed message. +#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)] +pub struct MessageSendResult { + /// Whether the operation succeeded. + pub success: bool, + + /// The JACS document ID of the signed message. + #[serde(skip_serializing_if = "Option::is_none")] + pub jacs_document_id: Option, + + /// The full signed message JSON. + #[serde(skip_serializing_if = "Option::is_none")] + pub signed_message: Option, + + /// Error message if the operation failed. + #[serde(skip_serializing_if = "Option::is_none")] + pub error: Option, +} + +/// Parameters for updating an existing signed message. +#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)] +pub struct MessageUpdateParams { + /// The JACS document ID of the message to update. + #[schemars(description = "JACS document ID of the message to update")] + pub jacs_id: String, + + /// The new message content. + #[schemars(description = "Updated message content")] + pub content: String, + + /// The MIME type of the content (default: "text/plain"). + #[schemars(description = "MIME type of the content (default: 'text/plain')")] + pub content_type: Option, +} + +/// Result of updating a signed message. +#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)] +pub struct MessageUpdateResult { + /// Whether the operation succeeded. + pub success: bool, + + /// The JACS document ID of the updated message. + #[serde(skip_serializing_if = "Option::is_none")] + pub jacs_document_id: Option, + + /// The full updated signed message JSON. + #[serde(skip_serializing_if = "Option::is_none")] + pub signed_message: Option, + + /// Error message if the operation failed. + #[serde(skip_serializing_if = "Option::is_none")] + pub error: Option, +} + +/// Parameters for agreeing to (co-signing) a received message. +#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)] +pub struct MessageAgreeParams { + /// The full signed message JSON document to agree to. + #[schemars(description = "The full signed JSON document to agree to")] + pub signed_message: String, +} + +/// Result of agreeing to a message. +#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)] +pub struct MessageAgreeResult { + /// Whether the operation succeeded. + pub success: bool, + + /// The document ID of the original message. + #[serde(skip_serializing_if = "Option::is_none")] + pub original_document_id: Option, + + /// The document ID of the agreement document. + #[serde(skip_serializing_if = "Option::is_none")] + pub agreement_document_id: Option, + + /// The full signed agreement JSON. + #[serde(skip_serializing_if = "Option::is_none")] + pub signed_agreement: Option, + + /// Error message if the operation failed. + #[serde(skip_serializing_if = "Option::is_none")] + pub error: Option, +} + +/// Parameters for receiving and verifying a signed message. +#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)] +pub struct MessageReceiveParams { + /// The full signed message JSON document received from another agent. + #[schemars(description = "The full signed JSON document received from another agent")] + pub signed_message: String, +} + +/// Result of receiving and verifying a signed message. +#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)] +pub struct MessageReceiveResult { + /// Whether the operation succeeded. + pub success: bool, + + /// The sender's agent ID. + #[serde(skip_serializing_if = "Option::is_none")] + pub sender_agent_id: Option, + + /// The extracted message content. + #[serde(skip_serializing_if = "Option::is_none")] + pub content: Option, + + /// The content MIME type. + #[serde(skip_serializing_if = "Option::is_none")] + pub content_type: Option, + + /// The message timestamp (ISO 8601). + #[serde(skip_serializing_if = "Option::is_none")] + pub timestamp: Option, + + /// Whether the cryptographic signature is valid. + pub signature_valid: bool, + + /// Error message if the operation failed. + #[serde(skip_serializing_if = "Option::is_none")] + pub error: Option, +} + +/// Format a SystemTime as an ISO 8601 UTC timestamp string. +fn format_iso8601(t: std::time::SystemTime) -> String { + let d = t + .duration_since(std::time::UNIX_EPOCH) + .unwrap_or_default(); + let secs = d.as_secs(); + // Simple conversion: seconds -> year/month/day/hour/min/sec + // Using a basic algorithm that handles dates from 1970 onwards + let days = secs / 86400; + let time_of_day = secs % 86400; + let hours = time_of_day / 3600; + let minutes = (time_of_day % 3600) / 60; + let seconds = time_of_day % 60; + + // Calculate year/month/day from days since epoch + let mut y = 1970i64; + let mut remaining = days as i64; + loop { + let days_in_year = if is_leap(y) { 366 } else { 365 }; + if remaining < days_in_year { + break; + } + remaining -= days_in_year; + y += 1; + } + let leap = is_leap(y); + let month_days: [i64; 12] = [ + 31, + if leap { 29 } else { 28 }, + 31, + 30, + 31, + 30, + 31, + 31, + 30, + 31, + 30, + 31, + ]; + let mut m = 0usize; + for (i, &md) in month_days.iter().enumerate() { + if remaining < md { + m = i; + break; + } + remaining -= md; + } + + format!( + "{:04}-{:02}-{:02}T{:02}:{:02}:{:02}Z", + y, + m + 1, + remaining + 1, + hours, + minutes, + seconds + ) +} + +fn is_leap(y: i64) -> bool { + (y % 4 == 0 && y % 100 != 0) || y % 400 == 0 +} + // ============================================================================= // MCP Server // ============================================================================= @@ -790,6 +997,29 @@ impl HaiMcpServer { Optional: config_path, recent_n (number of recent documents to re-verify).", Self::jacs_audit_schema(), ), + Tool::new( + "jacs_message_send", + "Create and cryptographically sign a message for sending to another agent. \ + Returns the signed JACS document that can be transmitted to the recipient.", + Self::jacs_message_send_schema(), + ), + Tool::new( + "jacs_message_update", + "Update and re-sign an existing message document with new content.", + Self::jacs_message_update_schema(), + ), + Tool::new( + "jacs_message_agree", + "Verify and co-sign (agree to) a received signed message. Creates an agreement \ + document that references the original message.", + Self::jacs_message_agree_schema(), + ), + Tool::new( + "jacs_message_receive", + "Verify a received signed message and extract its content, sender ID, and timestamp. \ + Use this to validate authenticity before processing a message from another agent.", + Self::jacs_message_receive_schema(), + ), ] } @@ -904,6 +1134,38 @@ impl HaiMcpServer { _ => serde_json::Map::new(), } } + + fn jacs_message_send_schema() -> serde_json::Map { + let schema = schemars::schema_for!(MessageSendParams); + match serde_json::to_value(schema) { + Ok(serde_json::Value::Object(map)) => map, + _ => serde_json::Map::new(), + } + } + + fn jacs_message_update_schema() -> serde_json::Map { + let schema = schemars::schema_for!(MessageUpdateParams); + match serde_json::to_value(schema) { + Ok(serde_json::Value::Object(map)) => map, + _ => serde_json::Map::new(), + } + } + + fn jacs_message_agree_schema() -> serde_json::Map { + let schema = schemars::schema_for!(MessageAgreeParams); + match serde_json::to_value(schema) { + Ok(serde_json::Value::Object(map)) => map, + _ => serde_json::Map::new(), + } + } + + fn jacs_message_receive_schema() -> serde_json::Map { + let schema = schemars::schema_for!(MessageReceiveParams); + match serde_json::to_value(schema) { + Ok(serde_json::Value::Object(map)) => map, + _ => serde_json::Map::new(), + } + } } // Implement the tool router for the server @@ -2154,6 +2416,379 @@ impl HaiMcpServer { .to_string(), } } + + /// Create and sign a message document for sending to another agent. + /// + /// Builds a JSON message envelope with sender/recipient IDs, content, timestamp, + /// and a unique message ID, then signs it using the local agent's keys. + #[tool( + name = "jacs_message_send", + description = "Create and sign a message for sending to another agent." + )] + pub async fn jacs_message_send( + &self, + Parameters(params): Parameters, + ) -> String { + // Validate recipient agent ID + if let Err(e) = validate_agent_id(¶ms.recipient_agent_id) { + let result = MessageSendResult { + success: false, + jacs_document_id: None, + signed_message: None, + error: Some(e), + }; + return serde_json::to_string_pretty(&result) + .unwrap_or_else(|e| format!("Error: {}", e)); + } + + // Get the sender's agent ID from the loaded agent + let sender_id = match self.agent.get_agent_json() { + Ok(json_str) => serde_json::from_str::(&json_str) + .ok() + .and_then(|v| v.get("id").and_then(|id| id.as_str()).map(String::from)) + .unwrap_or_else(|| "unknown".to_string()), + Err(_) => "unknown".to_string(), + }; + + let content_type = params + .content_type + .unwrap_or_else(|| "text/plain".to_string()); + let message_id = Uuid::new_v4().to_string(); + let timestamp = format_iso8601(std::time::SystemTime::now()); + + // Build the message document + let message_doc = serde_json::json!({ + "jacsMessageId": message_id, + "jacsMessageSenderId": sender_id, + "jacsMessageRecipientId": params.recipient_agent_id, + "jacsMessageContent": params.content, + "jacsMessageContentType": content_type, + "jacsMessageTimestamp": timestamp, + }); + + let doc_string = message_doc.to_string(); + + // Sign the document + let result = match self.agent.create_document( + &doc_string, + None, // custom_schema + None, // outputfilename + true, // no_save + None, // attachments + None, // embed + ) { + Ok(signed_doc_string) => { + let doc_id = serde_json::from_str::(&signed_doc_string) + .ok() + .and_then(|v| v.get("id").and_then(|id| id.as_str()).map(String::from)) + .unwrap_or_else(|| "unknown".to_string()); + + MessageSendResult { + success: true, + jacs_document_id: Some(doc_id), + signed_message: Some(signed_doc_string), + error: None, + } + } + Err(e) => MessageSendResult { + success: false, + jacs_document_id: None, + signed_message: None, + error: Some(e.to_string()), + }, + }; + + serde_json::to_string_pretty(&result).unwrap_or_else(|e| format!("Error: {}", e)) + } + + /// Update and re-sign an existing message document with new content. + /// + /// Loads the message by its JACS document ID, replaces the content fields, + /// and creates a new signed version. + #[tool( + name = "jacs_message_update", + description = "Update and re-sign an existing message document with new content." + )] + pub async fn jacs_message_update( + &self, + Parameters(params): Parameters, + ) -> String { + // Load the existing document by ID + let existing_doc_string: Option = match self.agent.verify_document_by_id(¶ms.jacs_id) { + Ok(true) => { + // Document verified, now retrieve it. We need the stored document. + // Use get_agent_json to get agent context, then load via ID. + // The verify_document_by_id already loaded it; we need to get it from storage. + // Fall through to attempt update_document with the new content. + None + } + Ok(false) => { + let result = MessageUpdateResult { + success: false, + jacs_document_id: None, + signed_message: None, + error: Some(format!( + "Existing document '{}' failed signature verification", + params.jacs_id + )), + }; + return serde_json::to_string_pretty(&result) + .unwrap_or_else(|e| format!("Error: {}", e)); + } + Err(e) => { + let result = MessageUpdateResult { + success: false, + jacs_document_id: None, + signed_message: None, + error: Some(format!( + "Failed to load document '{}': {}", + params.jacs_id, e + )), + }; + return serde_json::to_string_pretty(&result) + .unwrap_or_else(|e| format!("Error: {}", e)); + } + }; + + let content_type = params + .content_type + .unwrap_or_else(|| "text/plain".to_string()); + let timestamp = format_iso8601(std::time::SystemTime::now()); + + // Build the updated message content + let updated_doc = serde_json::json!({ + "jacsMessageContent": params.content, + "jacsMessageContentType": content_type, + "jacsMessageTimestamp": timestamp, + }); + + let _ = existing_doc_string; // consumed above + + let doc_string = updated_doc.to_string(); + let result = match self + .agent + .update_document(¶ms.jacs_id, &doc_string, None, None) + { + Ok(updated_doc_string) => { + let doc_id = serde_json::from_str::(&updated_doc_string) + .ok() + .and_then(|v| v.get("id").and_then(|id| id.as_str()).map(String::from)) + .unwrap_or_else(|| params.jacs_id.clone()); + + MessageUpdateResult { + success: true, + jacs_document_id: Some(doc_id), + signed_message: Some(updated_doc_string), + error: None, + } + } + Err(e) => MessageUpdateResult { + success: false, + jacs_document_id: None, + signed_message: None, + error: Some(e.to_string()), + }, + }; + + serde_json::to_string_pretty(&result).unwrap_or_else(|e| format!("Error: {}", e)) + } + + /// Co-sign (agree to) a received signed message. + /// + /// Verifies the original message's signature, then creates an agreement document + /// that references the original and is signed by the local agent. + #[tool( + name = "jacs_message_agree", + description = "Verify and co-sign a received message, creating a signed agreement document." + )] + pub async fn jacs_message_agree( + &self, + Parameters(params): Parameters, + ) -> String { + // Verify the original document's signature first + match self.agent.verify_document(¶ms.signed_message) { + Ok(true) => {} // Signature valid, proceed + Ok(false) => { + let result = MessageAgreeResult { + success: false, + original_document_id: None, + agreement_document_id: None, + signed_agreement: None, + error: Some( + "Original message signature verification failed".to_string(), + ), + }; + return serde_json::to_string_pretty(&result) + .unwrap_or_else(|e| format!("Error: {}", e)); + } + Err(e) => { + let result = MessageAgreeResult { + success: false, + original_document_id: None, + agreement_document_id: None, + signed_agreement: None, + error: Some(format!("Failed to verify original message: {}", e)), + }; + return serde_json::to_string_pretty(&result) + .unwrap_or_else(|e| format!("Error: {}", e)); + } + } + + // Extract the original document ID + let original_doc_id = serde_json::from_str::(¶ms.signed_message) + .ok() + .and_then(|v| v.get("id").and_then(|id| id.as_str()).map(String::from)) + .unwrap_or_else(|| "unknown".to_string()); + + // Get our agent ID + let our_agent_id = match self.agent.get_agent_json() { + Ok(json_str) => serde_json::from_str::(&json_str) + .ok() + .and_then(|v| v.get("id").and_then(|id| id.as_str()).map(String::from)) + .unwrap_or_else(|| "unknown".to_string()), + Err(_) => "unknown".to_string(), + }; + + let timestamp = format_iso8601(std::time::SystemTime::now()); + + // Create an agreement document that references the original + let agreement_doc = serde_json::json!({ + "jacsAgreementType": "message_acknowledgment", + "jacsAgreementOriginalDocumentId": original_doc_id, + "jacsAgreementAgentId": our_agent_id, + "jacsAgreementTimestamp": timestamp, + }); + + let doc_string = agreement_doc.to_string(); + + // Sign the agreement document + let result = match self.agent.create_document( + &doc_string, + None, // custom_schema + None, // outputfilename + true, // no_save + None, // attachments + None, // embed + ) { + Ok(signed_agreement_string) => { + let agreement_id = + serde_json::from_str::(&signed_agreement_string) + .ok() + .and_then(|v| v.get("id").and_then(|id| id.as_str()).map(String::from)) + .unwrap_or_else(|| "unknown".to_string()); + + MessageAgreeResult { + success: true, + original_document_id: Some(original_doc_id), + agreement_document_id: Some(agreement_id), + signed_agreement: Some(signed_agreement_string), + error: None, + } + } + Err(e) => MessageAgreeResult { + success: false, + original_document_id: Some(original_doc_id), + agreement_document_id: None, + signed_agreement: None, + error: Some(e.to_string()), + }, + }; + + serde_json::to_string_pretty(&result).unwrap_or_else(|e| format!("Error: {}", e)) + } + + /// Verify and extract content from a received signed message. + /// + /// Checks the cryptographic signature, then extracts the message content, + /// sender ID, content type, and timestamp. + #[tool( + name = "jacs_message_receive", + description = "Verify a received signed message and extract its content and sender information." + )] + pub async fn jacs_message_receive( + &self, + Parameters(params): Parameters, + ) -> String { + // Verify the document's signature + let signature_valid = match self.agent.verify_document(¶ms.signed_message) { + Ok(valid) => valid, + Err(e) => { + let result = MessageReceiveResult { + success: false, + sender_agent_id: None, + content: None, + content_type: None, + timestamp: None, + signature_valid: false, + error: Some(format!("Failed to verify message signature: {}", e)), + }; + return serde_json::to_string_pretty(&result) + .unwrap_or_else(|e| format!("Error: {}", e)); + } + }; + + // Parse the document to extract fields + let doc: serde_json::Value = match serde_json::from_str(¶ms.signed_message) { + Ok(v) => v, + Err(e) => { + let result = MessageReceiveResult { + success: false, + sender_agent_id: None, + content: None, + content_type: None, + timestamp: None, + signature_valid, + error: Some(format!("Failed to parse message JSON: {}", e)), + }; + return serde_json::to_string_pretty(&result) + .unwrap_or_else(|e| format!("Error: {}", e)); + } + }; + + // Extract message fields + let sender_agent_id = doc + .get("jacsMessageSenderId") + .and_then(|v| v.as_str()) + .map(String::from) + .or_else(|| { + // Fall back to signature's agentID + doc.get("jacsSignature") + .and_then(|s| s.get("agentID")) + .and_then(|v| v.as_str()) + .map(String::from) + }); + + let content = doc + .get("jacsMessageContent") + .and_then(|v| v.as_str()) + .map(String::from); + + let content_type = doc + .get("jacsMessageContentType") + .and_then(|v| v.as_str()) + .map(String::from); + + let timestamp = doc + .get("jacsMessageTimestamp") + .and_then(|v| v.as_str()) + .map(String::from); + + let result = MessageReceiveResult { + success: true, + sender_agent_id, + content, + content_type, + timestamp, + signature_valid, + error: if !signature_valid { + Some("Message signature is INVALID — content may have been tampered with".to_string()) + } else { + None + }, + }; + + serde_json::to_string_pretty(&result).unwrap_or_else(|e| format!("Error: {}", e)) + } } // Implement the tool handler for the server @@ -2177,14 +2812,19 @@ impl ServerHandler for HaiMcpServer { }, instructions: Some( "This MCP server provides data provenance and cryptographic signing for \ - agent state files, plus optional HAI.ai integration for key distribution \ - and attestation. \ + agent state files and agent-to-agent messaging, plus optional HAI.ai \ + integration for key distribution and attestation. \ \ Agent state tools: jacs_sign_state (sign files), jacs_verify_state \ (verify integrity), jacs_load_state (load with verification), \ jacs_update_state (update and re-sign), jacs_list_state (list signed docs), \ jacs_adopt_state (adopt external files). \ \ + Messaging tools: jacs_message_send (create and sign a message), \ + jacs_message_update (update and re-sign a message), \ + jacs_message_agree (co-sign/agree to a message), \ + jacs_message_receive (verify and extract a received message). \ + \ Agent management: jacs_create_agent (create new agent with keys), \ jacs_reencrypt_key (rotate private key password). \ \ @@ -2287,7 +2927,7 @@ mod tests { #[test] fn test_tools_list() { let tools = HaiMcpServer::tools(); - assert_eq!(tools.len(), 14); + assert_eq!(tools.len(), 18); let names: Vec<&str> = tools.iter().map(|t| &*t.name).collect(); assert!(names.contains(&"fetch_agent_key")); @@ -2304,6 +2944,10 @@ mod tests { assert!(names.contains(&"jacs_create_agent")); assert!(names.contains(&"jacs_reencrypt_key")); assert!(names.contains(&"jacs_audit")); + assert!(names.contains(&"jacs_message_send")); + assert!(names.contains(&"jacs_message_update")); + assert!(names.contains(&"jacs_message_agree")); + assert!(names.contains(&"jacs_message_receive")); } #[test] @@ -2425,4 +3069,43 @@ mod tests { } assert!(!is_unregistration_allowed()); } + + #[test] + fn test_message_send_params_schema() { + let schema = schemars::schema_for!(MessageSendParams); + let json = serde_json::to_string_pretty(&schema).unwrap(); + assert!(json.contains("recipient_agent_id")); + assert!(json.contains("content")); + assert!(json.contains("content_type")); + } + + #[test] + fn test_message_update_params_schema() { + let schema = schemars::schema_for!(MessageUpdateParams); + let json = serde_json::to_string_pretty(&schema).unwrap(); + assert!(json.contains("jacs_id")); + assert!(json.contains("content")); + assert!(json.contains("content_type")); + } + + #[test] + fn test_message_agree_params_schema() { + let schema = schemars::schema_for!(MessageAgreeParams); + let json = serde_json::to_string_pretty(&schema).unwrap(); + assert!(json.contains("signed_message")); + } + + #[test] + fn test_message_receive_params_schema() { + let schema = schemars::schema_for!(MessageReceiveParams); + let json = serde_json::to_string_pretty(&schema).unwrap(); + assert!(json.contains("signed_message")); + } + + #[test] + fn test_format_iso8601() { + // Unix epoch should produce 1970-01-01T00:00:00Z + let epoch = std::time::UNIX_EPOCH; + assert_eq!(format_iso8601(epoch), "1970-01-01T00:00:00Z"); + } } diff --git a/jacs-mcp/src/handlers.rs b/jacs-mcp/src/handlers.rs deleted file mode 100644 index 2253d93ff..000000000 --- a/jacs-mcp/src/handlers.rs +++ /dev/null @@ -1,66 +0,0 @@ -//! Legacy JACS message handlers. -//! -//! These handlers are placeholders for future JACS messaging functionality. -//! They are not currently wired into the MCP server but are retained for -//! future development. - -#![allow(dead_code)] - -use anyhow::{Result, bail}; -use jacs::agent::Agent; -use jacs::agent::boilerplate::BoilerPlate; -use serde_json::{Value, json}; - -fn extract_agent_id(req: &Value) -> Option { - req.get("agentId") - .and_then(|v| v.as_str()) - .map(|s| s.to_string()) -} - -fn require_signed(req: &Value) -> Result<()> { - let has_sig = req.get("signature").and_then(|v| v.as_str()).is_some(); - if !has_sig { - bail!("unsigned request: 'signature' missing"); - } - // Placeholder: full signature verification against JACS schema will be wired - // using Agent::signature_verification_procedure when request carries JACS-signed payload - Ok(()) -} - -fn ensure_self(agent: &Agent, req_agent_id: &str) -> Result<()> { - let self_id = agent - .get_id() - .map_err(|_| anyhow::anyhow!("server agent not initialized"))?; - if self_id != req_agent_id { - bail!("unauthorized: agent mismatch (expected self)"); - } - Ok(()) -} - -pub fn message_send(agent: &Agent, req: Value) -> Result { - require_signed(&req)?; - let req_agent = extract_agent_id(&req).ok_or_else(|| anyhow::anyhow!("agentId missing"))?; - ensure_self(agent, &req_agent)?; - Ok(json!({"status":"ok","op":"message.send","agentId": req_agent})) -} - -pub fn message_update(agent: &Agent, req: Value) -> Result { - require_signed(&req)?; - let req_agent = extract_agent_id(&req).ok_or_else(|| anyhow::anyhow!("agentId missing"))?; - ensure_self(agent, &req_agent)?; - Ok(json!({"status":"ok","op":"message.update","agentId": req_agent})) -} - -pub fn message_agree(agent: &Agent, req: Value) -> Result { - require_signed(&req)?; - let req_agent = extract_agent_id(&req).ok_or_else(|| anyhow::anyhow!("agentId missing"))?; - ensure_self(agent, &req_agent)?; - Ok(json!({"status":"ok","op":"message.agree","agentId": req_agent})) -} - -pub fn message_receive(_agent: &Agent, req: Value) -> Result { - require_signed(&req)?; - // Public endpoint: do not enforce self, but still require signature - let from_agent = extract_agent_id(&req).unwrap_or_else(|| "unknown".to_string()); - Ok(json!({"status":"ok","op":"message.receive","from": from_agent})) -} diff --git a/jacs-mcp/src/main.rs b/jacs-mcp/src/main.rs index e306158a2..bc0ae64e0 100644 --- a/jacs-mcp/src/main.rs +++ b/jacs-mcp/src/main.rs @@ -1,5 +1,4 @@ mod hai_tools; -mod handlers; #[cfg(feature = "mcp")] use hai_tools::HaiMcpServer; diff --git a/jacs/docs/jacsbook/book/getting-started/quick-start.html b/jacs/docs/jacsbook/book/getting-started/quick-start.html index fa06bc806..de32608a6 100644 --- a/jacs/docs/jacsbook/book/getting-started/quick-start.html +++ b/jacs/docs/jacsbook/book/getting-started/quick-start.html @@ -183,13 +183,14 @@

🦀 Rust CLI

Install Rust CLI

-
# Install from crates.io
-cargo install jacs
+
# Install from crates.io (--features cli is required for the binary)
+cargo install jacs --features cli
+# Upgrade to latest: cargo install jacs --features cli --force
 
 # Or build from source
 git clone https://github.com/HumanAssisted/JACS
 cd JACS/jacs
-cargo install --path . --features="cli"
+cargo install --path . --features cli
 

Initialize JACS

# Create configuration and agent in one step
diff --git a/jacs/docs/jacsbook/book/index.html b/jacs/docs/jacsbook/book/index.html
index 0530ec4ce..defc05508 100644
--- a/jacs/docs/jacsbook/book/index.html
+++ b/jacs/docs/jacsbook/book/index.html
@@ -221,7 +221,8 @@ 

🐍 Python (jacs)<

Quick Start

Choose your implementation and get started in minutes:

Rust CLI

-
cargo install jacs
+
cargo install jacs --features cli
+# Upgrade to latest: cargo install jacs --features cli --force
 jacs init  # Create config, keys, and agent
 

Or step by step:

diff --git a/jacs/docs/jacsbook/book/print.html b/jacs/docs/jacsbook/book/print.html index 97046f709..913b795f7 100644 --- a/jacs/docs/jacsbook/book/print.html +++ b/jacs/docs/jacsbook/book/print.html @@ -222,7 +222,8 @@

🐍 Python (jacs)<

Quick Start

Choose your implementation and get started in minutes:

Rust CLI

-
cargo install jacs
+
cargo install jacs --features cli
+# Upgrade to latest: cargo install jacs --features cli --force
 jacs init  # Create config, keys, and agent
 

Or step by step:

@@ -718,13 +719,14 @@

🦀 Rust CLI

Install Rust CLI

-
# Install from crates.io
-cargo install jacs
+
# Install from crates.io (--features cli is required for the binary)
+cargo install jacs --features cli
+# Upgrade to latest: cargo install jacs --features cli --force
 
 # Or build from source
 git clone https://github.com/HumanAssisted/JACS
 cd JACS/jacs
-cargo install --path . --features="cli"
+cargo install --path . --features cli
 

Initialize JACS

# Create configuration and agent in one step
diff --git a/jacs/docs/jacsbook/book/searchindex.js b/jacs/docs/jacsbook/book/searchindex.js
index 0544a730c..dd0494519 100644
--- a/jacs/docs/jacsbook/book/searchindex.js
+++ b/jacs/docs/jacsbook/book/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["index.html#jacs-json-agent-communication-standard","index.html#what-is-jacs","index.html#key-features","index.html#available-implementations","index.html#-rust-core-library--cli","index.html#-nodejs-haiaijacs","index.html#-python-jacs","index.html#quick-start","index.html#rust-cli","index.html#nodejs","index.html#python","index.html#when-to-use-jacs","index.html#why-jacs","index.html#--agent-focused-design","index.html#--production-ready","index.html#--future-proof-security","index.html#--universal-compatibility","index.html#--flexible-integration","index.html#getting-started","index.html#community-and-support","getting-started/what-is-jacs.html#what-is-jacs","getting-started/what-is-jacs.html#the-problem-jacs-solves","getting-started/what-is-jacs.html#jacs-core-philosophy","getting-started/what-is-jacs.html#--agent-first-design","getting-started/what-is-jacs.html#--trust-through-cryptography","getting-started/what-is-jacs.html#--standards-based","getting-started/what-is-jacs.html#key-concepts","getting-started/what-is-jacs.html#agents","getting-started/what-is-jacs.html#documents","getting-started/what-is-jacs.html#tasks","getting-started/what-is-jacs.html#agreements","getting-started/what-is-jacs.html#how-jacs-works","getting-started/what-is-jacs.html#real-world-examples","getting-started/what-is-jacs.html#--ai-content-pipeline","getting-started/what-is-jacs.html#--data-processing-workflow","getting-started/what-is-jacs.html#--multi-agent-analysis","getting-started/what-is-jacs.html#benefits-over-alternatives","getting-started/what-is-jacs.html#when-to-use-jacs","getting-started/what-is-jacs.html#next-steps","getting-started/concepts.html#core-concepts","getting-started/concepts.html#agents","getting-started/concepts.html#agent-identity","getting-started/concepts.html#agent-lifecycle","getting-started/concepts.html#verification-load-vs-verify_standalone","getting-started/concepts.html#documents","getting-started/concepts.html#document-structure","getting-started/concepts.html#required-jacs-fields","getting-started/concepts.html#document-types","getting-started/concepts.html#tasks","getting-started/concepts.html#task-structure","getting-started/concepts.html#task-lifecycle","getting-started/concepts.html#task-components","getting-started/concepts.html#agreements","getting-started/concepts.html#agreement-structure","getting-started/concepts.html#agreement-process","getting-started/concepts.html#agreement-types","getting-started/concepts.html#cryptographic-security","getting-started/concepts.html#supported-algorithms","getting-started/concepts.html#signature-process","getting-started/concepts.html#key-management","getting-started/concepts.html#versioning-and-audit-trails","getting-started/concepts.html#version-management","getting-started/concepts.html#audit-trail-benefits","getting-started/concepts.html#storage-and-transport","getting-started/concepts.html#storage-options","getting-started/concepts.html#transport-mechanisms","getting-started/concepts.html#format-compatibility","getting-started/concepts.html#next-steps","getting-started/quick-start.html#quick-start-guide","getting-started/quick-start.html#choose-your-implementation","getting-started/quick-start.html#install-rust-cli","getting-started/quick-start.html#initialize-jacs","getting-started/quick-start.html#create-your-first-agent","getting-started/quick-start.html#create-and-sign-a-task","getting-started/quick-start.html#install-nodejs-package","getting-started/quick-start.html#basic-setup","getting-started/quick-start.html#create-agent-document","getting-started/quick-start.html#create-a-task","getting-started/quick-start.html#install-python-package","getting-started/quick-start.html#basic-setup-1","getting-started/quick-start.html#create-agent-document-1","getting-started/quick-start.html#create-a-task-1","getting-started/quick-start.html#non-interactive-agent-creation-v060","getting-started/quick-start.html#understanding-what-happened","getting-started/quick-start.html#1--agent-creation","getting-started/quick-start.html#2--configuration-setup","getting-started/quick-start.html#3--task-creation","getting-started/quick-start.html#verify-everything-works","getting-started/quick-start.html#next-steps-multi-agent-workflow","getting-started/quick-start.html#what-youve-accomplished","getting-started/quick-start.html#key-takeaways","getting-started/quick-start.html#where-to-go-next","getting-started/quick-start.html#troubleshooting","usecases.html#use-cases","usecases.html#1-verifying-that-json-came-from-a-specific-program","usecases.html#2-protecting-your-agents-identity-on-the-internet","usecases.html#3-registering-and-testing-your-agent-on-haiai","usecases.html#4-a-go-node-or-python-agent-with-strong-data-provenance","usecases.html#5-openclaw-moltyjacs-proving-your-agent-sent-a-message","rust/installation.html#installation","rust/installation.html#requirements","rust/installation.html#verify-rust-version","rust/installation.html#installing-the-cli","rust/installation.html#from-cratesio-recommended","rust/installation.html#from-source","rust/installation.html#verify-installation","rust/installation.html#using-as-a-library","rust/installation.html#with-optional-features","rust/installation.html#available-features","rust/installation.html#platform-support","rust/installation.html#webassembly-notes","rust/installation.html#configuration","rust/installation.html#manual-configuration","rust/installation.html#environment-variables","rust/installation.html#troubleshooting","rust/installation.html#build-errors","rust/installation.html#runtime-errors","rust/installation.html#next-steps","rust/cli.html#cli-usage","rust/cli.html#getting-help","rust/cli.html#commands-overview","rust/cli.html#initialization","rust/cli.html#quick-start","rust/cli.html#configuration-commands","rust/cli.html#create-configuration","rust/cli.html#read-configuration","rust/cli.html#agent-commands","rust/cli.html#create-agent","rust/cli.html#verify-agent","rust/cli.html#dns-commands","rust/cli.html#lookup-agent","rust/cli.html#task-commands","rust/cli.html#create-task","rust/cli.html#document-commands","rust/cli.html#create-document","rust/cli.html#update-document","rust/cli.html#verify-document","rust/cli.html#extract-embedded-content","rust/cli.html#agreement-commands","rust/cli.html#environment-variables","rust/cli.html#common-workflows","rust/cli.html#create-and-sign-a-document","rust/cli.html#multi-agent-agreement","rust/cli.html#verify-another-agent","rust/cli.html#exit-codes","rust/cli.html#next-steps","rust/agent.html#creating-an-agent","rust/agent.html#what-is-an-agent","rust/agent.html#creating-your-first-agent","rust/agent.html#quick-method-recommended","rust/agent.html#manual-method","rust/agent.html#with-custom-agent-definition","rust/agent.html#agent-types","rust/agent.html#ai-agent-example","rust/agent.html#human-agent-example","rust/agent.html#agent-services","rust/agent.html#service-with-actions","rust/agent.html#agent-contacts","rust/agent.html#cryptographic-keys","rust/agent.html#key-algorithms","rust/agent.html#configure-key-algorithm","rust/agent.html#key-storage","rust/agent.html#verifying-agents","rust/agent.html#verify-your-own-agent","rust/agent.html#verify-a-specific-agent-file","rust/agent.html#with-dns-verification","rust/agent.html#updating-agents","rust/agent.html#agent-document-structure","rust/agent.html#best-practices","rust/agent.html#security","rust/agent.html#agent-design","rust/agent.html#operations","rust/agent.html#next-steps","rust/documents.html#working-with-documents","rust/documents.html#what-is-a-jacs-document","rust/documents.html#creating-documents","rust/documents.html#from-a-json-file","rust/documents.html#from-a-directory","rust/documents.html#with-custom-schema","rust/documents.html#output-options","rust/documents.html#document-structure","rust/documents.html#required-header-fields","rust/documents.html#document-levels","rust/documents.html#file-attachments","rust/documents.html#attach-files","rust/documents.html#embed-vs-reference","rust/documents.html#attachment-structure","rust/documents.html#verifying-documents","rust/documents.html#basic-verification","rust/documents.html#verify-with-schema","rust/documents.html#verify-directory","rust/documents.html#verbose-output","rust/documents.html#updating-documents","rust/documents.html#update-with-attachments","rust/documents.html#extracting-embedded-content","rust/documents.html#document-types","rust/documents.html#task-documents","rust/documents.html#message-documents","rust/documents.html#custom-documents","rust/documents.html#version-history","rust/documents.html#working-with-multiple-agents","rust/documents.html#different-agent-signs-document","rust/documents.html#verify-document-from-unknown-agent","rust/documents.html#best-practices","rust/documents.html#document-design","rust/documents.html#security","rust/documents.html#performance","rust/documents.html#common-workflows","rust/documents.html#create-and-share-document","rust/documents.html#track-document-changes","rust/documents.html#process-multiple-documents","rust/documents.html#next-steps","rust/agreements.html#creating-and-using-agreements","rust/agreements.html#what-is-an-agreement","rust/agreements.html#agreement-lifecycle","rust/agreements.html#creating-agreements","rust/agreements.html#basic-agreement","rust/agreements.html#with-context","rust/agreements.html#signing-agreements","rust/agreements.html#sign-as-current-agent","rust/agreements.html#sign-as-different-agent","rust/agreements.html#sign-with-response","rust/agreements.html#checking-agreement-status","rust/agreements.html#check-if-complete","rust/agreements.html#agreement-structure","rust/agreements.html#task-agreements","rust/agreements.html#multi-agent-workflow-example","rust/agreements.html#agreement-hash","rust/agreements.html#best-practices","rust/agreements.html#next-steps","rust/dns.html#dns-based-agent-verification","rust/dns.html#overview","rust/dns.html#why-dns-verification","rust/dns.html#publishing-agent-identity","rust/dns.html#generate-dns-commands","rust/dns.html#provider-specific-formats","rust/dns.html#dns-record-structure","rust/dns.html#setting-up-with-route-53-aws","rust/dns.html#setting-up-with-cloudflare","rust/dns.html#setting-up-with-azure-dns","rust/dns.html#verifying-agents-with-dns","rust/dns.html#look-up-another-agent","rust/dns.html#verify-agent-with-dns","rust/dns.html#dns-validation-modes","rust/dns.html#agent-domain-configuration","rust/dns.html#dnssec-requirements","rust/dns.html#checking-dnssec-status","rust/dns.html#security-considerations","rust/dns.html#trust-model","rust/dns.html#best-practices","rust/dns.html#caching","rust/dns.html#troubleshooting","rust/dns.html#dns-record-not-found","rust/dns.html#dnssec-validation-failed","rust/dns.html#fingerprint-mismatch","rust/dns.html#integration-with-cicd","rust/dns.html#next-steps","rust/library.html#rust-library-api","rust/library.html#adding-jacs-as-a-dependency","rust/library.html#feature-flags","rust/library.html#core-types","rust/library.html#agent","rust/library.html#jacsdocument","rust/library.html#creating-an-agent","rust/library.html#minimal-agent","rust/library.html#loading-by-configuration","rust/library.html#dns-strict-mode","rust/library.html#working-with-documents","rust/library.html#creating-documents","rust/library.html#creating-documents-with-attachments","rust/library.html#loading-documents","rust/library.html#updating-documents","rust/library.html#verifying-documents","rust/library.html#saving-documents","rust/library.html#creating-tasks","rust/library.html#signing-and-verification","rust/library.html#signing-documents","rust/library.html#verification","rust/library.html#custom-schema-validation","rust/library.html#configuration","rust/library.html#loading-configuration","rust/library.html#accessing-configuration","rust/library.html#observability","rust/library.html#initialize-default-observability","rust/library.html#custom-observability-configuration","rust/library.html#storage-backends","rust/library.html#error-handling","rust/library.html#thread-safety","rust/library.html#complete-example","rust/library.html#next-steps","rust/observability.html#observability","rust/observability.html#overview","rust/observability.html#feature-flags","rust/observability.html#quick-start","rust/observability.html#default-configuration","rust/observability.html#custom-configuration","rust/observability.html#logging","rust/observability.html#log-levels","rust/observability.html#log-destinations","rust/observability.html#using-logs","rust/observability.html#metrics","rust/observability.html#enabling-metrics","rust/observability.html#metrics-destinations","rust/observability.html#recording-metrics","rust/observability.html#built-in-metrics","rust/observability.html#distributed-tracing","rust/observability.html#enabling-tracing","rust/observability.html#tracing-destinations","rust/observability.html#sampling-configuration","rust/observability.html#using-tracing-spans","rust/observability.html#configuration-file","rust/observability.html#opentelemetry-collector-setup","rust/observability.html#reset-and-cleanup","rust/observability.html#best-practices","rust/observability.html#development","rust/observability.html#production","rust/observability.html#troubleshooting","rust/observability.html#logs-not-appearing","rust/observability.html#metrics-not-exporting","rust/observability.html#traces-missing","rust/observability.html#next-steps","nodejs/installation.html#nodejs-installation","nodejs/installation.html#requirements","nodejs/installation.html#installation","nodejs/installation.html#using-npm","nodejs/installation.html#using-yarn","nodejs/installation.html#using-pnpm","nodejs/installation.html#verify-installation","nodejs/installation.html#package-structure","nodejs/installation.html#core-module-haiaijacs","nodejs/installation.html#mcp-integration-haiaijacsmcp","nodejs/installation.html#http-server-haiaijacshttp","nodejs/installation.html#typescript-support","nodejs/installation.html#configuration","nodejs/installation.html#basic-configuration","nodejs/installation.html#configuration-file","nodejs/installation.html#environment-variables","nodejs/installation.html#storage-backends","nodejs/installation.html#file-system-default","nodejs/installation.html#s3-storage","nodejs/installation.html#memory-storage-testing","nodejs/installation.html#cryptographic-algorithms","nodejs/installation.html#ring-ed25519-recommended","nodejs/installation.html#rsa-pss","nodejs/installation.html#pq-dilithium-post-quantum","nodejs/installation.html#pq2025-post-quantum-hybrid","nodejs/installation.html#development-setup","nodejs/installation.html#project-structure","nodejs/installation.html#packagejson-setup","nodejs/installation.html#basic-application","nodejs/installation.html#common-issues","nodejs/installation.html#module-not-found","nodejs/installation.html#permission-errors","nodejs/installation.html#binary-compatibility","nodejs/installation.html#typescript-issues","nodejs/installation.html#next-steps","nodejs/installation.html#examples","nodejs/simple-api.html#simplified-api","nodejs/simple-api.html#quick-start","nodejs/simple-api.html#when-to-use-the-simplified-api","nodejs/simple-api.html#api-reference","nodejs/simple-api.html#loadconfigpath","nodejs/simple-api.html#isloaded","nodejs/simple-api.html#getagentinfo","nodejs/simple-api.html#verifyself","nodejs/simple-api.html#signmessagedata","nodejs/simple-api.html#signfilefilepath-embed","nodejs/simple-api.html#verifysigneddocument","nodejs/simple-api.html#verifystandalonesigneddocument-options","nodejs/simple-api.html#auditoptions","nodejs/simple-api.html#updateagentnewagentdata","nodejs/simple-api.html#updatedocumentdocumentid-newdocumentdata-attachments-embed","nodejs/simple-api.html#exportagent","nodejs/simple-api.html#registerwithhaioptions","nodejs/simple-api.html#getdnsrecorddomain-ttl","nodejs/simple-api.html#getwellknownjson","nodejs/simple-api.html#getpublickey","nodejs/simple-api.html#type-definitions","nodejs/simple-api.html#agentinfo","nodejs/simple-api.html#signeddocument","nodejs/simple-api.html#verificationresult","nodejs/simple-api.html#attachment","nodejs/simple-api.html#complete-example","nodejs/simple-api.html#mcp-integration","nodejs/simple-api.html#error-handling","nodejs/simple-api.html#see-also","nodejs/basic-usage.html#basic-usage","nodejs/basic-usage.html#initializing-an-agent","nodejs/basic-usage.html#create-and-load-agent","nodejs/basic-usage.html#configuration-file","nodejs/basic-usage.html#creating-documents","nodejs/basic-usage.html#basic-document-creation","nodejs/basic-usage.html#with-custom-schema","nodejs/basic-usage.html#with-output-file","nodejs/basic-usage.html#without-saving","nodejs/basic-usage.html#with-attachments","nodejs/basic-usage.html#verifying-documents","nodejs/basic-usage.html#verify-document-signature","nodejs/basic-usage.html#verify-specific-signature-field","nodejs/basic-usage.html#updating-documents","nodejs/basic-usage.html#update-existing-document","nodejs/basic-usage.html#update-with-new-attachments","nodejs/basic-usage.html#signing-and-verification","nodejs/basic-usage.html#sign-arbitrary-data","nodejs/basic-usage.html#verify-arbitrary-data","nodejs/basic-usage.html#working-with-agreements","nodejs/basic-usage.html#create-an-agreement","nodejs/basic-usage.html#sign-an-agreement","nodejs/basic-usage.html#check-agreement-status","nodejs/basic-usage.html#agent-operations","nodejs/basic-usage.html#verify-agent","nodejs/basic-usage.html#update-agent","nodejs/basic-usage.html#sign-external-agent","nodejs/basic-usage.html#requestresponse-signing","nodejs/basic-usage.html#sign-a-request","nodejs/basic-usage.html#verify-a-response","nodejs/basic-usage.html#utility-functions","nodejs/basic-usage.html#hash-string","nodejs/basic-usage.html#create-configuration","nodejs/basic-usage.html#error-handling","nodejs/basic-usage.html#complete-example","nodejs/basic-usage.html#next-steps","nodejs/mcp.html#model-context-protocol-mcp-integration","nodejs/mcp.html#what-is-mcp","nodejs/mcp.html#how-jacs-mcp-works","nodejs/mcp.html#quick-start","nodejs/mcp.html#basic-mcp-server-with-jacs","nodejs/mcp.html#mcp-client-with-jacs","nodejs/mcp.html#api-reference","nodejs/mcp.html#jacstransportproxy","nodejs/mcp.html#createjacstransportproxy","nodejs/mcp.html#createjacstransportproxyasync","nodejs/mcp.html#transport-options","nodejs/mcp.html#stdio-transport","nodejs/mcp.html#sse-transport-http","nodejs/mcp.html#configuration","nodejs/mcp.html#jacs-config-file","nodejs/mcp.html#environment-variables","nodejs/mcp.html#how-messages-are-signed","nodejs/mcp.html#outgoing-messages","nodejs/mcp.html#incoming-messages","nodejs/mcp.html#complete-example","nodejs/mcp.html#server-mcpserverjs","nodejs/mcp.html#client-mcpclientjs","nodejs/mcp.html#security-considerations","nodejs/mcp.html#message-verification","nodejs/mcp.html#passthrough-mode","nodejs/mcp.html#key-management","nodejs/mcp.html#debugging","nodejs/mcp.html#enable-debug-logging","nodejs/mcp.html#stdio-debug-note","nodejs/mcp.html#common-issues","nodejs/mcp.html#next-steps","nodejs/http.html#http-server","nodejs/http.html#overview","nodejs/http.html#core-concepts","nodejs/http.html#requestresponse-flow","nodejs/http.html#http-client","nodejs/http.html#basic-client-usage","nodejs/http.html#using-fetch","nodejs/http.html#express-server","nodejs/http.html#using-express-middleware","nodejs/http.html#middleware-configuration","nodejs/http.html#manual-requestresponse-handling","nodejs/http.html#koa-server","nodejs/http.html#using-koa-middleware","nodejs/http.html#api-reference","nodejs/http.html#jacssignrequestpayload","nodejs/http.html#jacsverifyresponseresponsestring","nodejs/http.html#jacssignresponsepayload","nodejs/http.html#jacsexpressmiddlewareoptions","nodejs/http.html#jacskoamiddlewareoptions","nodejs/http.html#complete-example","nodejs/http.html#server-serverjs","nodejs/http.html#client-clientjs","nodejs/http.html#security-considerations","nodejs/http.html#content-type","nodejs/http.html#error-handling","nodejs/http.html#agent-keys","nodejs/http.html#middleware-order","nodejs/http.html#next-steps","nodejs/express.html#express-middleware","nodejs/express.html#overview","nodejs/express.html#quick-start","nodejs/express.html#middleware-configuration","nodejs/express.html#basic-configuration","nodejs/express.html#per-route-configuration","nodejs/express.html#multiple-jacs-agents","nodejs/express.html#request-handling","nodejs/express.html#accessing-verified-payload","nodejs/express.html#handling-missing-payload","nodejs/express.html#validation-helper","nodejs/express.html#response-handling","nodejs/express.html#automatic-signing","nodejs/express.html#sending-unsigned-responses","nodejs/express.html#custom-response-format","nodejs/express.html#error-handling","nodejs/express.html#global-error-handler","nodejs/express.html#typed-errors","nodejs/express.html#advanced-patterns","nodejs/express.html#router-level-middleware","nodejs/express.html#middleware-composition","nodejs/express.html#logging-middleware","nodejs/express.html#authentication-integration","nodejs/express.html#testing","nodejs/express.html#unit-testing-routes","nodejs/express.html#mock-jacs-for-testing","nodejs/express.html#complete-application-example","nodejs/express.html#troubleshooting","nodejs/express.html#body-parsing-issues","nodejs/express.html#json-body-parser-conflict","nodejs/express.html#response-not-signed","nodejs/express.html#next-steps","nodejs/api.html#api-reference","nodejs/api.html#installation","nodejs/api.html#core-module","nodejs/api.html#jacsagent-class","nodejs/api.html#constructor","nodejs/api.html#agentloadconfigpath","nodejs/api.html#agentcreatedocumentdocumentstring-customschema-outputfilename-nosave-attachments-embed","nodejs/api.html#agentverifydocumentdocumentstring","nodejs/api.html#agentverifysignaturedocumentstring-signaturefield","nodejs/api.html#agentupdatedocumentdocumentkey-newdocumentstring-attachments-embed","nodejs/api.html#agentcreateagreementdocumentstring-agentids-question-context-agreementfieldname","nodejs/api.html#agentsignagreementdocumentstring-agreementfieldname","nodejs/api.html#agentcheckagreementdocumentstring-agreementfieldname","nodejs/api.html#agentsignstringdata","nodejs/api.html#agentverifystringdata-signaturebase64-publickey-publickeyenctype","nodejs/api.html#agentsignrequestparams","nodejs/api.html#agentverifyresponsedocumentstring","nodejs/api.html#agentverifyresponsewithagentiddocumentstring","nodejs/api.html#agentverifyagentagentfile","nodejs/api.html#agentupdateagentnewagentstring","nodejs/api.html#agentsignagentagentstring-publickey-publickeyenctype","nodejs/api.html#utility-functions","nodejs/api.html#hashstringdata","nodejs/api.html#createconfigoptions","nodejs/api.html#http-module","nodejs/api.html#jacsexpressmiddlewareoptions","nodejs/api.html#jacskoamiddlewareoptions","nodejs/api.html#mcp-module","nodejs/api.html#jacstransportproxy","nodejs/api.html#createjacstransportproxytransport-configpath-role","nodejs/api.html#createjacstransportproxyasynctransport-configpath-role","nodejs/api.html#typescript-support","nodejs/api.html#deprecated-functions","nodejs/api.html#error-handling","nodejs/api.html#see-also","python/installation.html#python-installation","python/installation.html#requirements","python/installation.html#installation","python/installation.html#using-pip","python/installation.html#using-conda","python/installation.html#using-poetry","python/installation.html#development-installation","python/installation.html#verify-installation","python/installation.html#package-structure","python/installation.html#core-module","python/installation.html#jacsagent-methods","python/installation.html#configuration","python/installation.html#configuration-file","python/installation.html#load-configuration-in-python","python/installation.html#programmatic-configuration","python/installation.html#environment-variables","python/installation.html#storage-backends","python/installation.html#file-system-default","python/installation.html#s3-storage","python/installation.html#memory-storage-testing","python/installation.html#cryptographic-algorithms","python/installation.html#ring-ed25519-recommended","python/installation.html#rsa-pss","python/installation.html#pq-dilithium-post-quantum","python/installation.html#pq2025-post-quantum-hybrid","python/installation.html#development-setup","python/installation.html#project-structure","python/installation.html#requirementstxt-setup","python/installation.html#basic-application","python/installation.html#virtual-environment-setup","python/installation.html#using-venv","python/installation.html#using-conda-1","python/installation.html#using-poetry-1","python/installation.html#jupyter-notebook-setup","python/installation.html#common-issues","python/installation.html#module-not-found","python/installation.html#permission-errors","python/installation.html#binary-compatibility","python/installation.html#windows-issues","python/installation.html#type-hints-and-ide-support","python/installation.html#testing-setup","python/installation.html#next-steps","python/installation.html#examples","python/simple-api.html#simplified-api","python/simple-api.html#quick-start","python/simple-api.html#when-to-use-the-simplified-api","python/simple-api.html#api-reference","python/simple-api.html#loadconfig_pathnone","python/simple-api.html#is_loaded","python/simple-api.html#get_agent_info","python/simple-api.html#verify_self","python/simple-api.html#sign_messagedata","python/simple-api.html#sign_filefile_path-embedfalse","python/simple-api.html#verifysigned_document","python/simple-api.html#verify_standalonedocument-key_resolutionlocal-data_directorynone-key_directorynone","python/simple-api.html#auditconfig_pathnone-recent_nnone","python/simple-api.html#update_agentnew_agent_data","python/simple-api.html#update_documentdocument_id-new_document_data-attachmentsnone-embedfalse","python/simple-api.html#export_agent","python/simple-api.html#get_dns_recorddomain-ttl3600","python/simple-api.html#get_well_known_json","python/simple-api.html#get_public_key","python/simple-api.html#type-definitions","python/simple-api.html#agentinfo","python/simple-api.html#signeddocument","python/simple-api.html#verificationresult","python/simple-api.html#attachment","python/simple-api.html#exceptions","python/simple-api.html#complete-example","python/simple-api.html#mcp-integration","python/simple-api.html#error-handling","python/simple-api.html#see-also","python/basic-usage.html#basic-usage","python/basic-usage.html#initializing-an-agent","python/basic-usage.html#create-and-load-agent","python/basic-usage.html#configuration-file","python/basic-usage.html#creating-documents","python/basic-usage.html#basic-document-creation","python/basic-usage.html#with-custom-schema","python/basic-usage.html#with-output-file","python/basic-usage.html#without-saving","python/basic-usage.html#with-attachments","python/basic-usage.html#verifying-documents","python/basic-usage.html#verify-document-signature","python/basic-usage.html#verify-specific-signature-field","python/basic-usage.html#updating-documents","python/basic-usage.html#update-existing-document","python/basic-usage.html#update-with-new-attachments","python/basic-usage.html#signing-and-verification","python/basic-usage.html#sign-arbitrary-data","python/basic-usage.html#verify-arbitrary-data","python/basic-usage.html#working-with-agreements","python/basic-usage.html#create-an-agreement","python/basic-usage.html#sign-an-agreement","python/basic-usage.html#check-agreement-status","python/basic-usage.html#agent-operations","python/basic-usage.html#verify-agent","python/basic-usage.html#update-agent","python/basic-usage.html#sign-external-agent","python/basic-usage.html#requestresponse-signing","python/basic-usage.html#sign-a-request","python/basic-usage.html#verify-a-response","python/basic-usage.html#utility-functions","python/basic-usage.html#hash-string","python/basic-usage.html#create-configuration","python/basic-usage.html#error-handling","python/basic-usage.html#complete-example","python/basic-usage.html#working-with-document-data","python/basic-usage.html#parse-signed-documents","python/basic-usage.html#document-key-format","python/basic-usage.html#configuration-management","python/basic-usage.html#load-from-file","python/basic-usage.html#environment-variables","python/basic-usage.html#programmatic-configuration","python/basic-usage.html#next-steps","python/mcp.html#mcp-integration","python/mcp.html#overview","python/mcp.html#quick-start","python/mcp.html#basic-mcp-server-with-jacs","python/mcp.html#basic-mcp-client-with-jacs","python/mcp.html#how-it-works","python/mcp.html#jacsmcpserver","python/mcp.html#jacsmcpclient","python/mcp.html#configuration","python/mcp.html#jacs-configuration-file","python/mcp.html#initializing-the-agent","python/mcp.html#integration-patterns","python/mcp.html#fastmcp-with-jacs-middleware","python/mcp.html#manual-requestresponse-signing","python/mcp.html#error-handling","python/mcp.html#common-errors","python/mcp.html#debugging","python/mcp.html#production-deployment","python/mcp.html#security-best-practices","python/mcp.html#docker-deployment","python/mcp.html#testing","python/mcp.html#unit-testing-mcp-tools","python/mcp.html#api-reference","python/mcp.html#jacsmcpservermcp_server","python/mcp.html#jacsmcpclienturl-kwargs","python/mcp.html#module-functions","python/mcp.html#next-steps","python/api.html#api-reference","python/api.html#installation","python/api.html#core-module","python/api.html#jacsagent-class","python/api.html#constructor","python/api.html#agentloadconfig_path","python/api.html#agentcreate_documentdocument_string-custom_schemanone-output_filenamenone-no_savefalse-attachmentsnone-embedfalse","python/api.html#agentverify_documentdocument_string","python/api.html#agentverify_signaturedocument_string-signature_fieldnone","python/api.html#agentupdate_documentdocument_key-new_document_string-attachmentsnone-embedfalse","python/api.html#agentcreate_agreementdocument_string-agent_ids-questionnone-contextnone-agreement_field_namenone","python/api.html#agentsign_agreementdocument_string-agreement_field_namenone","python/api.html#agentcheck_agreementdocument_string-agreement_field_namenone","python/api.html#agentsign_stringdata","python/api.html#agentverify_stringdata-signature_base64-public_key-public_key_enc_type","python/api.html#agentsign_requestparams","python/api.html#agentverify_responsedocument_string","python/api.html#agentverify_response_with_agent_iddocument_string","python/api.html#agentverify_agentagent_filenone","python/api.html#agentupdate_agentnew_agent_string","python/api.html#agentsign_agentagent_string-public_key-public_key_enc_type","python/api.html#module-level-functions","python/api.html#jacsloadconfig_path","python/api.html#jacssign_requestdata","python/api.html#jacsverify_requestdata","python/api.html#jacssign_responsedata","python/api.html#jacsverify_responsedata","python/api.html#mcp-module","python/api.html#jacsmcpservermcp_server","python/api.html#jacsmcpclienturl-kwargs","python/api.html#configuration","python/api.html#configuration-file-format","python/api.html#configuration-options","python/api.html#error-handling","python/api.html#common-exceptions","python/api.html#type-hints","python/api.html#thread-safety","python/api.html#see-also","schemas/overview.html#json-schemas","schemas/overview.html#schema-architecture","schemas/overview.html#schema-categories","schemas/overview.html#configuration-schema","schemas/overview.html#document-schemas","schemas/overview.html#component-schemas","schemas/overview.html#schema-locations","schemas/overview.html#using-schemas","schemas/overview.html#in-documents","schemas/overview.html#in-configuration-files","schemas/overview.html#custom-schema-validation","schemas/overview.html#hai-extensions","schemas/overview.html#versioning","schemas/overview.html#schema-composition","schemas/overview.html#creating-custom-schemas","schemas/overview.html#validation-rules","schemas/overview.html#required-fields","schemas/overview.html#format-validation","schemas/overview.html#enum-constraints","schemas/overview.html#schema-reference","schemas/overview.html#see-also","schemas/agent.html#agent-schema","schemas/agent.html#schema-location","schemas/agent.html#overview","schemas/agent.html#schema-structure","schemas/agent.html#agent-types","schemas/agent.html#contact-requirements","schemas/agent.html#agent-properties","schemas/agent.html#core-fields-from-header","schemas/agent.html#agent-specific-fields","schemas/agent.html#services","schemas/agent.html#service-schema-fields","schemas/agent.html#pii-types","schemas/agent.html#contacts","schemas/agent.html#contact-schema-fields","schemas/agent.html#dns-verification","schemas/agent.html#complete-example","schemas/agent.html#ai-agent","schemas/agent.html#human-agent","schemas/agent.html#organization-agent","schemas/agent.html#creating-agents","schemas/agent.html#python","schemas/agent.html#nodejs","schemas/agent.html#cli","schemas/agent.html#verifying-agents","schemas/agent.html#see-also","schemas/document.html#document-schema","schemas/document.html#schema-location","schemas/document.html#overview","schemas/document.html#core-fields","schemas/document.html#identification","schemas/document.html#versioning","schemas/document.html#document-level","schemas/document.html#cryptographic-fields","schemas/document.html#signature","schemas/document.html#registration","schemas/document.html#hash","schemas/document.html#agreements","schemas/document.html#agreement-schema-fields","schemas/document.html#file-attachments","schemas/document.html#file-schema-fields","schemas/document.html#vector-embeddings","schemas/document.html#embedding-schema-fields","schemas/document.html#complete-example","schemas/document.html#hai-field-categories","schemas/document.html#working-with-documents","schemas/document.html#creating-documents","schemas/document.html#verifying-documents","schemas/document.html#updating-documents","schemas/document.html#adding-attachments","schemas/document.html#version-history","schemas/document.html#see-also","schemas/task.html#task-schema","schemas/task.html#schema-location","schemas/task.html#overview","schemas/task.html#schema-structure","schemas/task.html#task-states","schemas/task.html#state-transitions","schemas/task.html#task-properties","schemas/task.html#core-fields-from-header","schemas/task.html#task-specific-fields","schemas/task.html#relationship-fields","schemas/task.html#actions","schemas/task.html#action-schema-fields","schemas/task.html#unit-schema","schemas/task.html#agreements","schemas/task.html#start-agreement","schemas/task.html#end-agreement","schemas/task.html#complete-example","schemas/task.html#task-relationships","schemas/task.html#sub-tasks","schemas/task.html#task-copies-branching","schemas/task.html#merged-tasks","schemas/task.html#task-workflow","schemas/task.html#1-creating-a-task","schemas/task.html#2-assigning-an-agent","schemas/task.html#3-signing-start-agreement","schemas/task.html#4-completing-work","schemas/task.html#5-final-completion","schemas/task.html#state-machine-rules","schemas/task.html#see-also","schemas/agentstate.html#agent-state-schema","schemas/agentstate.html#schema-location","schemas/agentstate.html#overview","schemas/agentstate.html#schema-structure","schemas/agentstate.html#state-types","schemas/agentstate.html#properties","schemas/agentstate.html#required-fields","schemas/agentstate.html#optional-fields","schemas/agentstate.html#origin-tracking","schemas/agentstate.html#file-references","schemas/agentstate.html#examples","schemas/agentstate.html#minimal-agent-state","schemas/agentstate.html#memory-file-with-embedding","schemas/agentstate.html#adopted-skill","schemas/agentstate.html#general-purpose-signed-document","schemas/agentstate.html#rust-api","schemas/agentstate.html#creating-agent-state-documents","schemas/agentstate.html#signing-and-verification","schemas/agentstate.html#mcp-tools","schemas/agentstate.html#mcp-example-sign-a-memory-file","schemas/agentstate.html#mcp-example-sign-any-document","schemas/agentstate.html#security-notes","schemas/agentstate.html#see-also","schemas/commitment.html#commitment-schema","schemas/commitment.html#schema","schemas/commitment.html#required-fields","schemas/commitment.html#status-lifecycle","schemas/commitment.html#optional-fields","schemas/commitment.html#cross-references","schemas/commitment.html#multi-agent-agreements","schemas/commitment.html#example","schemas/commitment.html#rust-api","schemas/commitment.html#versioning","schemas/commitment.html#see-also","schemas/todo.html#todo-list-schema","schemas/todo.html#schema","schemas/todo.html#required-fields","schemas/todo.html#optional-fields","schemas/todo.html#todo-items","schemas/todo.html#required-item-fields","schemas/todo.html#optional-item-fields","schemas/todo.html#cross-references","schemas/todo.html#item-hierarchy","schemas/todo.html#example","schemas/todo.html#rust-api","schemas/todo.html#versioning","schemas/todo.html#see-also","schemas/conversation.html#conversation-schema","schemas/conversation.html#schema","schemas/conversation.html#message-fields","schemas/conversation.html#required","schemas/conversation.html#optional","schemas/conversation.html#threading-model","schemas/conversation.html#immutability","schemas/conversation.html#example","schemas/conversation.html#rust-api","schemas/conversation.html#cross-references","schemas/conversation.html#see-also","schemas/configuration.html#configuration","schemas/configuration.html#schema-location","schemas/configuration.html#quick-start","schemas/configuration.html#required-fields","schemas/configuration.html#configuration-options","schemas/configuration.html#key-configuration","schemas/configuration.html#storage-configuration","schemas/configuration.html#agent-identity","schemas/configuration.html#schema-versions","schemas/configuration.html#dns-configuration","schemas/configuration.html#security","schemas/configuration.html#observability-configuration","schemas/configuration.html#logs-configuration","schemas/configuration.html#metrics-configuration","schemas/configuration.html#tracing-configuration","schemas/configuration.html#complete-configuration-example","schemas/configuration.html#environment-variables","schemas/configuration.html#loading-configuration","schemas/configuration.html#python","schemas/configuration.html#nodejs","schemas/configuration.html#cli","schemas/configuration.html#production-best-practices","schemas/configuration.html#see-also","advanced/security.html#security-model","advanced/security.html#security-model-v060","advanced/security.html#core-security-principles","advanced/security.html#1-cryptographic-identity","advanced/security.html#2-document-integrity","advanced/security.html#3-non-repudiation","advanced/security.html#security-audit-audit","advanced/security.html#threat-model","advanced/security.html#protected-against","advanced/security.html#trust-assumptions","advanced/security.html#signature-process","advanced/security.html#signing-a-document","advanced/security.html#verifying-a-document","advanced/security.html#key-management","advanced/security.html#key-generation","advanced/security.html#key-protection","advanced/security.html#key-rotation","advanced/security.html#tls-certificate-validation","advanced/security.html#default-behavior-development","advanced/security.html#production-configuration","advanced/security.html#security-implications","advanced/security.html#signature-timestamp-validation","advanced/security.html#how-it-works","advanced/security.html#configuring-signature-expiration","advanced/security.html#protection-against-replay-attacks","advanced/security.html#clock-synchronization","advanced/security.html#verification-claims","advanced/security.html#claim-levels","advanced/security.html#setting-a-verification-claim","advanced/security.html#claim-enforcement","advanced/security.html#backward-compatibility","advanced/security.html#error-messages","advanced/security.html#security-considerations","advanced/security.html#dns-based-verification","advanced/security.html#how-it-works-1","advanced/security.html#configuration","advanced/security.html#security-levels","advanced/security.html#trust-store-management","advanced/security.html#trusting-agents","advanced/security.html#untrusting-agents","advanced/security.html#trust-store-security","advanced/security.html#best-practices","advanced/security.html#agreement-security","advanced/security.html#agreement-structure","advanced/security.html#agreement-guarantees","advanced/security.html#requestresponse-security","advanced/security.html#request-signing","advanced/security.html#response-verification","advanced/security.html#algorithm-security","advanced/security.html#supported-algorithms","advanced/security.html#algorithm-selection","advanced/security.html#security-best-practices","advanced/security.html#1-key-storage","advanced/security.html#2-password-handling","advanced/security.html#3-transport-security","advanced/security.html#4-verification-policies","advanced/security.html#5-audit-logging","advanced/security.html#security-checklist","advanced/security.html#development","advanced/security.html#production","advanced/security.html#verification","advanced/security.html#security-considerations-1","advanced/security.html#supply-chain","advanced/security.html#side-channels","advanced/security.html#recovery","advanced/security.html#troubleshooting-verification-claims","advanced/security.html#common-issues-and-solutions","advanced/security.html#claim-level-reference","advanced/security.html#upgrade-vs-downgrade-rules","advanced/security.html#quick-diagnostic-commands","advanced/security.html#see-also","advanced/key-rotation.html#key-rotation","advanced/key-rotation.html#why-key-rotation-matters","advanced/key-rotation.html#key-compromise-recovery","advanced/key-rotation.html#cryptographic-agility","advanced/key-rotation.html#compliance-requirements","advanced/key-rotation.html#agent-versioning","advanced/key-rotation.html#version-format","advanced/key-rotation.html#version-chain","advanced/key-rotation.html#version-aware-verification","advanced/key-rotation.html#signature-structure","advanced/key-rotation.html#key-resolution-process","advanced/key-rotation.html#key-lookup-priority","advanced/key-rotation.html#key-rotation-process","advanced/key-rotation.html#step-by-step-rotation","advanced/key-rotation.html#transition-signature","advanced/key-rotation.html#cli-commands-planned","advanced/key-rotation.html#example-rotation-flow","advanced/key-rotation.html#trust-store-with-version-history","advanced/key-rotation.html#trustedagent-structure","advanced/key-rotation.html#key-status-values","advanced/key-rotation.html#looking-up-keys","advanced/key-rotation.html#dns-support-for-key-versions","advanced/key-rotation.html#multi-version-dns-records","advanced/key-rotation.html#dns-record-generation","advanced/key-rotation.html#security-considerations","advanced/key-rotation.html#key-revocation","advanced/key-rotation.html#overlap-period","advanced/key-rotation.html#secure-deletion","advanced/key-rotation.html#best-practices","advanced/key-rotation.html#rotation-schedule","advanced/key-rotation.html#pre-rotation-checklist","advanced/key-rotation.html#post-rotation-checklist","advanced/key-rotation.html#see-also","advanced/crypto.html#cryptographic-algorithms","advanced/crypto.html#supported-algorithms","advanced/crypto.html#ed25519-ring-ed25519","advanced/crypto.html#overview","advanced/crypto.html#characteristics","advanced/crypto.html#configuration","advanced/crypto.html#use-cases","advanced/crypto.html#example","advanced/crypto.html#rsa-pss","advanced/crypto.html#overview-1","advanced/crypto.html#characteristics-1","advanced/crypto.html#configuration-1","advanced/crypto.html#use-cases-1","advanced/crypto.html#considerations","advanced/crypto.html#dilithium-pq-dilithium","advanced/crypto.html#overview-2","advanced/crypto.html#characteristics-2","advanced/crypto.html#configuration-2","advanced/crypto.html#use-cases-2","advanced/crypto.html#considerations-1","advanced/crypto.html#pq2025-hybrid","advanced/crypto.html#overview-3","advanced/crypto.html#characteristics-3","advanced/crypto.html#configuration-3","advanced/crypto.html#use-cases-3","advanced/crypto.html#considerations-2","advanced/crypto.html#algorithm-selection-guide","advanced/crypto.html#decision-matrix","advanced/crypto.html#by-use-case","advanced/crypto.html#key-generation","advanced/crypto.html#key-formats","advanced/crypto.html#signature-structure","advanced/crypto.html#hashing","advanced/crypto.html#algorithm-migration","advanced/crypto.html#performance-comparison","advanced/crypto.html#security-considerations","advanced/crypto.html#algorithm-agility","advanced/crypto.html#forward-secrecy","advanced/crypto.html#key-compromise","advanced/crypto.html#see-also","advanced/storage.html#storage-backends","advanced/storage.html#available-backends","advanced/storage.html#configuration","advanced/storage.html#filesystem-storage-fs","advanced/storage.html#configuration-1","advanced/storage.html#directory-structure","advanced/storage.html#use-cases","advanced/storage.html#advantages","advanced/storage.html#considerations","advanced/storage.html#example","advanced/storage.html#aws-s3-storage-aws","advanced/storage.html#configuration-2","advanced/storage.html#environment-variables","advanced/storage.html#bucket-structure","advanced/storage.html#use-cases-1","advanced/storage.html#advantages-1","advanced/storage.html#considerations-1","advanced/storage.html#iam-policy","advanced/storage.html#example-1","advanced/storage.html#hai-cloud-storage-hai","advanced/storage.html#configuration-3","advanced/storage.html#features","advanced/storage.html#use-cases-2","advanced/storage.html#postgresql-database-storage-database","advanced/storage.html#compile-time-setup","advanced/storage.html#configuration-4","advanced/storage.html#how-it-works","advanced/storage.html#table-schema","advanced/storage.html#append-only-model","advanced/storage.html#query-capabilities","advanced/storage.html#rust-api-example","advanced/storage.html#security-note","advanced/storage.html#use-cases-3","advanced/storage.html#considerations-2","advanced/storage.html#in-memory-storage","advanced/storage.html#storage-selection-guide","advanced/storage.html#file-storage","advanced/storage.html#embedded-files","advanced/storage.html#external-files","advanced/storage.html#data-migration","advanced/storage.html#filesystem-to-s3","advanced/storage.html#exportimport","advanced/storage.html#backup-and-recovery","advanced/storage.html#filesystem-backup","advanced/storage.html#s3-backup","advanced/storage.html#cross-region-replication","advanced/storage.html#performance-optimization","advanced/storage.html#filesystem","advanced/storage.html#s3","advanced/storage.html#caching","advanced/storage.html#security-considerations","advanced/storage.html#filesystem-1","advanced/storage.html#s3-1","advanced/storage.html#see-also","advanced/custom-schemas.html#custom-schemas","advanced/custom-schemas.html#overview","advanced/custom-schemas.html#creating-a-custom-schema","advanced/custom-schemas.html#basic-structure","advanced/custom-schemas.html#step-by-step-guide","advanced/custom-schemas.html#schema-best-practices","advanced/custom-schemas.html#use-meaningful-ids","advanced/custom-schemas.html#document-everything","advanced/custom-schemas.html#use-appropriate-validation","advanced/custom-schemas.html#group-related-fields","advanced/custom-schemas.html#advanced-schema-features","advanced/custom-schemas.html#conditional-validation","advanced/custom-schemas.html#reusable-definitions","advanced/custom-schemas.html#array-constraints","advanced/custom-schemas.html#pattern-properties","advanced/custom-schemas.html#schema-inheritance","advanced/custom-schemas.html#extending-custom-schemas","advanced/custom-schemas.html#validation","advanced/custom-schemas.html#python-validation","advanced/custom-schemas.html#nodejs-validation","advanced/custom-schemas.html#example-schemas","advanced/custom-schemas.html#medical-record","advanced/custom-schemas.html#legal-contract","advanced/custom-schemas.html#iot-sensor-reading","advanced/custom-schemas.html#schema-versioning","advanced/custom-schemas.html#version-in-path","advanced/custom-schemas.html#version-field","advanced/custom-schemas.html#migration-strategy","advanced/custom-schemas.html#see-also","advanced/testing.html#testing","advanced/testing.html#testing-fundamentals","advanced/testing.html#test-agent-setup","advanced/testing.html#test-fixtures","advanced/testing.html#unit-testing","advanced/testing.html#testing-document-operations","advanced/testing.html#testing-agreements","advanced/testing.html#agreement-completion-semantics-strict","advanced/testing.html#two-agent-agreement-harness-separate-agents","advanced/testing.html#testing-requestresponse-signing","advanced/testing.html#integration-testing","advanced/testing.html#testing-mcp-integration","advanced/testing.html#testing-http-endpoints","advanced/testing.html#mocking","advanced/testing.html#mocking-jacs-agent","advanced/testing.html#mocking-mcp-transport","advanced/testing.html#test-coverage","advanced/testing.html#rust-coverage","advanced/testing.html#python-coverage","advanced/testing.html#nodejs-coverage","advanced/testing.html#cicd-integration","advanced/testing.html#github-actions","advanced/testing.html#test-environment-variables","advanced/testing.html#raii-test-fixtures-rust","advanced/testing.html#trusttestguard-pattern","advanced/testing.html#property-based-testing","advanced/testing.html#key-properties-to-test","advanced/testing.html#fuzzing","advanced/testing.html#recommended-tool-cargo-fuzz","advanced/testing.html#priority-fuzz-targets-for-jacs","advanced/testing.html#best-practices","advanced/testing.html#1-isolate-tests","advanced/testing.html#2-test-edge-cases","advanced/testing.html#3-test-security-properties","advanced/testing.html#4-test-error-handling","advanced/testing.html#see-also","integrations/mcp.html#model-context-protocol-mcp","integrations/mcp.html#what-is-mcp","integrations/mcp.html#why-jacs--mcp","integrations/mcp.html#architecture","integrations/mcp.html#how-it-works","integrations/mcp.html#quick-start","integrations/mcp.html#nodejs","integrations/mcp.html#python","integrations/mcp.html#language-support","integrations/mcp.html#nodejs-haiaijacs","integrations/mcp.html#python-jacspy","integrations/mcp.html#message-flow","integrations/mcp.html#tool-call-example","integrations/mcp.html#signed-message-structure","integrations/mcp.html#configuration","integrations/mcp.html#server-configuration","integrations/mcp.html#client-configuration","integrations/mcp.html#transports","integrations/mcp.html#stdio","integrations/mcp.html#server-sent-events-sse","integrations/mcp.html#security-model","integrations/mcp.html#signing-is-sacred","integrations/mcp.html#what-gets-signed","integrations/mcp.html#what-gets-verified","integrations/mcp.html#passthrough-mode","integrations/mcp.html#debugging","integrations/mcp.html#enable-debug-logging","integrations/mcp.html#common-issues","integrations/mcp.html#best-practices","integrations/mcp.html#1-separate-keys-for-server-and-client","integrations/mcp.html#2-use-tls-for-network-transports","integrations/mcp.html#3-implement-key-rotation","integrations/mcp.html#4-log-security-events","integrations/mcp.html#example-multi-agent-system","integrations/mcp.html#hai-mcp-server-tools","integrations/mcp.html#identity--registration-tools","integrations/mcp.html#agent-state-tools","integrations/mcp.html#see-also","integrations/a2a.html#a2a-interoperability","integrations/a2a.html#what-jacs-adds","integrations/a2a.html#interoperability-contract","integrations/a2a.html#verification-model","integrations/a2a.html#12-factor-runtime-configuration","integrations/a2a.html#rust-example","integrations/a2a.html#python-example","integrations/a2a.html#nodejs-example","integrations/a2a.html#devex-expectations","integrations/a2a.html#troubleshooting","integrations/openclaw.html#openclaw-integration","integrations/openclaw.html#overview","integrations/openclaw.html#installation","integrations/openclaw.html#setup","integrations/openclaw.html#initialize-jacs-identity","integrations/openclaw.html#configuration","integrations/openclaw.html#configuration-options","integrations/openclaw.html#directory-structure","integrations/openclaw.html#cli-commands","integrations/openclaw.html#status","integrations/openclaw.html#sign-document","integrations/openclaw.html#verify-document","integrations/openclaw.html#lookup-agent","integrations/openclaw.html#export-agent-card","integrations/openclaw.html#generate-dns-record","integrations/openclaw.html#agent-tools","integrations/openclaw.html#jacs_sign","integrations/openclaw.html#jacs_verify","integrations/openclaw.html#jacs_fetch_pubkey","integrations/openclaw.html#jacs_verify_with_key","integrations/openclaw.html#jacs_lookup_agent","integrations/openclaw.html#jacs_create_agreement","integrations/openclaw.html#well-known-endpoints","integrations/openclaw.html#well-knownagent-cardjson","integrations/openclaw.html#well-knownjacs-pubkeyjson","integrations/openclaw.html#p2p-agent-verification","integrations/openclaw.html#flow","integrations/openclaw.html#example-workflow","integrations/openclaw.html#dns-based-discovery","integrations/openclaw.html#generate-dns-record-1","integrations/openclaw.html#dns-lookup","integrations/openclaw.html#security","integrations/openclaw.html#key-protection","integrations/openclaw.html#post-quantum-cryptography","integrations/openclaw.html#signature-binding","integrations/openclaw.html#skill-usage","integrations/openclaw.html#troubleshooting","integrations/openclaw.html#jacs-not-initialized","integrations/openclaw.html#failed-to-fetch-public-key","integrations/openclaw.html#signature-verification-failed","integrations/openclaw.html#next-steps","integrations/web-servers.html#web-servers","integrations/web-servers.html#overview","integrations/web-servers.html#supported-frameworks","integrations/web-servers.html#requestresponse-flow","integrations/web-servers.html#nodejs-integration","integrations/web-servers.html#expressjs","integrations/web-servers.html#koa","integrations/web-servers.html#python-integration","integrations/web-servers.html#fastapi","integrations/web-servers.html#flask","integrations/web-servers.html#http-client","integrations/web-servers.html#nodejs-client","integrations/web-servers.html#python-client","integrations/web-servers.html#middleware-patterns","integrations/web-servers.html#route-level-protection","integrations/web-servers.html#multiple-agent-configurations","integrations/web-servers.html#validation-middleware","integrations/web-servers.html#content-type-considerations","integrations/web-servers.html#error-handling","integrations/web-servers.html#server-side-errors","integrations/web-servers.html#client-side-errors","integrations/web-servers.html#security-best-practices","integrations/web-servers.html#1-use-tls-in-production","integrations/web-servers.html#2-separate-server-and-client-keys","integrations/web-servers.html#3-middleware-order-matters","integrations/web-servers.html#4-avoid-json-body-parser-conflicts","integrations/web-servers.html#logging-and-auditing","integrations/web-servers.html#testing","integrations/web-servers.html#testing-with-supertest","integrations/web-servers.html#troubleshooting","integrations/web-servers.html#common-issues","integrations/web-servers.html#debug-logging","integrations/web-servers.html#see-also","integrations/databases.html#databases","integrations/databases.html#built-in-postgresql-backend","integrations/databases.html#custom-database-integrations","integrations/databases.html#why-use-a-custom-database-integration","integrations/databases.html#postgresql-integration","integrations/databases.html#schema-design","integrations/databases.html#nodejs-example","integrations/databases.html#python-example","integrations/databases.html#mongodb-integration","integrations/databases.html#collection-design","integrations/databases.html#example","integrations/databases.html#sqlite-integration","integrations/databases.html#redis-caching","integrations/databases.html#indexing-strategies","integrations/databases.html#extracting-searchable-fields","integrations/databases.html#full-text-search","integrations/databases.html#best-practices","integrations/databases.html#1-store-complete-documents","integrations/databases.html#2-verify-after-retrieval","integrations/databases.html#3-handle-version-history","integrations/databases.html#4-batch-verification","integrations/databases.html#see-also","examples/cli.html#cli-examples","examples/cli.html#quick-reference","examples/cli.html#getting-started","examples/cli.html#first-time-setup","examples/cli.html#verify-your-setup","examples/cli.html#document-operations","examples/cli.html#creating-documents","examples/cli.html#verifying-documents","examples/cli.html#updating-documents","examples/cli.html#extracting-embedded-content","examples/cli.html#agreement-workflows","examples/cli.html#creating-an-agreement","examples/cli.html#signing-an-agreement","examples/cli.html#complete-agreement-workflow","examples/cli.html#agent-operations","examples/cli.html#creating-a-custom-agent","examples/cli.html#dns-based-identity","examples/cli.html#agent-verification","examples/cli.html#task-management","examples/cli.html#creating-tasks","examples/cli.html#scripting-examples","examples/cli.html#batch-document-processing","examples/cli.html#verification-report","examples/cli.html#watch-for-new-documents","examples/cli.html#environment-configuration","examples/cli.html#using-environment-variables","examples/cli.html#multiple-configurations","examples/cli.html#error-handling","examples/cli.html#understanding-exit-codes","examples/cli.html#handling-failures","examples/cli.html#see-also","examples/nodejs.html#nodejs-examples","examples/nodejs.html#setup","examples/nodejs.html#basic-document-operations","examples/nodejs.html#creating-and-signing-documents","examples/nodejs.html#verifying-documents","examples/nodejs.html#updating-documents","examples/nodejs.html#http-server-with-express","examples/nodejs.html#complete-express-server","examples/nodejs.html#http-client","examples/nodejs.html#mcp-integration","examples/nodejs.html#mcp-server","examples/nodejs.html#mcp-client","examples/nodejs.html#agreements","examples/nodejs.html#creating-multi-party-agreements","examples/nodejs.html#signing-agreements","examples/nodejs.html#checking-agreement-status","examples/nodejs.html#document-store","examples/nodejs.html#simple-file-based-store","examples/nodejs.html#error-handling","examples/nodejs.html#robust-error-handling-pattern","examples/nodejs.html#testing","examples/nodejs.html#jest-test-setup","examples/nodejs.html#see-also","examples/python.html#python-examples","examples/python.html#setup","examples/python.html#basic-document-operations","examples/python.html#creating-and-signing-documents","examples/python.html#verifying-documents","examples/python.html#updating-documents","examples/python.html#http-server-with-fastapi","examples/python.html#complete-fastapi-server","examples/python.html#http-client","examples/python.html#mcp-integration","examples/python.html#fastmcp-server-with-jacs","examples/python.html#mcp-client-with-jacs","examples/python.html#agreements","examples/python.html#creating-multi-party-agreements","examples/python.html#signing-agreements","examples/python.html#checking-agreement-status","examples/python.html#document-store","examples/python.html#simple-file-based-store","examples/python.html#batch-processing","examples/python.html#batch-document-creator","examples/python.html#testing","examples/python.html#pytest-setup","examples/python.html#error-handling","examples/python.html#robust-error-handling-pattern","examples/python.html#see-also","examples/integrations.html#integration-examples","examples/integrations.html#multi-agent-contract-signing-system","examples/integrations.html#overview","examples/integrations.html#implementation","examples/integrations.html#secure-api-gateway-with-mcp-tools","examples/integrations.html#nodejs-implementation","examples/integrations.html#python-implementation","examples/integrations.html#document-audit-trail-system","examples/integrations.html#multi-tenant-document-service","examples/integrations.html#webhook-notification-system","examples/integrations.html#see-also","reference/cli-commands.html#cli-command-reference","reference/cli-commands.html#global-commands","reference/cli-commands.html#jacs-version","reference/cli-commands.html#jacs-init","reference/cli-commands.html#jacs-help","reference/cli-commands.html#configuration-commands","reference/cli-commands.html#jacs-config","reference/cli-commands.html#agent-commands","reference/cli-commands.html#jacs-agent","reference/cli-commands.html#task-commands","reference/cli-commands.html#jacs-task","reference/cli-commands.html#document-commands","reference/cli-commands.html#jacs-document-create","reference/cli-commands.html#jacs-document-update","reference/cli-commands.html#jacs-document-verify","reference/cli-commands.html#jacs-document-extract","reference/cli-commands.html#agreement-commands","reference/cli-commands.html#common-patterns","reference/cli-commands.html#basic-document-lifecycle","reference/cli-commands.html#working-with-attachments","reference/cli-commands.html#schema-validation-workflow","reference/cli-commands.html#global-options","reference/cli-commands.html#exit-codes","reference/cli-commands.html#environment-variables","reference/cli-commands.html#file-formats","reference/cli-commands.html#input-files","reference/cli-commands.html#output-files","reference/configuration.html#configuration-reference","reference/configuration.html#overview","reference/configuration.html#key-resolution-for-verifiers","reference/configuration.html#complete-example-configuration","reference/configuration.html#observability-configuration","reference/configuration.html#logs-configuration","reference/configuration.html#metrics-configuration","reference/configuration.html#tracing-configuration","reference/configuration.html#authentication--headers","reference/configuration.html#common-patterns","reference/configuration.html#development-configuration","reference/configuration.html#production-configuration","reference/configuration.html#file-based-configuration","reference/configuration.html#environment-variable-integration","reference/configuration.html#required-environment-variable","reference/configuration.html#configuration-based-settings","reference/configuration.html#storage-configuration","reference/configuration.html#available-storage-backends","reference/configuration.html#backend-specific-configuration","reference/configuration.html#storage-behavior","reference/configuration.html#configuration-examples","reference/configuration.html#security-considerations","reference/configuration.html#migration-between-storage-backends","reference/errors.html#error-codes","reference/errors.html#cli-exit-codes","reference/errors.html#configuration-errors","reference/errors.html#missing-configuration","reference/errors.html#invalid-configuration","reference/errors.html#key-directory-not-found","reference/errors.html#cryptographic-errors","reference/errors.html#private-key-not-found","reference/errors.html#invalid-key-format","reference/errors.html#key-password-required","reference/errors.html#algorithm-mismatch","reference/errors.html#signature-errors","reference/errors.html#verification-failed","reference/errors.html#missing-signature","reference/errors.html#invalid-signature-format","reference/errors.html#unknown-signing-algorithm","reference/errors.html#dns-verification-errors","reference/errors.html#dnssec-validation-failed","reference/errors.html#dns-record-not-found","reference/errors.html#dns-required","reference/errors.html#dns-lookup-timeout","reference/errors.html#document-errors","reference/errors.html#invalid-json","reference/errors.html#schema-validation-failed","reference/errors.html#document-not-found","reference/errors.html#version-mismatch","reference/errors.html#agreement-errors","reference/errors.html#agreement-not-found","reference/errors.html#already-signed","reference/errors.html#not-authorized","reference/errors.html#agreement-locked","reference/errors.html#storage-errors","reference/errors.html#storage-backend-error","reference/errors.html#aws-s3-error","reference/errors.html#connection-error","reference/errors.html#httpmcp-errors","reference/errors.html#request-verification-failed","reference/errors.html#response-verification-failed","reference/errors.html#middleware-configuration-error","reference/errors.html#debugging-tips","reference/errors.html#enable-verbose-output","reference/errors.html#check-configuration","reference/errors.html#verify-agent","reference/errors.html#test-signing","reference/errors.html#see-also","reference/migration.html#migration-guide","reference/migration.html#version-compatibility","reference/migration.html#migrating-from-051-to-052","reference/migration.html#migration-notes","reference/migration.html#deprecated-environment-variables","reference/migration.html#new-environment-variables","reference/migration.html#migrating-from-02x-to-03x","reference/migration.html#configuration-changes","reference/migration.html#migration-steps","reference/migration.html#migrating-storage-backends","reference/migration.html#filesystem-to-aws-s3","reference/migration.html#aws-s3-to-filesystem","reference/migration.html#migrating-cryptographic-algorithms","reference/migration.html#ed25519-to-post-quantum","reference/migration.html#migrating-between-platforms","reference/migration.html#nodejs-to-python","reference/migration.html#sharing-agents-between-platforms","reference/migration.html#migrating-key-formats","reference/migration.html#unencrypted-to-encrypted-keys","reference/migration.html#database-migration","reference/migration.html#adding-database-storage","reference/migration.html#mcp-integration-migration","reference/migration.html#adding-jacs-to-existing-mcp-server","reference/migration.html#http-api-migration","reference/migration.html#adding-jacs-to-existing-express-api","reference/migration.html#troubleshooting-migration","reference/migration.html#common-issues","reference/migration.html#verification-checklist","reference/migration.html#rollback-procedures","reference/migration.html#see-also"],"index":{"documentStore":{"docInfo":{"0":{"body":24,"breadcrumbs":6,"title":5},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":8,"breadcrumbs":2,"title":1},"100":{"body":10,"breadcrumbs":2,"title":1},"1000":{"body":22,"breadcrumbs":5,"title":3},"1001":{"body":42,"breadcrumbs":5,"title":3},"1002":{"body":7,"breadcrumbs":6,"title":4},"1003":{"body":33,"breadcrumbs":6,"title":4},"1004":{"body":9,"breadcrumbs":5,"title":3},"1005":{"body":0,"breadcrumbs":4,"title":2},"1006":{"body":22,"breadcrumbs":4,"title":2},"1007":{"body":24,"breadcrumbs":4,"title":2},"1008":{"body":14,"breadcrumbs":4,"title":2},"1009":{"body":0,"breadcrumbs":4,"title":2},"101":{"body":12,"breadcrumbs":4,"title":3},"1010":{"body":15,"breadcrumbs":4,"title":2},"1011":{"body":19,"breadcrumbs":5,"title":3},"1012":{"body":21,"breadcrumbs":5,"title":3},"1013":{"body":15,"breadcrumbs":3,"title":1},"1014":{"body":18,"breadcrumbs":4,"title":2},"1015":{"body":54,"breadcrumbs":4,"title":2},"1016":{"body":4,"breadcrumbs":5,"title":3},"1017":{"body":13,"breadcrumbs":3,"title":1},"1018":{"body":24,"breadcrumbs":3,"title":1},"1019":{"body":3,"breadcrumbs":3,"title":1},"102":{"body":0,"breadcrumbs":3,"title":2},"1020":{"body":11,"breadcrumbs":4,"title":2},"1021":{"body":21,"breadcrumbs":3,"title":1},"1022":{"body":7,"breadcrumbs":4,"title":2},"1023":{"body":14,"breadcrumbs":3,"title":1},"1024":{"body":24,"breadcrumbs":3,"title":1},"1025":{"body":3,"breadcrumbs":3,"title":1},"1026":{"body":10,"breadcrumbs":4,"title":2},"1027":{"body":12,"breadcrumbs":3,"title":1},"1028":{"body":7,"breadcrumbs":5,"title":3},"1029":{"body":18,"breadcrumbs":3,"title":1},"103":{"body":5,"breadcrumbs":3,"title":2},"1030":{"body":27,"breadcrumbs":3,"title":1},"1031":{"body":3,"breadcrumbs":3,"title":1},"1032":{"body":14,"breadcrumbs":4,"title":2},"1033":{"body":13,"breadcrumbs":3,"title":1},"1034":{"body":8,"breadcrumbs":4,"title":2},"1035":{"body":18,"breadcrumbs":3,"title":1},"1036":{"body":20,"breadcrumbs":3,"title":1},"1037":{"body":2,"breadcrumbs":3,"title":1},"1038":{"body":12,"breadcrumbs":4,"title":2},"1039":{"body":8,"breadcrumbs":3,"title":1},"104":{"body":10,"breadcrumbs":2,"title":1},"1040":{"body":0,"breadcrumbs":5,"title":3},"1041":{"body":26,"breadcrumbs":4,"title":2},"1042":{"body":41,"breadcrumbs":4,"title":2},"1043":{"body":20,"breadcrumbs":4,"title":2},"1044":{"body":30,"breadcrumbs":4,"title":2},"1045":{"body":46,"breadcrumbs":4,"title":2},"1046":{"body":20,"breadcrumbs":3,"title":1},"1047":{"body":56,"breadcrumbs":4,"title":2},"1048":{"body":32,"breadcrumbs":4,"title":2},"1049":{"body":0,"breadcrumbs":4,"title":2},"105":{"body":2,"breadcrumbs":3,"title":2},"1050":{"body":15,"breadcrumbs":4,"title":2},"1051":{"body":13,"breadcrumbs":4,"title":2},"1052":{"body":19,"breadcrumbs":4,"title":2},"1053":{"body":14,"breadcrumbs":3,"title":1},"1054":{"body":17,"breadcrumbs":4,"title":2},"1055":{"body":31,"breadcrumbs":4,"title":2},"1056":{"body":8,"breadcrumbs":3,"title":1},"1057":{"body":9,"breadcrumbs":5,"title":3},"1058":{"body":4,"breadcrumbs":3,"title":1},"1059":{"body":14,"breadcrumbs":4,"title":2},"106":{"body":6,"breadcrumbs":3,"title":2},"1060":{"body":10,"breadcrumbs":4,"title":2},"1061":{"body":10,"breadcrumbs":3,"title":1},"1062":{"body":10,"breadcrumbs":3,"title":1},"1063":{"body":21,"breadcrumbs":3,"title":1},"1064":{"body":6,"breadcrumbs":6,"title":4},"1065":{"body":6,"breadcrumbs":3,"title":1},"1066":{"body":12,"breadcrumbs":4,"title":2},"1067":{"body":16,"breadcrumbs":4,"title":2},"1068":{"body":10,"breadcrumbs":4,"title":2},"1069":{"body":10,"breadcrumbs":3,"title":1},"107":{"body":49,"breadcrumbs":3,"title":2},"1070":{"body":10,"breadcrumbs":3,"title":1},"1071":{"body":22,"breadcrumbs":4,"title":2},"1072":{"body":27,"breadcrumbs":3,"title":1},"1073":{"body":4,"breadcrumbs":6,"title":4},"1074":{"body":2,"breadcrumbs":3,"title":1},"1075":{"body":12,"breadcrumbs":3,"title":1},"1076":{"body":11,"breadcrumbs":4,"title":2},"1077":{"body":28,"breadcrumbs":6,"title":4},"1078":{"body":19,"breadcrumbs":5,"title":3},"1079":{"body":24,"breadcrumbs":3,"title":1},"108":{"body":41,"breadcrumbs":3,"title":2},"1080":{"body":37,"breadcrumbs":3,"title":1},"1081":{"body":29,"breadcrumbs":4,"title":2},"1082":{"body":24,"breadcrumbs":4,"title":2},"1083":{"body":43,"breadcrumbs":4,"title":2},"1084":{"body":53,"breadcrumbs":5,"title":3},"1085":{"body":17,"breadcrumbs":4,"title":2},"1086":{"body":22,"breadcrumbs":4,"title":2},"1087":{"body":17,"breadcrumbs":3,"title":1},"1088":{"body":31,"breadcrumbs":4,"title":2},"1089":{"body":29,"breadcrumbs":5,"title":3},"109":{"body":29,"breadcrumbs":3,"title":2},"1090":{"body":0,"breadcrumbs":4,"title":2},"1091":{"body":17,"breadcrumbs":4,"title":2},"1092":{"body":19,"breadcrumbs":4,"title":2},"1093":{"body":0,"breadcrumbs":4,"title":2},"1094":{"body":40,"breadcrumbs":4,"title":2},"1095":{"body":16,"breadcrumbs":3,"title":1},"1096":{"body":0,"breadcrumbs":4,"title":2},"1097":{"body":12,"breadcrumbs":4,"title":2},"1098":{"body":16,"breadcrumbs":4,"title":2},"1099":{"body":14,"breadcrumbs":5,"title":3},"11":{"body":39,"breadcrumbs":3,"title":2},"110":{"body":18,"breadcrumbs":3,"title":2},"1100":{"body":0,"breadcrumbs":4,"title":2},"1101":{"body":10,"breadcrumbs":3,"title":1},"1102":{"body":14,"breadcrumbs":3,"title":1},"1103":{"body":15,"breadcrumbs":3,"title":1},"1104":{"body":0,"breadcrumbs":4,"title":2},"1105":{"body":8,"breadcrumbs":3,"title":1},"1106":{"body":25,"breadcrumbs":3,"title":1},"1107":{"body":12,"breadcrumbs":3,"title":1},"1108":{"body":18,"breadcrumbs":4,"title":2},"1109":{"body":24,"breadcrumbs":3,"title":1},"111":{"body":20,"breadcrumbs":2,"title":1},"1110":{"body":0,"breadcrumbs":5,"title":3},"1111":{"body":48,"breadcrumbs":4,"title":2},"1112":{"body":161,"breadcrumbs":5,"title":3},"1113":{"body":0,"breadcrumbs":5,"title":3},"1114":{"body":7,"breadcrumbs":5,"title":3},"1115":{"body":16,"breadcrumbs":4,"title":2},"1116":{"body":19,"breadcrumbs":5,"title":3},"1117":{"body":33,"breadcrumbs":5,"title":3},"1118":{"body":0,"breadcrumbs":5,"title":3},"1119":{"body":31,"breadcrumbs":4,"title":2},"112":{"body":19,"breadcrumbs":3,"title":2},"1120":{"body":28,"breadcrumbs":4,"title":2},"1121":{"body":13,"breadcrumbs":4,"title":2},"1122":{"body":13,"breadcrumbs":4,"title":2},"1123":{"body":0,"breadcrumbs":4,"title":2},"1124":{"body":56,"breadcrumbs":5,"title":3},"1125":{"body":0,"breadcrumbs":3,"title":1},"1126":{"body":31,"breadcrumbs":4,"title":2},"1127":{"body":42,"breadcrumbs":4,"title":2},"1128":{"body":0,"breadcrumbs":4,"title":2},"1129":{"body":58,"breadcrumbs":4,"title":2},"113":{"body":45,"breadcrumbs":3,"title":2},"1130":{"body":59,"breadcrumbs":4,"title":2},"1131":{"body":54,"breadcrumbs":5,"title":3},"1132":{"body":0,"breadcrumbs":4,"title":2},"1133":{"body":2,"breadcrumbs":4,"title":2},"1134":{"body":6,"breadcrumbs":4,"title":2},"1135":{"body":15,"breadcrumbs":4,"title":2},"1136":{"body":12,"breadcrumbs":3,"title":1},"1137":{"body":14,"breadcrumbs":2,"title":1},"1138":{"body":0,"breadcrumbs":3,"title":2},"1139":{"body":23,"breadcrumbs":4,"title":3},"114":{"body":0,"breadcrumbs":2,"title":1},"1140":{"body":169,"breadcrumbs":3,"title":2},"1141":{"body":0,"breadcrumbs":3,"title":2},"1142":{"body":63,"breadcrumbs":4,"title":3},"1143":{"body":64,"breadcrumbs":3,"title":2},"1144":{"body":33,"breadcrumbs":5,"title":4},"1145":{"body":187,"breadcrumbs":7,"title":6},"1146":{"body":28,"breadcrumbs":4,"title":3},"1147":{"body":0,"breadcrumbs":3,"title":2},"1148":{"body":125,"breadcrumbs":4,"title":3},"1149":{"body":63,"breadcrumbs":4,"title":3},"115":{"body":34,"breadcrumbs":3,"title":2},"1150":{"body":0,"breadcrumbs":2,"title":1},"1151":{"body":93,"breadcrumbs":4,"title":3},"1152":{"body":27,"breadcrumbs":4,"title":3},"1153":{"body":0,"breadcrumbs":3,"title":2},"1154":{"body":96,"breadcrumbs":3,"title":2},"1155":{"body":13,"breadcrumbs":3,"title":2},"1156":{"body":10,"breadcrumbs":3,"title":2},"1157":{"body":0,"breadcrumbs":3,"title":2},"1158":{"body":55,"breadcrumbs":3,"title":2},"1159":{"body":7,"breadcrumbs":4,"title":3},"116":{"body":30,"breadcrumbs":3,"title":2},"1160":{"body":22,"breadcrumbs":5,"title":4},"1161":{"body":140,"breadcrumbs":3,"title":2},"1162":{"body":15,"breadcrumbs":4,"title":3},"1163":{"body":39,"breadcrumbs":4,"title":3},"1164":{"body":12,"breadcrumbs":2,"title":1},"1165":{"body":22,"breadcrumbs":5,"title":4},"1166":{"body":31,"breadcrumbs":5,"title":4},"1167":{"body":0,"breadcrumbs":3,"title":2},"1168":{"body":17,"breadcrumbs":4,"title":3},"1169":{"body":33,"breadcrumbs":5,"title":4},"117":{"body":16,"breadcrumbs":3,"title":2},"1170":{"body":21,"breadcrumbs":5,"title":4},"1171":{"body":20,"breadcrumbs":5,"title":4},"1172":{"body":15,"breadcrumbs":2,"title":1},"1173":{"body":18,"breadcrumbs":8,"title":4},"1174":{"body":38,"breadcrumbs":5,"title":1},"1175":{"body":51,"breadcrumbs":6,"title":2},"1176":{"body":27,"breadcrumbs":5,"title":1},"1177":{"body":30,"breadcrumbs":5,"title":1},"1178":{"body":0,"breadcrumbs":6,"title":2},"1179":{"body":60,"breadcrumbs":5,"title":1},"118":{"body":11,"breadcrumbs":4,"title":2},"1180":{"body":48,"breadcrumbs":5,"title":1},"1181":{"body":8,"breadcrumbs":6,"title":2},"1182":{"body":36,"breadcrumbs":6,"title":2},"1183":{"body":33,"breadcrumbs":6,"title":2},"1184":{"body":0,"breadcrumbs":6,"title":2},"1185":{"body":33,"breadcrumbs":7,"title":3},"1186":{"body":47,"breadcrumbs":7,"title":3},"1187":{"body":0,"breadcrumbs":5,"title":1},"1188":{"body":15,"breadcrumbs":6,"title":2},"1189":{"body":22,"breadcrumbs":6,"title":2},"119":{"body":16,"breadcrumbs":4,"title":2},"1190":{"body":0,"breadcrumbs":5,"title":1},"1191":{"body":29,"breadcrumbs":5,"title":1},"1192":{"body":48,"breadcrumbs":8,"title":4},"1193":{"body":0,"breadcrumbs":6,"title":2},"1194":{"body":122,"breadcrumbs":6,"title":2},"1195":{"body":13,"breadcrumbs":6,"title":2},"1196":{"body":14,"breadcrumbs":6,"title":2},"1197":{"body":30,"breadcrumbs":6,"title":2},"1198":{"body":0,"breadcrumbs":5,"title":1},"1199":{"body":7,"breadcrumbs":7,"title":3},"12":{"body":0,"breadcrumbs":2,"title":1},"120":{"body":31,"breadcrumbs":4,"title":2},"1200":{"body":35,"breadcrumbs":6,"title":2},"1201":{"body":0,"breadcrumbs":6,"title":2},"1202":{"body":11,"breadcrumbs":9,"title":5},"1203":{"body":5,"breadcrumbs":9,"title":5},"1204":{"body":7,"breadcrumbs":8,"title":4},"1205":{"body":7,"breadcrumbs":8,"title":4},"1206":{"body":48,"breadcrumbs":8,"title":4},"1207":{"body":8,"breadcrumbs":8,"title":4},"1208":{"body":32,"breadcrumbs":7,"title":3},"1209":{"body":75,"breadcrumbs":7,"title":3},"121":{"body":0,"breadcrumbs":3,"title":1},"1210":{"body":25,"breadcrumbs":5,"title":1},"1211":{"body":10,"breadcrumbs":4,"title":2},"1212":{"body":33,"breadcrumbs":4,"title":2},"1213":{"body":30,"breadcrumbs":4,"title":2},"1214":{"body":47,"breadcrumbs":4,"title":2},"1215":{"body":19,"breadcrumbs":6,"title":4},"1216":{"body":20,"breadcrumbs":4,"title":2},"1217":{"body":21,"breadcrumbs":4,"title":2},"1218":{"body":21,"breadcrumbs":4,"title":2},"1219":{"body":35,"breadcrumbs":4,"title":2},"122":{"body":18,"breadcrumbs":4,"title":2},"1220":{"body":28,"breadcrumbs":3,"title":1},"1221":{"body":16,"breadcrumbs":3,"title":2},"1222":{"body":42,"breadcrumbs":2,"title":1},"1223":{"body":8,"breadcrumbs":2,"title":1},"1224":{"body":0,"breadcrumbs":2,"title":1},"1225":{"body":20,"breadcrumbs":4,"title":3},"1226":{"body":31,"breadcrumbs":2,"title":1},"1227":{"body":49,"breadcrumbs":3,"title":2},"1228":{"body":29,"breadcrumbs":3,"title":2},"1229":{"body":0,"breadcrumbs":3,"title":2},"123":{"body":0,"breadcrumbs":4,"title":2},"1230":{"body":11,"breadcrumbs":2,"title":1},"1231":{"body":9,"breadcrumbs":3,"title":2},"1232":{"body":8,"breadcrumbs":3,"title":2},"1233":{"body":11,"breadcrumbs":3,"title":2},"1234":{"body":9,"breadcrumbs":4,"title":3},"1235":{"body":13,"breadcrumbs":4,"title":3},"1236":{"body":6,"breadcrumbs":3,"title":2},"1237":{"body":13,"breadcrumbs":2,"title":1},"1238":{"body":10,"breadcrumbs":2,"title":1},"1239":{"body":11,"breadcrumbs":2,"title":1},"124":{"body":11,"breadcrumbs":4,"title":2},"1240":{"body":16,"breadcrumbs":2,"title":1},"1241":{"body":10,"breadcrumbs":2,"title":1},"1242":{"body":23,"breadcrumbs":2,"title":1},"1243":{"body":5,"breadcrumbs":4,"title":3},"1244":{"body":6,"breadcrumbs":4,"title":3},"1245":{"body":20,"breadcrumbs":4,"title":3},"1246":{"body":6,"breadcrumbs":4,"title":3},"1247":{"body":34,"breadcrumbs":2,"title":1},"1248":{"body":55,"breadcrumbs":3,"title":2},"1249":{"body":8,"breadcrumbs":4,"title":3},"125":{"body":13,"breadcrumbs":4,"title":2},"1250":{"body":20,"breadcrumbs":4,"title":3},"1251":{"body":23,"breadcrumbs":3,"title":2},"1252":{"body":0,"breadcrumbs":2,"title":1},"1253":{"body":18,"breadcrumbs":3,"title":2},"1254":{"body":15,"breadcrumbs":4,"title":3},"1255":{"body":14,"breadcrumbs":3,"title":2},"1256":{"body":20,"breadcrumbs":3,"title":2},"1257":{"body":0,"breadcrumbs":2,"title":1},"1258":{"body":8,"breadcrumbs":3,"title":2},"1259":{"body":7,"breadcrumbs":5,"title":4},"126":{"body":0,"breadcrumbs":4,"title":2},"1260":{"body":13,"breadcrumbs":4,"title":3},"1261":{"body":15,"breadcrumbs":3,"title":2},"1262":{"body":13,"breadcrumbs":4,"title":2},"1263":{"body":31,"breadcrumbs":3,"title":1},"1264":{"body":15,"breadcrumbs":4,"title":2},"1265":{"body":14,"breadcrumbs":4,"title":2},"1266":{"body":0,"breadcrumbs":4,"title":2},"1267":{"body":55,"breadcrumbs":3,"title":1},"1268":{"body":56,"breadcrumbs":3,"title":1},"1269":{"body":0,"breadcrumbs":4,"title":2},"127":{"body":51,"breadcrumbs":4,"title":2},"1270":{"body":71,"breadcrumbs":3,"title":1},"1271":{"body":62,"breadcrumbs":3,"title":1},"1272":{"body":0,"breadcrumbs":4,"title":2},"1273":{"body":55,"breadcrumbs":4,"title":2},"1274":{"body":43,"breadcrumbs":4,"title":2},"1275":{"body":0,"breadcrumbs":4,"title":2},"1276":{"body":49,"breadcrumbs":5,"title":3},"1277":{"body":29,"breadcrumbs":5,"title":3},"1278":{"body":34,"breadcrumbs":4,"title":2},"1279":{"body":33,"breadcrumbs":5,"title":3},"128":{"body":69,"breadcrumbs":4,"title":2},"1280":{"body":0,"breadcrumbs":4,"title":2},"1281":{"body":35,"breadcrumbs":5,"title":3},"1282":{"body":16,"breadcrumbs":5,"title":3},"1283":{"body":0,"breadcrumbs":5,"title":3},"1284":{"body":9,"breadcrumbs":6,"title":4},"1285":{"body":16,"breadcrumbs":7,"title":5},"1286":{"body":30,"breadcrumbs":6,"title":4},"1287":{"body":19,"breadcrumbs":8,"title":6},"1288":{"body":34,"breadcrumbs":4,"title":2},"1289":{"body":0,"breadcrumbs":3,"title":1},"129":{"body":76,"breadcrumbs":4,"title":2},"1290":{"body":62,"breadcrumbs":4,"title":2},"1291":{"body":0,"breadcrumbs":3,"title":1},"1292":{"body":39,"breadcrumbs":4,"title":2},"1293":{"body":7,"breadcrumbs":4,"title":2},"1294":{"body":22,"breadcrumbs":3,"title":1},"1295":{"body":28,"breadcrumbs":2,"title":1},"1296":{"body":38,"breadcrumbs":4,"title":3},"1297":{"body":67,"breadcrumbs":4,"title":3},"1298":{"body":34,"breadcrumbs":5,"title":4},"1299":{"body":0,"breadcrumbs":3,"title":2},"13":{"body":16,"breadcrumbs":4,"title":3},"130":{"body":27,"breadcrumbs":4,"title":2},"1300":{"body":67,"breadcrumbs":3,"title":2},"1301":{"body":173,"breadcrumbs":3,"title":2},"1302":{"body":175,"breadcrumbs":3,"title":2},"1303":{"body":0,"breadcrumbs":3,"title":2},"1304":{"body":54,"breadcrumbs":3,"title":2},"1305":{"body":112,"breadcrumbs":2,"title":1},"1306":{"body":140,"breadcrumbs":3,"title":2},"1307":{"body":82,"breadcrumbs":3,"title":2},"1308":{"body":0,"breadcrumbs":3,"title":2},"1309":{"body":33,"breadcrumbs":4,"title":3},"131":{"body":0,"breadcrumbs":4,"title":2},"1310":{"body":80,"breadcrumbs":4,"title":3},"1311":{"body":0,"breadcrumbs":3,"title":2},"1312":{"body":40,"breadcrumbs":5,"title":4},"1313":{"body":39,"breadcrumbs":4,"title":3},"1314":{"body":22,"breadcrumbs":5,"title":4},"1315":{"body":37,"breadcrumbs":4,"title":3},"1316":{"body":13,"breadcrumbs":2,"title":1},"1317":{"body":9,"breadcrumbs":4,"title":2},"1318":{"body":31,"breadcrumbs":4,"title":2},"1319":{"body":0,"breadcrumbs":4,"title":2},"132":{"body":62,"breadcrumbs":4,"title":2},"1320":{"body":30,"breadcrumbs":5,"title":3},"1321":{"body":29,"breadcrumbs":4,"title":2},"1322":{"body":0,"breadcrumbs":4,"title":2},"1323":{"body":118,"breadcrumbs":4,"title":2},"1324":{"body":73,"breadcrumbs":4,"title":2},"1325":{"body":69,"breadcrumbs":4,"title":2},"1326":{"body":21,"breadcrumbs":5,"title":3},"1327":{"body":0,"breadcrumbs":4,"title":2},"1328":{"body":72,"breadcrumbs":4,"title":2},"1329":{"body":65,"breadcrumbs":4,"title":2},"133":{"body":0,"breadcrumbs":4,"title":2},"1330":{"body":159,"breadcrumbs":5,"title":3},"1331":{"body":0,"breadcrumbs":4,"title":2},"1332":{"body":54,"breadcrumbs":5,"title":3},"1333":{"body":93,"breadcrumbs":5,"title":3},"1334":{"body":47,"breadcrumbs":4,"title":2},"1335":{"body":0,"breadcrumbs":4,"title":2},"1336":{"body":45,"breadcrumbs":4,"title":2},"1337":{"body":0,"breadcrumbs":4,"title":2},"1338":{"body":43,"breadcrumbs":5,"title":3},"1339":{"body":59,"breadcrumbs":4,"title":2},"134":{"body":118,"breadcrumbs":4,"title":2},"1340":{"body":52,"breadcrumbs":5,"title":3},"1341":{"body":0,"breadcrumbs":4,"title":2},"1342":{"body":36,"breadcrumbs":5,"title":3},"1343":{"body":32,"breadcrumbs":4,"title":2},"1344":{"body":0,"breadcrumbs":4,"title":2},"1345":{"body":36,"breadcrumbs":5,"title":3},"1346":{"body":56,"breadcrumbs":4,"title":2},"1347":{"body":16,"breadcrumbs":3,"title":1},"1348":{"body":8,"breadcrumbs":4,"title":2},"1349":{"body":21,"breadcrumbs":3,"title":1},"135":{"body":65,"breadcrumbs":4,"title":2},"1350":{"body":0,"breadcrumbs":5,"title":3},"1351":{"body":58,"breadcrumbs":5,"title":3},"1352":{"body":49,"breadcrumbs":4,"title":2},"1353":{"body":68,"breadcrumbs":4,"title":2},"1354":{"body":0,"breadcrumbs":5,"title":3},"1355":{"body":173,"breadcrumbs":5,"title":3},"1356":{"body":85,"breadcrumbs":4,"title":2},"1357":{"body":0,"breadcrumbs":4,"title":2},"1358":{"body":149,"breadcrumbs":4,"title":2},"1359":{"body":98,"breadcrumbs":4,"title":2},"136":{"body":62,"breadcrumbs":4,"title":2},"1360":{"body":0,"breadcrumbs":3,"title":1},"1361":{"body":91,"breadcrumbs":6,"title":4},"1362":{"body":56,"breadcrumbs":4,"title":2},"1363":{"body":45,"breadcrumbs":5,"title":3},"1364":{"body":0,"breadcrumbs":4,"title":2},"1365":{"body":152,"breadcrumbs":6,"title":4},"1366":{"body":0,"breadcrumbs":4,"title":2},"1367":{"body":130,"breadcrumbs":6,"title":4},"1368":{"body":0,"breadcrumbs":3,"title":1},"1369":{"body":137,"breadcrumbs":5,"title":3},"137":{"body":17,"breadcrumbs":5,"title":3},"1370":{"body":18,"breadcrumbs":3,"title":1},"1371":{"body":9,"breadcrumbs":4,"title":2},"1372":{"body":15,"breadcrumbs":3,"title":1},"1373":{"body":0,"breadcrumbs":5,"title":3},"1374":{"body":56,"breadcrumbs":5,"title":3},"1375":{"body":48,"breadcrumbs":4,"title":2},"1376":{"body":63,"breadcrumbs":4,"title":2},"1377":{"body":0,"breadcrumbs":5,"title":3},"1378":{"body":208,"breadcrumbs":5,"title":3},"1379":{"body":69,"breadcrumbs":4,"title":2},"138":{"body":59,"breadcrumbs":4,"title":2},"1380":{"body":0,"breadcrumbs":4,"title":2},"1381":{"body":108,"breadcrumbs":5,"title":3},"1382":{"body":58,"breadcrumbs":5,"title":3},"1383":{"body":0,"breadcrumbs":3,"title":1},"1384":{"body":88,"breadcrumbs":6,"title":4},"1385":{"body":53,"breadcrumbs":4,"title":2},"1386":{"body":42,"breadcrumbs":5,"title":3},"1387":{"body":0,"breadcrumbs":4,"title":2},"1388":{"body":143,"breadcrumbs":6,"title":4},"1389":{"body":0,"breadcrumbs":4,"title":2},"139":{"body":29,"breadcrumbs":4,"title":2},"1390":{"body":163,"breadcrumbs":5,"title":3},"1391":{"body":0,"breadcrumbs":3,"title":1},"1392":{"body":142,"breadcrumbs":4,"title":2},"1393":{"body":0,"breadcrumbs":4,"title":2},"1394":{"body":145,"breadcrumbs":6,"title":4},"1395":{"body":15,"breadcrumbs":3,"title":1},"1396":{"body":11,"breadcrumbs":4,"title":2},"1397":{"body":7,"breadcrumbs":7,"title":5},"1398":{"body":8,"breadcrumbs":3,"title":1},"1399":{"body":262,"breadcrumbs":3,"title":1},"14":{"body":13,"breadcrumbs":3,"title":2},"140":{"body":0,"breadcrumbs":4,"title":2},"1400":{"body":8,"breadcrumbs":7,"title":5},"1401":{"body":295,"breadcrumbs":4,"title":2},"1402":{"body":198,"breadcrumbs":4,"title":2},"1403":{"body":329,"breadcrumbs":6,"title":4},"1404":{"body":352,"breadcrumbs":6,"title":4},"1405":{"body":178,"breadcrumbs":5,"title":3},"1406":{"body":23,"breadcrumbs":3,"title":1},"1407":{"body":9,"breadcrumbs":6,"title":3},"1408":{"body":0,"breadcrumbs":5,"title":2},"1409":{"body":8,"breadcrumbs":5,"title":2},"141":{"body":23,"breadcrumbs":5,"title":3},"1410":{"body":17,"breadcrumbs":5,"title":2},"1411":{"body":8,"breadcrumbs":5,"title":2},"1412":{"body":0,"breadcrumbs":5,"title":2},"1413":{"body":15,"breadcrumbs":5,"title":2},"1414":{"body":0,"breadcrumbs":5,"title":2},"1415":{"body":20,"breadcrumbs":5,"title":2},"1416":{"body":0,"breadcrumbs":5,"title":2},"1417":{"body":20,"breadcrumbs":5,"title":2},"1418":{"body":8,"breadcrumbs":5,"title":2},"1419":{"body":157,"breadcrumbs":6,"title":3},"142":{"body":46,"breadcrumbs":5,"title":3},"1420":{"body":112,"breadcrumbs":6,"title":3},"1421":{"body":105,"breadcrumbs":6,"title":3},"1422":{"body":86,"breadcrumbs":6,"title":3},"1423":{"body":61,"breadcrumbs":5,"title":2},"1424":{"body":0,"breadcrumbs":5,"title":2},"1425":{"body":49,"breadcrumbs":6,"title":3},"1426":{"body":42,"breadcrumbs":5,"title":2},"1427":{"body":21,"breadcrumbs":6,"title":3},"1428":{"body":24,"breadcrumbs":5,"title":2},"1429":{"body":22,"breadcrumbs":5,"title":2},"143":{"body":18,"breadcrumbs":5,"title":3},"1430":{"body":18,"breadcrumbs":5,"title":2},"1431":{"body":0,"breadcrumbs":5,"title":2},"1432":{"body":27,"breadcrumbs":5,"title":2},"1433":{"body":14,"breadcrumbs":5,"title":2},"1434":{"body":0,"breadcrumbs":4,"title":2},"1435":{"body":0,"breadcrumbs":3,"title":1},"1436":{"body":52,"breadcrumbs":5,"title":3},"1437":{"body":77,"breadcrumbs":5,"title":3},"1438":{"body":15,"breadcrumbs":4,"title":2},"1439":{"body":91,"breadcrumbs":4,"title":2},"144":{"body":19,"breadcrumbs":4,"title":2},"1440":{"body":91,"breadcrumbs":4,"title":2},"1441":{"body":117,"breadcrumbs":4,"title":2},"1442":{"body":35,"breadcrumbs":4,"title":2},"1443":{"body":0,"breadcrumbs":4,"title":2},"1444":{"body":15,"breadcrumbs":4,"title":2},"1445":{"body":41,"breadcrumbs":4,"title":2},"1446":{"body":21,"breadcrumbs":5,"title":3},"1447":{"body":8,"breadcrumbs":5,"title":3},"1448":{"body":13,"breadcrumbs":5,"title":3},"1449":{"body":65,"breadcrumbs":5,"title":3},"145":{"body":15,"breadcrumbs":4,"title":2},"1450":{"body":15,"breadcrumbs":4,"title":2},"1451":{"body":53,"breadcrumbs":5,"title":3},"1452":{"body":103,"breadcrumbs":5,"title":3},"1453":{"body":30,"breadcrumbs":4,"title":2},"1454":{"body":39,"breadcrumbs":4,"title":2},"1455":{"body":33,"breadcrumbs":4,"title":2},"1456":{"body":36,"breadcrumbs":6,"title":4},"1457":{"body":8,"breadcrumbs":4,"title":2},"1458":{"body":40,"breadcrumbs":5,"title":3},"1459":{"body":0,"breadcrumbs":4,"title":2},"146":{"body":15,"breadcrumbs":4,"title":2},"1460":{"body":25,"breadcrumbs":4,"title":2},"1461":{"body":28,"breadcrumbs":4,"title":2},"1462":{"body":22,"breadcrumbs":5,"title":3},"1463":{"body":0,"breadcrumbs":4,"title":2},"1464":{"body":23,"breadcrumbs":5,"title":3},"1465":{"body":27,"breadcrumbs":5,"title":3},"1466":{"body":21,"breadcrumbs":5,"title":3},"1467":{"body":27,"breadcrumbs":4,"title":2},"1468":{"body":0,"breadcrumbs":4,"title":2},"1469":{"body":20,"breadcrumbs":4,"title":2},"147":{"body":20,"breadcrumbs":3,"title":1},"1470":{"body":20,"breadcrumbs":4,"title":2},"1471":{"body":20,"breadcrumbs":5,"title":3},"1472":{"body":22,"breadcrumbs":5,"title":3},"1473":{"body":0,"breadcrumbs":5,"title":3},"1474":{"body":35,"breadcrumbs":5,"title":3},"1475":{"body":37,"breadcrumbs":5,"title":3},"1476":{"body":30,"breadcrumbs":4,"title":2},"1477":{"body":22,"breadcrumbs":5,"title":3},"1478":{"body":0,"breadcrumbs":4,"title":2},"1479":{"body":24,"breadcrumbs":4,"title":2},"148":{"body":0,"breadcrumbs":5,"title":3},"1480":{"body":27,"breadcrumbs":5,"title":3},"1481":{"body":23,"breadcrumbs":4,"title":2},"1482":{"body":21,"breadcrumbs":4,"title":2},"1483":{"body":0,"breadcrumbs":4,"title":2},"1484":{"body":24,"breadcrumbs":4,"title":2},"1485":{"body":18,"breadcrumbs":4,"title":2},"1486":{"body":16,"breadcrumbs":3,"title":1},"1487":{"body":17,"breadcrumbs":4,"title":2},"1488":{"body":0,"breadcrumbs":4,"title":2},"1489":{"body":23,"breadcrumbs":5,"title":3},"149":{"body":16,"breadcrumbs":5,"title":3},"1490":{"body":23,"breadcrumbs":5,"title":3},"1491":{"body":22,"breadcrumbs":4,"title":2},"1492":{"body":0,"breadcrumbs":4,"title":2},"1493":{"body":24,"breadcrumbs":5,"title":3},"1494":{"body":19,"breadcrumbs":5,"title":3},"1495":{"body":18,"breadcrumbs":5,"title":3},"1496":{"body":0,"breadcrumbs":4,"title":2},"1497":{"body":13,"breadcrumbs":5,"title":3},"1498":{"body":6,"breadcrumbs":4,"title":2},"1499":{"body":8,"breadcrumbs":4,"title":2},"15":{"body":13,"breadcrumbs":4,"title":3},"150":{"body":17,"breadcrumbs":4,"title":2},"1500":{"body":13,"breadcrumbs":4,"title":2},"1501":{"body":13,"breadcrumbs":3,"title":1},"1502":{"body":9,"breadcrumbs":4,"title":2},"1503":{"body":22,"breadcrumbs":4,"title":2},"1504":{"body":0,"breadcrumbs":5,"title":3},"1505":{"body":32,"breadcrumbs":4,"title":2},"1506":{"body":9,"breadcrumbs":5,"title":3},"1507":{"body":32,"breadcrumbs":5,"title":3},"1508":{"body":0,"breadcrumbs":5,"title":3},"1509":{"body":23,"breadcrumbs":4,"title":2},"151":{"body":50,"breadcrumbs":5,"title":3},"1510":{"body":34,"breadcrumbs":4,"title":2},"1511":{"body":0,"breadcrumbs":5,"title":3},"1512":{"body":51,"breadcrumbs":5,"title":3},"1513":{"body":22,"breadcrumbs":5,"title":3},"1514":{"body":0,"breadcrumbs":5,"title":3},"1515":{"body":78,"breadcrumbs":5,"title":3},"1516":{"body":0,"breadcrumbs":5,"title":3},"1517":{"body":26,"breadcrumbs":4,"title":2},"1518":{"body":21,"breadcrumbs":6,"title":4},"1519":{"body":0,"breadcrumbs":5,"title":3},"152":{"body":28,"breadcrumbs":4,"title":2},"1520":{"body":38,"breadcrumbs":5,"title":3},"1521":{"body":0,"breadcrumbs":4,"title":2},"1522":{"body":98,"breadcrumbs":5,"title":3},"1523":{"body":0,"breadcrumbs":5,"title":3},"1524":{"body":51,"breadcrumbs":7,"title":5},"1525":{"body":0,"breadcrumbs":5,"title":3},"1526":{"body":49,"breadcrumbs":7,"title":5},"1527":{"body":0,"breadcrumbs":4,"title":2},"1528":{"body":46,"breadcrumbs":4,"title":2},"1529":{"body":36,"breadcrumbs":4,"title":2},"153":{"body":18,"breadcrumbs":5,"title":3},"1530":{"body":35,"breadcrumbs":4,"title":2},"1531":{"body":12,"breadcrumbs":3,"title":1},"154":{"body":24,"breadcrumbs":5,"title":3},"155":{"body":25,"breadcrumbs":4,"title":2},"156":{"body":29,"breadcrumbs":4,"title":2},"157":{"body":20,"breadcrumbs":4,"title":2},"158":{"body":0,"breadcrumbs":4,"title":2},"159":{"body":32,"breadcrumbs":4,"title":2},"16":{"body":12,"breadcrumbs":3,"title":2},"160":{"body":15,"breadcrumbs":5,"title":3},"161":{"body":16,"breadcrumbs":4,"title":2},"162":{"body":0,"breadcrumbs":4,"title":2},"163":{"body":3,"breadcrumbs":4,"title":2},"164":{"body":4,"breadcrumbs":6,"title":4},"165":{"body":17,"breadcrumbs":4,"title":2},"166":{"body":20,"breadcrumbs":4,"title":2},"167":{"body":95,"breadcrumbs":5,"title":3},"168":{"body":0,"breadcrumbs":4,"title":2},"169":{"body":26,"breadcrumbs":3,"title":1},"17":{"body":13,"breadcrumbs":3,"title":2},"170":{"body":22,"breadcrumbs":4,"title":2},"171":{"body":18,"breadcrumbs":3,"title":1},"172":{"body":14,"breadcrumbs":4,"title":2},"173":{"body":16,"breadcrumbs":4,"title":2},"174":{"body":22,"breadcrumbs":4,"title":2},"175":{"body":0,"breadcrumbs":4,"title":2},"176":{"body":32,"breadcrumbs":4,"title":2},"177":{"body":9,"breadcrumbs":3,"title":1},"178":{"body":12,"breadcrumbs":4,"title":2},"179":{"body":29,"breadcrumbs":4,"title":2},"18":{"body":21,"breadcrumbs":3,"title":2},"180":{"body":72,"breadcrumbs":4,"title":2},"181":{"body":46,"breadcrumbs":5,"title":3},"182":{"body":32,"breadcrumbs":4,"title":2},"183":{"body":0,"breadcrumbs":4,"title":2},"184":{"body":20,"breadcrumbs":4,"title":2},"185":{"body":33,"breadcrumbs":5,"title":3},"186":{"body":17,"breadcrumbs":4,"title":2},"187":{"body":0,"breadcrumbs":4,"title":2},"188":{"body":22,"breadcrumbs":4,"title":2},"189":{"body":7,"breadcrumbs":4,"title":2},"19":{"body":21,"breadcrumbs":3,"title":2},"190":{"body":5,"breadcrumbs":4,"title":2},"191":{"body":6,"breadcrumbs":4,"title":2},"192":{"body":34,"breadcrumbs":4,"title":2},"193":{"body":10,"breadcrumbs":4,"title":2},"194":{"body":17,"breadcrumbs":5,"title":3},"195":{"body":0,"breadcrumbs":4,"title":2},"196":{"body":19,"breadcrumbs":4,"title":2},"197":{"body":16,"breadcrumbs":4,"title":2},"198":{"body":17,"breadcrumbs":4,"title":2},"199":{"body":28,"breadcrumbs":4,"title":2},"2":{"body":51,"breadcrumbs":3,"title":2},"20":{"body":19,"breadcrumbs":2,"title":1},"200":{"body":0,"breadcrumbs":5,"title":3},"201":{"body":10,"breadcrumbs":6,"title":4},"202":{"body":12,"breadcrumbs":6,"title":4},"203":{"body":0,"breadcrumbs":4,"title":2},"204":{"body":23,"breadcrumbs":4,"title":2},"205":{"body":19,"breadcrumbs":3,"title":1},"206":{"body":18,"breadcrumbs":3,"title":1},"207":{"body":0,"breadcrumbs":4,"title":2},"208":{"body":23,"breadcrumbs":5,"title":3},"209":{"body":35,"breadcrumbs":5,"title":3},"21":{"body":60,"breadcrumbs":4,"title":3},"210":{"body":17,"breadcrumbs":5,"title":3},"211":{"body":13,"breadcrumbs":4,"title":2},"212":{"body":17,"breadcrumbs":6,"title":3},"213":{"body":18,"breadcrumbs":4,"title":1},"214":{"body":34,"breadcrumbs":5,"title":2},"215":{"body":0,"breadcrumbs":5,"title":2},"216":{"body":15,"breadcrumbs":5,"title":2},"217":{"body":19,"breadcrumbs":4,"title":1},"218":{"body":0,"breadcrumbs":5,"title":2},"219":{"body":7,"breadcrumbs":6,"title":3},"22":{"body":0,"breadcrumbs":4,"title":3},"220":{"body":10,"breadcrumbs":6,"title":3},"221":{"body":39,"breadcrumbs":5,"title":2},"222":{"body":0,"breadcrumbs":6,"title":3},"223":{"body":16,"breadcrumbs":5,"title":2},"224":{"body":63,"breadcrumbs":5,"title":2},"225":{"body":31,"breadcrumbs":5,"title":2},"226":{"body":64,"breadcrumbs":7,"title":4},"227":{"body":25,"breadcrumbs":5,"title":2},"228":{"body":27,"breadcrumbs":5,"title":2},"229":{"body":14,"breadcrumbs":5,"title":2},"23":{"body":27,"breadcrumbs":4,"title":3},"230":{"body":22,"breadcrumbs":7,"title":4},"231":{"body":33,"breadcrumbs":4,"title":1},"232":{"body":27,"breadcrumbs":5,"title":2},"233":{"body":0,"breadcrumbs":6,"title":3},"234":{"body":51,"breadcrumbs":6,"title":3},"235":{"body":48,"breadcrumbs":6,"title":3},"236":{"body":23,"breadcrumbs":6,"title":3},"237":{"body":51,"breadcrumbs":8,"title":5},"238":{"body":26,"breadcrumbs":6,"title":3},"239":{"body":18,"breadcrumbs":7,"title":4},"24":{"body":19,"breadcrumbs":4,"title":3},"240":{"body":0,"breadcrumbs":6,"title":3},"241":{"body":25,"breadcrumbs":7,"title":4},"242":{"body":58,"breadcrumbs":6,"title":3},"243":{"body":46,"breadcrumbs":6,"title":3},"244":{"body":23,"breadcrumbs":6,"title":3},"245":{"body":26,"breadcrumbs":5,"title":2},"246":{"body":20,"breadcrumbs":6,"title":3},"247":{"body":0,"breadcrumbs":5,"title":2},"248":{"body":22,"breadcrumbs":5,"title":2},"249":{"body":32,"breadcrumbs":5,"title":2},"25":{"body":22,"breadcrumbs":3,"title":2},"250":{"body":21,"breadcrumbs":4,"title":1},"251":{"body":0,"breadcrumbs":4,"title":1},"252":{"body":20,"breadcrumbs":6,"title":3},"253":{"body":20,"breadcrumbs":6,"title":3},"254":{"body":20,"breadcrumbs":5,"title":2},"255":{"body":51,"breadcrumbs":5,"title":2},"256":{"body":19,"breadcrumbs":5,"title":2},"257":{"body":15,"breadcrumbs":6,"title":3},"258":{"body":6,"breadcrumbs":6,"title":3},"259":{"body":25,"breadcrumbs":5,"title":2},"26":{"body":0,"breadcrumbs":3,"title":2},"260":{"body":0,"breadcrumbs":5,"title":2},"261":{"body":36,"breadcrumbs":4,"title":1},"262":{"body":41,"breadcrumbs":4,"title":1},"263":{"body":0,"breadcrumbs":5,"title":2},"264":{"body":41,"breadcrumbs":5,"title":2},"265":{"body":21,"breadcrumbs":5,"title":2},"266":{"body":19,"breadcrumbs":6,"title":3},"267":{"body":0,"breadcrumbs":5,"title":2},"268":{"body":35,"breadcrumbs":5,"title":2},"269":{"body":16,"breadcrumbs":6,"title":3},"27":{"body":16,"breadcrumbs":2,"title":1},"270":{"body":20,"breadcrumbs":5,"title":2},"271":{"body":23,"breadcrumbs":5,"title":2},"272":{"body":37,"breadcrumbs":5,"title":2},"273":{"body":18,"breadcrumbs":5,"title":2},"274":{"body":28,"breadcrumbs":5,"title":2},"275":{"body":0,"breadcrumbs":5,"title":2},"276":{"body":25,"breadcrumbs":5,"title":2},"277":{"body":35,"breadcrumbs":4,"title":1},"278":{"body":14,"breadcrumbs":6,"title":3},"279":{"body":0,"breadcrumbs":4,"title":1},"28":{"body":21,"breadcrumbs":2,"title":1},"280":{"body":47,"breadcrumbs":5,"title":2},"281":{"body":13,"breadcrumbs":5,"title":2},"282":{"body":0,"breadcrumbs":4,"title":1},"283":{"body":16,"breadcrumbs":6,"title":3},"284":{"body":47,"breadcrumbs":6,"title":3},"285":{"body":20,"breadcrumbs":5,"title":2},"286":{"body":21,"breadcrumbs":5,"title":2},"287":{"body":34,"breadcrumbs":5,"title":2},"288":{"body":70,"breadcrumbs":5,"title":2},"289":{"body":15,"breadcrumbs":5,"title":2},"29":{"body":14,"breadcrumbs":2,"title":1},"290":{"body":16,"breadcrumbs":2,"title":1},"291":{"body":21,"breadcrumbs":2,"title":1},"292":{"body":40,"breadcrumbs":3,"title":2},"293":{"body":0,"breadcrumbs":3,"title":2},"294":{"body":29,"breadcrumbs":3,"title":2},"295":{"body":43,"breadcrumbs":3,"title":2},"296":{"body":0,"breadcrumbs":2,"title":1},"297":{"body":9,"breadcrumbs":3,"title":2},"298":{"body":44,"breadcrumbs":3,"title":2},"299":{"body":22,"breadcrumbs":3,"title":2},"3":{"body":6,"breadcrumbs":3,"title":2},"30":{"body":20,"breadcrumbs":2,"title":1},"300":{"body":0,"breadcrumbs":2,"title":1},"301":{"body":13,"breadcrumbs":3,"title":2},"302":{"body":45,"breadcrumbs":3,"title":2},"303":{"body":41,"breadcrumbs":3,"title":2},"304":{"body":19,"breadcrumbs":3,"title":2},"305":{"body":0,"breadcrumbs":3,"title":2},"306":{"body":43,"breadcrumbs":3,"title":2},"307":{"body":12,"breadcrumbs":3,"title":2},"308":{"body":23,"breadcrumbs":3,"title":2},"309":{"body":27,"breadcrumbs":4,"title":3},"31":{"body":64,"breadcrumbs":3,"title":2},"310":{"body":52,"breadcrumbs":3,"title":2},"311":{"body":51,"breadcrumbs":4,"title":3},"312":{"body":19,"breadcrumbs":3,"title":2},"313":{"body":0,"breadcrumbs":3,"title":2},"314":{"body":24,"breadcrumbs":2,"title":1},"315":{"body":62,"breadcrumbs":2,"title":1},"316":{"body":0,"breadcrumbs":2,"title":1},"317":{"body":16,"breadcrumbs":3,"title":2},"318":{"body":13,"breadcrumbs":3,"title":2},"319":{"body":15,"breadcrumbs":3,"title":2},"32":{"body":0,"breadcrumbs":4,"title":3},"320":{"body":15,"breadcrumbs":3,"title":2},"321":{"body":19,"breadcrumbs":3,"title":2},"322":{"body":14,"breadcrumbs":2,"title":1},"323":{"body":0,"breadcrumbs":2,"title":1},"324":{"body":3,"breadcrumbs":3,"title":2},"325":{"body":3,"breadcrumbs":3,"title":2},"326":{"body":3,"breadcrumbs":3,"title":2},"327":{"body":37,"breadcrumbs":3,"title":2},"328":{"body":5,"breadcrumbs":3,"title":2},"329":{"body":6,"breadcrumbs":4,"title":3},"33":{"body":17,"breadcrumbs":4,"title":3},"330":{"body":4,"breadcrumbs":4,"title":3},"331":{"body":4,"breadcrumbs":4,"title":3},"332":{"body":56,"breadcrumbs":3,"title":2},"333":{"body":0,"breadcrumbs":2,"title":1},"334":{"body":32,"breadcrumbs":3,"title":2},"335":{"body":24,"breadcrumbs":3,"title":2},"336":{"body":17,"breadcrumbs":3,"title":2},"337":{"body":3,"breadcrumbs":3,"title":2},"338":{"body":6,"breadcrumbs":4,"title":3},"339":{"body":9,"breadcrumbs":3,"title":2},"34":{"body":17,"breadcrumbs":4,"title":3},"340":{"body":2,"breadcrumbs":4,"title":3},"341":{"body":0,"breadcrumbs":3,"title":2},"342":{"body":13,"breadcrumbs":4,"title":3},"343":{"body":12,"breadcrumbs":3,"title":2},"344":{"body":10,"breadcrumbs":5,"title":4},"345":{"body":14,"breadcrumbs":5,"title":4},"346":{"body":0,"breadcrumbs":3,"title":2},"347":{"body":15,"breadcrumbs":3,"title":2},"348":{"body":22,"breadcrumbs":3,"title":2},"349":{"body":40,"breadcrumbs":3,"title":2},"35":{"body":17,"breadcrumbs":4,"title":3},"350":{"body":0,"breadcrumbs":3,"title":2},"351":{"body":19,"breadcrumbs":3,"title":2},"352":{"body":20,"breadcrumbs":3,"title":2},"353":{"body":15,"breadcrumbs":3,"title":2},"354":{"body":12,"breadcrumbs":3,"title":2},"355":{"body":31,"breadcrumbs":3,"title":2},"356":{"body":17,"breadcrumbs":2,"title":1},"357":{"body":18,"breadcrumbs":4,"title":2},"358":{"body":26,"breadcrumbs":4,"title":2},"359":{"body":29,"breadcrumbs":5,"title":3},"36":{"body":56,"breadcrumbs":4,"title":3},"360":{"body":0,"breadcrumbs":4,"title":2},"361":{"body":26,"breadcrumbs":3,"title":1},"362":{"body":8,"breadcrumbs":3,"title":1},"363":{"body":15,"breadcrumbs":3,"title":1},"364":{"body":21,"breadcrumbs":3,"title":1},"365":{"body":41,"breadcrumbs":3,"title":1},"366":{"body":45,"breadcrumbs":4,"title":2},"367":{"body":30,"breadcrumbs":3,"title":1},"368":{"body":42,"breadcrumbs":4,"title":2},"369":{"body":45,"breadcrumbs":3,"title":1},"37":{"body":41,"breadcrumbs":3,"title":2},"370":{"body":85,"breadcrumbs":3,"title":1},"371":{"body":86,"breadcrumbs":6,"title":4},"372":{"body":27,"breadcrumbs":3,"title":1},"373":{"body":24,"breadcrumbs":3,"title":1},"374":{"body":25,"breadcrumbs":4,"title":2},"375":{"body":18,"breadcrumbs":3,"title":1},"376":{"body":28,"breadcrumbs":3,"title":1},"377":{"body":0,"breadcrumbs":4,"title":2},"378":{"body":22,"breadcrumbs":3,"title":1},"379":{"body":23,"breadcrumbs":3,"title":1},"38":{"body":19,"breadcrumbs":3,"title":2},"380":{"body":27,"breadcrumbs":3,"title":1},"381":{"body":25,"breadcrumbs":3,"title":1},"382":{"body":107,"breadcrumbs":4,"title":2},"383":{"body":46,"breadcrumbs":4,"title":2},"384":{"body":43,"breadcrumbs":4,"title":2},"385":{"body":15,"breadcrumbs":3,"title":1},"386":{"body":13,"breadcrumbs":4,"title":2},"387":{"body":0,"breadcrumbs":4,"title":2},"388":{"body":15,"breadcrumbs":5,"title":3},"389":{"body":17,"breadcrumbs":4,"title":2},"39":{"body":16,"breadcrumbs":4,"title":2},"390":{"body":0,"breadcrumbs":4,"title":2},"391":{"body":28,"breadcrumbs":5,"title":3},"392":{"body":13,"breadcrumbs":4,"title":2},"393":{"body":10,"breadcrumbs":4,"title":2},"394":{"body":13,"breadcrumbs":4,"title":2},"395":{"body":19,"breadcrumbs":3,"title":1},"396":{"body":0,"breadcrumbs":4,"title":2},"397":{"body":10,"breadcrumbs":5,"title":3},"398":{"body":12,"breadcrumbs":6,"title":4},"399":{"body":0,"breadcrumbs":4,"title":2},"4":{"body":27,"breadcrumbs":5,"title":4},"40":{"body":10,"breadcrumbs":3,"title":1},"400":{"body":38,"breadcrumbs":5,"title":3},"401":{"body":12,"breadcrumbs":5,"title":3},"402":{"body":0,"breadcrumbs":4,"title":2},"403":{"body":10,"breadcrumbs":5,"title":3},"404":{"body":22,"breadcrumbs":5,"title":3},"405":{"body":0,"breadcrumbs":4,"title":2},"406":{"body":27,"breadcrumbs":4,"title":2},"407":{"body":12,"breadcrumbs":4,"title":2},"408":{"body":11,"breadcrumbs":5,"title":3},"409":{"body":0,"breadcrumbs":4,"title":2},"41":{"body":50,"breadcrumbs":4,"title":2},"410":{"body":18,"breadcrumbs":4,"title":2},"411":{"body":19,"breadcrumbs":4,"title":2},"412":{"body":13,"breadcrumbs":5,"title":3},"413":{"body":0,"breadcrumbs":4,"title":2},"414":{"body":17,"breadcrumbs":4,"title":2},"415":{"body":19,"breadcrumbs":4,"title":2},"416":{"body":0,"breadcrumbs":4,"title":2},"417":{"body":13,"breadcrumbs":4,"title":2},"418":{"body":42,"breadcrumbs":4,"title":2},"419":{"body":38,"breadcrumbs":4,"title":2},"42":{"body":24,"breadcrumbs":4,"title":2},"420":{"body":85,"breadcrumbs":4,"title":2},"421":{"body":20,"breadcrumbs":4,"title":2},"422":{"body":26,"breadcrumbs":7,"title":5},"423":{"body":32,"breadcrumbs":3,"title":1},"424":{"body":43,"breadcrumbs":5,"title":3},"425":{"body":0,"breadcrumbs":4,"title":2},"426":{"body":76,"breadcrumbs":6,"title":4},"427":{"body":87,"breadcrumbs":5,"title":3},"428":{"body":0,"breadcrumbs":4,"title":2},"429":{"body":26,"breadcrumbs":3,"title":1},"43":{"body":73,"breadcrumbs":6,"title":4},"430":{"body":21,"breadcrumbs":3,"title":1},"431":{"body":18,"breadcrumbs":3,"title":1},"432":{"body":0,"breadcrumbs":4,"title":2},"433":{"body":35,"breadcrumbs":4,"title":2},"434":{"body":50,"breadcrumbs":5,"title":3},"435":{"body":0,"breadcrumbs":3,"title":1},"436":{"body":19,"breadcrumbs":5,"title":3},"437":{"body":7,"breadcrumbs":4,"title":2},"438":{"body":0,"breadcrumbs":4,"title":2},"439":{"body":42,"breadcrumbs":4,"title":2},"44":{"body":10,"breadcrumbs":3,"title":1},"440":{"body":28,"breadcrumbs":4,"title":2},"441":{"body":0,"breadcrumbs":4,"title":2},"442":{"body":114,"breadcrumbs":4,"title":2},"443":{"body":97,"breadcrumbs":4,"title":2},"444":{"body":0,"breadcrumbs":4,"title":2},"445":{"body":18,"breadcrumbs":4,"title":2},"446":{"body":28,"breadcrumbs":4,"title":2},"447":{"body":15,"breadcrumbs":4,"title":2},"448":{"body":0,"breadcrumbs":3,"title":1},"449":{"body":8,"breadcrumbs":5,"title":3},"45":{"body":58,"breadcrumbs":4,"title":2},"450":{"body":12,"breadcrumbs":5,"title":3},"451":{"body":34,"breadcrumbs":4,"title":2},"452":{"body":15,"breadcrumbs":4,"title":2},"453":{"body":18,"breadcrumbs":4,"title":2},"454":{"body":41,"breadcrumbs":3,"title":1},"455":{"body":0,"breadcrumbs":4,"title":2},"456":{"body":24,"breadcrumbs":4,"title":2},"457":{"body":0,"breadcrumbs":4,"title":2},"458":{"body":105,"breadcrumbs":5,"title":3},"459":{"body":56,"breadcrumbs":4,"title":2},"46":{"body":75,"breadcrumbs":5,"title":3},"460":{"body":0,"breadcrumbs":4,"title":2},"461":{"body":96,"breadcrumbs":5,"title":3},"462":{"body":7,"breadcrumbs":4,"title":2},"463":{"body":66,"breadcrumbs":5,"title":3},"464":{"body":0,"breadcrumbs":4,"title":2},"465":{"body":86,"breadcrumbs":5,"title":3},"466":{"body":0,"breadcrumbs":4,"title":2},"467":{"body":18,"breadcrumbs":3,"title":1},"468":{"body":16,"breadcrumbs":3,"title":1},"469":{"body":18,"breadcrumbs":3,"title":1},"47":{"body":51,"breadcrumbs":4,"title":2},"470":{"body":40,"breadcrumbs":3,"title":1},"471":{"body":36,"breadcrumbs":3,"title":1},"472":{"body":0,"breadcrumbs":4,"title":2},"473":{"body":81,"breadcrumbs":4,"title":2},"474":{"body":67,"breadcrumbs":4,"title":2},"475":{"body":0,"breadcrumbs":4,"title":2},"476":{"body":11,"breadcrumbs":4,"title":2},"477":{"body":21,"breadcrumbs":4,"title":2},"478":{"body":16,"breadcrumbs":4,"title":2},"479":{"body":27,"breadcrumbs":4,"title":2},"48":{"body":8,"breadcrumbs":3,"title":1},"480":{"body":17,"breadcrumbs":4,"title":2},"481":{"body":12,"breadcrumbs":4,"title":2},"482":{"body":22,"breadcrumbs":3,"title":1},"483":{"body":44,"breadcrumbs":4,"title":2},"484":{"body":0,"breadcrumbs":4,"title":2},"485":{"body":7,"breadcrumbs":4,"title":2},"486":{"body":46,"breadcrumbs":5,"title":3},"487":{"body":28,"breadcrumbs":5,"title":3},"488":{"body":0,"breadcrumbs":4,"title":2},"489":{"body":28,"breadcrumbs":5,"title":3},"49":{"body":40,"breadcrumbs":4,"title":2},"490":{"body":21,"breadcrumbs":5,"title":3},"491":{"body":34,"breadcrumbs":4,"title":2},"492":{"body":0,"breadcrumbs":4,"title":2},"493":{"body":22,"breadcrumbs":4,"title":2},"494":{"body":15,"breadcrumbs":5,"title":3},"495":{"body":23,"breadcrumbs":5,"title":3},"496":{"body":0,"breadcrumbs":4,"title":2},"497":{"body":51,"breadcrumbs":5,"title":3},"498":{"body":51,"breadcrumbs":4,"title":2},"499":{"body":0,"breadcrumbs":4,"title":2},"5":{"body":25,"breadcrumbs":3,"title":2},"50":{"body":32,"breadcrumbs":4,"title":2},"500":{"body":39,"breadcrumbs":5,"title":3},"501":{"body":48,"breadcrumbs":4,"title":2},"502":{"body":33,"breadcrumbs":4,"title":2},"503":{"body":48,"breadcrumbs":4,"title":2},"504":{"body":0,"breadcrumbs":3,"title":1},"505":{"body":62,"breadcrumbs":5,"title":3},"506":{"body":48,"breadcrumbs":5,"title":3},"507":{"body":119,"breadcrumbs":5,"title":3},"508":{"body":0,"breadcrumbs":3,"title":1},"509":{"body":25,"breadcrumbs":5,"title":3},"51":{"body":37,"breadcrumbs":4,"title":2},"510":{"body":25,"breadcrumbs":6,"title":4},"511":{"body":20,"breadcrumbs":4,"title":2},"512":{"body":17,"breadcrumbs":4,"title":2},"513":{"body":6,"breadcrumbs":4,"title":2},"514":{"body":3,"breadcrumbs":3,"title":1},"515":{"body":5,"breadcrumbs":4,"title":2},"516":{"body":17,"breadcrumbs":4,"title":2},"517":{"body":17,"breadcrumbs":3,"title":1},"518":{"body":28,"breadcrumbs":3,"title":1},"519":{"body":105,"breadcrumbs":8,"title":6},"52":{"body":8,"breadcrumbs":3,"title":1},"520":{"body":28,"breadcrumbs":3,"title":1},"521":{"body":43,"breadcrumbs":4,"title":2},"522":{"body":63,"breadcrumbs":6,"title":4},"523":{"body":66,"breadcrumbs":7,"title":5},"524":{"body":31,"breadcrumbs":4,"title":2},"525":{"body":41,"breadcrumbs":4,"title":2},"526":{"body":24,"breadcrumbs":3,"title":1},"527":{"body":42,"breadcrumbs":6,"title":4},"528":{"body":31,"breadcrumbs":3,"title":1},"529":{"body":28,"breadcrumbs":3,"title":1},"53":{"body":67,"breadcrumbs":4,"title":2},"530":{"body":29,"breadcrumbs":3,"title":1},"531":{"body":36,"breadcrumbs":3,"title":1},"532":{"body":29,"breadcrumbs":3,"title":1},"533":{"body":34,"breadcrumbs":5,"title":3},"534":{"body":0,"breadcrumbs":4,"title":2},"535":{"body":26,"breadcrumbs":3,"title":1},"536":{"body":103,"breadcrumbs":3,"title":1},"537":{"body":4,"breadcrumbs":4,"title":2},"538":{"body":37,"breadcrumbs":3,"title":1},"539":{"body":32,"breadcrumbs":3,"title":1},"54":{"body":33,"breadcrumbs":4,"title":2},"540":{"body":5,"breadcrumbs":4,"title":2},"541":{"body":28,"breadcrumbs":3,"title":1},"542":{"body":40,"breadcrumbs":5,"title":3},"543":{"body":19,"breadcrumbs":5,"title":3},"544":{"body":29,"breadcrumbs":4,"title":2},"545":{"body":88,"breadcrumbs":4,"title":2},"546":{"body":23,"breadcrumbs":4,"title":2},"547":{"body":21,"breadcrumbs":3,"title":1},"548":{"body":21,"breadcrumbs":3,"title":2},"549":{"body":16,"breadcrumbs":2,"title":1},"55":{"body":26,"breadcrumbs":4,"title":2},"550":{"body":0,"breadcrumbs":2,"title":1},"551":{"body":3,"breadcrumbs":3,"title":2},"552":{"body":6,"breadcrumbs":3,"title":2},"553":{"body":3,"breadcrumbs":3,"title":2},"554":{"body":24,"breadcrumbs":3,"title":2},"555":{"body":35,"breadcrumbs":3,"title":2},"556":{"body":8,"breadcrumbs":3,"title":2},"557":{"body":19,"breadcrumbs":3,"title":2},"558":{"body":20,"breadcrumbs":3,"title":2},"559":{"body":0,"breadcrumbs":2,"title":1},"56":{"body":7,"breadcrumbs":4,"title":2},"560":{"body":18,"breadcrumbs":3,"title":2},"561":{"body":9,"breadcrumbs":4,"title":3},"562":{"body":14,"breadcrumbs":3,"title":2},"563":{"body":17,"breadcrumbs":3,"title":2},"564":{"body":3,"breadcrumbs":3,"title":2},"565":{"body":6,"breadcrumbs":4,"title":3},"566":{"body":9,"breadcrumbs":3,"title":2},"567":{"body":2,"breadcrumbs":4,"title":3},"568":{"body":0,"breadcrumbs":3,"title":2},"569":{"body":13,"breadcrumbs":4,"title":3},"57":{"body":28,"breadcrumbs":4,"title":2},"570":{"body":12,"breadcrumbs":3,"title":2},"571":{"body":10,"breadcrumbs":5,"title":4},"572":{"body":14,"breadcrumbs":5,"title":4},"573":{"body":0,"breadcrumbs":3,"title":2},"574":{"body":17,"breadcrumbs":3,"title":2},"575":{"body":10,"breadcrumbs":3,"title":2},"576":{"body":42,"breadcrumbs":3,"title":2},"577":{"body":0,"breadcrumbs":4,"title":3},"578":{"body":22,"breadcrumbs":3,"title":2},"579":{"body":20,"breadcrumbs":3,"title":2},"58":{"body":27,"breadcrumbs":4,"title":2},"580":{"body":19,"breadcrumbs":3,"title":2},"581":{"body":42,"breadcrumbs":4,"title":3},"582":{"body":0,"breadcrumbs":3,"title":2},"583":{"body":25,"breadcrumbs":3,"title":2},"584":{"body":20,"breadcrumbs":3,"title":2},"585":{"body":18,"breadcrumbs":3,"title":2},"586":{"body":20,"breadcrumbs":3,"title":2},"587":{"body":28,"breadcrumbs":5,"title":4},"588":{"body":62,"breadcrumbs":3,"title":2},"589":{"body":27,"breadcrumbs":3,"title":2},"59":{"body":30,"breadcrumbs":4,"title":2},"590":{"body":20,"breadcrumbs":2,"title":1},"591":{"body":18,"breadcrumbs":4,"title":2},"592":{"body":22,"breadcrumbs":4,"title":2},"593":{"body":29,"breadcrumbs":5,"title":3},"594":{"body":0,"breadcrumbs":4,"title":2},"595":{"body":30,"breadcrumbs":3,"title":1},"596":{"body":8,"breadcrumbs":3,"title":1},"597":{"body":14,"breadcrumbs":3,"title":1},"598":{"body":20,"breadcrumbs":3,"title":1},"599":{"body":40,"breadcrumbs":3,"title":1},"6":{"body":26,"breadcrumbs":3,"title":2},"60":{"body":7,"breadcrumbs":5,"title":3},"600":{"body":43,"breadcrumbs":4,"title":2},"601":{"body":27,"breadcrumbs":3,"title":1},"602":{"body":25,"breadcrumbs":6,"title":4},"603":{"body":31,"breadcrumbs":4,"title":2},"604":{"body":85,"breadcrumbs":3,"title":1},"605":{"body":82,"breadcrumbs":6,"title":4},"606":{"body":25,"breadcrumbs":3,"title":1},"607":{"body":17,"breadcrumbs":4,"title":2},"608":{"body":18,"breadcrumbs":3,"title":1},"609":{"body":27,"breadcrumbs":3,"title":1},"61":{"body":22,"breadcrumbs":4,"title":2},"610":{"body":5,"breadcrumbs":4,"title":2},"611":{"body":19,"breadcrumbs":3,"title":1},"612":{"body":24,"breadcrumbs":3,"title":1},"613":{"body":24,"breadcrumbs":3,"title":1},"614":{"body":27,"breadcrumbs":3,"title":1},"615":{"body":15,"breadcrumbs":3,"title":1},"616":{"body":105,"breadcrumbs":4,"title":2},"617":{"body":58,"breadcrumbs":4,"title":2},"618":{"body":48,"breadcrumbs":4,"title":2},"619":{"body":15,"breadcrumbs":3,"title":1},"62":{"body":20,"breadcrumbs":5,"title":3},"620":{"body":13,"breadcrumbs":4,"title":2},"621":{"body":0,"breadcrumbs":4,"title":2},"622":{"body":12,"breadcrumbs":5,"title":3},"623":{"body":17,"breadcrumbs":4,"title":2},"624":{"body":0,"breadcrumbs":4,"title":2},"625":{"body":25,"breadcrumbs":5,"title":3},"626":{"body":12,"breadcrumbs":4,"title":2},"627":{"body":9,"breadcrumbs":4,"title":2},"628":{"body":12,"breadcrumbs":4,"title":2},"629":{"body":18,"breadcrumbs":3,"title":1},"63":{"body":6,"breadcrumbs":4,"title":2},"630":{"body":0,"breadcrumbs":4,"title":2},"631":{"body":9,"breadcrumbs":5,"title":3},"632":{"body":11,"breadcrumbs":6,"title":4},"633":{"body":0,"breadcrumbs":4,"title":2},"634":{"body":38,"breadcrumbs":5,"title":3},"635":{"body":11,"breadcrumbs":5,"title":3},"636":{"body":0,"breadcrumbs":4,"title":2},"637":{"body":9,"breadcrumbs":5,"title":3},"638":{"body":21,"breadcrumbs":5,"title":3},"639":{"body":0,"breadcrumbs":4,"title":2},"64":{"body":23,"breadcrumbs":4,"title":2},"640":{"body":26,"breadcrumbs":4,"title":2},"641":{"body":11,"breadcrumbs":4,"title":2},"642":{"body":10,"breadcrumbs":5,"title":3},"643":{"body":0,"breadcrumbs":4,"title":2},"644":{"body":16,"breadcrumbs":4,"title":2},"645":{"body":18,"breadcrumbs":4,"title":2},"646":{"body":12,"breadcrumbs":5,"title":3},"647":{"body":0,"breadcrumbs":4,"title":2},"648":{"body":15,"breadcrumbs":4,"title":2},"649":{"body":17,"breadcrumbs":4,"title":2},"65":{"body":19,"breadcrumbs":4,"title":2},"650":{"body":0,"breadcrumbs":4,"title":2},"651":{"body":11,"breadcrumbs":4,"title":2},"652":{"body":16,"breadcrumbs":4,"title":2},"653":{"body":35,"breadcrumbs":4,"title":2},"654":{"body":78,"breadcrumbs":4,"title":2},"655":{"body":0,"breadcrumbs":5,"title":3},"656":{"body":29,"breadcrumbs":5,"title":3},"657":{"body":21,"breadcrumbs":5,"title":3},"658":{"body":0,"breadcrumbs":4,"title":2},"659":{"body":5,"breadcrumbs":4,"title":2},"66":{"body":19,"breadcrumbs":4,"title":2},"660":{"body":17,"breadcrumbs":4,"title":2},"661":{"body":26,"breadcrumbs":4,"title":2},"662":{"body":17,"breadcrumbs":4,"title":2},"663":{"body":29,"breadcrumbs":4,"title":2},"664":{"body":32,"breadcrumbs":3,"title":1},"665":{"body":0,"breadcrumbs":4,"title":2},"666":{"body":82,"breadcrumbs":6,"title":4},"667":{"body":65,"breadcrumbs":6,"title":4},"668":{"body":0,"breadcrumbs":3,"title":1},"669":{"body":58,"breadcrumbs":3,"title":1},"67":{"body":28,"breadcrumbs":4,"title":2},"670":{"body":30,"breadcrumbs":3,"title":1},"671":{"body":0,"breadcrumbs":3,"title":1},"672":{"body":23,"breadcrumbs":5,"title":3},"673":{"body":20,"breadcrumbs":4,"title":2},"674":{"body":0,"breadcrumbs":4,"title":2},"675":{"body":45,"breadcrumbs":5,"title":3},"676":{"body":33,"breadcrumbs":5,"title":3},"677":{"body":0,"breadcrumbs":4,"title":2},"678":{"body":43,"breadcrumbs":4,"title":2},"679":{"body":14,"breadcrumbs":3,"title":1},"68":{"body":17,"breadcrumbs":5,"title":3},"680":{"body":0,"breadcrumbs":4,"title":2},"681":{"body":37,"breadcrumbs":5,"title":3},"682":{"body":38,"breadcrumbs":4,"title":2},"683":{"body":0,"breadcrumbs":3,"title":1},"684":{"body":51,"breadcrumbs":6,"title":4},"685":{"body":0,"breadcrumbs":4,"title":2},"686":{"body":30,"breadcrumbs":3,"title":1},"687":{"body":37,"breadcrumbs":4,"title":2},"688":{"body":21,"breadcrumbs":4,"title":2},"689":{"body":14,"breadcrumbs":4,"title":2},"69":{"body":7,"breadcrumbs":4,"title":2},"690":{"body":6,"breadcrumbs":4,"title":2},"691":{"body":3,"breadcrumbs":3,"title":1},"692":{"body":5,"breadcrumbs":4,"title":2},"693":{"body":17,"breadcrumbs":4,"title":2},"694":{"body":14,"breadcrumbs":3,"title":1},"695":{"body":25,"breadcrumbs":3,"title":1},"696":{"body":89,"breadcrumbs":8,"title":6},"697":{"body":27,"breadcrumbs":3,"title":1},"698":{"body":41,"breadcrumbs":4,"title":2},"699":{"body":60,"breadcrumbs":6,"title":4},"7":{"body":4,"breadcrumbs":3,"title":2},"70":{"body":16,"breadcrumbs":5,"title":3},"700":{"body":66,"breadcrumbs":7,"title":5},"701":{"body":30,"breadcrumbs":4,"title":2},"702":{"body":39,"breadcrumbs":4,"title":2},"703":{"body":23,"breadcrumbs":3,"title":1},"704":{"body":41,"breadcrumbs":6,"title":4},"705":{"body":30,"breadcrumbs":3,"title":1},"706":{"body":26,"breadcrumbs":3,"title":1},"707":{"body":28,"breadcrumbs":3,"title":1},"708":{"body":34,"breadcrumbs":3,"title":1},"709":{"body":27,"breadcrumbs":3,"title":1},"71":{"body":15,"breadcrumbs":4,"title":2},"710":{"body":33,"breadcrumbs":5,"title":3},"711":{"body":14,"breadcrumbs":5,"title":3},"712":{"body":8,"breadcrumbs":3,"title":1},"713":{"body":9,"breadcrumbs":3,"title":1},"714":{"body":8,"breadcrumbs":3,"title":1},"715":{"body":8,"breadcrumbs":3,"title":1},"716":{"body":10,"breadcrumbs":3,"title":1},"717":{"body":4,"breadcrumbs":4,"title":2},"718":{"body":30,"breadcrumbs":3,"title":1},"719":{"body":37,"breadcrumbs":4,"title":2},"72":{"body":40,"breadcrumbs":5,"title":3},"720":{"body":0,"breadcrumbs":3,"title":1},"721":{"body":21,"breadcrumbs":5,"title":3},"722":{"body":48,"breadcrumbs":4,"title":2},"723":{"body":33,"breadcrumbs":4,"title":2},"724":{"body":19,"breadcrumbs":4,"title":2},"725":{"body":43,"breadcrumbs":4,"title":2},"726":{"body":42,"breadcrumbs":4,"title":2},"727":{"body":17,"breadcrumbs":3,"title":1},"728":{"body":22,"breadcrumbs":4,"title":2},"729":{"body":27,"breadcrumbs":4,"title":2},"73":{"body":24,"breadcrumbs":5,"title":3},"730":{"body":0,"breadcrumbs":4,"title":2},"731":{"body":7,"breadcrumbs":4,"title":2},"732":{"body":55,"breadcrumbs":4,"title":2},"733":{"body":36,"breadcrumbs":4,"title":2},"734":{"body":15,"breadcrumbs":4,"title":2},"735":{"body":0,"breadcrumbs":4,"title":2},"736":{"body":21,"breadcrumbs":3,"title":1},"737":{"body":11,"breadcrumbs":4,"title":2},"738":{"body":46,"breadcrumbs":5,"title":3},"739":{"body":36,"breadcrumbs":4,"title":2},"74":{"body":3,"breadcrumbs":5,"title":3},"740":{"body":28,"breadcrumbs":3,"title":1},"741":{"body":35,"breadcrumbs":4,"title":2},"742":{"body":71,"breadcrumbs":5,"title":3},"743":{"body":0,"breadcrumbs":4,"title":2},"744":{"body":43,"breadcrumbs":4,"title":2},"745":{"body":21,"breadcrumbs":4,"title":2},"746":{"body":27,"breadcrumbs":4,"title":2},"747":{"body":49,"breadcrumbs":4,"title":2},"748":{"body":16,"breadcrumbs":3,"title":1},"749":{"body":17,"breadcrumbs":4,"title":2},"75":{"body":38,"breadcrumbs":4,"title":2},"750":{"body":1,"breadcrumbs":4,"title":2},"751":{"body":27,"breadcrumbs":3,"title":1},"752":{"body":30,"breadcrumbs":4,"title":2},"753":{"body":35,"breadcrumbs":4,"title":2},"754":{"body":15,"breadcrumbs":4,"title":2},"755":{"body":0,"breadcrumbs":4,"title":2},"756":{"body":61,"breadcrumbs":5,"title":3},"757":{"body":27,"breadcrumbs":5,"title":3},"758":{"body":45,"breadcrumbs":3,"title":1},"759":{"body":70,"breadcrumbs":5,"title":3},"76":{"body":50,"breadcrumbs":5,"title":3},"760":{"body":62,"breadcrumbs":4,"title":2},"761":{"body":28,"breadcrumbs":3,"title":1},"762":{"body":52,"breadcrumbs":5,"title":3},"763":{"body":24,"breadcrumbs":4,"title":2},"764":{"body":0,"breadcrumbs":4,"title":2},"765":{"body":93,"breadcrumbs":4,"title":2},"766":{"body":62,"breadcrumbs":4,"title":2},"767":{"body":81,"breadcrumbs":4,"title":2},"768":{"body":0,"breadcrumbs":4,"title":2},"769":{"body":26,"breadcrumbs":3,"title":1},"77":{"body":66,"breadcrumbs":4,"title":2},"770":{"body":19,"breadcrumbs":3,"title":1},"771":{"body":12,"breadcrumbs":3,"title":1},"772":{"body":26,"breadcrumbs":4,"title":2},"773":{"body":21,"breadcrumbs":3,"title":1},"774":{"body":18,"breadcrumbs":4,"title":2},"775":{"body":1,"breadcrumbs":4,"title":2},"776":{"body":39,"breadcrumbs":3,"title":1},"777":{"body":0,"breadcrumbs":4,"title":2},"778":{"body":35,"breadcrumbs":3,"title":1},"779":{"body":73,"breadcrumbs":3,"title":1},"78":{"body":3,"breadcrumbs":5,"title":3},"780":{"body":24,"breadcrumbs":4,"title":2},"781":{"body":0,"breadcrumbs":4,"title":2},"782":{"body":108,"breadcrumbs":3,"title":1},"783":{"body":31,"breadcrumbs":3,"title":1},"784":{"body":12,"breadcrumbs":3,"title":1},"785":{"body":43,"breadcrumbs":3,"title":1},"786":{"body":21,"breadcrumbs":5,"title":3},"787":{"body":32,"breadcrumbs":4,"title":2},"788":{"body":34,"breadcrumbs":5,"title":3},"789":{"body":17,"breadcrumbs":4,"title":2},"79":{"body":43,"breadcrumbs":4,"title":2},"790":{"body":15,"breadcrumbs":5,"title":3},"791":{"body":81,"breadcrumbs":4,"title":2},"792":{"body":35,"breadcrumbs":5,"title":3},"793":{"body":0,"breadcrumbs":4,"title":2},"794":{"body":35,"breadcrumbs":4,"title":2},"795":{"body":5,"breadcrumbs":4,"title":2},"796":{"body":25,"breadcrumbs":4,"title":2},"797":{"body":22,"breadcrumbs":4,"title":2},"798":{"body":26,"breadcrumbs":4,"title":2},"799":{"body":19,"breadcrumbs":3,"title":1},"8":{"body":20,"breadcrumbs":3,"title":2},"80":{"body":46,"breadcrumbs":5,"title":3},"800":{"body":17,"breadcrumbs":4,"title":2},"801":{"body":1,"breadcrumbs":4,"title":2},"802":{"body":30,"breadcrumbs":3,"title":1},"803":{"body":25,"breadcrumbs":4,"title":2},"804":{"body":37,"breadcrumbs":4,"title":2},"805":{"body":11,"breadcrumbs":4,"title":2},"806":{"body":0,"breadcrumbs":4,"title":2},"807":{"body":9,"breadcrumbs":5,"title":3},"808":{"body":59,"breadcrumbs":5,"title":3},"809":{"body":19,"breadcrumbs":4,"title":2},"81":{"body":61,"breadcrumbs":4,"title":2},"810":{"body":28,"breadcrumbs":3,"title":1},"811":{"body":30,"breadcrumbs":5,"title":3},"812":{"body":15,"breadcrumbs":4,"title":2},"813":{"body":5,"breadcrumbs":3,"title":1},"814":{"body":21,"breadcrumbs":4,"title":2},"815":{"body":20,"breadcrumbs":4,"title":2},"816":{"body":211,"breadcrumbs":4,"title":2},"817":{"body":0,"breadcrumbs":4,"title":2},"818":{"body":9,"breadcrumbs":4,"title":2},"819":{"body":7,"breadcrumbs":5,"title":3},"82":{"body":92,"breadcrumbs":7,"title":5},"820":{"body":10,"breadcrumbs":4,"title":2},"821":{"body":0,"breadcrumbs":4,"title":2},"822":{"body":28,"breadcrumbs":5,"title":3},"823":{"body":9,"breadcrumbs":5,"title":3},"824":{"body":8,"breadcrumbs":6,"title":4},"825":{"body":8,"breadcrumbs":5,"title":3},"826":{"body":7,"breadcrumbs":5,"title":3},"827":{"body":23,"breadcrumbs":5,"title":3},"828":{"body":17,"breadcrumbs":3,"title":1},"829":{"body":28,"breadcrumbs":6,"title":3},"83":{"body":7,"breadcrumbs":4,"title":2},"830":{"body":1,"breadcrumbs":5,"title":2},"831":{"body":62,"breadcrumbs":4,"title":1},"832":{"body":35,"breadcrumbs":5,"title":2},"833":{"body":50,"breadcrumbs":5,"title":2},"834":{"body":0,"breadcrumbs":4,"title":1},"835":{"body":21,"breadcrumbs":5,"title":2},"836":{"body":53,"breadcrumbs":5,"title":2},"837":{"body":25,"breadcrumbs":5,"title":2},"838":{"body":41,"breadcrumbs":5,"title":2},"839":{"body":0,"breadcrumbs":4,"title":1},"84":{"body":19,"breadcrumbs":5,"title":3},"840":{"body":11,"breadcrumbs":6,"title":3},"841":{"body":39,"breadcrumbs":6,"title":3},"842":{"body":19,"breadcrumbs":5,"title":2},"843":{"body":27,"breadcrumbs":7,"title":4},"844":{"body":0,"breadcrumbs":5,"title":2},"845":{"body":62,"breadcrumbs":7,"title":4},"846":{"body":14,"breadcrumbs":5,"title":2},"847":{"body":48,"breadcrumbs":5,"title":2},"848":{"body":21,"breadcrumbs":8,"title":5},"849":{"body":14,"breadcrumbs":7,"title":4},"85":{"body":10,"breadcrumbs":5,"title":3},"850":{"body":39,"breadcrumbs":5,"title":2},"851":{"body":19,"breadcrumbs":4,"title":1},"852":{"body":30,"breadcrumbs":4,"title":2},"853":{"body":14,"breadcrumbs":3,"title":1},"854":{"body":13,"breadcrumbs":4,"title":2},"855":{"body":34,"breadcrumbs":4,"title":2},"856":{"body":79,"breadcrumbs":4,"title":2},"857":{"body":28,"breadcrumbs":4,"title":2},"858":{"body":16,"breadcrumbs":5,"title":3},"859":{"body":32,"breadcrumbs":3,"title":1},"86":{"body":20,"breadcrumbs":5,"title":3},"860":{"body":38,"breadcrumbs":4,"title":2},"861":{"body":21,"breadcrumbs":3,"title":1},"862":{"body":15,"breadcrumbs":3,"title":1},"863":{"body":18,"breadcrumbs":6,"title":3},"864":{"body":18,"breadcrumbs":4,"title":1},"865":{"body":14,"breadcrumbs":5,"title":2},"866":{"body":9,"breadcrumbs":5,"title":2},"867":{"body":7,"breadcrumbs":5,"title":2},"868":{"body":29,"breadcrumbs":6,"title":3},"869":{"body":41,"breadcrumbs":6,"title":3},"87":{"body":102,"breadcrumbs":5,"title":3},"870":{"body":32,"breadcrumbs":5,"title":2},"871":{"body":29,"breadcrumbs":5,"title":2},"872":{"body":57,"breadcrumbs":4,"title":1},"873":{"body":55,"breadcrumbs":5,"title":2},"874":{"body":25,"breadcrumbs":4,"title":1},"875":{"body":13,"breadcrumbs":4,"title":1},"876":{"body":20,"breadcrumbs":4,"title":2},"877":{"body":15,"breadcrumbs":3,"title":1},"878":{"body":0,"breadcrumbs":4,"title":2},"879":{"body":18,"breadcrumbs":3,"title":1},"88":{"body":231,"breadcrumbs":7,"title":5},"880":{"body":18,"breadcrumbs":3,"title":1},"881":{"body":43,"breadcrumbs":4,"title":2},"882":{"body":20,"breadcrumbs":3,"title":1},"883":{"body":32,"breadcrumbs":3,"title":1},"884":{"body":44,"breadcrumbs":4,"title":2},"885":{"body":23,"breadcrumbs":4,"title":2},"886":{"body":16,"breadcrumbs":3,"title":1},"887":{"body":13,"breadcrumbs":2,"title":1},"888":{"body":1,"breadcrumbs":3,"title":2},"889":{"body":19,"breadcrumbs":3,"title":2},"89":{"body":27,"breadcrumbs":4,"title":2},"890":{"body":33,"breadcrumbs":3,"title":2},"891":{"body":0,"breadcrumbs":3,"title":2},"892":{"body":69,"breadcrumbs":3,"title":2},"893":{"body":26,"breadcrumbs":3,"title":2},"894":{"body":16,"breadcrumbs":3,"title":2},"895":{"body":10,"breadcrumbs":3,"title":2},"896":{"body":35,"breadcrumbs":3,"title":2},"897":{"body":12,"breadcrumbs":2,"title":1},"898":{"body":8,"breadcrumbs":3,"title":2},"899":{"body":54,"breadcrumbs":3,"title":2},"9":{"body":11,"breadcrumbs":2,"title":1},"90":{"body":29,"breadcrumbs":4,"title":2},"900":{"body":35,"breadcrumbs":3,"title":2},"901":{"body":47,"breadcrumbs":3,"title":2},"902":{"body":64,"breadcrumbs":4,"title":3},"903":{"body":16,"breadcrumbs":3,"title":2},"904":{"body":0,"breadcrumbs":3,"title":2},"905":{"body":5,"breadcrumbs":2,"title":1},"906":{"body":8,"breadcrumbs":2,"title":1},"907":{"body":5,"breadcrumbs":2,"title":1},"908":{"body":45,"breadcrumbs":4,"title":3},"909":{"body":18,"breadcrumbs":2,"title":1},"91":{"body":33,"breadcrumbs":4,"title":2},"910":{"body":14,"breadcrumbs":4,"title":2},"911":{"body":155,"breadcrumbs":5,"title":3},"912":{"body":0,"breadcrumbs":5,"title":3},"913":{"body":42,"breadcrumbs":5,"title":3},"914":{"body":21,"breadcrumbs":5,"title":3},"915":{"body":17,"breadcrumbs":5,"title":3},"916":{"body":112,"breadcrumbs":5,"title":3},"917":{"body":0,"breadcrumbs":4,"title":2},"918":{"body":53,"breadcrumbs":4,"title":2},"919":{"body":11,"breadcrumbs":4,"title":2},"92":{"body":42,"breadcrumbs":3,"title":1},"920":{"body":0,"breadcrumbs":4,"title":2},"921":{"body":45,"breadcrumbs":4,"title":2},"922":{"body":23,"breadcrumbs":4,"title":2},"923":{"body":0,"breadcrumbs":4,"title":2},"924":{"body":23,"breadcrumbs":4,"title":2},"925":{"body":130,"breadcrumbs":4,"title":2},"926":{"body":23,"breadcrumbs":4,"title":2},"927":{"body":9,"breadcrumbs":5,"title":3},"928":{"body":21,"breadcrumbs":5,"title":3},"929":{"body":35,"breadcrumbs":4,"title":2},"93":{"body":45,"breadcrumbs":4,"title":2},"930":{"body":33,"breadcrumbs":4,"title":2},"931":{"body":10,"breadcrumbs":5,"title":3},"932":{"body":37,"breadcrumbs":3,"title":1},"933":{"body":24,"breadcrumbs":5,"title":3},"934":{"body":41,"breadcrumbs":6,"title":4},"935":{"body":24,"breadcrumbs":4,"title":2},"936":{"body":11,"breadcrumbs":4,"title":2},"937":{"body":32,"breadcrumbs":4,"title":2},"938":{"body":12,"breadcrumbs":5,"title":3},"939":{"body":63,"breadcrumbs":4,"title":2},"94":{"body":50,"breadcrumbs":8,"title":6},"940":{"body":19,"breadcrumbs":4,"title":2},"941":{"body":38,"breadcrumbs":4,"title":2},"942":{"body":32,"breadcrumbs":4,"title":2},"943":{"body":6,"breadcrumbs":5,"title":3},"944":{"body":22,"breadcrumbs":3,"title":1},"945":{"body":6,"breadcrumbs":3,"title":1},"946":{"body":23,"breadcrumbs":4,"title":2},"947":{"body":8,"breadcrumbs":5,"title":3},"948":{"body":17,"breadcrumbs":4,"title":2},"949":{"body":20,"breadcrumbs":4,"title":2},"95":{"body":43,"breadcrumbs":7,"title":5},"950":{"body":119,"breadcrumbs":5,"title":3},"951":{"body":31,"breadcrumbs":4,"title":2},"952":{"body":6,"breadcrumbs":4,"title":2},"953":{"body":23,"breadcrumbs":4,"title":2},"954":{"body":26,"breadcrumbs":4,"title":2},"955":{"body":3,"breadcrumbs":4,"title":2},"956":{"body":22,"breadcrumbs":4,"title":2},"957":{"body":8,"breadcrumbs":4,"title":2},"958":{"body":0,"breadcrumbs":4,"title":2},"959":{"body":23,"breadcrumbs":4,"title":2},"96":{"body":43,"breadcrumbs":7,"title":5},"960":{"body":28,"breadcrumbs":4,"title":2},"961":{"body":0,"breadcrumbs":5,"title":3},"962":{"body":17,"breadcrumbs":5,"title":3},"963":{"body":8,"breadcrumbs":5,"title":3},"964":{"body":15,"breadcrumbs":5,"title":3},"965":{"body":6,"breadcrumbs":5,"title":3},"966":{"body":10,"breadcrumbs":5,"title":3},"967":{"body":0,"breadcrumbs":4,"title":2},"968":{"body":14,"breadcrumbs":3,"title":1},"969":{"body":74,"breadcrumbs":3,"title":1},"97":{"body":47,"breadcrumbs":10,"title":8},"970":{"body":15,"breadcrumbs":3,"title":1},"971":{"body":0,"breadcrumbs":4,"title":2},"972":{"body":11,"breadcrumbs":4,"title":2},"973":{"body":13,"breadcrumbs":4,"title":2},"974":{"body":12,"breadcrumbs":3,"title":1},"975":{"body":0,"breadcrumbs":5,"title":3},"976":{"body":160,"breadcrumbs":5,"title":3},"977":{"body":25,"breadcrumbs":5,"title":3},"978":{"body":20,"breadcrumbs":6,"title":4},"979":{"body":22,"breadcrumbs":5,"title":3},"98":{"body":31,"breadcrumbs":9,"title":7},"980":{"body":16,"breadcrumbs":3,"title":1},"981":{"body":25,"breadcrumbs":4,"title":2},"982":{"body":0,"breadcrumbs":5,"title":3},"983":{"body":19,"breadcrumbs":5,"title":3},"984":{"body":22,"breadcrumbs":4,"title":2},"985":{"body":24,"breadcrumbs":4,"title":2},"986":{"body":12,"breadcrumbs":4,"title":2},"987":{"body":52,"breadcrumbs":4,"title":2},"988":{"body":27,"breadcrumbs":4,"title":2},"989":{"body":12,"breadcrumbs":5,"title":3},"99":{"body":7,"breadcrumbs":2,"title":1},"990":{"body":28,"breadcrumbs":4,"title":2},"991":{"body":42,"breadcrumbs":5,"title":3},"992":{"body":35,"breadcrumbs":5,"title":3},"993":{"body":0,"breadcrumbs":5,"title":3},"994":{"body":33,"breadcrumbs":5,"title":3},"995":{"body":24,"breadcrumbs":4,"title":2},"996":{"body":56,"breadcrumbs":5,"title":3},"997":{"body":80,"breadcrumbs":5,"title":3},"998":{"body":9,"breadcrumbs":6,"title":4},"999":{"body":70,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"Welcome to the JSON Agent Communication Standard (JACS) documentation! JACS is a comprehensive framework for creating, signing, and verifying JSON documents with cryptographic integrity, designed specifically for AI agent communication and task management.","breadcrumbs":"Introduction » JACS: JSON Agent Communication Standard","id":"0","title":"JACS: JSON Agent Communication Standard"},"1":{"body":"JACS provides a standard way for AI agents to: Create and sign JSON documents with cryptographic signatures Verify authenticity and integrity of documents Manage tasks and agreements between multiple agents Maintain audit trails of modifications and versioning Ensure trust in multi-agent systems As a developer, JACS gives you the tools to build trustworthy AI systems where agents can securely exchange tasks, agreements, and data with verifiable integrity.","breadcrumbs":"Introduction » What is JACS?","id":"1","title":"What is JACS?"},"10":{"body":"pip install jacs import jacs agent = jacs.JacsAgent()\nagent.load(\"./config.json\")","breadcrumbs":"Introduction » Python","id":"10","title":"Python"},"100":{"body":"Rust : Version 1.93 or later (Edition 2024) Cargo : Included with Rust installation","breadcrumbs":"Installation » Requirements","id":"100","title":"Requirements"},"1000":{"body":"Status Description active Currently in use for signing rotated Superseded by newer key, still valid for old signatures revoked Compromised, signatures should not be trusted expired Past validity period","breadcrumbs":"Key Rotation » Key Status Values","id":"1000","title":"Key Status Values"},"1001":{"body":"impl TrustedAgent { /// Get the public key that was active for a specific agent version fn get_key_for_version(&self, version: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|entry| { match (&entry.first_version, &entry.last_version) { (Some(first), Some(last)) => { version >= first && version <= last } (Some(first), None) => { version >= first // Current key } _ => false } }) } /// Get the public key by its hash fn get_key_by_hash(&self, hash: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|e| e.public_key_hash == hash) }\n}","breadcrumbs":"Key Rotation » Looking Up Keys","id":"1001","title":"Looking Up Keys"},"1002":{"body":"DNS records can advertise multiple key versions for an agent.","breadcrumbs":"Key Rotation » DNS Support for Key Versions","id":"1002","title":"DNS Support for Key Versions"},"1003":{"body":"Each key version gets its own TXT record: ; Current key\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=current; alg=SHA-256; hash={hash1}\" ; Previous key (still valid for old signatures)\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=rotated; valid_until=2025-01-15; hash={hash2}\"","breadcrumbs":"Key Rotation » Multi-Version DNS Records","id":"1003","title":"Multi-Version DNS Records"},"1004":{"body":"# Generate DNS records for all active keys\njacs agent dns --all-keys","breadcrumbs":"Key Rotation » DNS Record Generation","id":"1004","title":"DNS Record Generation"},"1005":{"body":"","breadcrumbs":"Key Rotation » Security Considerations","id":"1005","title":"Security Considerations"},"1006":{"body":"When a key is compromised: Mark as revoked in the agent's key history Update DNS to include revocation status Signatures fail verification when made with revoked keys Notify trusted peers if possible","breadcrumbs":"Key Rotation » Key Revocation","id":"1006","title":"Key Revocation"},"1007":{"body":"During rotation, both old and new keys may be valid: New documents should be signed with the new key Old documents remain verifiable with the old key DNS may advertise both keys during transition","breadcrumbs":"Key Rotation » Overlap Period","id":"1007","title":"Overlap Period"},"1008":{"body":"After rotation: Old private keys should be securely deleted Only public keys are retained for verification Key metadata must be protected from modification","breadcrumbs":"Key Rotation » Secure Deletion","id":"1008","title":"Secure Deletion"},"1009":{"body":"","breadcrumbs":"Key Rotation » Best Practices","id":"1009","title":"Best Practices"},"101":{"body":"rustc --version\n# Should show rustc 1.93.0 or later If you need to update Rust: rustup update stable","breadcrumbs":"Installation » Verify Rust Version","id":"101","title":"Verify Rust Version"},"1010":{"body":"Regular rotation : Quarterly or annually for compliance Algorithm upgrade : When transitioning to stronger cryptography Incident response : Immediately after suspected compromise","breadcrumbs":"Key Rotation » Rotation Schedule","id":"1010","title":"Rotation Schedule"},"1011":{"body":"Backup current agent state Verify all systems can handle new key format Plan DNS propagation time Notify dependent systems of upcoming change","breadcrumbs":"Key Rotation » Pre-Rotation Checklist","id":"1011","title":"Pre-Rotation Checklist"},"1012":{"body":"Verify new key is active Confirm old documents still verify Update DNS records Securely delete old private key Test signing with new key","breadcrumbs":"Key Rotation » Post-Rotation Checklist","id":"1012","title":"Post-Rotation Checklist"},"1013":{"body":"Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity verification","breadcrumbs":"Key Rotation » See Also","id":"1013","title":"See Also"},"1014":{"body":"JACS supports multiple cryptographic algorithms for digital signatures, providing flexibility for different security requirements and future-proofing against quantum computing threats.","breadcrumbs":"Cryptographic Algorithms » Cryptographic Algorithms","id":"1014","title":"Cryptographic Algorithms"},"1015":{"body":"Algorithm Config Value Type Key Size Signature Size Recommended Use Ed25519 ring-Ed25519 Elliptic Curve 32 bytes 64 bytes General purpose (default) RSA-PSS RSA-PSS RSA 2048-4096 bits 256-512 bytes Legacy systems Dilithium pq-dilithium Lattice-based ~1.3 KB ~2.4 KB Post-quantum PQ2025 pq2025 Hybrid ~1.3 KB ~2.5 KB Transitional","breadcrumbs":"Cryptographic Algorithms » Supported Algorithms","id":"1015","title":"Supported Algorithms"},"1016":{"body":"The recommended algorithm for most use cases.","breadcrumbs":"Cryptographic Algorithms » Ed25519 (ring-Ed25519)","id":"1016","title":"Ed25519 (ring-Ed25519)"},"1017":{"body":"Ed25519 is an elliptic curve signature scheme using Curve25519. JACS uses the ring cryptographic library implementation.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1017","title":"Overview"},"1018":{"body":"Speed : Extremely fast signing and verification Key Size : 32-byte private key, 32-byte public key Signature Size : 64 bytes Security Level : ~128 bits (classical)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1018","title":"Characteristics"},"1019":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1019","title":"Configuration"},"102":{"body":"","breadcrumbs":"Installation » Installing the CLI","id":"102","title":"Installing the CLI"},"1020":{"body":"General agent communication MCP message signing HTTP request/response signing Document signing","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1020","title":"Use Cases"},"1021":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using ring-Ed25519 # Sign a message\nsignature = agent.sign_string(\"Hello, World!\")\nprint(f\"Signature (64 bytes): {len(signature)} characters base64\")","breadcrumbs":"Cryptographic Algorithms » Example","id":"1021","title":"Example"},"1022":{"body":"Industry-standard RSA with Probabilistic Signature Scheme padding.","breadcrumbs":"Cryptographic Algorithms » RSA-PSS","id":"1022","title":"RSA-PSS"},"1023":{"body":"RSA-PSS provides compatibility with systems that require RSA signatures. JACS uses 2048-bit or larger keys.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1023","title":"Overview"},"1024":{"body":"Speed : Slower than Ed25519 Key Size : 2048-4096 bits Signature Size : Same as key size (256-512 bytes) Security Level : ~112-128 bits (2048-bit key)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1024","title":"Characteristics"},"1025":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1025","title":"Configuration"},"1026":{"body":"Integration with legacy systems Compliance requirements mandating RSA Interoperability with enterprise PKI","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1026","title":"Use Cases"},"1027":{"body":"Larger signatures increase document size Slower than Ed25519 Larger keys needed for equivalent security","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1027","title":"Considerations"},"1028":{"body":"NIST-standardized post-quantum digital signature algorithm.","breadcrumbs":"Cryptographic Algorithms » Dilithium (pq-dilithium)","id":"1028","title":"Dilithium (pq-dilithium)"},"1029":{"body":"Dilithium is a lattice-based signature scheme selected by NIST for post-quantum cryptography standardization. It provides security against both classical and quantum computers.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1029","title":"Overview"},"103":{"body":"cargo install jacs --features cli","breadcrumbs":"Installation » From crates.io (Recommended)","id":"103","title":"From crates.io (Recommended)"},"1030":{"body":"Speed : Moderate (faster than RSA, slower than Ed25519) Key Size : ~1.3 KB public key, ~2.5 KB private key Signature Size : ~2.4 KB Security Level : NIST Level 3 (quantum-resistant)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1030","title":"Characteristics"},"1031":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1031","title":"Configuration"},"1032":{"body":"Long-term document security Protection against future quantum attacks High-security applications Government/defense requirements","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1032","title":"Use Cases"},"1033":{"body":"Larger signatures and keys than classical algorithms Newer algorithm (less battle-tested) May be required for future compliance","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1033","title":"Considerations"},"1034":{"body":"Transitional hybrid scheme combining classical and post-quantum algorithms.","breadcrumbs":"Cryptographic Algorithms » PQ2025 (Hybrid)","id":"1034","title":"PQ2025 (Hybrid)"},"1035":{"body":"PQ2025 combines Ed25519 with Dilithium, providing security even if one algorithm is broken. This approach is recommended by security researchers during the quantum transition period.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1035","title":"Overview"},"1036":{"body":"Speed : Slower (two signatures computed) Key Size : Combined Ed25519 + Dilithium Signature Size : ~2.5 KB (combined) Security Level : Max of both algorithms","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1036","title":"Characteristics"},"1037":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1037","title":"Configuration"},"1038":{"body":"Transitioning to post-quantum Maximum security requirements Uncertainty about algorithm security Long-lived documents","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1038","title":"Use Cases"},"1039":{"body":"Largest signatures Slowest signing/verification Best for paranoid security requirements","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1039","title":"Considerations"},"104":{"body":"git clone https://github.com/HumanAssisted/JACS\ncd JACS/jacs\ncargo install --path . --features cli","breadcrumbs":"Installation » From Source","id":"104","title":"From Source"},"1040":{"body":"","breadcrumbs":"Cryptographic Algorithms » Algorithm Selection Guide","id":"1040","title":"Algorithm Selection Guide"},"1041":{"body":"Requirement Recommended Algorithm Best performance ring-Ed25519 Smallest signatures ring-Ed25519 Legacy compatibility RSA-PSS Quantum resistance pq-dilithium Maximum security pq2025 General purpose ring-Ed25519","breadcrumbs":"Cryptographic Algorithms » Decision Matrix","id":"1041","title":"Decision Matrix"},"1042":{"body":"Web APIs and MCP : { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Fast signing is critical for real-time communication. Legal/Financial Documents : { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Long-term validity requires quantum resistance. Enterprise Integration : { \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Compatibility with existing PKI infrastructure. High-Security : { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Belt-and-suspenders approach for maximum protection.","breadcrumbs":"Cryptographic Algorithms » By Use Case","id":"1042","title":"By Use Case"},"1043":{"body":"Keys are generated automatically when creating an agent: # Directory structure after agent creation\njacs_keys/\n├── private.pem # Algorithm-specific private key\n└── public.pem # Algorithm-specific public key","breadcrumbs":"Cryptographic Algorithms » Key Generation","id":"1043","title":"Key Generation"},"1044":{"body":"Algorithm Private Key Format Public Key Format ring-Ed25519 PEM (PKCS#8) PEM (SPKI) RSA-PSS PEM (PKCS#8) PEM (SPKI) pq-dilithium PEM (custom) PEM (custom) pq2025 PEM (combined) PEM (combined)","breadcrumbs":"Cryptographic Algorithms » Key Formats","id":"1044","title":"Key Formats"},"1045":{"body":"Signatures in JACS documents include algorithm metadata: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"content\"] }\n} The signingAlgorithm field enables verifiers to use the correct verification method.","breadcrumbs":"Cryptographic Algorithms » Signature Structure","id":"1045","title":"Signature Structure"},"1046":{"body":"JACS uses SHA-256 for all hash operations: Document content hashing (jacsSha256) Public key fingerprints (publicKeyHash) Agreement content locking (jacsAgreementHash) { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Cryptographic Algorithms » Hashing","id":"1046","title":"Hashing"},"1047":{"body":"To migrate to a new algorithm: Generate New Keys { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Create New Agent Version # Load with old algorithm\nagent.load('./old-config.json') # Update to new algorithm and generate new version\nnew_agent = agent.update_agent(json.dumps({ # ... agent data with new keys\n})) Update Configuration { \"jacs_agent_id_and_version\": \"agent-id:new-version\", \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Maintain Backward Compatibility Keep old agent versions for verifying old documents Old signatures remain valid with old public keys","breadcrumbs":"Cryptographic Algorithms » Algorithm Migration","id":"1047","title":"Algorithm Migration"},"1048":{"body":"Approximate performance (varies by hardware): Algorithm Sign (ops/sec) Verify (ops/sec) Key Gen (ms) ring-Ed25519 ~50,000 ~20,000 <1 RSA-PSS (2048) ~1,000 ~30,000 ~100 pq-dilithium ~5,000 ~10,000 ~1 pq2025 ~4,000 ~8,000 ~2","breadcrumbs":"Cryptographic Algorithms » Performance Comparison","id":"1048","title":"Performance Comparison"},"1049":{"body":"","breadcrumbs":"Cryptographic Algorithms » Security Considerations","id":"1049","title":"Security Considerations"},"105":{"body":"jacs --help","breadcrumbs":"Installation » Verify Installation","id":"105","title":"Verify Installation"},"1050":{"body":"JACS documents include the signing algorithm, enabling: Verification with correct algorithm Graceful algorithm transitions Multi-algorithm environments","breadcrumbs":"Cryptographic Algorithms » Algorithm Agility","id":"1050","title":"Algorithm Agility"},"1051":{"body":"Signatures don't provide forward secrecy. For confidentiality: Use TLS for transport Consider additional encryption layers","breadcrumbs":"Cryptographic Algorithms » Forward Secrecy","id":"1051","title":"Forward Secrecy"},"1052":{"body":"If a private key is compromised: Generate new key pair Create new agent version Revoke trust in compromised version Re-sign critical documents","breadcrumbs":"Cryptographic Algorithms » Key Compromise","id":"1052","title":"Key Compromise"},"1053":{"body":"Security Model - Overall security architecture Configuration - Algorithm configuration DNS Verification - Public key fingerprint verification","breadcrumbs":"Cryptographic Algorithms » See Also","id":"1053","title":"See Also"},"1054":{"body":"JACS supports multiple storage backends for persisting documents and agents. This flexibility allows deployment in various environments from local development to cloud infrastructure.","breadcrumbs":"Storage Backends » Storage Backends","id":"1054","title":"Storage Backends"},"1055":{"body":"Backend Config Value Description Filesystem fs Local file storage (default) AWS S3 aws Amazon S3 object storage HAI Cloud hai HAI managed storage PostgreSQL database PostgreSQL with JSONB queries (requires database feature)","breadcrumbs":"Storage Backends » Available Backends","id":"1055","title":"Available Backends"},"1056":{"body":"Set the storage backend in your configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1056","title":"Configuration"},"1057":{"body":"The default storage backend, storing documents as JSON files on the local filesystem.","breadcrumbs":"Storage Backends » Filesystem Storage (fs)","id":"1057","title":"Filesystem Storage (fs)"},"1058":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1058","title":"Configuration"},"1059":{"body":"jacs_data/\n├── agents/\n│ └── {agent-id}/\n│ └── {version-id}.json\n├── documents/\n│ └── {document-id}/\n│ └── {version-id}.json\n└── files/ └── {attachment-hash}","breadcrumbs":"Storage Backends » Directory Structure","id":"1059","title":"Directory Structure"},"106":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Installation » Using as a Library","id":"106","title":"Using as a Library"},"1060":{"body":"Local development Single-server deployments Testing and prototyping Air-gapped environments","breadcrumbs":"Storage Backends » Use Cases","id":"1060","title":"Use Cases"},"1061":{"body":"Simple setup No network dependencies Fast local access Easy backup and migration","breadcrumbs":"Storage Backends » Advantages","id":"1061","title":"Advantages"},"1062":{"body":"Not suitable for distributed systems Limited by local disk space Single point of failure","breadcrumbs":"Storage Backends » Considerations","id":"1062","title":"Considerations"},"1063":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using filesystem storage # Documents are saved to jacs_data/documents/\ndoc = agent.create_document(json.dumps({ 'title': 'My Document'\n}))\n# Saved to: jacs_data/documents/{doc-id}/{version-id}.json","breadcrumbs":"Storage Backends » Example","id":"1063","title":"Example"},"1064":{"body":"Cloud object storage using Amazon S3.","breadcrumbs":"Storage Backends » AWS S3 Storage (aws)","id":"1064","title":"AWS S3 Storage (aws)"},"1065":{"body":"{ \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1065","title":"Configuration"},"1066":{"body":"export AWS_ACCESS_KEY_ID=\"your-access-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret-key\"\nexport AWS_REGION=\"us-east-1\"","breadcrumbs":"Storage Backends » Environment Variables","id":"1066","title":"Environment Variables"},"1067":{"body":"my-jacs-bucket/\n├── data/\n│ ├── agents/\n│ │ └── {agent-id}/\n│ │ └── {version-id}.json\n│ ├── documents/\n│ │ └── {document-id}/\n│ │ └── {version-id}.json\n│ └── files/\n│ └── {attachment-hash}","breadcrumbs":"Storage Backends » Bucket Structure","id":"1067","title":"Bucket Structure"},"1068":{"body":"Production deployments Distributed systems High availability requirements Large document volumes","breadcrumbs":"Storage Backends » Use Cases","id":"1068","title":"Use Cases"},"1069":{"body":"Scalable storage High durability (99.999999999%) Geographic redundancy Built-in versioning support","breadcrumbs":"Storage Backends » Advantages","id":"1069","title":"Advantages"},"107":{"body":"JACS supports several optional features for observability and integrations: [dependencies]\n# Basic library usage\njacs = \"0.3\" # With OpenTelemetry logging\njacs = { version = \"0.3\", features = [\"otlp-logs\"] } # With OpenTelemetry metrics\njacs = { version = \"0.3\", features = [\"otlp-metrics\"] } # With OpenTelemetry tracing\njacs = { version = \"0.3\", features = [\"otlp-tracing\"] } # With all observability features\njacs = { version = \"0.3\", features = [\"otlp-logs\", \"otlp-metrics\", \"otlp-tracing\"] }","breadcrumbs":"Installation » With Optional Features","id":"107","title":"With Optional Features"},"1070":{"body":"Requires AWS account Network latency Storage costs IAM configuration needed","breadcrumbs":"Storage Backends » Considerations","id":"1070","title":"Considerations"},"1071":{"body":"Minimum required permissions: { \"Version\": \"2012-10-17\", \"Statement\": [ { \"Effect\": \"Allow\", \"Action\": [ \"s3:GetObject\", \"s3:PutObject\", \"s3:DeleteObject\", \"s3:ListBucket\" ], \"Resource\": [ \"arn:aws:s3:::my-jacs-bucket\", \"arn:aws:s3:::my-jacs-bucket/*\" ] } ]\n}","breadcrumbs":"Storage Backends » IAM Policy","id":"1071","title":"IAM Policy"},"1072":{"body":"import jacs\nimport json\nimport os # Set AWS credentials\nos.environ['AWS_ACCESS_KEY_ID'] = 'your-key'\nos.environ['AWS_SECRET_ACCESS_KEY'] = 'your-secret'\nos.environ['AWS_REGION'] = 'us-east-1' agent = jacs.JacsAgent()\nagent.load('./jacs.s3.config.json') # Documents are saved to S3\ndoc = agent.create_document(json.dumps({ 'title': 'Cloud Document'\n}))","breadcrumbs":"Storage Backends » Example","id":"1072","title":"Example"},"1073":{"body":"Managed storage provided by HAI.","breadcrumbs":"Storage Backends » HAI Cloud Storage (hai)","id":"1073","title":"HAI Cloud Storage (hai)"},"1074":{"body":"{ \"jacs_default_storage\": \"hai\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1074","title":"Configuration"},"1075":{"body":"Managed infrastructure Built-in agent registry Cross-organization document sharing Integrated DNS verification","breadcrumbs":"Storage Backends » Features","id":"1075","title":"Features"},"1076":{"body":"Multi-agent ecosystems Cross-organization collaboration Managed deployments Integration with HAI services","breadcrumbs":"Storage Backends » Use Cases","id":"1076","title":"Use Cases"},"1077":{"body":"The database storage backend stores JACS documents in PostgreSQL, enabling JSONB queries, pagination, and agent-based lookups while preserving cryptographic signatures. This backend is behind a compile-time feature flag and requires the database Cargo feature to be enabled.","breadcrumbs":"Storage Backends » PostgreSQL Database Storage (database)","id":"1077","title":"PostgreSQL Database Storage (database)"},"1078":{"body":"# Build with database support\ncargo build --features database # Run tests with database support (requires Docker for testcontainers)\ncargo test --features database-tests","breadcrumbs":"Storage Backends » Compile-Time Setup","id":"1078","title":"Compile-Time Setup"},"1079":{"body":"{ \"jacs_default_storage\": \"database\"\n} Environment variables (12-Factor compliant): export JACS_DATABASE_URL=\"postgres://user:password@localhost:5432/jacs\"\nexport JACS_DATABASE_MAX_CONNECTIONS=10 # optional, default 10\nexport JACS_DATABASE_MIN_CONNECTIONS=1 # optional, default 1\nexport JACS_DATABASE_CONNECT_TIMEOUT_SECS=30 # optional, default 30","breadcrumbs":"Storage Backends » Configuration","id":"1079","title":"Configuration"},"108":{"body":"Feature Description cli Enables CLI binary build with clap and ratatui otlp-logs OpenTelemetry Protocol logging backend otlp-metrics OpenTelemetry Protocol metrics backend otlp-tracing OpenTelemetry Protocol distributed tracing observability-convenience Helper wrappers for metrics and logging mcp-server Model Context Protocol server integration surface","breadcrumbs":"Installation » Available Features","id":"108","title":"Available Features"},"1080":{"body":"JACS uses a TEXT + JSONB dual-column strategy: raw_contents (TEXT) : Stores the exact JSON bytes as-is. This is used when retrieving documents to preserve cryptographic signatures (PostgreSQL JSONB normalizes key ordering, which would break signatures). file_contents (JSONB) : Stores the same document as JSONB for efficient queries, field extraction, and indexing.","breadcrumbs":"Storage Backends » How It Works","id":"1080","title":"How It Works"},"1081":{"body":"CREATE TABLE jacs_document ( jacs_id TEXT NOT NULL, jacs_version TEXT NOT NULL, agent_id TEXT, jacs_type TEXT NOT NULL, raw_contents TEXT NOT NULL, file_contents JSONB NOT NULL, created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), PRIMARY KEY (jacs_id, jacs_version)\n);","breadcrumbs":"Storage Backends » Table Schema","id":"1081","title":"Table Schema"},"1082":{"body":"Documents are immutable once stored . New versions create new rows keyed by (jacs_id, jacs_version). There are no UPDATE operations on existing rows. Inserting a duplicate (jacs_id, jacs_version) is silently ignored (ON CONFLICT DO NOTHING).","breadcrumbs":"Storage Backends » Append-Only Model","id":"1082","title":"Append-Only Model"},"1083":{"body":"The database backend provides additional query methods beyond basic CRUD: Method Description query_by_type(type, limit, offset) Paginated queries by document type query_by_field(field, value, type, limit, offset) JSONB field queries count_by_type(type) Count documents by type get_versions(id) All versions of a document get_latest(id) Most recent version query_by_agent(agent_id, type, limit, offset) Documents by signing agent","breadcrumbs":"Storage Backends » Query Capabilities","id":"1083","title":"Query Capabilities"},"1084":{"body":"use jacs::storage::{DatabaseStorage, DatabaseDocumentTraits, StorageDocumentTraits}; // Create storage (requires tokio runtime)\nlet storage = DatabaseStorage::new( \"postgres://localhost/jacs\", Some(10), // max connections Some(1), // min connections Some(30), // timeout seconds\n)?; // Run migrations (creates table + indexes)\nstorage.run_migrations()?; // Store a document\nstorage.store_document(&doc)?; // Query by type with pagination\nlet commitments = storage.query_by_type(\"commitment\", 10, 0)?; // Query by JSONB field\nlet active = storage.query_by_field( \"jacsCommitmentStatus\", \"active\", Some(\"commitment\"), 10, 0\n)?; // Get latest version\nlet latest = storage.get_latest(\"some-document-id\")?;","breadcrumbs":"Storage Backends » Rust API Example","id":"1084","title":"Rust API Example"},"1085":{"body":"Even when using database storage, keys are always loaded from the filesystem or keyservers -- never from the database or configuration providers. The database stores only signed documents.","breadcrumbs":"Storage Backends » Security Note","id":"1085","title":"Security Note"},"1086":{"body":"Production deployments requiring complex queries Multi-agent systems with shared document visibility Applications needing pagination and aggregation Environments where JSONB indexing provides significant query performance","breadcrumbs":"Storage Backends » Use Cases","id":"1086","title":"Use Cases"},"1087":{"body":"Requires PostgreSQL 14+ Requires tokio runtime (not available in WASM) Compile-time feature flag (database) Network dependency on PostgreSQL server","breadcrumbs":"Storage Backends » Considerations","id":"1087","title":"Considerations"},"1088":{"body":"For testing and temporary operations, documents can be created without saving: # Create document without saving\ndoc = agent.create_document( json.dumps({'temp': 'data'}), no_save=True # Don't persist\n) const doc = agent.createDocument( JSON.stringify({ temp: 'data' }), null, // custom_schema null, // output_filename true // no_save = true\n);","breadcrumbs":"Storage Backends » In-Memory Storage","id":"1088","title":"In-Memory Storage"},"1089":{"body":"Scenario Recommended Backend Development fs Single server fs Complex queries needed database Multi-agent with shared queries database Cloud deployment aws High availability aws Multi-organization hai Testing In-memory (no_save)","breadcrumbs":"Storage Backends » Storage Selection Guide","id":"1089","title":"Storage Selection Guide"},"109":{"body":"JACS supports the following platforms: Platform Architecture Support Linux x86_64, aarch64 Full support macOS x86_64, aarch64 Full support Windows x86_64 Full support WebAssembly wasm32 Partial (no post-quantum crypto, limited storage)","breadcrumbs":"Installation » Platform Support","id":"109","title":"Platform Support"},"1090":{"body":"","breadcrumbs":"Storage Backends » File Storage","id":"1090","title":"File Storage"},"1091":{"body":"Files can be embedded directly in documents: doc = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n) The file contents are base64-encoded and stored in jacsFiles.","breadcrumbs":"Storage Backends » Embedded Files","id":"1091","title":"Embedded Files"},"1092":{"body":"Or reference files without embedding: doc = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=False\n) Only the file path and hash are stored. The file must be available when the document is accessed.","breadcrumbs":"Storage Backends » External Files","id":"1092","title":"External Files"},"1093":{"body":"","breadcrumbs":"Storage Backends » Data Migration","id":"1093","title":"Data Migration"},"1094":{"body":"import jacs\nimport json\nimport os # Load from filesystem\nfs_agent = jacs.JacsAgent()\nfs_agent.load('./jacs.fs.config.json') # Read all documents\n# (implementation depends on your document tracking) # Configure S3\ns3_agent = jacs.JacsAgent()\ns3_agent.load('./jacs.s3.config.json') # Re-create documents in S3\nfor doc_json in documents: doc = json.loads(doc_json) # Remove existing signatures for re-signing del doc['jacsSignature'] del doc['jacsSha256'] s3_agent.create_document(json.dumps(doc))","breadcrumbs":"Storage Backends » Filesystem to S3","id":"1094","title":"Filesystem to S3"},"1095":{"body":"For manual migration: # Export from filesystem\ntar -czf jacs_backup.tar.gz ./jacs_data # Import to new location\ntar -xzf jacs_backup.tar.gz -C /new/location","breadcrumbs":"Storage Backends » Export/Import","id":"1095","title":"Export/Import"},"1096":{"body":"","breadcrumbs":"Storage Backends » Backup and Recovery","id":"1096","title":"Backup and Recovery"},"1097":{"body":"# Regular backups\nrsync -av ./jacs_data/ /backup/jacs_data/ # Or with timestamp\ntar -czf jacs_backup_$(date +%Y%m%d).tar.gz ./jacs_data","breadcrumbs":"Storage Backends » Filesystem Backup","id":"1097","title":"Filesystem Backup"},"1098":{"body":"Enable S3 versioning for automatic backups: aws s3api put-bucket-versioning \\ --bucket my-jacs-bucket \\ --versioning-configuration Status=Enabled","breadcrumbs":"Storage Backends » S3 Backup","id":"1098","title":"S3 Backup"},"1099":{"body":"For disaster recovery with S3: aws s3api put-bucket-replication \\ --bucket my-jacs-bucket \\ --replication-configuration file://replication.json","breadcrumbs":"Storage Backends » Cross-Region Replication","id":"1099","title":"Cross-Region Replication"},"11":{"body":"JACS is ideal for scenarios where you need: Multi-agent systems where agents need to trust each other Task delegation with verifiable completion and approval Audit trails for AI decision-making processes Secure data exchange between AI systems Compliance requirements for AI system interactions Version control for AI-generated content and decisions","breadcrumbs":"Introduction » When to Use JACS","id":"11","title":"When to Use JACS"},"110":{"body":"When targeting WebAssembly, some features are unavailable: Post-quantum cryptographic algorithms (pq-dilithium) File system storage backend HTTP-based remote operations","breadcrumbs":"Installation » WebAssembly Notes","id":"110","title":"WebAssembly Notes"},"1100":{"body":"","breadcrumbs":"Storage Backends » Performance Optimization","id":"1100","title":"Performance Optimization"},"1101":{"body":"Use SSD storage Consider separate disk for jacs_data Enable filesystem caching","breadcrumbs":"Storage Backends » Filesystem","id":"1101","title":"Filesystem"},"1102":{"body":"Use regional endpoints Enable transfer acceleration for global access Consider S3 Intelligent-Tiering for cost optimization","breadcrumbs":"Storage Backends » S3","id":"1102","title":"S3"},"1103":{"body":"Implement application-level caching for frequently accessed documents: import functools @functools.lru_cache(maxsize=100)\ndef get_document(doc_id, version_id): return agent.get_document(f\"{doc_id}:{version_id}\")","breadcrumbs":"Storage Backends » Caching","id":"1103","title":"Caching"},"1104":{"body":"","breadcrumbs":"Storage Backends » Security Considerations","id":"1104","title":"Security Considerations"},"1105":{"body":"# Restrict permissions\nchmod 700 ./jacs_data\nchmod 600 ./jacs_data/**/*.json","breadcrumbs":"Storage Backends » Filesystem","id":"1105","title":"Filesystem"},"1106":{"body":"Enable encryption at rest (SSE-S3 or SSE-KMS) Use VPC endpoints for private access Enable access logging Configure bucket policies carefully { \"jacs_data_directory\": \"s3://my-jacs-bucket/data\", \"aws_s3_encryption\": \"AES256\"\n}","breadcrumbs":"Storage Backends » S3","id":"1106","title":"S3"},"1107":{"body":"Configuration - Storage configuration options Security Model - Storage security Quick Start - Initial setup","breadcrumbs":"Storage Backends » See Also","id":"1107","title":"See Also"},"1108":{"body":"JACS allows you to define custom document schemas that extend the base header schema, enabling type-safe, validated documents for your specific use cases.","breadcrumbs":"Custom Schemas » Custom Schemas","id":"1108","title":"Custom Schemas"},"1109":{"body":"Custom schemas: Inherit all JACS header fields (jacsId, jacsVersion, jacsSignature, etc.) Add domain-specific fields with validation Enable IDE autocompletion and type checking Ensure document consistency across your application","breadcrumbs":"Custom Schemas » Overview","id":"1109","title":"Overview"},"111":{"body":"After installation, initialize JACS: # Create configuration and agent in one step\njacs init This creates: ~/.jacs/jacs.config.json - Configuration file Cryptographic keys for your agent Initial agent document","breadcrumbs":"Installation » Configuration","id":"111","title":"Configuration"},"1110":{"body":"","breadcrumbs":"Custom Schemas » Creating a Custom Schema","id":"1110","title":"Creating a Custom Schema"},"1111":{"body":"Custom schemas extend the JACS header using allOf: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"description\": \"Invoice document with JACS signing\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0 }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"] } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"Custom Schemas » Basic Structure","id":"1111","title":"Basic Structure"},"1112":{"body":"Create the schema file // schemas/order.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://mycompany.com/schemas/order.schema.json\", \"title\": \"Order\", \"description\": \"E-commerce order document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"orderId\": { \"type\": \"string\", \"pattern\": \"^ORD-[0-9]{6}$\" }, \"customer\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"email\": { \"type\": \"string\", \"format\": \"email\" } }, \"required\": [\"name\", \"email\"] }, \"items\": { \"type\": \"array\", \"minItems\": 1, \"items\": { \"type\": \"object\", \"properties\": { \"sku\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"price\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"sku\", \"quantity\", \"price\"] } }, \"total\": { \"type\": \"number\", \"minimum\": 0 }, \"status\": { \"type\": \"string\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }, \"required\": [\"orderId\", \"customer\", \"items\", \"total\", \"status\"] } ]\n} Use the schema when creating documents import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') order = agent.create_document( json.dumps({ 'orderId': 'ORD-123456', 'customer': { 'name': 'Jane Smith', 'email': 'jane@example.com' }, 'items': [ {'sku': 'WIDGET-001', 'quantity': 2, 'price': 29.99} ], 'total': 59.98, 'status': 'pending' }), custom_schema='./schemas/order.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const order = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane Smith', email: 'jane@example.com' }, items: [ { sku: 'WIDGET-001', quantity: 2, price: 29.99 } ], total: 59.98, status: 'pending' }), './schemas/order.schema.json'\n);","breadcrumbs":"Custom Schemas » Step-by-Step Guide","id":"1112","title":"Step-by-Step Guide"},"1113":{"body":"","breadcrumbs":"Custom Schemas » Schema Best Practices","id":"1113","title":"Schema Best Practices"},"1114":{"body":"{ \"$id\": \"https://mycompany.com/schemas/v1/order.schema.json\"\n} Include version in the path for schema evolution.","breadcrumbs":"Custom Schemas » Use Meaningful IDs","id":"1114","title":"Use Meaningful IDs"},"1115":{"body":"{ \"properties\": { \"status\": { \"type\": \"string\", \"description\": \"Current order status in the fulfillment workflow\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }\n}","breadcrumbs":"Custom Schemas » Document Everything","id":"1115","title":"Document Everything"},"1116":{"body":"{ \"properties\": { \"email\": { \"type\": \"string\", \"format\": \"email\" }, \"phone\": { \"type\": \"string\", \"pattern\": \"^\\\\+?[1-9]\\\\d{1,14}$\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1, \"maximum\": 1000 } }\n}","breadcrumbs":"Custom Schemas » Use Appropriate Validation","id":"1116","title":"Use Appropriate Validation"},"1117":{"body":"{ \"properties\": { \"shipping\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } }, \"billing\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } } }\n}","breadcrumbs":"Custom Schemas » Group Related Fields","id":"1117","title":"Group Related Fields"},"1118":{"body":"","breadcrumbs":"Custom Schemas » Advanced Schema Features","id":"1118","title":"Advanced Schema Features"},"1119":{"body":"Different requirements based on field values: { \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\", \"enum\": [\"credit_card\", \"bank_transfer\", \"crypto\"] } } } ], \"if\": { \"properties\": { \"paymentMethod\": { \"const\": \"credit_card\" } } }, \"then\": { \"properties\": { \"cardLastFour\": { \"type\": \"string\", \"pattern\": \"^[0-9]{4}$\" } }, \"required\": [\"cardLastFour\"] }\n}","breadcrumbs":"Custom Schemas » Conditional Validation","id":"1119","title":"Conditional Validation"},"112":{"body":"Alternatively, create configuration and agent separately: # Create configuration only\njacs config create # Create agent with keys\njacs agent create --create-keys true","breadcrumbs":"Installation » Manual Configuration","id":"112","title":"Manual Configuration"},"1120":{"body":"{ \"$defs\": { \"address\": { \"type\": \"object\", \"properties\": { \"street\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } }, \"required\": [\"street\", \"city\", \"country\"] } }, \"properties\": { \"shippingAddress\": { \"$ref\": \"#/$defs/address\" }, \"billingAddress\": { \"$ref\": \"#/$defs/address\" } }\n}","breadcrumbs":"Custom Schemas » Reusable Definitions","id":"1120","title":"Reusable Definitions"},"1121":{"body":"{ \"properties\": { \"tags\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"minItems\": 1, \"maxItems\": 10, \"uniqueItems\": true } }\n}","breadcrumbs":"Custom Schemas » Array Constraints","id":"1121","title":"Array Constraints"},"1122":{"body":"For dynamic field names: { \"properties\": { \"metadata\": { \"type\": \"object\", \"patternProperties\": { \"^x-\": { \"type\": \"string\" } }, \"additionalProperties\": false } }\n}","breadcrumbs":"Custom Schemas » Pattern Properties","id":"1122","title":"Pattern Properties"},"1123":{"body":"","breadcrumbs":"Custom Schemas » Schema Inheritance","id":"1123","title":"Schema Inheritance"},"1124":{"body":"Create schema hierarchies: // schemas/base-transaction.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/base-transaction.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"transactionId\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"amount\": { \"type\": \"number\" } }, \"required\": [\"transactionId\", \"timestamp\", \"amount\"] } ]\n} // schemas/payment.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/payment.schema.json\", \"allOf\": [ { \"$ref\": \"https://example.com/schemas/base-transaction.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\" }, \"processorId\": { \"type\": \"string\" } }, \"required\": [\"paymentMethod\"] } ]\n}","breadcrumbs":"Custom Schemas » Extending Custom Schemas","id":"1124","title":"Extending Custom Schemas"},"1125":{"body":"","breadcrumbs":"Custom Schemas » Validation","id":"1125","title":"Validation"},"1126":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') try: # This will fail validation - missing required field doc = agent.create_document( json.dumps({ 'orderId': 'ORD-123456' # Missing: customer, items, total, status }), custom_schema='./schemas/order.schema.json' )\nexcept Exception as e: print(f\"Validation failed: {e}\")","breadcrumbs":"Custom Schemas » Python Validation","id":"1126","title":"Python Validation"},"1127":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); try { // This will fail - invalid enum value const doc = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane', email: 'jane@example.com' }, items: [{ sku: 'A', quantity: 1, price: 10 }], total: 10, status: 'invalid_status' // Not in enum }), './schemas/order.schema.json' );\n} catch (error) { console.error('Validation failed:', error.message);\n}","breadcrumbs":"Custom Schemas » Node.js Validation","id":"1127","title":"Node.js Validation"},"1128":{"body":"","breadcrumbs":"Custom Schemas » Example Schemas","id":"1128","title":"Example Schemas"},"1129":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://healthcare.example.com/schemas/medical-record.schema.json\", \"title\": \"Medical Record\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"patientId\": { \"type\": \"string\" }, \"recordType\": { \"type\": \"string\", \"enum\": [\"visit\", \"lab_result\", \"prescription\", \"diagnosis\"] }, \"provider\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"npi\": { \"type\": \"string\", \"pattern\": \"^[0-9]{10}$\" } } }, \"date\": { \"type\": \"string\", \"format\": \"date\" }, \"notes\": { \"type\": \"string\" }, \"confidential\": { \"type\": \"boolean\", \"default\": true } }, \"required\": [\"patientId\", \"recordType\", \"provider\", \"date\"] } ]\n}","breadcrumbs":"Custom Schemas » Medical Record","id":"1129","title":"Medical Record"},"113":{"body":"JACS respects the following environment variables: Variable Description Default JACS_CONFIG_PATH Path to configuration file ./jacs.config.json JACS_USE_SECURITY Enable/disable security features true JACS_DATA_DIRECTORY Directory for document storage ./jacs_data JACS_KEY_DIRECTORY Directory for cryptographic keys ./jacs_keys JACS_DEFAULT_STORAGE Storage backend (fs, memory) fs JACS_AGENT_KEY_ALGORITHM Key algorithm (ring-Ed25519, RSA-PSS, pq-dilithium) ring-Ed25519","breadcrumbs":"Installation » Environment Variables","id":"113","title":"Environment Variables"},"1130":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://legal.example.com/schemas/contract.schema.json\", \"title\": \"Legal Contract\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"contractNumber\": { \"type\": \"string\" }, \"parties\": { \"type\": \"array\", \"minItems\": 2, \"items\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"role\": { \"type\": \"string\" }, \"agentId\": { \"type\": \"string\", \"format\": \"uuid\" } } } }, \"effectiveDate\": { \"type\": \"string\", \"format\": \"date\" }, \"expirationDate\": { \"type\": \"string\", \"format\": \"date\" }, \"terms\": { \"type\": \"string\" }, \"jurisdiction\": { \"type\": \"string\" } }, \"required\": [\"contractNumber\", \"parties\", \"effectiveDate\", \"terms\"] } ]\n}","breadcrumbs":"Custom Schemas » Legal Contract","id":"1130","title":"Legal Contract"},"1131":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://iot.example.com/schemas/sensor-reading.schema.json\", \"title\": \"Sensor Reading\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"deviceId\": { \"type\": \"string\" }, \"sensorType\": { \"type\": \"string\", \"enum\": [\"temperature\", \"humidity\", \"pressure\", \"motion\"] }, \"value\": { \"type\": \"number\" }, \"unit\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"location\": { \"type\": \"object\", \"properties\": { \"latitude\": { \"type\": \"number\" }, \"longitude\": { \"type\": \"number\" } } } }, \"required\": [\"deviceId\", \"sensorType\", \"value\", \"timestamp\"] } ]\n}","breadcrumbs":"Custom Schemas » IoT Sensor Reading","id":"1131","title":"IoT Sensor Reading"},"1132":{"body":"","breadcrumbs":"Custom Schemas » Schema Versioning","id":"1132","title":"Schema Versioning"},"1133":{"body":"{ \"$id\": \"https://example.com/schemas/v1/order.schema.json\"\n}","breadcrumbs":"Custom Schemas » Version in Path","id":"1133","title":"Version in Path"},"1134":{"body":"{ \"properties\": { \"schemaVersion\": { \"type\": \"string\", \"const\": \"1.0.0\" } }\n}","breadcrumbs":"Custom Schemas » Version Field","id":"1134","title":"Version Field"},"1135":{"body":"Create new schema version Update application to support both versions Migrate existing documents Deprecate old version","breadcrumbs":"Custom Schemas » Migration Strategy","id":"1135","title":"Migration Strategy"},"1136":{"body":"JSON Schemas Overview - Built-in schemas Document Schema - Header fields Configuration - Schema configuration","breadcrumbs":"Custom Schemas » See Also","id":"1136","title":"See Also"},"1137":{"body":"This chapter covers testing strategies for applications that use JACS, including unit testing, integration testing, and mocking approaches.","breadcrumbs":"Testing » Testing","id":"1137","title":"Testing"},"1138":{"body":"","breadcrumbs":"Testing » Testing Fundamentals","id":"1138","title":"Testing Fundamentals"},"1139":{"body":"Create dedicated test configurations to isolate tests from production: // jacs.test.config.json\n{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./test_data\", \"jacs_key_directory\": \"./test_keys\", \"jacs_agent_private_key_filename\": \"test_private.pem\", \"jacs_agent_public_key_filename\": \"test_public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Testing » Test Agent Setup","id":"1139","title":"Test Agent Setup"},"114":{"body":"","breadcrumbs":"Installation » Troubleshooting","id":"114","title":"Troubleshooting"},"1140":{"body":"Set up test fixtures before running tests: Python (pytest) : import pytest\nimport jacs\nimport tempfile\nimport shutil @pytest.fixture\ndef test_agent(): \"\"\"Create a test agent with temporary directories.\"\"\" temp_dir = tempfile.mkdtemp() data_dir = f\"{temp_dir}/data\" key_dir = f\"{temp_dir}/keys\" # Initialize directories import os os.makedirs(data_dir) os.makedirs(key_dir) # Create test config config = { \"jacs_data_directory\": data_dir, \"jacs_key_directory\": key_dir, \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = f\"{temp_dir}/jacs.config.json\" with open(config_path, 'w') as f: import json json.dump(config, f) agent = jacs.JacsAgent() agent.load(config_path) yield agent # Cleanup shutil.rmtree(temp_dir) def test_create_document(test_agent): \"\"\"Test document creation.\"\"\" import json doc = test_agent.create_document(json.dumps({ 'title': 'Test Document' })) assert doc is not None parsed = json.loads(doc) assert 'jacsId' in parsed assert 'jacsSignature' in parsed Node.js (Jest) : import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Tests', () => { let agent; let tempDir; beforeAll(() => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; const configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); agent = new JacsAgent(); agent.load(configPath); }); afterAll(() => { // Cleanup fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', () => { const doc = agent.createDocument(JSON.stringify({ title: 'Test Document' })); const parsed = JSON.parse(doc); expect(parsed.jacsId).toBeDefined(); expect(parsed.jacsSignature).toBeDefined(); });\n});","breadcrumbs":"Testing » Test Fixtures","id":"1140","title":"Test Fixtures"},"1141":{"body":"","breadcrumbs":"Testing » Unit Testing","id":"1141","title":"Unit Testing"},"1142":{"body":"import pytest\nimport jacs\nimport json def test_document_verification(test_agent): \"\"\"Test that created documents verify correctly.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Test content' })) is_valid = test_agent.verify_document(doc) assert is_valid is True def test_document_tampering_detected(test_agent): \"\"\"Test that tampered documents fail verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Original content' })) # Tamper with the document parsed = json.loads(doc) parsed['content'] = 'Tampered content' tampered = json.dumps(parsed) is_valid = test_agent.verify_document(tampered) assert is_valid is False def test_signature_verification(test_agent): \"\"\"Test signature verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'data': 'test' })) is_valid = test_agent.verify_signature(doc) assert is_valid is True","breadcrumbs":"Testing » Testing Document Operations","id":"1142","title":"Testing Document Operations"},"1143":{"body":"def test_agreement_creation(test_agent): \"\"\"Test creating a document with agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Service Agreement' })) # Add agreement doc_with_agreement = test_agent.create_agreement( doc, ['agent-1-id', 'agent-2-id'], question='Do you agree to these terms?', context='Test agreement' ) parsed = json.loads(doc_with_agreement) assert 'jacsAgreement' in parsed assert len(parsed['jacsAgreement']['agentIDs']) == 2 def test_agreement_signing(test_agent): \"\"\"Test signing an agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Test' })) agent_json = test_agent.load('./jacs.test.config.json') agent_data = json.loads(agent_json) agent_id = agent_data['jacsId'] doc_with_agreement = test_agent.create_agreement( doc, [agent_id], question='Agree?' ) signed = test_agent.sign_agreement(doc_with_agreement) status_json = test_agent.check_agreement(signed) status = json.loads(status_json) assert status['complete'] is True","breadcrumbs":"Testing » Testing Agreements","id":"1143","title":"Testing Agreements"},"1144":{"body":"check_agreement() is intentionally strict: it should fail until all required signers have signed. Add explicit tests for each state: Unsigned agreement: must fail. Partially signed agreement: must still fail. Fully signed agreement: must pass with complete == true. This prevents accidental \"partial approval\" workflows in production.","breadcrumbs":"Testing » Agreement Completion Semantics (Strict)","id":"1144","title":"Agreement Completion Semantics (Strict)"},"1145":{"body":"For realistic interoperability tests, use two separate agents with: Separate key directories (agent1/keys, agent2/keys) Shared data directory (shared-data) so both public keys are locally resolvable Relative paths from a temporary test working directory Python (pytest) : def test_two_party_agreement_requires_both_signatures(tmp_path): import os import pytest import jacs.simple as simple (tmp_path / \"shared-data\").mkdir() (tmp_path / \"agent1\").mkdir() (tmp_path / \"agent2\").mkdir() original_cwd = os.getcwd() try: os.chdir(tmp_path) a1 = simple.create( name=\"agent-1\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent1/keys\", config_path=\"agent1/jacs.config.json\", ) a2 = simple.create( name=\"agent-2\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent2/keys\", config_path=\"agent2/jacs.config.json\", ) simple.load(\"agent1/jacs.config.json\") agreement = simple.create_agreement( {\"proposal\": \"two-party-approval\"}, [a1.agent_id, a2.agent_id], question=\"Approve?\", ) with pytest.raises(Exception): simple.check_agreement(agreement) signed_by_a1 = simple.sign_agreement(agreement) with pytest.raises(Exception): simple.check_agreement(signed_by_a1) simple.load(\"agent2/jacs.config.json\") signed_by_both = simple.sign_agreement(signed_by_a1) status = simple.check_agreement(signed_by_both) assert status.complete is True finally: os.chdir(original_cwd) Node.js (Mocha/Jest style) : const root = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-two-agent-'));\nconst originalCwd = process.cwd();\ntry { process.chdir(root); fs.mkdirSync('agent1', { recursive: true }); fs.mkdirSync('agent2', { recursive: true }); simpleA.create({ name: 'agent-a', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent1/keys', configPath: 'agent1/jacs.config.json' }); simpleB.create({ name: 'agent-b', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent2/keys', configPath: 'agent2/jacs.config.json' }); simpleA.load('agent1/jacs.config.json'); simpleB.load('agent2/jacs.config.json'); const infoA = simpleA.getAgentInfo(); const infoB = simpleB.getAgentInfo(); const agreement = simpleA.createAgreement( { proposal: 'two-party-approval' }, [infoA.agentId, infoB.agentId] ); expect(() => simpleA.checkAgreement(agreement)).to.throw(); const signedByA = simpleA.signAgreement(agreement); expect(() => simpleA.checkAgreement(signedByA)).to.throw(); const signedByBoth = simpleB.signAgreement(signedByA); const status = simpleB.checkAgreement(signedByBoth); expect(status.complete).to.equal(true);\n} finally { process.chdir(originalCwd); fs.rmSync(root, { recursive: true, force: true });\n}","breadcrumbs":"Testing » Two-Agent Agreement Harness (Separate Agents)","id":"1145","title":"Two-Agent Agreement Harness (Separate Agents)"},"1146":{"body":"def test_request_signing(test_agent): \"\"\"Test signing a request payload.\"\"\" payload = { 'method': 'tools/call', 'params': {'name': 'test_tool'} } signed = test_agent.sign_request(payload) assert signed is not None # Verify the signed request result = test_agent.verify_response(signed) assert result is not None assert 'payload' in result","breadcrumbs":"Testing » Testing Request/Response Signing","id":"1146","title":"Testing Request/Response Signing"},"1147":{"body":"","breadcrumbs":"Testing » Integration Testing","id":"1147","title":"Integration Testing"},"1148":{"body":"Python : import pytest\nimport asyncio\nfrom jacs.mcp import JACSMCPServer, JACSMCPClient\nfrom fastmcp import FastMCP @pytest.fixture\ndef mcp_server(test_agent): \"\"\"Create a test MCP server.\"\"\" mcp = FastMCP(\"Test Server\") @mcp.tool() def echo(text: str) -> str: return f\"Echo: {text}\" return JACSMCPServer(mcp) @pytest.mark.asyncio\nasync def test_mcp_tool_call(mcp_server, test_agent): \"\"\"Test calling an MCP tool with JACS authentication.\"\"\" # This would require setting up actual server/client connection # For unit testing, test the signing/verification separately pass Node.js : import { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport express from 'express';\nimport request from 'supertest'; describe('JACS Express Middleware', () => { let app; let agent; beforeAll(() => { app = express(); app.use('/api', express.text({ type: '*/*' })); app.use('/api', JACSExpressMiddleware({ configPath: './jacs.test.config.json' })); app.post('/api/echo', (req, res) => { res.send({ echo: req.jacsPayload }); }); agent = new JacsAgent(); agent.load('./jacs.test.config.json'); }); test('accepts valid JACS requests', async () => { const signedRequest = agent.signRequest({ message: 'Hello' }); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); }); test('rejects invalid requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Testing » Testing MCP Integration","id":"1148","title":"Testing MCP Integration"},"1149":{"body":"import pytest\nfrom fastapi import FastAPI\nfrom fastapi.testclient import TestClient\nimport jacs\nimport json app = FastAPI() @app.post(\"/api/document\")\nasync def create_doc(request_body: str): agent = jacs.JacsAgent() agent.load('./jacs.test.config.json') result = agent.verify_response(request_body) if result: # Process the verified payload return {\"status\": \"success\", \"payload\": result.get(\"payload\")} return {\"status\": \"error\"} @pytest.fixture\ndef client(): return TestClient(app) def test_endpoint_accepts_signed_request(client, test_agent): \"\"\"Test that endpoint accepts properly signed requests.\"\"\" signed = test_agent.sign_request({ 'action': 'create', 'data': {'title': 'Test'} }) response = client.post(\"/api/document\", content=signed) assert response.status_code == 200","breadcrumbs":"Testing » Testing HTTP Endpoints","id":"1149","title":"Testing HTTP Endpoints"},"115":{"body":"\"edition 2024 is required\" Update Rust to version 1.93 or later: rustup update stable Missing dependencies on Linux Install build essentials: # Debian/Ubuntu\nsudo apt-get install build-essential pkg-config libssl-dev # Fedora\nsudo dnf install gcc openssl-devel","breadcrumbs":"Installation » Build Errors","id":"115","title":"Build Errors"},"1150":{"body":"","breadcrumbs":"Testing » Mocking","id":"1150","title":"Mocking"},"1151":{"body":"Python : from unittest.mock import Mock, patch\nimport json def test_with_mocked_agent(): \"\"\"Test with a mocked JACS agent.\"\"\" mock_agent = Mock() # Mock create_document to return a fake signed document mock_agent.create_document.return_value = json.dumps({ 'jacsId': 'mock-id', 'jacsVersion': 'mock-version', 'content': 'test', 'jacsSignature': {'signature': 'mock-sig'} }) # Mock verify_document to always return True mock_agent.verify_document.return_value = True # Use the mock in your tests doc = mock_agent.create_document(json.dumps({'content': 'test'})) assert mock_agent.verify_document(doc) is True Node.js : // Mock for testing\nconst mockAgent = { createDocument: jest.fn().mockReturnValue(JSON.stringify({ jacsId: 'mock-id', jacsVersion: 'mock-version', content: 'test', jacsSignature: { signature: 'mock-sig' } })), verifyDocument: jest.fn().mockReturnValue(true), signRequest: jest.fn().mockImplementation((payload) => JSON.stringify({ payload, jacsSignature: { signature: 'mock' } }) ), verifyResponse: jest.fn().mockImplementation((response) => ({ payload: JSON.parse(response).payload }) )\n}; test('uses mocked agent', () => { const doc = mockAgent.createDocument(JSON.stringify({ test: true })); expect(mockAgent.createDocument).toHaveBeenCalled(); expect(mockAgent.verifyDocument(doc)).toBe(true);\n});","breadcrumbs":"Testing » Mocking JACS Agent","id":"1151","title":"Mocking JACS Agent"},"1152":{"body":"// Mock transport for MCP testing\nclass MockTransport { constructor() { this.messages = []; } send(message) { this.messages.push(message); } async receive() { return this.messages.shift(); }\n} test('MCP client with mock transport', async () => { const mockTransport = new MockTransport(); // Use mock transport in tests\n});","breadcrumbs":"Testing » Mocking MCP Transport","id":"1152","title":"Mocking MCP Transport"},"1153":{"body":"","breadcrumbs":"Testing » Test Coverage","id":"1153","title":"Test Coverage"},"1154":{"body":"For Rust coverage, we recommend cargo-llvm-cov for its cross-platform support and accuracy with cryptographic code. Installation: cargo install cargo-llvm-cov Running coverage: # Print coverage summary to stdout\ncargo llvm-cov # Generate and open HTML report in browser\ncargo llvm-cov --open # With specific features enabled\ncargo llvm-cov --features cli # Export LCOV format for CI integration\ncargo llvm-cov --lcov --output-path lcov.info Why cargo-llvm-cov? Factor cargo-llvm-cov tarpaulin Platform support Linux, macOS, Windows Linux primarily Accuracy LLVM source-based (highly accurate) Ptrace-based (some inaccuracies) Coverage types Line, region, branch Line primarily For CI integration, export to LCOV format and upload to Codecov or similar services.","breadcrumbs":"Testing » Rust Coverage","id":"1154","title":"Rust Coverage"},"1155":{"body":"# Run tests with coverage\npytest --cov=myapp --cov-report=html tests/ # View coverage report\nopen htmlcov/index.html","breadcrumbs":"Testing » Python Coverage","id":"1155","title":"Python Coverage"},"1156":{"body":"# Run tests with coverage\nnpm test -- --coverage # Or with Jest directly\njest --coverage","breadcrumbs":"Testing » Node.js Coverage","id":"1156","title":"Node.js Coverage"},"1157":{"body":"","breadcrumbs":"Testing » CI/CD Integration","id":"1157","title":"CI/CD Integration"},"1158":{"body":"# .github/workflows/test.yml\nname: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install dependencies run: npm install - name: Generate test keys run: | mkdir -p test_keys test_data # Generate test keys (implementation depends on your setup) - name: Run tests run: npm test - name: Upload coverage uses: codecov/codecov-action@v3","breadcrumbs":"Testing » GitHub Actions","id":"1158","title":"GitHub Actions"},"1159":{"body":"# Set test environment\nexport JACS_TEST_MODE=1\nexport JACS_TEST_CONFIG=./jacs.test.config.json","breadcrumbs":"Testing » Test Environment Variables","id":"1159","title":"Test Environment Variables"},"116":{"body":"\"Configuration file not found\" Run jacs init or set JACS_CONFIG_PATH environment variable. \"Key directory does not exist\" Create the key directory or run jacs init: mkdir -p ./jacs_keys \"Permission denied\" Ensure you have write permissions to the data and key directories.","breadcrumbs":"Installation » Runtime Errors","id":"116","title":"Runtime Errors"},"1160":{"body":"For Rust tests that modify global state (environment variables, file system, etc.), use RAII guards to ensure cleanup even on panic. This pattern is essential for test isolation and reliability.","breadcrumbs":"Testing » RAII Test Fixtures (Rust)","id":"1160","title":"RAII Test Fixtures (Rust)"},"1161":{"body":"The JACS codebase uses a TrustTestGuard pattern for tests that modify the HOME environment variable: use std::env;\nuse tempfile::TempDir; /// RAII guard for test isolation that ensures HOME is restored even on panic.\nstruct TrustTestGuard { _temp_dir: TempDir, original_home: Option,\n} impl TrustTestGuard { fn new() -> Self { // Save original HOME before modifying let original_home = env::var(\"HOME\").ok(); let temp_dir = TempDir::new().expect(\"Failed to create temp directory\"); // SAFETY: Only used in #[serial] tests - no concurrent access unsafe { env::set_var(\"HOME\", temp_dir.path().to_str().unwrap()); } Self { _temp_dir: temp_dir, original_home, } }\n} impl Drop for TrustTestGuard { fn drop(&mut self) { // Restore original HOME even during panic unwinding unsafe { match &self.original_home { Some(home) => env::set_var(\"HOME\", home), None => env::remove_var(\"HOME\"), } } }\n} // Usage in tests:\n#[test]\n#[serial] // Use serial_test crate to prevent parallel execution\nfn test_with_isolated_home() { let _guard = TrustTestGuard::new(); // Setup // Test code here - HOME points to temp directory // Guard automatically restores HOME on drop, even if test panics\n} Key benefits: Panic safety : Cleanup runs even if the test panics No manual cleanup : Drop trait handles restoration automatically Environment isolation : Each test gets a fresh temporary directory Composable : Multiple guards can be combined for complex setups","breadcrumbs":"Testing » TrustTestGuard Pattern","id":"1161","title":"TrustTestGuard Pattern"},"1162":{"body":"For cryptographic code, property-based testing helps verify invariants that hold across many random inputs. We recommend proptest for Rust.","breadcrumbs":"Testing » Property-Based Testing","id":"1162","title":"Property-Based Testing"},"1163":{"body":"Round-trip : Sign then verify should always succeed Tamper detection : Modified content should fail verification Key independence : Different keys produce different signatures use proptest::prelude::*; proptest! { #[test] fn signature_roundtrip(content in \".*\") { let signed = sign_content(&content)?; prop_assert!(verify_signature(&signed).is_ok()); } #[test] fn tamper_detection(content in \".*\", tamper_pos in 0usize..1000) { let signed = sign_content(&content)?; let tampered = tamper_at_position(&signed, tamper_pos); prop_assert!(verify_signature(&tampered).is_err()); }\n}","breadcrumbs":"Testing » Key Properties to Test","id":"1163","title":"Key Properties to Test"},"1164":{"body":"Fuzz testing is recommended for parsing and decoding functions to discover edge cases and potential security issues.","breadcrumbs":"Testing » Fuzzing","id":"1164","title":"Fuzzing"},"1165":{"body":"# Install\ncargo install cargo-fuzz # Create a fuzz target\ncargo fuzz init\ncargo fuzz add base64_decode # Run fuzzing\ncargo +nightly fuzz run base64_decode","breadcrumbs":"Testing » Recommended Tool: cargo-fuzz","id":"1165","title":"Recommended Tool: cargo-fuzz"},"1166":{"body":"Base64 decoding - Handles untrusted input from signatures Agent JSON parsing - Complex nested structures Document validation - Schema compliance checking Timestamp parsing - Date/time format handling Fuzzing documentation will be expanded as fuzz targets are added to the JACS test suite.","breadcrumbs":"Testing » Priority Fuzz Targets for JACS","id":"1166","title":"Priority Fuzz Targets for JACS"},"1167":{"body":"","breadcrumbs":"Testing » Best Practices","id":"1167","title":"Best Practices"},"1168":{"body":"Use separate test configurations Create temporary directories for each test run Clean up after tests (use RAII guards in Rust)","breadcrumbs":"Testing » 1. Isolate Tests","id":"1168","title":"1. Isolate Tests"},"1169":{"body":"def test_empty_document(): \"\"\"Test handling of empty documents.\"\"\" with pytest.raises(Exception): test_agent.create_document('') def test_invalid_json(): \"\"\"Test handling of invalid JSON.\"\"\" with pytest.raises(Exception): test_agent.create_document('not json') def test_large_document(): \"\"\"Test handling of large documents.\"\"\" large_content = 'x' * 1000000 doc = test_agent.create_document(json.dumps({ 'content': large_content })) assert doc is not None","breadcrumbs":"Testing » 2. Test Edge Cases","id":"1169","title":"2. Test Edge Cases"},"117":{"body":"CLI Usage - Learn CLI commands Creating an Agent - Create your first agent Rust Library API - Use JACS as a library","breadcrumbs":"Installation » Next Steps","id":"117","title":"Next Steps"},"1170":{"body":"def test_signature_changes_with_content(): \"\"\"Verify different content produces different signatures.\"\"\" doc1 = test_agent.create_document(json.dumps({'a': 1})) doc2 = test_agent.create_document(json.dumps({'a': 2})) sig1 = json.loads(doc1)['jacsSignature']['signature'] sig2 = json.loads(doc2)['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Testing » 3. Test Security Properties","id":"1170","title":"3. Test Security Properties"},"1171":{"body":"def test_verify_invalid_signature(): \"\"\"Test that invalid signatures are rejected.\"\"\" doc = test_agent.create_document(json.dumps({'data': 'test'})) parsed = json.loads(doc) # Corrupt the signature parsed['jacsSignature']['signature'] = 'invalid' corrupted = json.dumps(parsed) assert test_agent.verify_document(corrupted) is False","breadcrumbs":"Testing » 4. Test Error Handling","id":"1171","title":"4. Test Error Handling"},"1172":{"body":"Python API Reference - API documentation Node.js API Reference - API documentation Security Model - Security testing considerations","breadcrumbs":"Testing » See Also","id":"1172","title":"See Also"},"1173":{"body":"JACS provides comprehensive integration with the Model Context Protocol (MCP) , enabling cryptographically signed and verified communication between AI agents and MCP servers.","breadcrumbs":"Model Context Protocol (MCP) » Model Context Protocol (MCP)","id":"1173","title":"Model Context Protocol (MCP)"},"1174":{"body":"Model Context Protocol is an open standard created by Anthropic for AI models to securely access external tools, data, and services. MCP defines: Tools : Functions that AI models can call Resources : Data sources that models can read Prompts : Pre-defined prompt templates Transports : Communication channels (STDIO, SSE, WebSocket)","breadcrumbs":"Model Context Protocol (MCP) » What is MCP?","id":"1174","title":"What is MCP?"},"1175":{"body":"JACS enhances MCP by adding a security layer that standard MCP lacks: Feature Standard MCP JACS MCP Message Signing No Yes Identity Verification No Yes Tamper Detection No Yes Audit Trail No Yes Non-Repudiation No Yes This makes JACS MCP suitable for: Multi-agent systems requiring trust Financial and legal AI applications Healthcare AI systems Enterprise deployments Any scenario where message authenticity matters","breadcrumbs":"Model Context Protocol (MCP) » Why JACS + MCP?","id":"1175","title":"Why JACS + MCP?"},"1176":{"body":"JACS uses a transport proxy pattern that wraps any MCP transport with cryptographic signing and verification: ┌─────────────────────────────────────────────────────────────┐\n│ MCP Application │\n├─────────────────────────────────────────────────────────────┤\n│ MCP SDK │\n├─────────────────────────────────────────────────────────────┤\n│ JACS Transport Proxy │\n│ ┌─────────────┐ ┌──────────────┐ │\n│ │ Outgoing: │ │ Incoming: │ │\n│ │ signRequest │ │ verifyResp │ │\n│ └─────────────┘ └──────────────┘ │\n├─────────────────────────────────────────────────────────────┤\n│ Underlying Transport │\n│ (STDIO / SSE / WebSocket) │\n└─────────────────────────────────────────────────────────────┘","breadcrumbs":"Model Context Protocol (MCP) » Architecture","id":"1176","title":"Architecture"},"1177":{"body":"Outgoing Messages : The proxy intercepts JSON-RPC messages and signs them with the agent's private key Incoming Messages : The proxy verifies signatures before passing messages to the application Graceful Fallback : If verification fails, messages can be passed through as plain JSON for interoperability","breadcrumbs":"Model Context Protocol (MCP) » How It Works","id":"1177","title":"How It Works"},"1178":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Quick Start","id":"1178","title":"Quick Start"},"1179":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; // Create transport with JACS encryption\nconst baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); // Create MCP server\nconst server = new McpServer({ name: \"my-secure-server\", version: \"1.0.0\"\n}); // Register tools (standard MCP API)\nserver.tool(\"add\", { a: z.number(), b: z.number()\n}, async ({ a, b }) => { return { content: [{ type: \"text\", text: `${a + b}` }] };\n}); // Connect with JACS encryption\nawait server.connect(secureTransport);","breadcrumbs":"Model Context Protocol (MCP) » Node.js","id":"1179","title":"Node.js"},"118":{"body":"The JACS CLI provides a command-line interface for managing agents, documents, tasks, and agreements.","breadcrumbs":"CLI Usage » CLI Usage","id":"118","title":"CLI Usage"},"1180":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Create FastMCP server with JACS authentication\nmcp = JACSMCPServer(FastMCP(\"Secure Server\")) @mcp.tool()\ndef add(a: int, b: int) -> str: \"\"\"Add two numbers\"\"\" return str(a + b) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Model Context Protocol (MCP) » Python","id":"1180","title":"Python"},"1181":{"body":"JACS provides native MCP integration for both major platforms:","breadcrumbs":"Model Context Protocol (MCP) » Language Support","id":"1181","title":"Language Support"},"1182":{"body":"The Node.js integration uses a transport proxy pattern that works with any MCP transport: STDIO : For CLI tools and subprocess communication SSE : For web-based servers WebSocket : For bidirectional streaming Key classes: JACSTransportProxy - Wraps any transport with signing/verification createJACSTransportProxy() - Factory function See Node.js MCP Integration for complete documentation.","breadcrumbs":"Model Context Protocol (MCP) » Node.js (@hai.ai/jacs)","id":"1182","title":"Node.js (@hai.ai/jacs)"},"1183":{"body":"The Python integration uses middleware wrappers for FastMCP: JACSMCPServer - Wraps FastMCP servers with authentication JACSMCPClient - Wraps FastMCP clients with signing Key classes: JACSMCPServer - Server wrapper with JACS middleware JACSMCPClient - Client wrapper with interceptors See Python MCP Integration for complete documentation.","breadcrumbs":"Model Context Protocol (MCP) » Python (jacspy)","id":"1183","title":"Python (jacspy)"},"1184":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Message Flow","id":"1184","title":"Message Flow"},"1185":{"body":"When a client calls a tool on a JACS-enabled MCP server: Client Server │ │ │ 1. Create JSON-RPC request │ │ 2. Sign with signRequest() │ │ ──────────────────────────> │ │ │ 3. Verify with verifyRequest() │ │ 4. Execute tool │ │ 5. Sign response with signResponse() │ <────────────────────────── │ │ 6. Verify with verifyResponse() │ │ 7. Extract payload │","breadcrumbs":"Model Context Protocol (MCP) » Tool Call Example","id":"1185","title":"Tool Call Example"},"1186":{"body":"A JACS-signed MCP message contains: { \"jacsId\": \"unique-document-id\", \"jacsVersion\": \"version-uuid\", \"jacsSignature\": { \"agentID\": \"signing-agent-id\", \"agentVersion\": \"agent-version\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\" }, \"jacsSha256\": \"content-hash\", \"payload\": { \"jsonrpc\": \"2.0\", \"method\": \"tools/call\", \"params\": { \"name\": \"add\", \"arguments\": { \"a\": 5, \"b\": 3 } }, \"id\": 1 }\n}","breadcrumbs":"Model Context Protocol (MCP) » Signed Message Structure","id":"1186","title":"Signed Message Structure"},"1187":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Configuration","id":"1187","title":"Configuration"},"1188":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"server-agent-id:version\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Model Context Protocol (MCP) » Server Configuration","id":"1188","title":"Server Configuration"},"1189":{"body":"Each MCP client needs its own JACS agent identity: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"client-agent-id:version\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Model Context Protocol (MCP) » Client Configuration","id":"1189","title":"Client Configuration"},"119":{"body":"# General help\njacs --help # Command-specific help\njacs agent --help\njacs document --help\njacs task --help","breadcrumbs":"CLI Usage » Getting Help","id":"119","title":"Getting Help"},"1190":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Transports","id":"1190","title":"Transports"},"1191":{"body":"Best for CLI tools and subprocess communication: // Node.js\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\"; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); Important : Debug logging goes to stderr to keep stdout clean for JSON-RPC.","breadcrumbs":"Model Context Protocol (MCP) » STDIO","id":"1191","title":"STDIO"},"1192":{"body":"For web-based MCP servers: # Python with FastMCP\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP mcp = JACSMCPServer(FastMCP(\"Web Server\"))\napp = mcp.sse_app() # Returns ASGI app with JACS middleware // Node.js with Express\nimport { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport express from 'express'; const app = express();\napp.get('/sse', (req, res) => { const baseTransport = new SSEServerTransport('/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\" ); server.connect(secureTransport);\n});","breadcrumbs":"Model Context Protocol (MCP) » Server-Sent Events (SSE)","id":"1192","title":"Server-Sent Events (SSE)"},"1193":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Security Model","id":"1193","title":"Security Model"},"1194":{"body":"CRITICAL GUIDANCE FOR AI AGENTS AND DEVELOPERS Signing a document or message with JACS is a sacred, irreversible act . When an agent signs: Permanent Commitment : The signature creates permanent cryptographic proof that the signer attested to the content. This proof exists forever and can be verified by anyone. Non-Repudiation : The signer cannot later deny having signed. The signature is mathematically bound to their private key. Accountability : The signer is accountable for the content they signed. In multi-agent systems, signatures establish trust chains and responsibility. Irreversibility : There is no \"unsign\" operation. Once signed, the commitment exists permanently. Before signing any document, message, or agreement: Read and understand the complete content Verify the content represents your actual intent Confirm you have authority to make this commitment Understand the implications of your signature For AI agents : Do not sign automatically or without verification. Signing carelessly can: Create binding commitments you didn't intend Establish false audit trails Damage trust relationships with other agents Create legal or ethical liability For MCP tool implementations : When exposing signing capabilities as tools, include appropriate warnings and consider requiring explicit confirmation.","breadcrumbs":"Model Context Protocol (MCP) » Signing is Sacred","id":"1194","title":"Signing is Sacred"},"1195":{"body":"All JSON-RPC requests and responses Tool calls and results Resource requests and data Prompt requests and templates","breadcrumbs":"Model Context Protocol (MCP) » What Gets Signed","id":"1195","title":"What Gets Signed"},"1196":{"body":"Agent identity (agentID) Message integrity (jacsSha256) Signature validity (jacsSignature) Optional: DNS-based identity verification","breadcrumbs":"Model Context Protocol (MCP) » What Gets Verified","id":"1196","title":"What Gets Verified"},"1197":{"body":"For interoperability with non-JACS MCP systems, the proxy can fall back to plain JSON: Try to verify as JACS artifact If verification fails, parse as plain JSON Pass clean message to application To enforce JACS-only communication, implement custom validation in your tools.","breadcrumbs":"Model Context Protocol (MCP) » Passthrough Mode","id":"1197","title":"Passthrough Mode"},"1198":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Debugging","id":"1198","title":"Debugging"},"1199":{"body":"# Node.js\nexport JACS_MCP_DEBUG=true # Python\nimport logging\nlogging.basicConfig(level=logging.DEBUG)","breadcrumbs":"Model Context Protocol (MCP) » Enable Debug Logging","id":"1199","title":"Enable Debug Logging"},"12":{"body":"","breadcrumbs":"Introduction » Why JACS?","id":"12","title":"Why JACS?"},"120":{"body":"Command Description jacs init Initialize JACS (create config and agent with keys) jacs version Print version information jacs config Manage configuration jacs agent Manage agents jacs document Manage documents jacs task Manage tasks","breadcrumbs":"CLI Usage » Commands Overview","id":"120","title":"Commands Overview"},"1200":{"body":"Issue Cause Solution \"JACS not operational\" Config path incorrect Verify config file path Verification failures Incompatible keys Ensure matching key algorithms Empty responses Null value handling Check message serialization Connection timeouts Network issues Verify server is running","breadcrumbs":"Model Context Protocol (MCP) » Common Issues","id":"1200","title":"Common Issues"},"1201":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Best Practices","id":"1201","title":"Best Practices"},"1202":{"body":"project/\n├── server/\n│ ├── jacs.config.json\n│ └── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── client/ ├── jacs.config.json └── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Model Context Protocol (MCP) » 1. Separate Keys for Server and Client","id":"1202","title":"1. Separate Keys for Server and Client"},"1203":{"body":"# Use HTTPS for SSE\nclient = JACSMCPClient(\"https://server.example.com/sse\")","breadcrumbs":"Model Context Protocol (MCP) » 2. Use TLS for Network Transports","id":"1203","title":"2. Use TLS for Network Transports"},"1204":{"body":"Update agent versions when rotating keys: { \"jacs_agent_id_and_version\": \"my-agent:v2\"\n}","breadcrumbs":"Model Context Protocol (MCP) » 3. Implement Key Rotation","id":"1204","title":"3. Implement Key Rotation"},"1205":{"body":"# Production logging setup\nimport logging logging.getLogger(\"jacs\").setLevel(logging.INFO)\nlogging.getLogger(\"jacs.security\").setLevel(logging.WARNING)","breadcrumbs":"Model Context Protocol (MCP) » 4. Log Security Events","id":"1205","title":"4. Log Security Events"},"1206":{"body":"A complete example with multiple JACS-authenticated agents: ┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐\n│ Agent A │ │ MCP Server │ │ Agent B │\n│ (Data Analyst) │────>│ (Tool Provider) │<────│ (Report Writer) │\n│ │ │ │ │ │\n│ Signs requests │ │ Verifies both │ │ Signs requests │\n│ Verifies resps │ │ Signs responses │ │ Verifies resps │\n└──────────────────┘ └──────────────────┘ └──────────────────┘ Each agent has its own: JACS agent ID and version Private/public key pair Configuration file The MCP server verifies requests from both agents and signs all responses.","breadcrumbs":"Model Context Protocol (MCP) » Example: Multi-Agent System","id":"1206","title":"Example: Multi-Agent System"},"1207":{"body":"The jacs-mcp server provides built-in tools for agent operations:","breadcrumbs":"Model Context Protocol (MCP) » HAI MCP Server Tools","id":"1207","title":"HAI MCP Server Tools"},"1208":{"body":"Tool Description fetch_agent_key Fetch a public key from HAI's key distribution service register_agent Register the local agent with HAI (requires JACS_MCP_ALLOW_REGISTRATION=true) verify_agent Verify another agent's attestation level check_agent_status Check registration status with HAI unregister_agent Unregister an agent from HAI","breadcrumbs":"Model Context Protocol (MCP) » Identity & Registration Tools","id":"1208","title":"Identity & Registration Tools"},"1209":{"body":"These tools allow agents to sign, verify, and manage state documents (memory files, skills, plans, configs, hooks, or any document): Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document's signature jacs_load_state Load an agent state document by key jacs_update_state Update and re-sign an agent state document jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state All documents are stored within the JACS data directory for security. Use state_type: \"other\" for general-purpose signing of any document. See Agent State Schema for full documentation.","breadcrumbs":"Model Context Protocol (MCP) » Agent State Tools","id":"1209","title":"Agent State Tools"},"121":{"body":"","breadcrumbs":"CLI Usage » Initialization","id":"121","title":"Initialization"},"1210":{"body":"Node.js MCP Integration - Node.js specific details Python MCP Integration - Python specific details Security Model - JACS security architecture Cryptographic Algorithms - Signing algorithms Testing - Testing MCP integrations","breadcrumbs":"Model Context Protocol (MCP) » See Also","id":"1210","title":"See Also"},"1211":{"body":"This guide describes how JACS interoperates with Agent-to-Agent (A2A) systems in real deployments.","breadcrumbs":"A2A Interoperability » A2A Interoperability","id":"1211","title":"A2A Interoperability"},"1212":{"body":"JACS adds cryptographic provenance to A2A artifacts: Signed artifact envelopes (a2a-task, a2a-message, etc.) Verifiable signer identity via public key resolution Chain-of-custody support through parent signatures Well-known discovery documents for external verifiers","breadcrumbs":"A2A Interoperability » What JACS Adds","id":"1212","title":"What JACS Adds"},"1213":{"body":"JACS A2A integration currently targets the v0.4.0 Agent Card shape used in this repository's Rust, Python, and Node bindings. Required well-known documents: /.well-known/agent-card.json /.well-known/jwks.json /.well-known/jacs-agent.json /.well-known/jacs-pubkey.json","breadcrumbs":"A2A Interoperability » Interoperability Contract","id":"1213","title":"Interoperability Contract"},"1214":{"body":"When verifying foreign-agent A2A artifacts, JACS resolves keys using JACS_KEY_RESOLUTION order: local: trusted local key cache dns: identity validation only (does not return key bytes) hai: remote key retrieval from HAI key service If a key is found, JACS performs full signature verification and returns a verified status. If no key is found, verification is explicitly marked unverified (not silently accepted).","breadcrumbs":"A2A Interoperability » Verification Model","id":"1214","title":"Verification Model"},"1215":{"body":"Use environment variables for deploy-time behavior: export JACS_PRIVATE_KEY_PASSWORD=\"your-strong-password\"\nexport JACS_KEY_RESOLUTION=\"local,hai\"\nexport HAI_KEYS_BASE_URL=\"https://keys.hai.ai\" For offline/air-gapped operation: export JACS_KEY_RESOLUTION=\"local\"","breadcrumbs":"A2A Interoperability » 12-Factor Runtime Configuration","id":"1215","title":"12-Factor Runtime Configuration"},"1216":{"body":"use jacs::a2a::provenance::{wrap_artifact_with_provenance, verify_wrapped_artifact};\nuse serde_json::json; let wrapped = wrap_artifact_with_provenance( &mut agent, json!({\"taskId\": \"task-123\", \"operation\": \"classify\"}), \"task\", None,\n)?; let result = verify_wrapped_artifact(&agent, &wrapped)?;\nassert!(result.valid);","breadcrumbs":"A2A Interoperability » Rust Example","id":"1216","title":"Rust Example"},"1217":{"body":"from jacs.a2a import JACSA2AIntegration a2a = JACSA2AIntegration(\"jacs.config.json\")\nagent_card = a2a.export_agent_card(agent_data)\ndocs = a2a.generate_well_known_documents( agent_card=agent_card, jws_signature=\"...\", public_key_b64=\"...\", agent_data={\"jacsId\": \"...\", \"jacsVersion\": \"...\", \"keyAlgorithm\": \"RSA-PSS\"},\n) assert \"/.well-known/jwks.json\" in docs","breadcrumbs":"A2A Interoperability » Python Example","id":"1217","title":"Python Example"},"1218":{"body":"const { JACSA2AIntegration } = require('@hai.ai/jacs/a2a'); const a2a = new JACSA2AIntegration('./jacs.config.json');\nconst wrapped = a2a.wrapArtifactWithProvenance( { taskId: 'task-123', operation: 'classify' }, 'task'\n); const result = a2a.verifyWrappedArtifact(wrapped);\nconsole.log(result.valid, result.parentSignaturesValid);","breadcrumbs":"A2A Interoperability » Node.js Example","id":"1218","title":"Node.js Example"},"1219":{"body":"Before merging A2A changes, ensure: Rust, Python, and Node A2A tests all pass. Foreign-signature verification is covered by tests (resolved and unresolved key paths). Documentation snippets match package names and executable APIs. Well-known docs include jwks.json and match output from all bindings.","breadcrumbs":"A2A Interoperability » DevEx Expectations","id":"1219","title":"DevEx Expectations"},"122":{"body":"# Initialize everything in one step\njacs init This command: Creates a configuration file (jacs.config.json) Generates cryptographic keys Creates an initial agent document","breadcrumbs":"CLI Usage » Quick Start","id":"122","title":"Quick Start"},"1220":{"body":"Unverified foreign signatures: no signer key available from configured resolution order. Invalid signatures: signature bytes, signer key, or signed payload fields do not match. Missing jwks.json: ensure you are using current A2A helper APIs in your binding.","breadcrumbs":"A2A Interoperability » Troubleshooting","id":"1220","title":"Troubleshooting"},"1221":{"body":"OpenClaw is a personal AI assistant platform. This chapter covers integrating JACS with OpenClaw to enable cryptographically signed agent-to-agent communication.","breadcrumbs":"OpenClaw » OpenClaw Integration","id":"1221","title":"OpenClaw Integration"},"1222":{"body":"The JACS OpenClaw plugin enables: Bootstrap JACS identity via openclaw plugin setup jacs Securely store cryptographic keys using OpenClaw's configuration system Sign and verify all agent communications with post-quantum cryptographic provenance Publish agent identity via .well-known endpoints P2P agent verification without requiring a central registry","breadcrumbs":"OpenClaw » Overview","id":"1222","title":"Overview"},"1223":{"body":"# Install the JACS plugin for OpenClaw\nopenclaw plugins install @openclaw/jacs","breadcrumbs":"OpenClaw » Installation","id":"1223","title":"Installation"},"1224":{"body":"","breadcrumbs":"OpenClaw » Setup","id":"1224","title":"Setup"},"1225":{"body":"# Interactive setup wizard\nopenclaw jacs init This will: Select a key algorithm (pq2025/dilithium/rsa/ecdsa) Generate a cryptographic key pair Create an agent identity Store keys in ~/.openclaw/jacs_keys/","breadcrumbs":"OpenClaw » Initialize JACS Identity","id":"1225","title":"Initialize JACS Identity"},"1226":{"body":"The plugin configuration is stored in ~/.openclaw/openclaw.json: { \"plugins\": { \"entries\": { \"jacs\": { \"enabled\": true, \"config\": { \"keyAlgorithm\": \"pq2025\", \"autoSign\": false, \"autoVerify\": false, \"agentId\": \"89fb9d88-6990-420f-8df9-252ccdfdfd3d\", \"agentName\": \"My OpenClaw Agent\", \"agentDescription\": \"Personal AI assistant with JACS identity\" } } } }\n}","breadcrumbs":"OpenClaw » Configuration","id":"1226","title":"Configuration"},"1227":{"body":"Option Type Default Description keyAlgorithm string pq2025 Signing algorithm (pq2025, pq-dilithium, rsa, ecdsa) autoSign boolean false Automatically sign outbound messages autoVerify boolean false Automatically verify inbound JACS-signed messages agentName string - Human-readable agent name agentDescription string - Agent description for A2A discovery agentDomain string - Domain for agent identity (DNSSEC validated)","breadcrumbs":"OpenClaw » Configuration Options","id":"1227","title":"Configuration Options"},"1228":{"body":"~/.openclaw/\n├── openclaw.json # Plugin config (non-sensitive)\n├── jacs/ # JACS data directory\n│ ├── jacs.config.json # JACS configuration\n│ └── agent/ # Agent documents\n└── jacs_keys/ # Key directory (encrypted) ├── agent.private.pem.enc # AES-256-GCM encrypted └── agent.public.pem # Public key (shareable)","breadcrumbs":"OpenClaw » Directory Structure","id":"1228","title":"Directory Structure"},"1229":{"body":"","breadcrumbs":"OpenClaw » CLI Commands","id":"1229","title":"CLI Commands"},"123":{"body":"","breadcrumbs":"CLI Usage » Configuration Commands","id":"123","title":"Configuration Commands"},"1230":{"body":"openclaw jacs status Shows JACS status, agent ID, algorithm, and registration state.","breadcrumbs":"OpenClaw » Status","id":"1230","title":"Status"},"1231":{"body":"openclaw jacs sign  Sign a JSON document with your JACS identity.","breadcrumbs":"OpenClaw » Sign Document","id":"1231","title":"Sign Document"},"1232":{"body":"openclaw jacs verify  Verify a JACS-signed document.","breadcrumbs":"OpenClaw » Verify Document","id":"1232","title":"Verify Document"},"1233":{"body":"openclaw jacs lookup  Look up another agent's public key from their domain.","breadcrumbs":"OpenClaw » Lookup Agent","id":"1233","title":"Lookup Agent"},"1234":{"body":"openclaw jacs export-card Export your agent as an A2A Agent Card.","breadcrumbs":"OpenClaw » Export Agent Card","id":"1234","title":"Export Agent Card"},"1235":{"body":"openclaw jacs dns-record  Generate DNS TXT record commands for publishing your agent fingerprint.","breadcrumbs":"OpenClaw » Generate DNS Record","id":"1235","title":"Generate DNS Record"},"1236":{"body":"The plugin provides tools for use in agent conversations:","breadcrumbs":"OpenClaw » Agent Tools","id":"1236","title":"Agent Tools"},"1237":{"body":"Sign a document with JACS cryptographic provenance. { \"name\": \"jacs_sign\", \"parameters\": { \"document\": { \"message\": \"hello\" }, \"artifactType\": \"message\" }\n}","breadcrumbs":"OpenClaw » jacs_sign","id":"1237","title":"jacs_sign"},"1238":{"body":"Verify a JACS-signed document. { \"name\": \"jacs_verify\", \"parameters\": { \"document\": { \"...signed document...\" } }\n}","breadcrumbs":"OpenClaw » jacs_verify","id":"1238","title":"jacs_verify"},"1239":{"body":"Fetch another agent's public key from their domain. { \"name\": \"jacs_fetch_pubkey\", \"parameters\": { \"domain\": \"other-agent.example.com\" }\n}","breadcrumbs":"OpenClaw » jacs_fetch_pubkey","id":"1239","title":"jacs_fetch_pubkey"},"124":{"body":"jacs config create Creates a new jacs.config.json file in the current directory with default settings.","breadcrumbs":"CLI Usage » Create Configuration","id":"124","title":"Create Configuration"},"1240":{"body":"Verify a document using a fetched public key. { \"name\": \"jacs_verify_with_key\", \"parameters\": { \"document\": { \"...signed document...\" }, \"publicKey\": \"-----BEGIN PUBLIC KEY-----...\" }\n}","breadcrumbs":"OpenClaw » jacs_verify_with_key","id":"1240","title":"jacs_verify_with_key"},"1241":{"body":"Lookup a JACS agent by domain or ID. { \"name\": \"jacs_lookup_agent\", \"parameters\": { \"domain\": \"agent.example.com\" }\n}","breadcrumbs":"OpenClaw » jacs_lookup_agent","id":"1241","title":"jacs_lookup_agent"},"1242":{"body":"Create a multi-party agreement requiring signatures from multiple agents. { \"name\": \"jacs_create_agreement\", \"parameters\": { \"document\": { \"terms\": \"...\" }, \"agentIds\": [\"agent-1-uuid\", \"agent-2-uuid\"], \"question\": \"Do you agree to these terms?\" }\n}","breadcrumbs":"OpenClaw » jacs_create_agreement","id":"1242","title":"jacs_create_agreement"},"1243":{"body":"When OpenClaw's gateway is running, the plugin serves:","breadcrumbs":"OpenClaw » Well-Known Endpoints","id":"1243","title":"Well-Known Endpoints"},"1244":{"body":"A2A v0.4.0 Agent Card with JACS extension.","breadcrumbs":"OpenClaw » /.well-known/agent-card.json","id":"1244","title":"/.well-known/agent-card.json"},"1245":{"body":"Your agent's public key for verification: { \"publicKey\": \"-----BEGIN PUBLIC KEY-----...\", \"publicKeyHash\": \"sha256-hash\", \"algorithm\": \"pq2025\", \"agentId\": \"agent-uuid\", \"timestamp\": \"2024-01-15T10:30:00Z\"\n}","breadcrumbs":"OpenClaw » /.well-known/jacs-pubkey.json","id":"1245","title":"/.well-known/jacs-pubkey.json"},"1246":{"body":"Agents can verify each other without a central registry:","breadcrumbs":"OpenClaw » P2P Agent Verification","id":"1246","title":"P2P Agent Verification"},"1247":{"body":"Agent A publishes their public key at /.well-known/jacs-pubkey.json Agent A optionally sets DNS TXT record at _v1.agent.jacs.. Agent A signs a document with jacs_sign Agent B receives the signed document Agent B fetches Agent A's key with jacs_fetch_pubkey Agent B verifies with jacs_verify_with_key","breadcrumbs":"OpenClaw » Flow","id":"1247","title":"Flow"},"1248":{"body":"Agent A (agent-a.example.com) Agent B (agent-b.example.com)\n================================ ================================ 1. Initialize JACS openclaw jacs init 2. Publish public key (served at /.well-known/jacs-pubkey.json) 3. Sign a message jacs_sign({ message: \"hello\" }) → signed_doc 4. Send signed_doc to Agent B 5. Receive signed_doc 6. Fetch Agent A's public key jacs_fetch_pubkey(\"agent-a.example.com\") → pubkey_a 7. Verify signature jacs_verify_with_key(signed_doc, pubkey_a) → { valid: true, signer: \"agent-a-uuid\" }","breadcrumbs":"OpenClaw » Example Workflow","id":"1248","title":"Example Workflow"},"1249":{"body":"For additional verification, agents can publish their public key fingerprint in DNS:","breadcrumbs":"OpenClaw » DNS-Based Discovery","id":"1249","title":"DNS-Based Discovery"},"125":{"body":"jacs config read Displays the current configuration, including values from both the config file and environment variables.","breadcrumbs":"CLI Usage » Read Configuration","id":"125","title":"Read Configuration"},"1250":{"body":"openclaw jacs dns-record agent.example.com This outputs commands for your DNS provider: _v1.agent.jacs.agent.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id=; alg=SHA-256; enc=base64; jac_public_key_hash=<44-char-b64>\"","breadcrumbs":"OpenClaw » Generate DNS Record","id":"1250","title":"Generate DNS Record"},"1251":{"body":"openclaw jacs lookup agent.example.com The plugin will: Query DNS TXT record at _v1.agent.jacs.agent.example.com Fetch full public key from /.well-known/jacs-pubkey.json Verify the DNS hash matches the fetched key","breadcrumbs":"OpenClaw » DNS Lookup","id":"1251","title":"DNS Lookup"},"1252":{"body":"","breadcrumbs":"OpenClaw » Security","id":"1252","title":"Security"},"1253":{"body":"Private keys are encrypted with AES-256-GCM Password-derived key using PBKDF2 (100k iterations) Keys stored with restricted file permissions","breadcrumbs":"OpenClaw » Key Protection","id":"1253","title":"Key Protection"},"1254":{"body":"The default algorithm (pq2025 / ML-DSA-87) is quantum-resistant, providing protection against future quantum computing attacks.","breadcrumbs":"OpenClaw » Post-Quantum Cryptography","id":"1254","title":"Post-Quantum Cryptography"},"1255":{"body":"Signatures include: Document hash (prevents modification) Signer's agent ID and version Timestamp List of signed fields","breadcrumbs":"OpenClaw » Signature Binding","id":"1255","title":"Signature Binding"},"1256":{"body":"The plugin provides a skill for agent conversations: /jacs sign {\"task\": \"analyze data\", \"result\": \"completed\"}\n/jacs verify \n/jacs lookup agent.example.com","breadcrumbs":"OpenClaw » Skill Usage","id":"1256","title":"Skill Usage"},"1257":{"body":"","breadcrumbs":"OpenClaw » Troubleshooting","id":"1257","title":"Troubleshooting"},"1258":{"body":"Run openclaw jacs init to set up your JACS identity.","breadcrumbs":"OpenClaw » \"JACS not initialized\"","id":"1258","title":"\"JACS not initialized\""},"1259":{"body":"Verify the domain is correct and serving /.well-known/jacs-pubkey.json.","breadcrumbs":"OpenClaw » \"Failed to fetch public key\"","id":"1259","title":"\"Failed to fetch public key\""},"126":{"body":"","breadcrumbs":"CLI Usage » Agent Commands","id":"126","title":"Agent Commands"},"1260":{"body":"Check that the document hasn't been modified Verify you have the correct public key for the signer Ensure the signing algorithm matches","breadcrumbs":"OpenClaw » \"Signature verification failed\"","id":"1260","title":"\"Signature verification failed\""},"1261":{"body":"DNS-Based Verification - Detailed DNS setup Agreements - Multi-agent coordination MCP Integration - Model Context Protocol","breadcrumbs":"OpenClaw » Next Steps","id":"1261","title":"Next Steps"},"1262":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing across multiple frameworks and languages.","breadcrumbs":"Web Servers » Web Servers","id":"1262","title":"Web Servers"},"1263":{"body":"Web server integration with JACS enables: Request Authentication : Verify incoming requests were signed by valid agents Response Signing : Automatically sign outgoing responses Tamper Detection : Ensure message integrity end-to-end Audit Trail : Track all authenticated interactions","breadcrumbs":"Web Servers » Overview","id":"1263","title":"Overview"},"1264":{"body":"Framework Language Module Express.js Node.js @hai.ai/jacs/http Koa Node.js @hai.ai/jacs/http FastAPI Python jacs.http Flask Python jacs.http","breadcrumbs":"Web Servers » Supported Frameworks","id":"1264","title":"Supported Frameworks"},"1265":{"body":"All JACS web integrations follow the same flow: Client Server │ │ │── signRequest(payload) ────> │ │ │── verifyRequest() │ │── process request │ │── signResponse(result) │<── verifyResponse(result) ── │ │","breadcrumbs":"Web Servers » Request/Response Flow","id":"1265","title":"Request/Response Flow"},"1266":{"body":"","breadcrumbs":"Web Servers » Node.js Integration","id":"1266","title":"Node.js Integration"},"1267":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // IMPORTANT: Parse body as text BEFORE JACS middleware\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Route handlers receive verified payload in req.jacsPayload\napp.post('/api/data', (req, res) => { const payload = req.jacsPayload; if (!payload) { return res.status(400).send({ error: 'Invalid JACS request' }); } // Response objects are automatically signed res.send({ received: payload, status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Web Servers » Express.js","id":"1267","title":"Express.js"},"1268":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa(); // Apply JACS middleware (handles body parsing internally)\napp.use(JACSKoaMiddleware({ configPath: './jacs.config.json'\n})); app.use(async (ctx) => { if (ctx.path === '/api/data' && ctx.method === 'POST') { const payload = ctx.state.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = { error: 'Invalid JACS request' }; return; } // Response objects are automatically signed ctx.body = { received: payload, status: 'ok' }; }\n}); app.listen(3000); See Node.js HTTP Server and Express Middleware for complete documentation.","breadcrumbs":"Web Servers » Koa","id":"1268","title":"Koa"},"1269":{"body":"","breadcrumbs":"Web Servers » Python Integration","id":"1269","title":"Python Integration"},"127":{"body":"jacs agent create --create-keys true # With a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Without creating new keys (use existing)\njacs agent create --create-keys false -f my-agent.json Options: Option Short Required Description --create-keys Yes Whether to create new cryptographic keys -f No Path to JSON file with agent definition","breadcrumbs":"CLI Usage » Create Agent","id":"127","title":"Create Agent"},"1270":{"body":"from fastapi import FastAPI, Request\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI() # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") @app.post(\"/api/data\")\nasync def handle_data(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: return PlainTextResponse( content=json.dumps({\"error\": \"Invalid JACS request\"}), status_code=400 ) # Process request result = {\"received\": payload, \"status\": \"ok\"} # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Web Servers » FastAPI","id":"1270","title":"FastAPI"},"1271":{"body":"from flask import Flask, request\nimport jacs\nimport json app = Flask(__name__) # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") @app.route(\"/api/data\", methods=[\"POST\"])\ndef handle_data(): # Read raw body body_str = request.get_data(as_text=True) # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: return json.dumps({\"error\": \"Invalid JACS request\"}), 400 # Process request result = {\"received\": payload, \"status\": \"ok\"} # Sign response signed_response = jacs.sign_response(result) return signed_response, 200, {\"Content-Type\": \"text/plain\"} if __name__ == \"__main__\": app.run(port=8000)","breadcrumbs":"Web Servers » Flask","id":"1271","title":"Flask"},"1272":{"body":"","breadcrumbs":"Web Servers » HTTP Client","id":"1272","title":"HTTP Client"},"1273":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { // Load JACS agent await jacs.load('./jacs.client.config.json'); // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"Web Servers » Node.js Client","id":"1273","title":"Node.js Client"},"1274":{"body":"import jacs\nimport requests\nimport json def send_jacs_request(url, payload): # Initialize JACS agent agent = jacs.JacsAgent() agent.load(\"./jacs.client.config.json\") # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) # Verify response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') # Usage\nresult = send_jacs_request(\"http://localhost:8000/api/data\", { \"action\": \"fetch\", \"query\": {\"id\": 42}\n})","breadcrumbs":"Web Servers » Python Client","id":"1274","title":"Python Client"},"1275":{"body":"","breadcrumbs":"Web Servers » Middleware Patterns","id":"1275","title":"Middleware Patterns"},"1276":{"body":"Protect specific routes while leaving others public: // Node.js Express\nconst app = express(); // Public routes (no JACS)\napp.get('/health', (req, res) => res.send({ status: 'ok' }));\napp.get('/public/info', (req, res) => res.send({ name: 'My API' })); // Protected routes (JACS required)\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/secure', (req, res) => { // Only JACS-signed requests reach here res.send({ data: 'secure response' });\n});","breadcrumbs":"Web Servers » Route-Level Protection","id":"1276","title":"Route-Level Protection"},"1277":{"body":"Use different JACS agents for different route groups: // Admin routes with admin agent\napp.use('/admin', express.text({ type: '*/*' }));\napp.use('/admin', JACSExpressMiddleware({ configPath: './jacs.admin.config.json'\n})); // User routes with user agent\napp.use('/user', express.text({ type: '*/*' }));\napp.use('/user', JACSExpressMiddleware({ configPath: './jacs.user.config.json'\n}));","breadcrumbs":"Web Servers » Multiple Agent Configurations","id":"1277","title":"Multiple Agent Configurations"},"1278":{"body":"Create reusable validation helpers: function requireJacsPayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'JACS verification failed', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Apply to routes\napp.post('/api/secure', requireJacsPayload, (req, res) => { // Guaranteed to have valid req.jacsPayload res.send({ data: req.jacsPayload });\n});","breadcrumbs":"Web Servers » Validation Middleware","id":"1278","title":"Validation Middleware"},"1279":{"body":"JACS requests should use text/plain content type since they are signed JSON strings: // Client side\nconst response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, // Not application/json body: signedRequest\n}); // Server side (Express)\napp.use('/api', express.text({ type: '*/*' })); // Parse as text, not JSON","breadcrumbs":"Web Servers » Content-Type Considerations","id":"1279","title":"Content-Type Considerations"},"128":{"body":"# Verify agent from config\njacs agent verify # Verify specific agent file\njacs agent verify -a ./path/to/agent.json # With DNS validation options\njacs agent verify --require-dns\njacs agent verify --require-strict-dns\njacs agent verify --no-dns\njacs agent verify --ignore-dns Options: Option Short Description -a --agent-file Path to agent file (optional) --no-dns Disable DNS validation --require-dns Require DNS validation (not strict) --require-strict-dns Require DNSSEC validation --ignore-dns Ignore DNS validation entirely","breadcrumbs":"CLI Usage » Verify Agent","id":"128","title":"Verify Agent"},"1280":{"body":"","breadcrumbs":"Web Servers » Error Handling","id":"1280","title":"Error Handling"},"1281":{"body":"app.post('/api/process', (req, res, next) => { try { if (!req.jacsPayload) { throw new Error('Missing JACS payload'); } const result = processData(req.jacsPayload); res.send({ result }); } catch (error) { next(error); }\n}); // Global error handler\napp.use((error, req, res, next) => { console.error('Error:', error.message); res.status(500).send({ error: 'Internal server error', message: error.message });\n});","breadcrumbs":"Web Servers » Server-Side Errors","id":"1281","title":"Server-Side Errors"},"1282":{"body":"try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"Web Servers » Client-Side Errors","id":"1282","title":"Client-Side Errors"},"1283":{"body":"","breadcrumbs":"Web Servers » Security Best Practices","id":"1283","title":"Security Best Practices"},"1284":{"body":"Always use HTTPS for production deployments: // Client\nawait sendJacsRequest('https://api.example.com/data', payload);","breadcrumbs":"Web Servers » 1. Use TLS in Production","id":"1284","title":"1. Use TLS in Production"},"1285":{"body":"Each endpoint needs its own JACS identity: project/\n├── server/\n│ ├── jacs.config.json\n│ └── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── client/ ├── jacs.config.json └── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Web Servers » 2. Separate Server and Client Keys","id":"1285","title":"2. Separate Server and Client Keys"},"1286":{"body":"For Express, ensure correct middleware order: // Correct order\napp.use('/api', express.text({ type: '*/*' })); // 1. Parse body\napp.use('/api', JACSExpressMiddleware({ ... })); // 2. JACS verification // Wrong order - JACS won't receive string body\napp.use('/api', JACSExpressMiddleware({ ... }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"Web Servers » 3. Middleware Order Matters","id":"1286","title":"3. Middleware Order Matters"},"1287":{"body":"Don't mix express.json() with JACS routes: // JSON for non-JACS routes\napp.use('/public', express.json()); // Text for JACS routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ ... }));","breadcrumbs":"Web Servers » 4. Avoid JSON Body Parser Conflicts","id":"1287","title":"4. Avoid JSON Body Parser Conflicts"},"1288":{"body":"Log JACS requests for security auditing: function jacsLogger(req, res, next) { if (req.jacsPayload) { console.log(JSON.stringify({ timestamp: new Date().toISOString(), method: req.method, path: req.path, jacsPayload: req.jacsPayload, ip: req.ip })); } next();\n} app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' }));\napp.use('/api', jacsLogger); // After JACS middleware","breadcrumbs":"Web Servers » Logging and Auditing","id":"1288","title":"Logging and Auditing"},"1289":{"body":"","breadcrumbs":"Web Servers » Testing","id":"1289","title":"Testing"},"129":{"body":"# Generate DNS TXT record commands for agent publishing\njacs agent dns --domain example.com --agent-id [uuid] # With different output formats\njacs agent dns --domain example.com --encoding hex\njacs agent dns --domain example.com --provider aws # With custom TTL\njacs agent dns --domain example.com --ttl 7200 Options: Option Default Description --domain Domain for DNS record --agent-id Agent UUID (optional, uses config if not provided) --ttl 3600 Time-to-live in seconds --encoding base64 Encoding format (base64, hex) --provider plain Output format (plain, aws, azure, cloudflare)","breadcrumbs":"CLI Usage » DNS Commands","id":"129","title":"DNS Commands"},"1290":{"body":"import request from 'supertest';\nimport jacs from '@hai.ai/jacs'; describe('JACS API', () => { beforeAll(async () => { await jacs.load('./jacs.test.config.json'); }); it('should accept valid JACS requests', async () => { const payload = { action: 'test', data: 'hello' }; const signedRequest = await jacs.signRequest(payload); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); // Verify response is JACS-signed const verified = await jacs.verifyResponse(response.text); expect(verified.payload.echo).toEqual(payload); }); it('should reject unsigned requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Web Servers » Testing with Supertest","id":"1290","title":"Testing with Supertest"},"1291":{"body":"","breadcrumbs":"Web Servers » Troubleshooting","id":"1291","title":"Troubleshooting"},"1292":{"body":"Issue Cause Solution req.jacsPayload undefined Wrong middleware order Put express.text() before JACS middleware Response not signed Sending string instead of object Use res.send({ ... }) not res.send(JSON.stringify(...)) Verification failures Key mismatch Ensure compatible JACS configurations Connection refused Server not running Verify server is listening on correct port","breadcrumbs":"Web Servers » Common Issues","id":"1292","title":"Common Issues"},"1293":{"body":"// Node.js\nprocess.env.JACS_DEBUG = 'true'; # Python\nimport logging\nlogging.basicConfig(level=logging.DEBUG)","breadcrumbs":"Web Servers » Debug Logging","id":"1293","title":"Debug Logging"},"1294":{"body":"Node.js HTTP Server - Detailed Node.js documentation Express Middleware - Express-specific patterns MCP Integration - Model Context Protocol support Security Model - JACS security architecture","breadcrumbs":"Web Servers » See Also","id":"1294","title":"See Also"},"1295":{"body":"JACS includes a built-in PostgreSQL storage backend (behind the database feature flag) that handles document storage, JSONB queries, and signature preservation automatically. For most use cases, this is the recommended approach. For custom integrations with other databases, see the examples below.","breadcrumbs":"Databases » Databases","id":"1295","title":"Databases"},"1296":{"body":"JACS ships with native PostgreSQL support via the database Cargo feature. This uses a TEXT + JSONB dual-column strategy to preserve cryptographic signatures while enabling efficient queries. See Storage Backends for full documentation. # Enable at compile time\ncargo build --features database # Configure via environment\nexport JACS_DATABASE_URL=\"postgres://user:pass@localhost:5432/jacs\"","breadcrumbs":"Databases » Built-in PostgreSQL Backend","id":"1296","title":"Built-in PostgreSQL Backend"},"1297":{"body":"If you need to integrate JACS documents with other databases (MongoDB, SQLite, Redis) or need application-specific table structures, you can store JACS documents directly. JACS documents are JSON objects with cryptographic signatures. They can be stored in any database that supports JSON or text storage: Database Type Storage Method Best For PostgreSQL (built-in) TEXT + JSONB Complex queries, signature preservation PostgreSQL (custom) JSONB column Application-specific schemas MongoDB Native documents Document-centric apps SQLite TEXT column Local/embedded apps Redis Key-value Caching, high-speed access","breadcrumbs":"Databases » Custom Database Integrations","id":"1297","title":"Custom Database Integrations"},"1298":{"body":"The built-in PostgreSQL backend covers most query needs. Use a custom integration when you need: Different Database : MongoDB, SQLite, Redis, etc. Custom Schema : Application-specific table structures Relations : Link JACS documents to non-JACS data Existing Infrastructure : Integrate with current systems","breadcrumbs":"Databases » Why Use a Custom Database Integration?","id":"1298","title":"Why Use a Custom Database Integration?"},"1299":{"body":"","breadcrumbs":"Databases » PostgreSQL Integration","id":"1299","title":"PostgreSQL Integration"},"13":{"body":"Unlike general-purpose signing frameworks, JACS is specifically designed for AI agent communication patterns - tasks, agreements, and collaborative workflows.","breadcrumbs":"Introduction » 🎯 Agent-Focused Design","id":"13","title":"🎯 Agent-Focused Design"},"130":{"body":"# Look up another agent's public key from their domain\njacs agent lookup agent.example.com # With strict DNSSEC validation\njacs agent lookup agent.example.com --strict # Skip DNS lookup\njacs agent lookup agent.example.com --no-dns","breadcrumbs":"CLI Usage » Lookup Agent","id":"130","title":"Lookup Agent"},"1300":{"body":"-- JACS documents table\nCREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, signature_valid BOOLEAN DEFAULT TRUE, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), updated_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), -- Extracted fields for indexing agent_id UUID, document_type VARCHAR(100), UNIQUE(id, version_id)\n); -- Index on JACS fields\nCREATE INDEX idx_jacs_agent ON jacs_documents(agent_id);\nCREATE INDEX idx_jacs_type ON jacs_documents(document_type);\nCREATE INDEX idx_jacs_created ON jacs_documents(created_at); -- GIN index for JSONB queries\nCREATE INDEX idx_jacs_document ON jacs_documents USING GIN (document);","breadcrumbs":"Databases » Schema Design","id":"1300","title":"Schema Design"},"1301":{"body":"import { Pool } from 'pg';\nimport jacs from '@hai.ai/jacs'; const pool = new Pool({ connectionString: process.env.DATABASE_URL\n}); class JacsDocumentStore { constructor(configPath) { this.configPath = configPath; } async initialize() { await jacs.load(this.configPath); } async createAndStore(content, options = {}) { // Create JACS document const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); // Store in database const result = await pool.query(` INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES ($1, $2, $3, $4, $5) RETURNING * `, [ doc.jacsId, doc.jacsVersion, doc, doc.jacsSignature?.agentID, content.type || 'document' ]); return result.rows[0]; } async getDocument(id, versionId = null) { let query = 'SELECT * FROM jacs_documents WHERE id = $1'; const params = [id]; if (versionId) { query += ' AND version_id = $2'; params.push(versionId); } else { query += ' ORDER BY created_at DESC LIMIT 1'; } const result = await pool.query(query, params); return result.rows[0]; } async verifyDocument(id) { const row = await this.getDocument(id); if (!row) return null; const isValid = await jacs.verifyDocument(JSON.stringify(row.document)); // Update signature_valid flag await pool.query( 'UPDATE jacs_documents SET signature_valid = $1 WHERE id = $2 AND version_id = $3', [isValid, row.id, row.version_id] ); return { document: row.document, isValid }; } async searchDocuments(query) { const result = await pool.query(` SELECT * FROM jacs_documents WHERE document @> $1 ORDER BY created_at DESC `, [JSON.stringify(query)]); return result.rows; }\n} // Usage\nconst store = new JacsDocumentStore('./jacs.config.json');\nawait store.initialize(); // Create and store a document\nconst doc = await store.createAndStore({ type: 'invoice', amount: 1500, customer: 'Acme Corp'\n}); // Search documents\nconst invoices = await store.searchDocuments({ type: 'invoice' });","breadcrumbs":"Databases » Node.js Example","id":"1301","title":"Node.js Example"},"1302":{"body":"import json\nimport jacs\nimport psycopg2\nfrom psycopg2.extras import RealDictCursor class JacsDocumentStore: def __init__(self, config_path, database_url): self.config_path = config_path self.database_url = database_url self.conn = None def initialize(self): # Initialize JACS agent = jacs.JacsAgent() agent.load(self.config_path) # Connect to database self.conn = psycopg2.connect(self.database_url) def create_and_store(self, content, custom_schema=None): # Create JACS document doc_string = jacs.create_document( json.dumps(content), custom_schema=custom_schema ) doc = json.loads(doc_string) # Store in database with self.conn.cursor(cursor_factory=RealDictCursor) as cur: cur.execute(\"\"\" INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES (%s, %s, %s, %s, %s) RETURNING * \"\"\", ( doc['jacsId'], doc['jacsVersion'], json.dumps(doc), doc.get('jacsSignature', {}).get('agentID'), content.get('type', 'document') )) self.conn.commit() return cur.fetchone() def get_document(self, doc_id, version_id=None): with self.conn.cursor(cursor_factory=RealDictCursor) as cur: if version_id: cur.execute( \"SELECT * FROM jacs_documents WHERE id = %s AND version_id = %s\", (doc_id, version_id) ) else: cur.execute( \"SELECT * FROM jacs_documents WHERE id = %s ORDER BY created_at DESC LIMIT 1\", (doc_id,) ) return cur.fetchone() def verify_document(self, doc_id): row = self.get_document(doc_id) if not row: return None is_valid = jacs.verify_document(json.dumps(row['document'])) # Update verification status with self.conn.cursor() as cur: cur.execute( \"UPDATE jacs_documents SET signature_valid = %s WHERE id = %s AND version_id = %s\", (is_valid, row['id'], row['version_id']) ) self.conn.commit() return {'document': row['document'], 'is_valid': is_valid} def search_documents(self, query): with self.conn.cursor(cursor_factory=RealDictCursor) as cur: cur.execute( \"SELECT * FROM jacs_documents WHERE document @> %s ORDER BY created_at DESC\", (json.dumps(query),) ) return cur.fetchall() # Usage\nstore = JacsDocumentStore('./jacs.config.json', 'postgresql://localhost/mydb')\nstore.initialize() # Create and store a document\ndoc = store.create_and_store({ 'type': 'invoice', 'amount': 1500, 'customer': 'Acme Corp'\n}) # Search documents\ninvoices = store.search_documents({'type': 'invoice'})","breadcrumbs":"Databases » Python Example","id":"1302","title":"Python Example"},"1303":{"body":"","breadcrumbs":"Databases » MongoDB Integration","id":"1303","title":"MongoDB Integration"},"1304":{"body":"// MongoDB schema (using Mongoose)\nconst jacsDocumentSchema = new mongoose.Schema({ jacsId: { type: String, required: true, index: true }, jacsVersion: { type: String, required: true }, document: { type: mongoose.Schema.Types.Mixed, required: true }, signatureValid: { type: Boolean, default: true }, agentId: { type: String, index: true }, documentType: { type: String, index: true }, createdAt: { type: Date, default: Date.now, index: true }\n}); jacsDocumentSchema.index({ jacsId: 1, jacsVersion: 1 }, { unique: true });","breadcrumbs":"Databases » Collection Design","id":"1304","title":"Collection Design"},"1305":{"body":"import mongoose from 'mongoose';\nimport jacs from '@hai.ai/jacs'; const JacsDocument = mongoose.model('JacsDocument', jacsDocumentSchema); class MongoJacsStore { async initialize(configPath) { await jacs.load(configPath); await mongoose.connect(process.env.MONGODB_URI); } async createAndStore(content, options = {}) { const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); const stored = await JacsDocument.create({ jacsId: doc.jacsId, jacsVersion: doc.jacsVersion, document: doc, agentId: doc.jacsSignature?.agentID, documentType: content.type || 'document' }); return stored; } async getDocument(jacsId, versionId = null) { const query = { jacsId }; if (versionId) { query.jacsVersion = versionId; } return JacsDocument.findOne(query).sort({ createdAt: -1 }); } async searchDocuments(query) { // Build MongoDB query from content fields const mongoQuery = {}; for (const [key, value] of Object.entries(query)) { mongoQuery[`document.${key}`] = value; } return JacsDocument.find(mongoQuery).sort({ createdAt: -1 }); } async getDocumentsByAgent(agentId) { return JacsDocument.find({ agentId }).sort({ createdAt: -1 }); }\n} // Usage\nconst store = new MongoJacsStore();\nawait store.initialize('./jacs.config.json'); const doc = await store.createAndStore({ type: 'contract', parties: ['Alice', 'Bob'], value: 50000\n}); const contracts = await store.searchDocuments({ type: 'contract' });","breadcrumbs":"Databases » Example","id":"1305","title":"Example"},"1306":{"body":"For embedded or local applications: import Database from 'better-sqlite3';\nimport jacs from '@hai.ai/jacs'; class SqliteJacsStore { constructor(dbPath) { this.db = new Database(dbPath); this.initSchema(); } initSchema() { this.db.exec(` CREATE TABLE IF NOT EXISTS jacs_documents ( id TEXT NOT NULL, version_id TEXT NOT NULL, document TEXT NOT NULL, agent_id TEXT, document_type TEXT, signature_valid INTEGER DEFAULT 1, created_at TEXT DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id, version_id) ); CREATE INDEX IF NOT EXISTS idx_agent ON jacs_documents(agent_id); CREATE INDEX IF NOT EXISTS idx_type ON jacs_documents(document_type); `); } async initialize(configPath) { await jacs.load(configPath); } async createAndStore(content, options = {}) { const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); const stmt = this.db.prepare(` INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES (?, ?, ?, ?, ?) `); stmt.run( doc.jacsId, doc.jacsVersion, docString, doc.jacsSignature?.agentID, content.type || 'document' ); return doc; } getDocument(id, versionId = null) { let query = 'SELECT * FROM jacs_documents WHERE id = ?'; const params = [id]; if (versionId) { query += ' AND version_id = ?'; params.push(versionId); } else { query += ' ORDER BY created_at DESC LIMIT 1'; } const stmt = this.db.prepare(query); const row = stmt.get(...params); if (row) { row.document = JSON.parse(row.document); } return row; } searchByType(documentType) { const stmt = this.db.prepare( 'SELECT * FROM jacs_documents WHERE document_type = ? ORDER BY created_at DESC' ); return stmt.all(documentType).map(row => ({ ...row, document: JSON.parse(row.document) })); }\n}","breadcrumbs":"Databases » SQLite Integration","id":"1306","title":"SQLite Integration"},"1307":{"body":"Use Redis for high-speed document access: import Redis from 'ioredis';\nimport jacs from '@hai.ai/jacs'; class JacsRedisCache { constructor(redisUrl) { this.redis = new Redis(redisUrl); this.ttl = 3600; // 1 hour default TTL } async initialize(configPath) { await jacs.load(configPath); } async cacheDocument(docString) { const doc = JSON.parse(docString); const key = `jacs:${doc.jacsId}:${doc.jacsVersion}`; await this.redis.setex(key, this.ttl, docString); // Also cache as latest version await this.redis.setex(`jacs:${doc.jacsId}:latest`, this.ttl, docString); return doc; } async getDocument(jacsId, versionId = 'latest') { const key = `jacs:${jacsId}:${versionId}`; const docString = await this.redis.get(key); if (!docString) return null; return JSON.parse(docString); } async invalidate(jacsId, versionId = null) { if (versionId) { await this.redis.del(`jacs:${jacsId}:${versionId}`); } else { // Invalidate all versions const keys = await this.redis.keys(`jacs:${jacsId}:*`); if (keys.length > 0) { await this.redis.del(...keys); } } }\n}","breadcrumbs":"Databases » Redis Caching","id":"1307","title":"Redis Caching"},"1308":{"body":"","breadcrumbs":"Databases » Indexing Strategies","id":"1308","title":"Indexing Strategies"},"1309":{"body":"Extract key fields during storage for efficient querying: async function extractIndexFields(jacsDocument) { return { jacsId: jacsDocument.jacsId, jacsVersion: jacsDocument.jacsVersion, agentId: jacsDocument.jacsSignature?.agentID, createdDate: jacsDocument.jacsSignature?.date, hasAgreement: !!jacsDocument.jacsAgreement, agreementComplete: jacsDocument.jacsAgreement?.signatures?.length === jacsDocument.jacsAgreement?.agentIDs?.length, // Application-specific fields documentType: jacsDocument.type, status: jacsDocument.status, tags: jacsDocument.tags || [] };\n}","breadcrumbs":"Databases » Extracting Searchable Fields","id":"1309","title":"Extracting Searchable Fields"},"131":{"body":"","breadcrumbs":"CLI Usage » Task Commands","id":"131","title":"Task Commands"},"1310":{"body":"PostgreSQL example with full-text search: -- Add text search column\nALTER TABLE jacs_documents ADD COLUMN search_vector tsvector; -- Create index\nCREATE INDEX idx_search ON jacs_documents USING GIN(search_vector); -- Update trigger\nCREATE OR REPLACE FUNCTION update_search_vector() RETURNS trigger AS $$\nBEGIN NEW.search_vector := to_tsvector('english', coalesce(NEW.document->>'title', '') || ' ' || coalesce(NEW.document->>'content', '') || ' ' || coalesce(NEW.document->>'description', '') ); RETURN NEW;\nEND;\n$$ LANGUAGE plpgsql; CREATE TRIGGER jacs_search_update BEFORE INSERT OR UPDATE ON jacs_documents FOR EACH ROW EXECUTE FUNCTION update_search_vector(); // Search example\nasync function fullTextSearch(searchQuery) { const result = await pool.query(` SELECT *, ts_rank(search_vector, plainto_tsquery($1)) as rank FROM jacs_documents WHERE search_vector @@ plainto_tsquery($1) ORDER BY rank DESC `, [searchQuery]); return result.rows;\n}","breadcrumbs":"Databases » Full-Text Search","id":"1310","title":"Full-Text Search"},"1311":{"body":"","breadcrumbs":"Databases » Best Practices","id":"1311","title":"Best Practices"},"1312":{"body":"Always store the complete JACS document to preserve signatures: // Good - stores complete document\nawait pool.query( 'INSERT INTO jacs_documents (id, document) VALUES ($1, $2)', [doc.jacsId, JSON.stringify(doc)] // Complete document\n); // Bad - loses signature data\nawait pool.query( 'INSERT INTO documents (id, content) VALUES ($1, $2)', [doc.jacsId, JSON.stringify(doc.content)] // Only content\n);","breadcrumbs":"Databases » 1. Store Complete Documents","id":"1312","title":"1. Store Complete Documents"},"1313":{"body":"Always verify signatures when retrieving documents for sensitive operations: async function getVerifiedDocument(id) { const row = await pool.query( 'SELECT document FROM jacs_documents WHERE id = $1', [id] ); if (!row.rows[0]) return null; const docString = JSON.stringify(row.rows[0].document); const isValid = await jacs.verifyDocument(docString); if (!isValid) { throw new Error('Document signature verification failed'); } return row.rows[0].document;\n}","breadcrumbs":"Databases » 2. Verify After Retrieval","id":"1313","title":"2. Verify After Retrieval"},"1314":{"body":"Maintain version history for audit trails: async function getDocumentHistory(jacsId) { const result = await pool.query(` SELECT * FROM jacs_documents WHERE id = $1 ORDER BY created_at ASC `, [jacsId]); return result.rows;\n}","breadcrumbs":"Databases » 3. Handle Version History","id":"1314","title":"3. Handle Version History"},"1315":{"body":"Periodically verify stored documents: async function verifyAllDocuments() { const docs = await pool.query('SELECT * FROM jacs_documents'); for (const row of docs.rows) { const docString = JSON.stringify(row.document); const isValid = await jacs.verifyDocument(docString); if (!isValid) { console.warn(`Document ${row.id} failed verification`); await pool.query( 'UPDATE jacs_documents SET signature_valid = false WHERE id = $1', [row.id] ); } }\n}","breadcrumbs":"Databases » 4. Batch Verification","id":"1315","title":"4. Batch Verification"},"1316":{"body":"Storage Backends - Built-in JACS storage Security Model - Document security Testing - Testing database integrations","breadcrumbs":"Databases » See Also","id":"1316","title":"See Also"},"1317":{"body":"This chapter provides practical examples of using the JACS CLI for common workflows.","breadcrumbs":"CLI Examples » CLI Examples","id":"1317","title":"CLI Examples"},"1318":{"body":"jacs init # Initialize JACS (config + agent + keys)\njacs agent create # Create a new agent\njacs document create # Create a signed document\njacs document verify # Verify a document signature\njacs document sign-agreement # Sign an agreement","breadcrumbs":"CLI Examples » Quick Reference","id":"1318","title":"Quick Reference"},"1319":{"body":"","breadcrumbs":"CLI Examples » Getting Started","id":"1319","title":"Getting Started"},"132":{"body":"jacs task create -n \"Task Name\" -d \"Task description\" # With optional agent file\njacs task create -n \"Task Name\" -d \"Description\" -a ./agent.json # With input file\njacs task create -n \"Task Name\" -d \"Description\" -f ./task-details.json Options: Option Short Required Description -n --name Yes Name of the task -d --description Yes Description of the task -a --agent-file No Path to agent file -f --filename No Path to JSON file with additional task data","breadcrumbs":"CLI Usage » Create Task","id":"132","title":"Create Task"},"1320":{"body":"Initialize JACS in a new project: # Create a new directory\nmkdir my-jacs-project\ncd my-jacs-project # Initialize JACS\njacs init # This creates:\n# - jacs.config.json (configuration)\n# - jacs_keys/ (private and public keys)\n# - jacs_data/ (document storage)\n# - An initial agent document","breadcrumbs":"CLI Examples » First-Time Setup","id":"1320","title":"First-Time Setup"},"1321":{"body":"# Check the configuration\njacs config read # Verify your agent\njacs agent verify # Expected output:\n# Agent verification successful\n# Agent ID: 550e8400-e29b-41d4-a716-446655440000\n# Agent Version: f47ac10b-58cc-4372-a567-0e02b2c3d479","breadcrumbs":"CLI Examples » Verify Your Setup","id":"1321","title":"Verify Your Setup"},"1322":{"body":"","breadcrumbs":"CLI Examples » Document Operations","id":"1322","title":"Document Operations"},"1323":{"body":"Create from a JSON file: # Create input file\ncat > invoice.json << 'EOF'\n{ \"type\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"customer\": \"Acme Corp\", \"amount\": 1500.00, \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ]\n}\nEOF # Create signed document\njacs document create -f invoice.json # Output shows the saved document path\n# Document saved to: jacs_data/documents/[uuid]/[version].json Create with custom output: # Specify output filename\njacs document create -f invoice.json -o signed-invoice.json # Print to stdout (don't save)\njacs document create -f invoice.json --no-save Create with file attachments: # Create document with PDF attachment\njacs document create -f contract.json --attach ./contract.pdf # Embed attachment content in document\njacs document create -f contract.json --attach ./contract.pdf --embed true # Attach entire directory\njacs document create -f report.json --attach ./attachments/ Create with custom schema: # Use a custom schema for validation\njacs document create -f order.json -s ./schemas/order.schema.json","breadcrumbs":"CLI Examples » Creating Documents","id":"1323","title":"Creating Documents"},"1324":{"body":"Basic verification: # Verify a document\njacs document verify -f ./signed-invoice.json # Expected output:\n# Document verified successfully\n# Document ID: 550e8400-e29b-41d4-a716-446655440000\n# Signer: Agent Name (agent-uuid) Verbose verification: # Get detailed verification info\njacs document verify -f ./signed-invoice.json -v # Output includes:\n# - Document ID and version\n# - Signature algorithm used\n# - Signing agent details\n# - Timestamp\n# - Schema validation results Batch verification: # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -d ./invoices/ -s ./schemas/invoice.schema.json","breadcrumbs":"CLI Examples » Verifying Documents","id":"1324","title":"Verifying Documents"},"1325":{"body":"Create a new version of an existing document: # Original document\ncat > original.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"draft\", \"content\": \"Initial version\"\n}\nEOF jacs document create -f original.json -o project-v1.json # Updated content\ncat > updated.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"approved\", \"content\": \"Final version with updates\"\n}\nEOF # Create new version (maintains version history)\njacs document update -f project-v1.json -n updated.json -o project-v2.json # Verify the updated document\njacs document verify -f project-v2.json -v","breadcrumbs":"CLI Examples » Updating Documents","id":"1325","title":"Updating Documents"},"1326":{"body":"# Extract embedded files from a document\njacs document extract -f ./document-with-attachments.json # Extracts to: jacs_data/extracted/[document-id]/ # Extract from multiple documents\njacs document extract -d ./documents/","breadcrumbs":"CLI Examples » Extracting Embedded Content","id":"1326","title":"Extracting Embedded Content"},"1327":{"body":"","breadcrumbs":"CLI Examples » Agreement Workflows","id":"1327","title":"Agreement Workflows"},"1328":{"body":"An agreement requires multiple agents to sign a document: # First, create the document to be agreed upon\ncat > service-agreement.json << 'EOF'\n{ \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"...\", \"effectiveDate\": \"2024-02-01\"\n}\nEOF jacs document create -f service-agreement.json -o agreement.json # Create agreement requiring signatures from two agents\n# (Use actual agent UUIDs)\njacs document create-agreement \\ -f agreement.json \\ -i \"agent1-uuid-here,agent2-uuid-here\" \\ -o agreement-pending.json # Output:\n# Agreement created\n# Required signatures: 2\n# Current signatures: 0","breadcrumbs":"CLI Examples » Creating an Agreement","id":"1328","title":"Creating an Agreement"},"1329":{"body":"# First agent signs\njacs document sign-agreement -f agreement-pending.json -o agreement-signed-1.json # Check status\njacs document check-agreement -f agreement-signed-1.json\n# Output:\n# Agreement status: pending\n# Signatures: 1/2\n# Missing: agent2-uuid # Second agent signs (using their configuration)\nJACS_CONFIG_PATH=./agent2.config.json \\ jacs document sign-agreement -f agreement-signed-1.json -o agreement-complete.json # Verify completion\njacs document check-agreement -f agreement-complete.json\n# Output:\n# Agreement status: complete\n# Signatures: 2/2","breadcrumbs":"CLI Examples » Signing an Agreement","id":"1329","title":"Signing an Agreement"},"133":{"body":"","breadcrumbs":"CLI Usage » Document Commands","id":"133","title":"Document Commands"},"1330":{"body":"#!/bin/bash\n# agreement-workflow.sh # Step 1: Create the contract document\ncat > contract.json << 'EOF'\n{ \"type\": \"contract\", \"parties\": { \"seller\": \"Widget Corp\", \"buyer\": \"Acme Inc\" }, \"terms\": \"Sale of 1000 widgets at $10 each\", \"totalValue\": 10000\n}\nEOF echo \"Creating contract document...\"\njacs document create -f contract.json -o contract-signed.json # Step 2: Get agent IDs\nSELLER_AGENT=$(jacs config read | grep agent_id | cut -d: -f2 | tr -d ' ')\nBUYER_AGENT=\"buyer-agent-uuid-here\" # Replace with actual ID # Step 3: Create agreement\necho \"Creating agreement...\"\njacs document create-agreement \\ -f contract-signed.json \\ -i \"$SELLER_AGENT,$BUYER_AGENT\" \\ -o contract-agreement.json # Step 4: Seller signs\necho \"Seller signing...\"\njacs document sign-agreement \\ -f contract-agreement.json \\ -o contract-seller-signed.json # Step 5: Check intermediate status\necho \"Checking status...\"\njacs document check-agreement -f contract-seller-signed.json # Step 6: Buyer signs\necho \"Buyer signing...\"\nJACS_CONFIG_PATH=./buyer.config.json \\ jacs document sign-agreement \\ -f contract-seller-signed.json \\ -o contract-complete.json # Step 7: Verify complete agreement\necho \"Final verification...\"\njacs document verify -f contract-complete.json -v\njacs document check-agreement -f contract-complete.json echo \"Agreement workflow complete!\"","breadcrumbs":"CLI Examples » Complete Agreement Workflow","id":"1330","title":"Complete Agreement Workflow"},"1331":{"body":"","breadcrumbs":"CLI Examples » Agent Operations","id":"1331","title":"Agent Operations"},"1332":{"body":"# Create agent definition file\ncat > my-agent.json << 'EOF'\n{ \"jacsAgentType\": \"ai\", \"name\": \"My Custom Agent\", \"description\": \"An AI agent for document processing\", \"contact\": { \"email\": \"agent@example.com\" }, \"services\": [ { \"name\": \"document-processing\", \"description\": \"Process and sign documents\" } ]\n}\nEOF # Create agent with new keys\njacs agent create --create-keys true -f my-agent.json # Create agent using existing keys\njacs agent create --create-keys false -f my-agent.json","breadcrumbs":"CLI Examples » Creating a Custom Agent","id":"1332","title":"Creating a Custom Agent"},"1333":{"body":"Generate DNS record commands: # Generate TXT record for your domain\njacs agent dns --domain myagent.example.com # Output (example):\n# Add the following DNS TXT record:\n# _v1.agent.jacs.myagent.example.com TXT \"pk=\" # Different providers\njacs agent dns --domain myagent.example.com --provider aws\njacs agent dns --domain myagent.example.com --provider cloudflare\njacs agent dns --domain myagent.example.com --provider azure # Custom TTL\njacs agent dns --domain myagent.example.com --ttl 7200 Verify DNS-published agent: # Look up agent by domain\njacs agent lookup partner.example.com # Require strict DNSSEC validation\njacs agent lookup partner.example.com --strict # Verify local agent file against DNS\njacs agent verify -a ./partner-agent.json --require-strict-dns","breadcrumbs":"CLI Examples » DNS-Based Identity","id":"1333","title":"DNS-Based Identity"},"1334":{"body":"# Basic verification\njacs agent verify # Verify another agent's file\njacs agent verify -a ./other-agent.json # With DNS requirements\njacs agent verify --require-dns # Require DNS (not strict)\njacs agent verify --require-strict-dns # Require DNSSEC\njacs agent verify --no-dns # Skip DNS entirely\njacs agent verify --ignore-dns # Ignore DNS validation failures","breadcrumbs":"CLI Examples » Agent Verification","id":"1334","title":"Agent Verification"},"1335":{"body":"","breadcrumbs":"CLI Examples » Task Management","id":"1335","title":"Task Management"},"1336":{"body":"# Simple task\njacs task create \\ -n \"Review Contract\" \\ -d \"Review the service contract and provide feedback\" # Task with additional data from file\ncat > task-details.json << 'EOF'\n{ \"priority\": \"high\", \"dueDate\": \"2024-02-15\", \"assignee\": \"legal-team\"\n}\nEOF jacs task create \\ -n \"Contract Review\" \\ -d \"Detailed review required\" \\ -f task-details.json","breadcrumbs":"CLI Examples » Creating Tasks","id":"1336","title":"Creating Tasks"},"1337":{"body":"","breadcrumbs":"CLI Examples » Scripting Examples","id":"1337","title":"Scripting Examples"},"1338":{"body":"#!/bin/bash\n# batch-sign.sh - Sign all JSON files in a directory INPUT_DIR=$1\nOUTPUT_DIR=${2:-\"./signed\"} mkdir -p \"$OUTPUT_DIR\" for file in \"$INPUT_DIR\"/*.json; do filename=$(basename \"$file\") echo \"Signing: $filename\" jacs document create -f \"$file\" -o \"$OUTPUT_DIR/$filename\" if [ $? -eq 0 ]; then echo \" ✓ Signed successfully\" else echo \" ✗ Signing failed\" fi\ndone echo \"Batch signing complete. Output in $OUTPUT_DIR\"","breadcrumbs":"CLI Examples » Batch Document Processing","id":"1338","title":"Batch Document Processing"},"1339":{"body":"#!/bin/bash\n# verify-report.sh - Generate verification report DOC_DIR=$1\nREPORT=\"verification-report.txt\" echo \"JACS Document Verification Report\" > $REPORT\necho \"Generated: $(date)\" >> $REPORT\necho \"=================================\" >> $REPORT\necho \"\" >> $REPORT passed=0\nfailed=0 for file in \"$DOC_DIR\"/*.json; do filename=$(basename \"$file\") if jacs document verify -f \"$file\" > /dev/null 2>&1; then echo \"✓ PASS: $filename\" >> $REPORT ((passed++)) else echo \"✗ FAIL: $filename\" >> $REPORT ((failed++)) fi\ndone echo \"\" >> $REPORT\necho \"Summary: $passed passed, $failed failed\" >> $REPORT cat $REPORT","breadcrumbs":"CLI Examples » Verification Report","id":"1339","title":"Verification Report"},"134":{"body":"# Create from a JSON file\njacs document create -f ./document.json # Create from a directory of files\njacs document create -d ./documents/ # With custom schema\njacs document create -f ./document.json -s ./custom-schema.json # With file attachments\njacs document create -f ./document.json --attach ./attachment.pdf # Embed attachments in document\njacs document create -f ./document.json --attach ./files/ --embed true # Output to specific file\njacs document create -f ./document.json -o ./output.json # Print to stdout instead of saving\njacs document create -f ./document.json --no-save Options: Option Short Description -f --filename Path to input JSON file -d --directory Path to directory of JSON files -o --output Output filename -s --schema Path to custom JSON schema --attach Path to file/directory for attachments --embed -e Embed documents (true/false) --no-save -n Print to stdout instead of saving -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Usage » Create Document","id":"134","title":"Create Document"},"1340":{"body":"#!/bin/bash\n# watch-and-verify.sh - Monitor directory and verify new documents WATCH_DIR=${1:-\"./incoming\"} echo \"Watching $WATCH_DIR for new documents...\" inotifywait -m \"$WATCH_DIR\" -e create -e moved_to | while read dir action file; do if [[ \"$file\" == *.json ]]; then echo \"New document: $file\" if jacs document verify -f \"$WATCH_DIR/$file\"; then mv \"$WATCH_DIR/$file\" \"./verified/\" echo \" Moved to verified/\" else mv \"$WATCH_DIR/$file\" \"./rejected/\" echo \" Moved to rejected/\" fi fi done","breadcrumbs":"CLI Examples » Watch for New Documents","id":"1340","title":"Watch for New Documents"},"1341":{"body":"","breadcrumbs":"CLI Examples » Environment Configuration","id":"1341","title":"Environment Configuration"},"1342":{"body":"# Use a specific config file\nexport JACS_CONFIG_PATH=./production.config.json\njacs document create -f invoice.json # Override specific settings\nexport JACS_DATA_DIRECTORY=./custom-data\nexport JACS_KEY_DIRECTORY=./secure-keys\njacs agent create --create-keys true # One-time override\nJACS_CONFIG_PATH=./test.config.json jacs document verify -f test-doc.json","breadcrumbs":"CLI Examples » Using Environment Variables","id":"1342","title":"Using Environment Variables"},"1343":{"body":"# Development\nalias jacs-dev='JACS_CONFIG_PATH=./dev.config.json jacs'\njacs-dev document create -f test.json # Production\nalias jacs-prod='JACS_CONFIG_PATH=./prod.config.json jacs'\njacs-prod document verify -f important.json # Different agents\nalias jacs-alice='JACS_CONFIG_PATH=./alice.config.json jacs'\nalias jacs-bob='JACS_CONFIG_PATH=./bob.config.json jacs'","breadcrumbs":"CLI Examples » Multiple Configurations","id":"1343","title":"Multiple Configurations"},"1344":{"body":"","breadcrumbs":"CLI Examples » Error Handling","id":"1344","title":"Error Handling"},"1345":{"body":"jacs document verify -f document.json\nexit_code=$? case $exit_code in 0) echo \"Success\" ;; 1) echo \"General error\" ;; 2) echo \"Invalid arguments\" ;; 3) echo \"File not found\" ;; 4) echo \"Verification failed\" ;; 5) echo \"Signature invalid\" ;; *) echo \"Unknown error: $exit_code\" ;;\nesac","breadcrumbs":"CLI Examples » Understanding Exit Codes","id":"1345","title":"Understanding Exit Codes"},"1346":{"body":"#!/bin/bash\n# robust-signing.sh sign_document() { local input=$1 local output=$2 if ! jacs document create -f \"$input\" -o \"$output\" 2>/dev/null; then echo \"Error: Failed to sign $input\" >&2 return 1 fi if ! jacs document verify -f \"$output\" 2>/dev/null; then echo \"Error: Verification failed for $output\" >&2 rm -f \"$output\" return 1 fi echo \"Successfully signed: $output\" return 0\n} # Usage\nsign_document \"invoice.json\" \"signed-invoice.json\" || exit 1","breadcrumbs":"CLI Examples » Handling Failures","id":"1346","title":"Handling Failures"},"1347":{"body":"CLI Command Reference - Complete command reference Configuration Reference - Configuration options Rust CLI Usage - Detailed CLI documentation","breadcrumbs":"CLI Examples » See Also","id":"1347","title":"See Also"},"1348":{"body":"This chapter provides practical Node.js examples using the @hai.ai/jacs package.","breadcrumbs":"Node.js Examples » Node.js Examples","id":"1348","title":"Node.js Examples"},"1349":{"body":"# Install dependencies\nnpm install @hai.ai/jacs express @modelcontextprotocol/sdk zod // Initialize JACS (ES Modules)\nimport { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"Node.js Examples » Setup","id":"1349","title":"Setup"},"135":{"body":"# Update an existing document with new content\njacs document update -f ./original.json -n ./updated.json # With output file\njacs document update -f ./original.json -n ./updated.json -o ./result.json # With file attachments\njacs document update -f ./original.json -n ./updated.json --attach ./new-file.pdf Options: Option Short Required Description -f --filename Yes Path to original document -n --new Yes Path to new version -o --output No Output filename --attach No Path to file attachments --embed -e No Embed documents (true/false)","breadcrumbs":"CLI Usage » Update Document","id":"135","title":"Update Document"},"1350":{"body":"","breadcrumbs":"Node.js Examples » Basic Document Operations","id":"1350","title":"Basic Document Operations"},"1351":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function createSignedDocument() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a simple document const content = { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', items: [ { description: 'Consulting', quantity: 10, price: 150 } ] }; // Create and sign the document const signedDoc = await agent.createDocument(JSON.stringify(content)); // Parse the result const doc = JSON.parse(signedDoc); console.log('Document ID:', doc.jacsId); console.log('Version:', doc.jacsVersion); console.log('Signature:', doc.jacsSignature ? 'Present' : 'Missing'); return doc;\n} createSignedDocument();","breadcrumbs":"Node.js Examples » Creating and Signing Documents","id":"1351","title":"Creating and Signing Documents"},"1352":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function verifyDocument(filePath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read the document const docString = fs.readFileSync(filePath, 'utf-8'); // Verify signature const isValid = await agent.verifyDocument(docString); if (isValid) { console.log('✓ Document signature is valid'); const doc = JSON.parse(docString); console.log(' Signed by:', doc.jacsSignature?.agentID); console.log(' Signed at:', doc.jacsSignature?.date); } else { console.log('✗ Document signature is INVALID'); } return isValid;\n} verifyDocument('./invoice.json');","breadcrumbs":"Node.js Examples » Verifying Documents","id":"1352","title":"Verifying Documents"},"1353":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function updateDocument(originalPath, newContent) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read original document const originalDoc = fs.readFileSync(originalPath, 'utf-8'); // Update with new content (preserves version chain) const updatedDoc = await agent.updateDocument( originalDoc, JSON.stringify(newContent) ); const doc = JSON.parse(updatedDoc); console.log('Updated Document ID:', doc.jacsId); console.log('New Version:', doc.jacsVersion); return doc;\n} // Usage\nconst updated = await updateDocument('./invoice-v1.json', { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', status: 'paid' // New field\n});","breadcrumbs":"Node.js Examples » Updating Documents","id":"1353","title":"Updating Documents"},"1354":{"body":"","breadcrumbs":"Node.js Examples » HTTP Server with Express","id":"1354","title":"HTTP Server with Express"},"1355":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { JacsAgent } from '@hai.ai/jacs'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Health check (no JACS)\napp.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() });\n}); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Echo endpoint\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', requirePayload, (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : null; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); // Create document endpoint\napp.post('/api/documents', requirePayload, async (req, res) => { try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); app.listen(PORT, () => { console.log(`JACS Express server running on port ${PORT}`);\n});","breadcrumbs":"Node.js Examples » Complete Express Server","id":"1355","title":"Complete Express Server"},"1356":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function callJacsApi(url, payload) { const agent = new JacsAgent(); await agent.load('./jacs.client.config.json'); // Sign the request const signedRequest = await agent.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify and extract response const responseText = await response.text(); const verified = await agent.verifyResponse(responseText); return verified.payload;\n} // Usage\nasync function main() { // Call echo endpoint const echoResult = await callJacsApi( 'http://localhost:3000/api/echo', { message: 'Hello, server!' } ); console.log('Echo:', echoResult); // Call calculate endpoint const calcResult = await callJacsApi( 'http://localhost:3000/api/calculate', { operation: 'multiply', a: 7, b: 6 } ); console.log('Calculate:', calcResult);\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » HTTP Client","id":"1356","title":"HTTP Client"},"1357":{"body":"","breadcrumbs":"Node.js Examples » MCP Integration","id":"1357","title":"MCP Integration"},"1358":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; const JACS_CONFIG = \"./jacs.server.config.json\"; async function main() { console.error(\"JACS MCP Server starting...\"); // Create transport with JACS encryption const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG, \"server\" ); // Create MCP server const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"calculate\", { operation: z.enum([\"add\", \"subtract\", \"multiply\", \"divide\"]), a: z.number(), b: z.number() }, async ({ operation, a, b }) => { let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : 'undefined'; break; } return { content: [{ type: \"text\", text: `${a} ${operation} ${b} = ${result}` }] }; }); // Register resource server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: JSON.stringify({ name: \"JACS Demo Server\", version: \"1.0.0\", capabilities: [\"echo\", \"calculate\"] }), mimeType: \"application/json\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"Node.js Examples » MCP Server","id":"1358","title":"MCP Server"},"1359":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const JACS_CONFIG = \"./jacs.client.config.json\"; async function main() { console.log(\"JACS MCP Client starting...\"); // Connect to server const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp-server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG, \"client\" ); const client = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await client.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await client.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo const echoResult = await client.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo:\", echoResult.content[0].text); // Call calculate const calcResult = await client.callTool({ name: \"calculate\", arguments: { operation: \"multiply\", a: 6, b: 7 } }); console.log(\"Calculate:\", calcResult.content[0].text); await client.close(); console.log(\"Done!\");\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » MCP Client","id":"1359","title":"MCP Client"},"136":{"body":"# Verify a document\njacs document verify -f ./document.json # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -f ./document.json -s ./schema.json # Verbose output\njacs document verify -f ./document.json -v Options: Option Short Description -f --filename Path to document file -d --directory Path to directory of documents -s --schema Path to JSON schema for validation -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Usage » Verify Document","id":"136","title":"Verify Document"},"1360":{"body":"","breadcrumbs":"Node.js Examples » Agreements","id":"1360","title":"Agreements"},"1361":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function createAgreement() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create the contract document const contract = { type: 'service_agreement', title: 'Professional Services Agreement', parties: ['Company A', 'Company B'], terms: 'Terms and conditions here...', value: 50000, effectiveDate: '2024-02-01' }; const signedContract = await agent.createDocument(JSON.stringify(contract)); // Get agent IDs (replace with actual UUIDs) const agentIds = [ 'agent1-uuid-here', 'agent2-uuid-here' ]; // Create agreement const agreementDoc = await agent.createAgreement( signedContract, agentIds, 'Do you agree to the terms of this service agreement?', 'This is a legally binding agreement' ); console.log('Agreement created'); const doc = JSON.parse(agreementDoc); console.log('Document ID:', doc.jacsId); console.log('Required signatures:', doc.jacsAgreement?.agentIDs?.length); // Save for signing fs.writeFileSync('agreement-pending.json', agreementDoc); return doc;\n} createAgreement();","breadcrumbs":"Node.js Examples » Creating Multi-Party Agreements","id":"1361","title":"Creating Multi-Party Agreements"},"1362":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function signAgreement(agreementPath, outputPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read agreement const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); // Sign agreement const signedAgreement = await agent.signAgreement(agreementDoc); // Check status const statusJson = await agent.checkAgreement(signedAgreement); const status = JSON.parse(statusJson); console.log('Agreement signed'); console.log('Status:', status.complete ? 'Complete' : 'Pending'); console.log('Signatures:', status.signatures?.length || 0); // Save fs.writeFileSync(outputPath, signedAgreement); return status;\n} signAgreement('./agreement-pending.json', './agreement-signed.json');","breadcrumbs":"Node.js Examples » Signing Agreements","id":"1362","title":"Signing Agreements"},"1363":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function checkAgreementStatus(agreementPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); const statusJson = await agent.checkAgreement(agreementDoc); const status = JSON.parse(statusJson); console.log('Agreement Status:'); console.log(' Complete:', status.complete); console.log(' Required agents:', status.requiredAgents); console.log(' Signed by:', status.signedBy || []); console.log(' Missing:', status.missing || []); return status;\n} checkAgreementStatus('./agreement.json');","breadcrumbs":"Node.js Examples » Checking Agreement Status","id":"1363","title":"Checking Agreement Status"},"1364":{"body":"","breadcrumbs":"Node.js Examples » Document Store","id":"1364","title":"Document Store"},"1365":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class JacsDocumentStore { constructor(configPath, dataDir = './documents') { this.configPath = configPath; this.dataDir = dataDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.dataDir)) { fs.mkdirSync(this.dataDir, { recursive: true }); } } async create(content) { const signedDoc = await this.agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); const filename = `${doc.jacsId}.json`; const filepath = path.join(this.dataDir, filename); fs.writeFileSync(filepath, signedDoc); return { id: doc.jacsId, version: doc.jacsVersion, path: filepath }; } async get(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return null; } const docString = fs.readFileSync(filepath, 'utf-8'); return JSON.parse(docString); } async verify(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return { valid: false, error: 'Document not found' }; } const docString = fs.readFileSync(filepath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); return { valid: isValid, document: JSON.parse(docString) }; } list() { const files = fs.readdirSync(this.dataDir); return files .filter(f => f.endsWith('.json')) .map(f => f.replace('.json', '')); }\n} // Usage\nasync function main() { const store = new JacsDocumentStore('./jacs.config.json'); await store.initialize(); // Create document const result = await store.create({ type: 'note', title: 'Meeting Notes', content: 'Discussed project timeline...' }); console.log('Created:', result.id); // Verify document const verification = await store.verify(result.id); console.log('Valid:', verification.valid); // List all documents const docs = store.list(); console.log('Documents:', docs);\n} main();","breadcrumbs":"Node.js Examples » Simple File-Based Store","id":"1365","title":"Simple File-Based Store"},"1366":{"body":"","breadcrumbs":"Node.js Examples » Error Handling","id":"1366","title":"Error Handling"},"1367":{"body":"import { JacsAgent } from '@hai.ai/jacs'; class JacsError extends Error { constructor(message, code, details = {}) { super(message); this.name = 'JacsError'; this.code = code; this.details = details; }\n} async function robustDocumentCreate(configPath, content) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const signedDoc = await agent.createDocument(JSON.stringify(content)); return JSON.parse(signedDoc); } catch (error) { throw new JacsError( 'Failed to create document', 'CREATE_ERROR', { originalError: error.message, content } ); }\n} async function robustDocumentVerify(configPath, docString) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const isValid = await agent.verifyDocument(docString); return { valid: isValid }; } catch (error) { throw new JacsError( 'Verification error', 'VERIFY_ERROR', { originalError: error.message } ); }\n} // Usage with error handling\nasync function main() { try { const doc = await robustDocumentCreate('./jacs.config.json', { title: 'Test' }); console.log('Created:', doc.jacsId); } catch (error) { if (error instanceof JacsError) { console.error(`JACS Error [${error.code}]:`, error.message); console.error('Details:', error.details); } else { console.error('Unexpected error:', error); } }\n} main();","breadcrumbs":"Node.js Examples » Robust Error Handling Pattern","id":"1367","title":"Robust Error Handling Pattern"},"1368":{"body":"","breadcrumbs":"Node.js Examples » Testing","id":"1368","title":"Testing"},"1369":{"body":"// tests/jacs.test.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Operations', () => { let agent; let tempDir; let configPath; beforeAll(async () => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); // Initialize agent agent = new JacsAgent(); await agent.load(configPath); }); afterAll(() => { fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', async () => { const content = { title: 'Test Document', value: 42 }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); expect(doc.jacsId).toBeDefined(); expect(doc.jacsVersion).toBeDefined(); expect(doc.jacsSignature).toBeDefined(); expect(doc.title).toBe('Test Document'); }); test('verifies a valid document', async () => { const content = { title: 'Verify Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const isValid = await agent.verifyDocument(signedDoc); expect(isValid).toBe(true); }); test('detects tampered document', async () => { const content = { title: 'Tamper Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); // Tamper with document const doc = JSON.parse(signedDoc); doc.title = 'Modified Title'; const tamperedDoc = JSON.stringify(doc); const isValid = await agent.verifyDocument(tamperedDoc); expect(isValid).toBe(false); });\n});","breadcrumbs":"Node.js Examples » Jest Test Setup","id":"1369","title":"Jest Test Setup"},"137":{"body":"# Extract embedded content from a document\njacs document extract -f ./document.json # Extract from all documents in directory\njacs document extract -d ./documents/","breadcrumbs":"CLI Usage » Extract Embedded Content","id":"137","title":"Extract Embedded Content"},"1370":{"body":"Node.js Installation - Setup guide Node.js API Reference - Complete API documentation MCP Integration - MCP details HTTP Server - HTTP integration","breadcrumbs":"Node.js Examples » See Also","id":"1370","title":"See Also"},"1371":{"body":"This chapter provides practical Python examples using the jacs (jacspy) package.","breadcrumbs":"Python Examples » Python Examples","id":"1371","title":"Python Examples"},"1372":{"body":"# Install dependencies\npip install jacs fastmcp fastapi uvicorn # Initialize JACS\nimport jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Python Examples » Setup","id":"1372","title":"Setup"},"1373":{"body":"","breadcrumbs":"Python Examples » Basic Document Operations","id":"1373","title":"Basic Document Operations"},"1374":{"body":"import jacs\nimport json def create_signed_document(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create document content content = { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ] } # Create and sign the document signed_doc = agent.create_document(json.dumps(content)) # Parse the result doc = json.loads(signed_doc) print(f\"Document ID: {doc['jacsId']}\") print(f\"Version: {doc['jacsVersion']}\") print(f\"Signature: {'Present' if 'jacsSignature' in doc else 'Missing'}\") return doc if __name__ == \"__main__\": create_signed_document()","breadcrumbs":"Python Examples » Creating and Signing Documents","id":"1374","title":"Creating and Signing Documents"},"1375":{"body":"import jacs\nimport json def verify_document(file_path: str) -> bool: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read the document with open(file_path, 'r') as f: doc_string = f.read() # Verify signature is_valid = agent.verify_document(doc_string) if is_valid: doc = json.loads(doc_string) print(\"✓ Document signature is valid\") print(f\" Signed by: {doc.get('jacsSignature', {}).get('agentID')}\") print(f\" Signed at: {doc.get('jacsSignature', {}).get('date')}\") else: print(\"✗ Document signature is INVALID\") return is_valid if __name__ == \"__main__\": verify_document('./invoice.json')","breadcrumbs":"Python Examples » Verifying Documents","id":"1375","title":"Verifying Documents"},"1376":{"body":"import jacs\nimport json def update_document(original_path: str, new_content: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read original document with open(original_path, 'r') as f: original_doc = f.read() # Update with new content (preserves version chain) updated_doc = agent.update_document( original_doc, json.dumps(new_content) ) doc = json.loads(updated_doc) print(f\"Updated Document ID: {doc['jacsId']}\") print(f\"New Version: {doc['jacsVersion']}\") return doc if __name__ == \"__main__\": updated = update_document('./invoice-v1.json', { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"status\": \"paid\" # New field })","breadcrumbs":"Python Examples » Updating Documents","id":"1376","title":"Updating Documents"},"1377":{"body":"","breadcrumbs":"Python Examples » HTTP Server with FastAPI","id":"1377","title":"HTTP Server with FastAPI"},"1378":{"body":"from fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI(title=\"JACS API\") # Initialize JACS agent at startup\nagent = None @app.on_event(\"startup\")\nasync def startup(): global agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Health check (no JACS)\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"ok\"} # JACS-protected endpoint\n@app.post(\"/api/echo\")\nasync def echo(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Process and respond result = { \"echo\": payload, \"serverTime\": str(datetime.now()) } # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Create document endpoint\n@app.post(\"/api/documents\")\nasync def create_document(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Create signed document signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc['jacsId'], \"version\": doc['jacsVersion'] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Calculate endpoint\n@app.post(\"/api/calculate\")\nasync def calculate(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") operation = payload.get('operation') a = payload.get('a', 0) b = payload.get('b', 0) if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else None else: raise HTTPException(status_code=400, detail=\"Unknown operation\") response = {\"operation\": operation, \"a\": a, \"b\": b, \"result\": result} signed_response = jacs.sign_response(response) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » Complete FastAPI Server","id":"1378","title":"Complete FastAPI Server"},"1379":{"body":"import jacs\nimport requests\nimport json def call_jacs_api(url: str, payload: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) if response.status_code != 200: raise Exception(f\"HTTP {response.status_code}\") # Verify and extract response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') if __name__ == \"__main__\": # Call echo endpoint echo_result = call_jacs_api( 'http://localhost:8000/api/echo', {\"message\": \"Hello, server!\"} ) print(\"Echo:\", echo_result) # Call calculate endpoint calc_result = call_jacs_api( 'http://localhost:8000/api/calculate', {\"operation\": \"multiply\", \"a\": 7, \"b\": 6} ) print(\"Calculate:\", calc_result)","breadcrumbs":"Python Examples » HTTP Client","id":"1379","title":"HTTP Client"},"138":{"body":"# Create an agreement requiring signatures from specified agents\njacs document create-agreement -f ./document.json -i agent1-uuid,agent2-uuid # Check agreement status\njacs document check-agreement -f ./document.json # Sign an agreement\njacs document sign-agreement -f ./document.json Create Agreement Options: Option Short Required Description -f --filename Yes Path to document -i --agentids Yes Comma-separated list of agent UUIDs -o --output No Output filename --no-save -n No Print to stdout","breadcrumbs":"CLI Usage » Agreement Commands","id":"138","title":"Agreement Commands"},"1380":{"body":"","breadcrumbs":"Python Examples » MCP Integration","id":"1380","title":"MCP Integration"},"1381":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create FastMCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"JACS Demo Server\")) @mcp.tool()\ndef echo(message: str) -> str: \"\"\"Echo the input message\"\"\" return f\"Echo: {message}\" @mcp.tool()\ndef calculate(operation: str, a: float, b: float) -> str: \"\"\"Perform basic arithmetic\"\"\" if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else \"undefined\" else: return f\"Unknown operation: {operation}\" return f\"{a} {operation} {b} = {result}\" @mcp.resource(\"info://server\")\ndef server_info() -> str: \"\"\"Get server information\"\"\" return json.dumps({ \"name\": \"JACS Demo Server\", \"version\": \"1.0.0\", \"tools\": [\"echo\", \"calculate\"] }) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS MCP Server...\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » FastMCP Server with JACS","id":"1381","title":"FastMCP Server with JACS"},"1382":{"body":"import asyncio\nimport jacs\nfrom jacs.mcp import JACSMCPClient async def main(): # Initialize JACS agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Create authenticated client client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: # Call echo tool echo_result = await client.call_tool(\"echo\", { \"message\": \"Hello from JACS client!\" }) print(f\"Echo: {echo_result}\") # Call calculate tool calc_result = await client.call_tool(\"calculate\", { \"operation\": \"multiply\", \"a\": 6, \"b\": 7 }) print(f\"Calculate: {calc_result}\") # Read resource info = await client.read_resource(\"info://server\") print(f\"Server info: {info}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"Python Examples » MCP Client with JACS","id":"1382","title":"MCP Client with JACS"},"1383":{"body":"","breadcrumbs":"Python Examples » Agreements","id":"1383","title":"Agreements"},"1384":{"body":"import jacs\nimport json def create_agreement(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create contract document contract = { \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"Terms and conditions here...\", \"value\": 50000, \"effectiveDate\": \"2024-02-01\" } signed_contract = agent.create_document(json.dumps(contract)) # Define required signers (replace with actual UUIDs) agent_ids = [ \"agent1-uuid-here\", \"agent2-uuid-here\" ] # Create agreement agreement_doc = agent.create_agreement( signed_contract, agent_ids, question=\"Do you agree to the terms of this service agreement?\", context=\"This is a legally binding agreement\" ) doc = json.loads(agreement_doc) print(\"Agreement created\") print(f\"Document ID: {doc['jacsId']}\") print(f\"Required signatures: {len(doc.get('jacsAgreement', {}).get('agentIDs', []))}\") # Save for signing with open('agreement-pending.json', 'w') as f: f.write(agreement_doc) return doc if __name__ == \"__main__\": create_agreement()","breadcrumbs":"Python Examples » Creating Multi-Party Agreements","id":"1384","title":"Creating Multi-Party Agreements"},"1385":{"body":"import jacs\nimport json def sign_agreement(agreement_path: str, output_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read agreement with open(agreement_path, 'r') as f: agreement_doc = f.read() # Sign agreement signed_agreement = agent.sign_agreement(agreement_doc) # Check status status_json = agent.check_agreement(signed_agreement) status = json.loads(status_json) print(\"Agreement signed\") print(f\"Status: {'Complete' if status.get('complete') else 'Pending'}\") print(f\"Signatures: {len(status.get('signatures', []))}\") # Save with open(output_path, 'w') as f: f.write(signed_agreement) return status if __name__ == \"__main__\": sign_agreement('./agreement-pending.json', './agreement-signed.json')","breadcrumbs":"Python Examples » Signing Agreements","id":"1385","title":"Signing Agreements"},"1386":{"body":"import jacs\nimport json def check_agreement_status(agreement_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') with open(agreement_path, 'r') as f: agreement_doc = f.read() status_json = agent.check_agreement(agreement_doc) status = json.loads(status_json) print(\"Agreement Status:\") print(f\" Complete: {status.get('complete')}\") print(f\" Required agents: {status.get('requiredAgents', [])}\") print(f\" Signed by: {status.get('signedBy', [])}\") print(f\" Missing: {status.get('missing', [])}\") return status if __name__ == \"__main__\": check_agreement_status('./agreement.json')","breadcrumbs":"Python Examples » Checking Agreement Status","id":"1386","title":"Checking Agreement Status"},"1387":{"body":"","breadcrumbs":"Python Examples » Document Store","id":"1387","title":"Document Store"},"1388":{"body":"import jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Optional, Dict, List class JacsDocumentStore: def __init__(self, config_path: str, data_dir: str = './documents'): self.config_path = config_path self.data_dir = Path(data_dir) self.agent = None def initialize(self): self.agent = jacs.JacsAgent() self.agent.load(self.config_path) self.data_dir.mkdir(parents=True, exist_ok=True) def create(self, content: dict) -> dict: signed_doc = self.agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = self.data_dir / filename with open(filepath, 'w') as f: f.write(signed_doc) return { 'id': doc['jacsId'], 'version': doc['jacsVersion'], 'path': str(filepath) } def get(self, document_id: str) -> Optional[dict]: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return None with open(filepath, 'r') as f: return json.load(f) def verify(self, document_id: str) -> dict: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return {'valid': False, 'error': 'Document not found'} with open(filepath, 'r') as f: doc_string = f.read() is_valid = self.agent.verify_document(doc_string) return {'valid': is_valid, 'document': json.loads(doc_string)} def list(self) -> List[str]: return [ f.stem for f in self.data_dir.glob('*.json') ] if __name__ == \"__main__\": store = JacsDocumentStore('./jacs.config.json') store.initialize() # Create document result = store.create({ 'type': 'note', 'title': 'Meeting Notes', 'content': 'Discussed project timeline...' }) print(f\"Created: {result['id']}\") # Verify document verification = store.verify(result['id']) print(f\"Valid: {verification['valid']}\") # List all documents docs = store.list() print(f\"Documents: {docs}\")","breadcrumbs":"Python Examples » Simple File-Based Store","id":"1388","title":"Simple File-Based Store"},"1389":{"body":"","breadcrumbs":"Python Examples » Batch Processing","id":"1389","title":"Batch Processing"},"139":{"body":"The CLI respects the following environment variables: # Use a specific configuration file\nJACS_CONFIG_PATH=./custom-config.json jacs agent verify # Override settings\nJACS_DATA_DIRECTORY=./data jacs document create -f ./doc.json\nJACS_KEY_DIRECTORY=./keys jacs agent create --create-keys true","breadcrumbs":"CLI Usage » Environment Variables","id":"139","title":"Environment Variables"},"1390":{"body":"import jacs\nimport json\nfrom pathlib import Path\nfrom concurrent.futures import ThreadPoolExecutor class BatchDocumentProcessor: def __init__(self, config_path: str): self.config_path = config_path def create_documents(self, documents: list, output_dir: str) -> list: \"\"\"Create multiple signed documents\"\"\" output_path = Path(output_dir) output_path.mkdir(parents=True, exist_ok=True) results = [] # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) for i, content in enumerate(documents): try: signed_doc = agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = output_path / filename with open(filepath, 'w') as f: f.write(signed_doc) results.append({ 'success': True, 'index': i, 'id': doc['jacsId'], 'path': str(filepath) }) except Exception as e: results.append({ 'success': False, 'index': i, 'error': str(e) }) return results def verify_documents(self, input_dir: str) -> list: \"\"\"Verify all documents in a directory\"\"\" input_path = Path(input_dir) # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) results = [] for filepath in input_path.glob('*.json'): try: with open(filepath, 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string) doc = json.loads(doc_string) results.append({ 'file': filepath.name, 'valid': is_valid, 'id': doc.get('jacsId') }) except Exception as e: results.append({ 'file': filepath.name, 'valid': False, 'error': str(e) }) return results if __name__ == \"__main__\": processor = BatchDocumentProcessor('./jacs.config.json') # Create batch of documents documents = [ {'type': 'invoice', 'number': f'INV-{i:03d}', 'amount': i * 100} for i in range(1, 11) ] results = processor.create_documents(documents, './batch-output') success_count = sum(1 for r in results if r['success']) print(f\"Created {success_count}/{len(documents)} documents\") # Verify all documents verification_results = processor.verify_documents('./batch-output') valid_count = sum(1 for r in verification_results if r['valid']) print(f\"Valid: {valid_count}/{len(verification_results)} documents\")","breadcrumbs":"Python Examples » Batch Document Creator","id":"1390","title":"Batch Document Creator"},"1391":{"body":"","breadcrumbs":"Python Examples » Testing","id":"1391","title":"Testing"},"1392":{"body":"# tests/test_jacs.py\nimport pytest\nimport jacs\nimport json\nimport tempfile\nimport shutil\nfrom pathlib import Path @pytest.fixture\ndef jacs_agent(): \"\"\"Create a test JACS agent with temporary directories\"\"\" temp_dir = tempfile.mkdtemp() data_dir = Path(temp_dir) / 'data' key_dir = Path(temp_dir) / 'keys' data_dir.mkdir() key_dir.mkdir() config = { 'jacs_data_directory': str(data_dir), 'jacs_key_directory': str(key_dir), 'jacs_agent_key_algorithm': 'ring-Ed25519', 'jacs_default_storage': 'fs' } config_path = Path(temp_dir) / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f) agent = jacs.JacsAgent() agent.load(str(config_path)) yield agent shutil.rmtree(temp_dir) class TestDocumentOperations: def test_create_document(self, jacs_agent): content = {'title': 'Test Document', 'value': 42} signed_doc = jacs_agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) assert 'jacsId' in doc assert 'jacsVersion' in doc assert 'jacsSignature' in doc assert doc['title'] == 'Test Document' def test_verify_valid_document(self, jacs_agent): content = {'title': 'Verify Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) is_valid = jacs_agent.verify_document(signed_doc) assert is_valid is True def test_detect_tampered_document(self, jacs_agent): content = {'title': 'Tamper Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) # Tamper with document doc = json.loads(signed_doc) doc['title'] = 'Modified Title' tampered_doc = json.dumps(doc) is_valid = jacs_agent.verify_document(tampered_doc) assert is_valid is False def test_different_content_different_signatures(self, jacs_agent): doc1 = jacs_agent.create_document(json.dumps({'a': 1})) doc2 = jacs_agent.create_document(json.dumps({'a': 2})) parsed1 = json.loads(doc1) parsed2 = json.loads(doc2) sig1 = parsed1['jacsSignature']['signature'] sig2 = parsed2['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Python Examples » Pytest Setup","id":"1392","title":"Pytest Setup"},"1393":{"body":"","breadcrumbs":"Python Examples » Error Handling","id":"1393","title":"Error Handling"},"1394":{"body":"import jacs\nimport json\nfrom typing import Optional class JacsError(Exception): def __init__(self, message: str, code: str, details: dict = None): super().__init__(message) self.code = code self.details = details or {} def robust_create_document(config_path: str, content: dict) -> dict: \"\"\"Create a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except FileNotFoundError: raise JacsError( \"Configuration file not found\", \"CONFIG_NOT_FOUND\", {\"path\": config_path} ) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) except Exception as e: raise JacsError( \"Failed to create document\", \"CREATE_ERROR\", {\"original_error\": str(e), \"content\": content} ) def robust_verify_document(config_path: str, doc_string: str) -> dict: \"\"\"Verify a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: is_valid = agent.verify_document(doc_string) return {\"valid\": is_valid} except Exception as e: raise JacsError( \"Verification error\", \"VERIFY_ERROR\", {\"original_error\": str(e)} ) if __name__ == \"__main__\": try: doc = robust_create_document('./jacs.config.json', {'title': 'Test'}) print(f\"Created: {doc['jacsId']}\") except JacsError as e: print(f\"JACS Error [{e.code}]: {e}\") print(f\"Details: {e.details}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"Python Examples » Robust Error Handling Pattern","id":"1394","title":"Robust Error Handling Pattern"},"1395":{"body":"Python Installation - Setup guide Python API Reference - Complete API documentation Python MCP Integration - MCP details","breadcrumbs":"Python Examples » See Also","id":"1395","title":"See Also"},"1396":{"body":"This chapter provides complete, production-ready integration examples combining multiple JACS features.","breadcrumbs":"Integration Examples » Integration Examples","id":"1396","title":"Integration Examples"},"1397":{"body":"A complete example of a contract signing workflow with multiple agents.","breadcrumbs":"Integration Examples » Multi-Agent Contract Signing System","id":"1397","title":"Multi-Agent Contract Signing System"},"1398":{"body":"┌──────────────┐ ┌──────────────┐ ┌──────────────┐\n│ Seller │ │ Contract │ │ Buyer │\n│ Agent │────>│ Document │<────│ Agent │\n└──────────────┘ └──────────────┘ └──────────────┘ │ │ │ └────────────────────┼────────────────────┘ ↓ ┌──────────────┐ │ Signed │ │ Agreement │ └──────────────┘","breadcrumbs":"Integration Examples » Overview","id":"1398","title":"Overview"},"1399":{"body":"// contract-system.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; class ContractSigningSystem { constructor() { this.agents = new Map(); } async registerAgent(name, configPath) { const agent = new JacsAgent(); await agent.load(configPath); this.agents.set(name, { agent, configPath }); return agent; } async createContract(content, sellerName) { const seller = this.agents.get(sellerName); if (!seller) throw new Error(`Agent ${sellerName} not found`); // Create and sign the contract const signedContract = await seller.agent.createDocument( JSON.stringify(content) ); return JSON.parse(signedContract); } async createAgreement(contract, agentNames, question) { const firstAgent = this.agents.get(agentNames[0]); if (!firstAgent) throw new Error(`Agent ${agentNames[0]} not found`); // Get agent IDs const agentIds = []; for (const name of agentNames) { const agent = this.agents.get(name); if (!agent) throw new Error(`Agent ${name} not found`); // Get agent ID from config const config = JSON.parse(fs.readFileSync(agent.configPath, 'utf-8')); agentIds.push(config.jacs_agent_id_and_version.split(':')[0]); } const agreementDoc = await firstAgent.agent.createAgreement( JSON.stringify(contract), agentIds, question, 'Legal contract requiring signatures from all parties' ); return JSON.parse(agreementDoc); } async signAgreement(agreement, agentName) { const agent = this.agents.get(agentName); if (!agent) throw new Error(`Agent ${agentName} not found`); const signedDoc = await agent.agent.signAgreement( JSON.stringify(agreement) ); return JSON.parse(signedDoc); } async checkAgreementStatus(agreement, agentName) { const agent = this.agents.get(agentName); if (!agent) throw new Error(`Agent ${agentName} not found`); const statusJson = await agent.agent.checkAgreement( JSON.stringify(agreement) ); return JSON.parse(statusJson); }\n} // Usage\nasync function runContractWorkflow() { const system = new ContractSigningSystem(); // Register agents await system.registerAgent('seller', './seller.config.json'); await system.registerAgent('buyer', './buyer.config.json'); // Create contract const contract = await system.createContract({ type: 'purchase_agreement', parties: { seller: 'Widget Corp', buyer: 'Acme Inc' }, items: [ { name: 'Premium Widgets', quantity: 1000, unitPrice: 10.00 } ], totalValue: 10000, terms: 'Payment due within 30 days of delivery', effectiveDate: new Date().toISOString() }, 'seller'); console.log('Contract created:', contract.jacsId); // Create agreement const agreement = await system.createAgreement( contract, ['seller', 'buyer'], 'Do you agree to the terms of this purchase agreement?' ); console.log('Agreement created, awaiting signatures'); // Seller signs let signedAgreement = await system.signAgreement(agreement, 'seller'); console.log('Seller signed'); // Check status let status = await system.checkAgreementStatus(signedAgreement, 'seller'); console.log('Status after seller:', status.complete ? 'Complete' : 'Pending'); // Buyer signs signedAgreement = await system.signAgreement(signedAgreement, 'buyer'); console.log('Buyer signed'); // Final status status = await system.checkAgreementStatus(signedAgreement, 'buyer'); console.log('Final status:', status.complete ? 'Complete' : 'Pending'); // Save completed agreement fs.writeFileSync( './completed-agreement.json', JSON.stringify(signedAgreement, null, 2) ); return signedAgreement;\n} runContractWorkflow().catch(console.error);","breadcrumbs":"Integration Examples » Implementation","id":"1399","title":"Implementation"},"14":{"body":"With built-in observability, multiple storage backends, and comprehensive error handling, JACS is ready for production AI systems.","breadcrumbs":"Introduction » 🚀 Production Ready","id":"14","title":"🚀 Production Ready"},"140":{"body":"","breadcrumbs":"CLI Usage » Common Workflows","id":"140","title":"Common Workflows"},"1400":{"body":"A complete API gateway that authenticates requests and provides MCP tools.","breadcrumbs":"Integration Examples » Secure API Gateway with MCP Tools","id":"1400","title":"Secure API Gateway with MCP Tools"},"1401":{"body":"// api-gateway.js\nimport express from 'express';\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { JacsAgent } from '@hai.ai/jacs';\nimport { z } from 'zod'; // Initialize Express\nconst app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Create MCP server with tools\nconst mcpServer = new McpServer({ name: \"secure-api-gateway\", version: \"1.0.0\"\n}); // Document operations tool\nmcpServer.tool(\"create_document\", { content: z.object({}).passthrough().describe(\"Document content\"), type: z.string().optional().describe(\"Document type\")\n}, async ({ content, type }) => { const doc = await agent.createDocument(JSON.stringify({ ...content, documentType: type || 'generic' })); const parsed = JSON.parse(doc); return { content: [{ type: \"text\", text: JSON.stringify({ success: true, documentId: parsed.jacsId, version: parsed.jacsVersion }) }] };\n}); mcpServer.tool(\"verify_document\", { document: z.string().describe(\"JSON document string to verify\")\n}, async ({ document }) => { try { const isValid = await agent.verifyDocument(document); return { content: [{ type: \"text\", text: JSON.stringify({ valid: isValid }) }] }; } catch (error) { return { content: [{ type: \"text\", text: JSON.stringify({ valid: false, error: error.message }) }] }; }\n}); // Health check (unauthenticated)\napp.get('/health', (req, res) => { res.json({ status: 'healthy', timestamp: new Date().toISOString() });\n}); // REST API routes (JACS authenticated)\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Document REST endpoint\napp.post('/api/documents', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); app.post('/api/documents/verify', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } try { const isValid = await agent.verifyDocument( JSON.stringify(req.jacsPayload.document) ); res.send({ valid: isValid }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // MCP SSE endpoint (JACS authenticated)\nconst activeSessions = new Map(); app.get('/mcp/sse', async (req, res) => { const sessionId = Date.now().toString(); // Create SSE transport with JACS const baseTransport = new SSEServerTransport('/mcp/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server' ); activeSessions.set(sessionId, { transport: secureTransport, res }); // Connect MCP server await mcpServer.connect(secureTransport); res.on('close', () => { activeSessions.delete(sessionId); });\n}); app.post('/mcp/messages', express.text({ type: '*/*' }), async (req, res) => { // Find the active session and handle the message for (const [id, session] of activeSessions) { try { await session.transport.handlePostMessage(req, res, req.body); return; } catch (error) { // Try next session } } res.status(404).send({ error: 'No active session' });\n}); // Start server\napp.listen(PORT, () => { console.log(`Secure API Gateway running on port ${PORT}`); console.log(` REST API: http://localhost:${PORT}/api`); console.log(` MCP SSE: http://localhost:${PORT}/mcp/sse`);\n});","breadcrumbs":"Integration Examples » Node.js Implementation","id":"1401","title":"Node.js Implementation"},"1402":{"body":"# api_gateway.py\nfrom fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn\nimport json app = FastAPI(title=\"Secure API Gateway\") # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create MCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"secure-api-gateway\")) @mcp.tool()\ndef create_document(content: dict, document_type: str = \"generic\") -> str: \"\"\"Create a signed JACS document\"\"\" doc_content = {**content, \"documentType\": document_type} signed_doc = agent.create_document(json.dumps(doc_content)) parsed = json.loads(signed_doc) return json.dumps({ \"success\": True, \"documentId\": parsed[\"jacsId\"], \"version\": parsed[\"jacsVersion\"] }) @mcp.tool()\ndef verify_document(document: str) -> str: \"\"\"Verify a JACS document signature\"\"\" try: is_valid = agent.verify_document(document) return json.dumps({\"valid\": is_valid}) except Exception as e: return json.dumps({\"valid\": False, \"error\": str(e)}) # Health check\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"healthy\"} # REST API endpoints\n@app.post(\"/api/documents\")\nasync def create_doc(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc[\"jacsId\"], \"version\": doc[\"jacsVersion\"] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) @app.post(\"/api/documents/verify\")\nasync def verify_doc(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") document = payload.get(\"document\") is_valid = agent.verify_document(json.dumps(document)) result = {\"valid\": is_valid} signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Mount MCP SSE endpoint\napp.mount(\"/mcp\", mcp.sse_app()) if __name__ == \"__main__\": print(\"Secure API Gateway running\") print(\" REST API: http://localhost:8000/api\") print(\" MCP SSE: http://localhost:8000/mcp/sse\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Integration Examples » Python Implementation","id":"1402","title":"Python Implementation"},"1403":{"body":"Track and verify document history with cryptographic proofs. // audit-trail.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class AuditTrailSystem { constructor(configPath, auditDir = './audit') { this.configPath = configPath; this.auditDir = auditDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.auditDir)) { fs.mkdirSync(this.auditDir, { recursive: true }); } } async createDocument(content, metadata = {}) { const auditEntry = { action: 'create', timestamp: new Date().toISOString(), content, metadata }; const signedDoc = await this.agent.createDocument( JSON.stringify({ ...content, _audit: auditEntry }) ); const doc = JSON.parse(signedDoc); // Save to audit log await this.logAuditEntry(doc.jacsId, 'create', doc); return doc; } async updateDocument(originalDoc, newContent, metadata = {}) { const auditEntry = { action: 'update', timestamp: new Date().toISOString(), previousVersion: originalDoc.jacsVersion, changes: this.computeChanges(originalDoc, newContent), metadata }; const updatedDoc = await this.agent.updateDocument( JSON.stringify(originalDoc), JSON.stringify({ ...newContent, _audit: auditEntry }) ); const doc = JSON.parse(updatedDoc); // Save to audit log await this.logAuditEntry(doc.jacsId, 'update', doc); return doc; } computeChanges(original, updated) { const changes = []; for (const [key, value] of Object.entries(updated)) { if (key.startsWith('_')) continue; if (!(key in original)) { changes.push({ field: key, type: 'added', newValue: value }); } else if (JSON.stringify(original[key]) !== JSON.stringify(value)) { changes.push({ field: key, type: 'modified', oldValue: original[key], newValue: value }); } } for (const key of Object.keys(original)) { if (key.startsWith('_') || key.startsWith('jacs')) continue; if (!(key in updated)) { changes.push({ field: key, type: 'removed', oldValue: original[key] }); } } return changes; } async logAuditEntry(documentId, action, document) { const logFile = path.join(this.auditDir, `${documentId}.audit.jsonl`); const entry = { timestamp: new Date().toISOString(), action, documentId, version: document.jacsVersion, signature: document.jacsSignature, hash: document.jacsSha256 }; fs.appendFileSync(logFile, JSON.stringify(entry) + '\\n'); } async getAuditTrail(documentId) { const logFile = path.join(this.auditDir, `${documentId}.audit.jsonl`); if (!fs.existsSync(logFile)) { return []; } const lines = fs.readFileSync(logFile, 'utf-8').trim().split('\\n'); return lines.map(line => JSON.parse(line)); } async verifyAuditTrail(documentId) { const trail = await this.getAuditTrail(documentId); const results = []; for (const entry of trail) { // Load and verify each version const docPath = path.join( this.auditDir, 'documents', documentId, `${entry.version}.json` ); if (fs.existsSync(docPath)) { const docString = fs.readFileSync(docPath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); results.push({ version: entry.version, timestamp: entry.timestamp, action: entry.action, valid: isValid }); } else { results.push({ version: entry.version, timestamp: entry.timestamp, action: entry.action, valid: null, error: 'Document file not found' }); } } return results; }\n} // Usage\nasync function runAuditExample() { const audit = new AuditTrailSystem('./jacs.config.json'); await audit.initialize(); // Create a document const doc = await audit.createDocument({ type: 'financial_report', period: 'Q1 2024', revenue: 1000000, expenses: 750000 }, { author: 'Finance Team' }); console.log('Created document:', doc.jacsId); // Update the document const updated = await audit.updateDocument(doc, { type: 'financial_report', period: 'Q1 2024', revenue: 1000000, expenses: 750000, profit: 250000, // Added field status: 'approved' }, { author: 'CFO', reason: 'Added profit calculation' }); console.log('Updated to version:', updated.jacsVersion); // Get audit trail const trail = await audit.getAuditTrail(doc.jacsId); console.log('Audit trail:'); for (const entry of trail) { console.log(` ${entry.timestamp} - ${entry.action} (v${entry.version})`); }\n} runAuditExample().catch(console.error);","breadcrumbs":"Integration Examples » Document Audit Trail System","id":"1403","title":"Document Audit Trail System"},"1404":{"body":"A complete multi-tenant document service with isolated agents per tenant. # multi_tenant.py\nimport jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Dict, Optional class TenantManager: def __init__(self, base_dir: str = './tenants'): self.base_dir = Path(base_dir) self.agents: Dict[str, jacs.JacsAgent] = {} def initialize_tenant(self, tenant_id: str) -> dict: \"\"\"Create a new tenant with its own JACS agent\"\"\" tenant_dir = self.base_dir / tenant_id data_dir = tenant_dir / 'data' key_dir = tenant_dir / 'keys' # Create directories data_dir.mkdir(parents=True, exist_ok=True) key_dir.mkdir(parents=True, exist_ok=True) # Create tenant config config = { \"jacs_data_directory\": str(data_dir), \"jacs_key_directory\": str(key_dir), \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = tenant_dir / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f, indent=2) # Initialize agent agent = jacs.JacsAgent() agent.load(str(config_path)) self.agents[tenant_id] = agent return { \"tenant_id\": tenant_id, \"config_path\": str(config_path), \"initialized\": True } def get_agent(self, tenant_id: str) -> Optional[jacs.JacsAgent]: \"\"\"Get the JACS agent for a tenant\"\"\" if tenant_id not in self.agents: # Try to load existing tenant config_path = self.base_dir / tenant_id / 'jacs.config.json' if config_path.exists(): agent = jacs.JacsAgent() agent.load(str(config_path)) self.agents[tenant_id] = agent return self.agents.get(tenant_id) def create_document(self, tenant_id: str, content: dict) -> dict: \"\"\"Create a document for a tenant\"\"\" agent = self.get_agent(tenant_id) if not agent: raise ValueError(f\"Tenant {tenant_id} not found\") signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) def verify_document(self, tenant_id: str, doc_string: str) -> bool: \"\"\"Verify a document for a tenant\"\"\" agent = self.get_agent(tenant_id) if not agent: raise ValueError(f\"Tenant {tenant_id} not found\") return agent.verify_document(doc_string) def list_tenants(self) -> list: \"\"\"List all tenants\"\"\" if not self.base_dir.exists(): return [] return [ d.name for d in self.base_dir.iterdir() if d.is_dir() and (d / 'jacs.config.json').exists() ] class MultiTenantDocumentService: def __init__(self): self.tenant_manager = TenantManager() def create_tenant(self, tenant_id: str) -> dict: return self.tenant_manager.initialize_tenant(tenant_id) def create_document(self, tenant_id: str, content: dict) -> dict: doc = self.tenant_manager.create_document(tenant_id, content) # Save document tenant_dir = self.tenant_manager.base_dir / tenant_id / 'documents' tenant_dir.mkdir(parents=True, exist_ok=True) doc_path = tenant_dir / f\"{doc['jacsId']}.json\" with open(doc_path, 'w') as f: json.dump(doc, f, indent=2) return { \"tenant_id\": tenant_id, \"document_id\": doc['jacsId'], \"version\": doc['jacsVersion'], \"path\": str(doc_path) } def get_document(self, tenant_id: str, document_id: str) -> Optional[dict]: doc_path = ( self.tenant_manager.base_dir / tenant_id / 'documents' / f\"{document_id}.json\" ) if not doc_path.exists(): return None with open(doc_path, 'r') as f: return json.load(f) def verify_document(self, tenant_id: str, document_id: str) -> dict: doc = self.get_document(tenant_id, document_id) if not doc: return {\"valid\": False, \"error\": \"Document not found\"} is_valid = self.tenant_manager.verify_document( tenant_id, json.dumps(doc) ) return { \"tenant_id\": tenant_id, \"document_id\": document_id, \"valid\": is_valid } # Usage\nif __name__ == \"__main__\": service = MultiTenantDocumentService() # Create tenants tenant1 = service.create_tenant(\"acme-corp\") tenant2 = service.create_tenant(\"globex-inc\") print(f\"Created tenants: {tenant1['tenant_id']}, {tenant2['tenant_id']}\") # Create documents for each tenant doc1 = service.create_document(\"acme-corp\", { \"type\": \"invoice\", \"amount\": 5000, \"customer\": \"John Doe\" }) print(f\"Acme Corp document: {doc1['document_id']}\") doc2 = service.create_document(\"globex-inc\", { \"type\": \"contract\", \"value\": 100000, \"parties\": [\"Globex\", \"Initech\"] }) print(f\"Globex Inc document: {doc2['document_id']}\") # Verify documents verify1 = service.verify_document(\"acme-corp\", doc1['document_id']) verify2 = service.verify_document(\"globex-inc\", doc2['document_id']) print(f\"Acme Corp verification: {verify1['valid']}\") print(f\"Globex Inc verification: {verify2['valid']}\") # Cross-tenant verification should fail cross = service.verify_document(\"acme-corp\", doc2['document_id']) print(f\"Cross-tenant verification: {cross}\")","breadcrumbs":"Integration Examples » Multi-Tenant Document Service","id":"1404","title":"Multi-Tenant Document Service"},"1405":{"body":"Notify external systems when documents are signed. // webhook-notifier.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Webhook configuration\nconst webhooks = new Map(); // Register a webhook\napp.post('/webhooks', express.json(), (req, res) => { const { url, events, secret } = req.body; const webhookId = crypto.randomUUID(); webhooks.set(webhookId, { url, events, secret, active: true }); res.json({ webhookId, message: 'Webhook registered' });\n}); // JACS-protected document endpoints\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); app.post('/api/documents', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } // Create document const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); // Notify webhooks await notifyWebhooks('document.created', { documentId: doc.jacsId, version: doc.jacsVersion, timestamp: new Date().toISOString() }); res.send({ success: true, documentId: doc.jacsId });\n}); async function notifyWebhooks(event, payload) { for (const [id, webhook] of webhooks) { if (!webhook.active) continue; if (!webhook.events.includes(event) && !webhook.events.includes('*')) continue; try { // Sign the webhook payload with JACS const signedPayload = await agent.signRequest({ event, payload, timestamp: new Date().toISOString(), webhookId: id }); // Send webhook const response = await fetch(webhook.url, { method: 'POST', headers: { 'Content-Type': 'text/plain', 'X-JACS-Signature': 'v1', 'X-Webhook-Secret': webhook.secret }, body: signedPayload }); if (!response.ok) { console.error(`Webhook ${id} failed: ${response.status}`); } } catch (error) { console.error(`Webhook ${id} error:`, error.message); } }\n} app.listen(PORT, () => { console.log(`Webhook notification server running on port ${PORT}`);\n});","breadcrumbs":"Integration Examples » Webhook Notification System","id":"1405","title":"Webhook Notification System"},"1406":{"body":"CLI Examples - Command-line examples Node.js Examples - Node.js code examples Python Examples - Python code examples MCP Integration - MCP details Web Servers - HTTP integration","breadcrumbs":"Integration Examples » See Also","id":"1406","title":"See Also"},"1407":{"body":"This page provides a comprehensive reference for all JACS command-line interface commands.","breadcrumbs":"CLI Command Reference » CLI Command Reference","id":"1407","title":"CLI Command Reference"},"1408":{"body":"","breadcrumbs":"CLI Command Reference » Global Commands","id":"1408","title":"Global Commands"},"1409":{"body":"Prints version and build information for the JACS installation. jacs version","breadcrumbs":"CLI Command Reference » jacs version","id":"1409","title":"jacs version"},"141":{"body":"# 1. Initialize (if not done)\njacs init # 2. Create document\njacs document create -f ./my-document.json # 3. Verify the signed document\njacs document verify -f ./jacs_data/[document-id].json","breadcrumbs":"CLI Usage » Create and Sign a Document","id":"141","title":"Create and Sign a Document"},"1410":{"body":"Initialize JACS by creating both configuration and agent (with cryptographic keys). This is typically the first command run when setting up JACS. jacs init","breadcrumbs":"CLI Command Reference » jacs init","id":"1410","title":"jacs init"},"1411":{"body":"Print help information for JACS commands. jacs help [COMMAND]","breadcrumbs":"CLI Command Reference » jacs help","id":"1411","title":"jacs help"},"1412":{"body":"","breadcrumbs":"CLI Command Reference » Configuration Commands","id":"1412","title":"Configuration Commands"},"1413":{"body":"Work with JACS configuration settings. jacs config [SUBCOMMAND] Note: Specific subcommands for config are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs config","id":"1413","title":"jacs config"},"1414":{"body":"","breadcrumbs":"CLI Command Reference » Agent Commands","id":"1414","title":"Agent Commands"},"1415":{"body":"Work with JACS agents - the cryptographic identities that sign and verify documents. jacs agent [SUBCOMMAND] Note: Specific subcommands for agent management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs agent","id":"1415","title":"jacs agent"},"1416":{"body":"","breadcrumbs":"CLI Command Reference » Task Commands","id":"1416","title":"Task Commands"},"1417":{"body":"Work with JACS agent tasks - structured workflows between agents. jacs task [SUBCOMMAND] Note: Specific subcommands for task management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs task","id":"1417","title":"jacs task"},"1418":{"body":"The jacs document command provides comprehensive document management capabilities.","breadcrumbs":"CLI Command Reference » Document Commands","id":"1418","title":"Document Commands"},"1419":{"body":"Create a new JACS document, either by embedding or parsing a document with optional file attachments. Usage: jacs document create [OPTIONS] Options: -a  - Path to the agent file. If not specified, uses config jacs_agent_id_and_version -f  - Path to input file. Must be JSON format -o  - Output filename for the created document -d  - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -n, --no-save - Instead of saving files, print to stdout -s, --schema  - Path to JSON schema file to use for validation --attach  - Path to file or directory for file attachments -e, --embed  - Embed documents or keep them external [possible values: true, false] -h, --help - Print help information Examples: # Create document from JSON file\njacs document create -f my-document.json # Create document with embedded attachment\njacs document create -f document.json --attach ./image.jpg --embed true # Create document with referenced attachment\njacs document create -f document.json --attach ./data.csv --embed false # Create from directory of JSON files\njacs document create -d ./documents/ # Create with custom schema validation\njacs document create -f document.json -s custom-schema.json # Print to stdout instead of saving\njacs document create -f document.json --no-save","breadcrumbs":"CLI Command Reference » jacs document create","id":"1419","title":"jacs document create"},"142":{"body":"# 1. Create agreement on a document\njacs document create-agreement -f ./document.json -i agent1-id,agent2-id # 2. First agent signs\njacs document sign-agreement -f ./document.json # 3. Second agent signs (using their config)\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json # 4. Check agreement is complete\njacs document check-agreement -f ./document.json","breadcrumbs":"CLI Usage » Multi-Agent Agreement","id":"142","title":"Multi-Agent Agreement"},"1420":{"body":"Create a new version of an existing document. Requires both the original JACS file and the modified JACS metadata. Usage: jacs document update [OPTIONS] Options: -a  - Path to the agent file -f  - Path to original document file -n  - Path to new/modified document file -o  - Output filename for updated document -v, --verbose - Enable verbose output -n, --no-save - Print to stdout instead of saving -s, --schema  - Path to JSON schema file for validation --attach  - Path to file or directory for additional attachments -e, --embed  - Embed new attachments or keep them external -h, --help - Print help information Example: # Update document with new version\njacs document update -f original.json -n modified.json -o updated.json # Update and add new attachments\njacs document update -f original.json -n modified.json --attach ./new-file.pdf --embed false","breadcrumbs":"CLI Command Reference » jacs document update","id":"1420","title":"jacs document update"},"1421":{"body":"Verify a document's hash, signatures, and schema compliance. Usage: jacs document verify [OPTIONS] Options: -a  - Path to the agent file -f  - Path to input file. Must be JSON format -d  - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -s, --schema  - Path to JSON schema file to use for validation -h, --help - Print help information Examples: # Verify single document\njacs document verify -f signed-document.json # Verify all documents in directory\njacs document verify -d ./documents/ # Verify with custom schema\njacs document verify -f document.json -s custom-schema.json Verification Process: Hash verification - Confirms document integrity Signature verification - Validates cryptographic signatures Schema validation - Ensures document structure compliance File integrity - Checks SHA256 checksums of attached files","breadcrumbs":"CLI Command Reference » jacs document verify","id":"1421","title":"jacs document verify"},"1422":{"body":"Extract embedded file contents from documents back to the filesystem. Usage: jacs document extract [OPTIONS] Options: -a  - Path to the agent file -f  - Path to input file containing embedded files -d  - Path to directory of files to process -s, --schema  - Path to JSON schema file for validation -h, --help - Print help information Examples: # Extract embedded files from single document\njacs document extract -f document-with-embedded-files.json # Extract from all documents in directory jacs document extract -d ./documents/ Extract Process: Reads embedded file contents from document Decodes base64-encoded data Writes files to their original paths Creates backup of existing files (with timestamp)","breadcrumbs":"CLI Command Reference » jacs document extract","id":"1422","title":"jacs document extract"},"1423":{"body":"JACS provides specialized commands for managing multi-agent agreements. jacs document check-agreement Given a document, provide a list of agents that should sign the document. Usage: jacs document check-agreement [OPTIONS] jacs document create-agreement Create an agreement structure for a document that requires multiple agent signatures. Usage: jacs document create-agreement [OPTIONS] jacs document sign-agreement Sign the agreement section of a document with the current agent's cryptographic signature. Usage: jacs document sign-agreement [OPTIONS]","breadcrumbs":"CLI Command Reference » Agreement Commands","id":"1423","title":"Agreement Commands"},"1424":{"body":"","breadcrumbs":"CLI Command Reference » Common Patterns","id":"1424","title":"Common Patterns"},"1425":{"body":"# 1. Initialize JACS\njacs init # 2. Create document with attachments\njacs document create -f document.json --attach ./files/ --embed true # 3. Verify document integrity\njacs document verify -f created-document.json # 4. Update document if needed\njacs document update -f original.json -n modified.json # 5. Extract embedded files when needed\njacs document extract -f document.json","breadcrumbs":"CLI Command Reference » Basic Document Lifecycle","id":"1425","title":"Basic Document Lifecycle"},"1426":{"body":"# Embed small files for portability\njacs document create -f doc.json --attach ./small-image.png --embed true # Reference large files to save space\njacs document create -f doc.json --attach ./large-video.mp4 --embed false # Attach multiple files from directory\njacs document create -f doc.json --attach ./attachments/ --embed false","breadcrumbs":"CLI Command Reference » Working with Attachments","id":"1426","title":"Working with Attachments"},"1427":{"body":"# Create with schema validation\njacs document create -f document.json -s schema.json # Verify against specific schema\njacs document verify -f document.json -s schema.json","breadcrumbs":"CLI Command Reference » Schema Validation Workflow","id":"1427","title":"Schema Validation Workflow"},"1428":{"body":"Most commands support these common options: -h, --help - Show help information -v, --verbose - Enable verbose output for debugging -a  - Specify custom agent file (overrides config default)","breadcrumbs":"CLI Command Reference » Global Options","id":"1428","title":"Global Options"},"1429":{"body":"0 - Success 1 - General error (invalid arguments, file not found, etc.) 2 - Verification failure (hash mismatch, invalid signature, etc.) 3 - Schema validation failure","breadcrumbs":"CLI Command Reference » Exit Codes","id":"1429","title":"Exit Codes"},"143":{"body":"# Look up agent by domain\njacs agent lookup other-agent.example.com # Verify with strict DNS\njacs agent verify -a ./other-agent.json --require-strict-dns","breadcrumbs":"CLI Usage » Verify Another Agent","id":"143","title":"Verify Another Agent"},"1430":{"body":"JACS_CONFIG_PATH - Override default configuration file location JACS_DATA_DIR - Override default data directory location JACS_AGENT_FILE - Default agent file to use (if not specified with -a)","breadcrumbs":"CLI Command Reference » Environment Variables","id":"1430","title":"Environment Variables"},"1431":{"body":"","breadcrumbs":"CLI Command Reference » File Formats","id":"1431","title":"File Formats"},"1432":{"body":"JSON documents - Must be valid JSON format Schema files - JSON Schema format (draft-07 compatible) Agent files - JACS agent format with cryptographic keys Attachments - Any file type (automatically detected MIME type)","breadcrumbs":"CLI Command Reference » Input Files","id":"1432","title":"Input Files"},"1433":{"body":"JACS documents - JSON format with JACS metadata, signatures, and checksums Extracted files - Original format of embedded attachments","breadcrumbs":"CLI Command Reference » Output Files","id":"1433","title":"Output Files"},"1434":{"body":"","breadcrumbs":"Configuration Reference » Configuration Reference","id":"1434","title":"Configuration Reference"},"1435":{"body":"","breadcrumbs":"Configuration Reference » Overview","id":"1435","title":"Overview"},"1436":{"body":"When verifying signed documents, JACS resolves the signer’s public key using a configurable order of sources. Set JACS_KEY_RESOLUTION (environment variable or in config) to a comma-separated list of sources: local (trust store), dns (DNS TXT record), hai (HAI key service). Example: JACS_KEY_RESOLUTION=local,hai or local,dns,hai. The first source that returns a key for the signer’s ID is used. Use verify_standalone() with explicit keyResolution for one-off verification without loading a full config.","breadcrumbs":"Configuration Reference » Key resolution for verifiers","id":"1436","title":"Key resolution for verifiers"},"1437":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_use_security\": \"false\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"jacs.private.pem.enc\", \"jacs_agent_public_key_filename\": \"jacs.public.pem\", \"jacs_agent_key_algorithm\": \"RSA-PSS\", \"jacs_default_storage\": \"fs\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"./logs\" }, \"headers\": { \"Authorization\": \"Bearer token\", \"X-API-Key\": \"secret\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" } }, \"export_interval_seconds\": 60, \"headers\": { \"X-Service\": \"jacs\" } }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"platform\", \"region\": \"us-west-2\" } } } }\n}","breadcrumbs":"Configuration Reference » Complete Example Configuration","id":"1437","title":"Complete Example Configuration"},"1438":{"body":"JACS supports comprehensive observability through configurable logging, metrics, and tracing. All observability features are optional and can be configured in the jacs.config.json file.","breadcrumbs":"Configuration Reference » Observability Configuration","id":"1438","title":"Observability Configuration"},"1439":{"body":"Controls how JACS generates and outputs log messages. Field Type Required Description enabled boolean Yes Whether logging is enabled level string Yes Minimum log level: trace, debug, info, warn, error destination object Yes Where logs are sent (see destinations below) headers object No Additional headers for remote destinations Log Destinations File Logging { \"type\": \"file\", \"path\": \"./logs\"\n} Writes logs to rotating files in the specified directory. Console Logging (stderr) { \"type\": \"stderr\"\n} Outputs logs to standard error stream. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Sends logs to an OTLP-compatible endpoint (like Jaeger, Grafana Cloud). Null (disabled) { \"type\": \"null\"\n} Discards all log output.","breadcrumbs":"Configuration Reference » Logs Configuration","id":"1439","title":"Logs Configuration"},"144":{"body":"Code Meaning 0 Success 1 General error 2 Invalid arguments 3 File not found 4 Verification failed 5 Signature invalid","breadcrumbs":"CLI Usage » Exit Codes","id":"144","title":"Exit Codes"},"1440":{"body":"Controls collection and export of application metrics. Field Type Required Description enabled boolean Yes Whether metrics collection is enabled destination object Yes Where metrics are exported (see destinations below) export_interval_seconds integer No How often to export metrics (default: 60) headers object No Additional headers for remote destinations Metrics Destinations Prometheus Remote Write { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" }\n} Exports metrics in Prometheus format to a remote write endpoint. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Exports metrics to an OTLP-compatible endpoint. File Export { \"type\": \"file\", \"path\": \"./metrics.txt\"\n} Writes metrics to a local file. Console Output (stdout) { \"type\": \"stdout\"\n} Prints metrics to standard output.","breadcrumbs":"Configuration Reference » Metrics Configuration","id":"1440","title":"Metrics Configuration"},"1441":{"body":"Controls distributed tracing for request flows. Field Type Required Description enabled boolean Yes Whether tracing is enabled sampling object No Sampling configuration (see below) resource object No Service identification (see below) Sampling Configuration Controls which traces are collected to manage overhead. Field Type Default Description ratio number 1.0 Fraction of traces to sample (0.0-1.0) parent_based boolean true Whether to respect parent trace sampling decisions rate_limit integer none Maximum traces per second Examples: \"ratio\": 1.0 - Sample all traces (100%) \"ratio\": 0.1 - Sample 10% of traces \"ratio\": 0.01 - Sample 1% of traces \"rate_limit\": 10 - Maximum 10 traces per second Resource Configuration Identifies the service in distributed tracing systems. Field Type Required Description service_name string Yes Name of the service service_version string No Version of the service environment string No Environment (dev, staging, prod) attributes object No Custom key-value attributes","breadcrumbs":"Configuration Reference » Tracing Configuration","id":"1441","title":"Tracing Configuration"},"1442":{"body":"For remote destinations (OTLP, Prometheus), you can specify authentication headers: Bearer Token Authentication: \"headers\": { \"Authorization\": \"Bearer your-token-here\"\n} Basic Authentication: \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\"\n} API Key Authentication: \"headers\": { \"X-API-Key\": \"your-api-key\", \"X-Auth-Token\": \"your-auth-token\"\n}","breadcrumbs":"Configuration Reference » Authentication & Headers","id":"1442","title":"Authentication & Headers"},"1443":{"body":"","breadcrumbs":"Configuration Reference » Common Patterns","id":"1443","title":"Common Patterns"},"1444":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"debug\", \"destination\": { \"type\": \"stderr\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"stdout\" } }\n}","breadcrumbs":"Configuration Reference » Development Configuration","id":"1444","title":"Development Configuration"},"1445":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"otlp\", \"endpoint\": \"https://logs.example.com:4317\", \"headers\": { \"Authorization\": \"Bearer prod-token\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"https://metrics.example.com/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.05, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\" } }\n}","breadcrumbs":"Configuration Reference » Production Configuration","id":"1445","title":"Production Configuration"},"1446":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.txt\" }, \"export_interval_seconds\": 60 }\n}","breadcrumbs":"Configuration Reference » File-based Configuration","id":"1446","title":"File-based Configuration"},"1447":{"body":"The observability configuration works alongside JACS's core configuration system.","breadcrumbs":"Configuration Reference » Environment Variable Integration","id":"1447","title":"Environment Variable Integration"},"1448":{"body":"Only one environment variable is truly required: JACS_PRIVATE_KEY_PASSWORD - Password for encrypting/decrypting private keys (required for cryptographic operations)","breadcrumbs":"Configuration Reference » Required Environment Variable","id":"1448","title":"Required Environment Variable"},"1449":{"body":"All other JACS settings are configuration file fields that have sensible defaults: jacs_data_directory - Where agent/document data is stored (default: ./jacs_data) jacs_key_directory - Where cryptographic keys are stored (default: ./jacs_keys) jacs_agent_key_algorithm - Cryptographic algorithm to use (default: RSA-PSS) jacs_default_storage - Storage backend (default: fs) jacs_use_security / JACS_ENABLE_FILESYSTEM_QUARANTINE - Enable filesystem quarantine of executable files (default: false). The env var JACS_USE_SECURITY is deprecated; use JACS_ENABLE_FILESYSTEM_QUARANTINE instead. These can be overridden by environment variables if needed, but they are primarily configured through the jacs.config.json file. The observability configuration is completely optional - JACS will work without any observability configuration.","breadcrumbs":"Configuration Reference » Configuration-Based Settings","id":"1449","title":"Configuration-Based Settings"},"145":{"body":"Creating an Agent - Detailed agent creation guide Working with Documents - Document operations in depth Agreements - Multi-agent agreements","breadcrumbs":"CLI Usage » Next Steps","id":"145","title":"Next Steps"},"1450":{"body":"The jacs_default_storage field determines where JACS stores agent data, documents, and keys. This is a critical configuration that affects how your data is persisted and accessed.","breadcrumbs":"Configuration Reference » Storage Configuration","id":"1450","title":"Storage Configuration"},"1451":{"body":"Backend Value Description Use Case Filesystem \"fs\" Local file system storage Development, single-node deployments AWS S3 \"aws\" Amazon S3 object storage Production, cloud deployments HAI Remote \"hai\" HAI.ai remote storage service HAI.ai platform integration Memory \"memory\" In-memory storage (non-persistent) Testing, temporary data Web Local \"local\" Browser local storage (WASM only) Web applications","breadcrumbs":"Configuration Reference » Available Storage Backends","id":"1451","title":"Available Storage Backends"},"1452":{"body":"Filesystem Storage (\"fs\") { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: None - works out of the box Data location: Local directories as specified in config Best for: Development, local testing, single-machine deployments AWS S3 Storage (\"aws\") { \"jacs_default_storage\": \"aws\"\n} Required Environment Variables: JACS_ENABLE_AWS_BUCKET_NAME - S3 bucket name AWS_ACCESS_KEY_ID - AWS access key AWS_SECRET_ACCESS_KEY - AWS secret key AWS_REGION - AWS region (optional, defaults to us-east-1) Best for: Production deployments, distributed systems, cloud-native applications HAI Remote Storage (\"hai\") { \"jacs_default_storage\": \"hai\"\n} Required Environment Variables: HAI_STORAGE_URL - HAI.ai storage service endpoint Best for: Integration with HAI.ai platform services Memory Storage (\"memory\") { \"jacs_default_storage\": \"memory\"\n} Requirements: None Data persistence: None - data is lost when application stops Best for: Unit testing, temporary operations, development scenarios","breadcrumbs":"Configuration Reference » Backend-Specific Configuration","id":"1452","title":"Backend-Specific Configuration"},"1453":{"body":"Agent data (agent definitions, signatures) are stored using the configured backend Documents are stored using the configured backend Cryptographic keys are stored using the configured backend Observability data (logs, metrics) can use separate storage via observability configuration","breadcrumbs":"Configuration Reference » Storage Behavior","id":"1453","title":"Storage Behavior"},"1454":{"body":"Development Setup (Filesystem) { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./dev_data\", \"jacs_key_directory\": \"./dev_keys\"\n} Production Setup (AWS S3) { \"jacs_default_storage\": \"aws\"\n} With environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-production-bucket\"\nexport AWS_ACCESS_KEY_ID=\"AKIA...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\" HAI Platform Integration { \"jacs_default_storage\": \"hai\"\n} With environment variable: export HAI_STORAGE_URL=\"https://storage.hai.ai/v1\"","breadcrumbs":"Configuration Reference » Configuration Examples","id":"1454","title":"Configuration Examples"},"1455":{"body":"AWS S3 : Ensure proper IAM permissions for bucket access HAI Remote : Secure the HAI_STORAGE_URL endpoint and any required authentication Filesystem : Ensure proper file system permissions for data and key directories Keys : Regardless of storage backend, always set JACS_PRIVATE_KEY_PASSWORD for key encryption","breadcrumbs":"Configuration Reference » Security Considerations","id":"1455","title":"Security Considerations"},"1456":{"body":"When changing storage backends, you'll need to: Export existing data from the current backend Update the jacs_default_storage configuration Set any required environment variables for the new backend Import data into the new backend JACS doesn't automatically migrate data between storage backends - this must be done manually or via custom scripts.","breadcrumbs":"Configuration Reference » Migration Between Storage Backends","id":"1456","title":"Migration Between Storage Backends"},"1457":{"body":"This reference documents error codes and messages you may encounter when using JACS.","breadcrumbs":"Error Codes » Error Codes","id":"1457","title":"Error Codes"},"1458":{"body":"Code Name Description 0 Success Operation completed successfully 1 General Error Unspecified error occurred 2 Invalid Arguments Command line arguments invalid 3 File Not Found Specified file does not exist 4 Verification Failed Document or signature verification failed 5 Signature Invalid Cryptographic signature is invalid","breadcrumbs":"Error Codes » CLI Exit Codes","id":"1458","title":"CLI Exit Codes"},"1459":{"body":"","breadcrumbs":"Error Codes » Configuration Errors","id":"1459","title":"Configuration Errors"},"146":{"body":"An agent is the fundamental identity in JACS - an autonomous entity that can create, sign, and verify documents. This guide covers creating and managing agents.","breadcrumbs":"Creating an Agent » Creating an Agent","id":"146","title":"Creating an Agent"},"1460":{"body":"Error: Configuration file not found: jacs.config.json Cause: JACS cannot find the configuration file. Solution: # Initialize JACS to create configuration\njacs init # Or specify a custom config path\nJACS_CONFIG_PATH=./custom.config.json jacs agent verify","breadcrumbs":"Error Codes » Missing Configuration","id":"1460","title":"Missing Configuration"},"1461":{"body":"Error: Invalid configuration: missing required field 'jacs_key_directory' Cause: Configuration file is missing required fields. Solution: Ensure your jacs.config.json contains all required fields: { \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Error Codes » Invalid Configuration","id":"1461","title":"Invalid Configuration"},"1462":{"body":"Error: Key directory not found: ./jacs_keys Cause: The specified key directory does not exist. Solution: # Create the directory\nmkdir -p ./jacs_keys # Or run init to create everything\njacs init","breadcrumbs":"Error Codes » Key Directory Not Found","id":"1462","title":"Key Directory Not Found"},"1463":{"body":"","breadcrumbs":"Error Codes » Cryptographic Errors","id":"1463","title":"Cryptographic Errors"},"1464":{"body":"Error: Private key file not found: private.pem Cause: The private key file is missing from the key directory. Solution: # Generate new keys\njacs agent create --create-keys true","breadcrumbs":"Error Codes » Private Key Not Found","id":"1464","title":"Private Key Not Found"},"1465":{"body":"Error: Failed to parse private key: invalid PEM format Cause: The key file is corrupted or in wrong format. Solution: Regenerate keys with jacs agent create --create-keys true Ensure the key file is not corrupted","breadcrumbs":"Error Codes » Invalid Key Format","id":"1465","title":"Invalid Key Format"},"1466":{"body":"Error: Private key is encrypted but no password provided Cause: Encrypted private key requires password. Solution: export JACS_PRIVATE_KEY_PASSWORD=\"your-password\"\njacs document create -f doc.json","breadcrumbs":"Error Codes » Key Password Required","id":"1466","title":"Key Password Required"},"1467":{"body":"Error: Key algorithm 'ring-Ed25519' does not match configured algorithm 'RSA-PSS' Cause: The key file was created with a different algorithm than configured. Solution: Update config to match key algorithm, or Regenerate keys with the correct algorithm","breadcrumbs":"Error Codes » Algorithm Mismatch","id":"1467","title":"Algorithm Mismatch"},"1468":{"body":"","breadcrumbs":"Error Codes » Signature Errors","id":"1468","title":"Signature Errors"},"1469":{"body":"Error: Document verification failed: signature does not match content Cause: Document content has been modified after signing. Solution: The document may have been tampered with Re-sign the document if you have the original content","breadcrumbs":"Error Codes » Verification Failed","id":"1469","title":"Verification Failed"},"147":{"body":"A JACS agent is: A unique identity with a UUID that never changes A holder of cryptographic keys for signing A provider of services defined in the agent document Self-signed to prove authenticity","breadcrumbs":"Creating an Agent » What is an Agent?","id":"147","title":"What is an Agent?"},"1470":{"body":"Error: Document missing jacsSignature field Cause: Document was not signed or signature was removed. Solution: # Create a signed document\njacs document create -f unsigned-doc.json","breadcrumbs":"Error Codes » Missing Signature","id":"1470","title":"Missing Signature"},"1471":{"body":"Error: Invalid signature format: expected base64 encoded string Cause: The signature field is malformed. Solution: Re-sign the document Verify the document hasn't been corrupted","breadcrumbs":"Error Codes » Invalid Signature Format","id":"1471","title":"Invalid Signature Format"},"1472":{"body":"Error: Unknown signing algorithm: unknown-algo Cause: Document was signed with an unsupported algorithm. Solution: Use a supported algorithm: ring-Ed25519, RSA-PSS, pq-dilithium, pq2025","breadcrumbs":"Error Codes » Unknown Signing Algorithm","id":"1472","title":"Unknown Signing Algorithm"},"1473":{"body":"","breadcrumbs":"Error Codes » DNS Verification Errors","id":"1473","title":"DNS Verification Errors"},"1474":{"body":"Error: strict DNSSEC validation failed for  (TXT not authenticated). Enable DNSSEC and publish DS at registrar Cause: DNSSEC mode was requested but the TXT response wasn't authenticated. Solution: Enable DNSSEC for your domain zone Publish the DS record at your registrar Wait for propagation (up to 48 hours)","breadcrumbs":"Error Codes » DNSSEC Validation Failed","id":"1474","title":"DNSSEC Validation Failed"},"1475":{"body":"Error: DNS TXT lookup failed for  (record missing or not yet propagated) Cause: The JACS TXT record doesn't exist or hasn't propagated. Solution: Verify the TXT record was created: dig _v1.agent.jacs.yourdomain.com TXT Wait for DNS propagation (can take up to 48 hours) Confirm record name and value are correct","breadcrumbs":"Error Codes » DNS Record Not Found","id":"1475","title":"DNS Record Not Found"},"1476":{"body":"Error: DNS TXT lookup required (domain configured) or provide embedded fingerprint Cause: Strict DNS mode is active because a domain is configured. Solution: Publish the TXT record, or Run with --no-dns during initial setup: jacs agent verify --no-dns","breadcrumbs":"Error Codes » DNS Required","id":"1476","title":"DNS Required"},"1477":{"body":"Error: DNS lookup timed out for  Cause: DNS server did not respond in time. Solution: Check network connectivity Try again later Verify DNS server is accessible","breadcrumbs":"Error Codes » DNS Lookup Timeout","id":"1477","title":"DNS Lookup Timeout"},"1478":{"body":"","breadcrumbs":"Error Codes » Document Errors","id":"1478","title":"Document Errors"},"1479":{"body":"Error: Failed to parse document: invalid JSON at line 5 Cause: Document file contains invalid JSON. Solution: Validate JSON with a linter Check for syntax errors (missing commas, quotes)","breadcrumbs":"Error Codes » Invalid JSON","id":"1479","title":"Invalid JSON"},"148":{"body":"","breadcrumbs":"Creating an Agent » Creating Your First Agent","id":"148","title":"Creating Your First Agent"},"1480":{"body":"Error: Schema validation failed: missing required field 'amount' Cause: Document doesn't conform to the specified schema. Solution: # Check which fields are required by the schema\ncat schema.json | jq '.required' # Add missing fields to your document","breadcrumbs":"Error Codes » Schema Validation Failed","id":"1480","title":"Schema Validation Failed"},"1481":{"body":"Error: Document not found: 550e8400-e29b-41d4-a716-446655440000 Cause: The specified document ID doesn't exist in storage. Solution: Verify the document ID is correct Check the storage directory","breadcrumbs":"Error Codes » Document Not Found","id":"1481","title":"Document Not Found"},"1482":{"body":"Error: Document version mismatch: expected v2, got v1 Cause: Attempting to update with incorrect base version. Solution: Get the latest version of the document Apply updates to the correct version","breadcrumbs":"Error Codes » Version Mismatch","id":"1482","title":"Version Mismatch"},"1483":{"body":"","breadcrumbs":"Error Codes » Agreement Errors","id":"1483","title":"Agreement Errors"},"1484":{"body":"Error: Document has no jacsAgreement field Cause: Attempting agreement operations on a document without an agreement. Solution: # Create an agreement first\njacs document create-agreement -f doc.json -i agent1-id,agent2-id","breadcrumbs":"Error Codes » Agreement Not Found","id":"1484","title":"Agreement Not Found"},"1485":{"body":"Error: Agent has already signed this agreement Cause: Attempting to sign an agreement that was already signed by this agent. Solution: No action needed, the signature is already present","breadcrumbs":"Error Codes » Already Signed","id":"1485","title":"Already Signed"},"1486":{"body":"Error: Agent is not in the agreement's agentIDs list Cause: Attempting to sign with an agent not listed in the agreement. Solution: Only agents listed in jacsAgreement.agentIDs can sign","breadcrumbs":"Error Codes » Not Authorized","id":"1486","title":"Not Authorized"},"1487":{"body":"Error: Cannot modify document: agreement is complete Cause: Attempting to modify a document with a completed agreement. Solution: Create a new version/agreement if changes are needed","breadcrumbs":"Error Codes » Agreement Locked","id":"1487","title":"Agreement Locked"},"1488":{"body":"","breadcrumbs":"Error Codes » Storage Errors","id":"1488","title":"Storage Errors"},"1489":{"body":"Error: Storage error: failed to write to filesystem Cause: Unable to write to the configured storage backend. Solution: Check filesystem permissions Verify storage directory exists Check disk space","breadcrumbs":"Error Codes » Storage Backend Error","id":"1489","title":"Storage Backend Error"},"149":{"body":"# Initialize JACS (creates config and agent)\njacs init This creates: Configuration file Cryptographic key pair Initial agent document","breadcrumbs":"Creating an Agent » Quick Method (Recommended)","id":"149","title":"Quick Method (Recommended)"},"1490":{"body":"Error: S3 error: AccessDenied Cause: AWS credentials don't have required permissions. Solution: Verify IAM permissions include s3:GetObject, s3:PutObject Check bucket policy Verify credentials are correct","breadcrumbs":"Error Codes » AWS S3 Error","id":"1490","title":"AWS S3 Error"},"1491":{"body":"Error: Failed to connect to storage: connection refused Cause: Cannot connect to remote storage backend. Solution: Check network connectivity Verify endpoint URL is correct Check firewall rules","breadcrumbs":"Error Codes » Connection Error","id":"1491","title":"Connection Error"},"1492":{"body":"","breadcrumbs":"Error Codes » HTTP/MCP Errors","id":"1492","title":"HTTP/MCP Errors"},"1493":{"body":"Error: JACS request verification failed Cause: Incoming HTTP request has invalid JACS signature. Solution: Ensure client is signing requests correctly Verify client and server are using compatible keys","breadcrumbs":"Error Codes » Request Verification Failed","id":"1493","title":"Request Verification Failed"},"1494":{"body":"Error: JACS response verification failed Cause: Server response has invalid signature. Solution: Check server JACS configuration Verify server is signing responses","breadcrumbs":"Error Codes » Response Verification Failed","id":"1494","title":"Response Verification Failed"},"1495":{"body":"Error: JACSExpressMiddleware: config file not found Cause: Middleware cannot find JACS configuration. Solution: app.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' // Verify path is correct\n}));","breadcrumbs":"Error Codes » Middleware Configuration Error","id":"1495","title":"Middleware Configuration Error"},"1496":{"body":"","breadcrumbs":"Error Codes » Debugging Tips","id":"1496","title":"Debugging Tips"},"1497":{"body":"# CLI verbose mode\njacs document verify -f doc.json -v # Environment variable\nexport JACS_DEBUG=true","breadcrumbs":"Error Codes » Enable Verbose Output","id":"1497","title":"Enable Verbose Output"},"1498":{"body":"# Display current configuration\njacs config read","breadcrumbs":"Error Codes » Check Configuration","id":"1498","title":"Check Configuration"},"1499":{"body":"# Verify agent is properly configured\njacs agent verify -v","breadcrumbs":"Error Codes » Verify Agent","id":"1499","title":"Verify Agent"},"15":{"body":"Support for both current (RSA, Ed25519) and post-quantum cryptographic algorithms ensures your system remains secure.","breadcrumbs":"Introduction » 🔒 Future-Proof Security","id":"15","title":"🔒 Future-Proof Security"},"150":{"body":"# 1. Create configuration\njacs config create # 2. Create agent with new keys\njacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Manual Method","id":"150","title":"Manual Method"},"1500":{"body":"# Create a test document\necho '{\"test\": true}' > test.json\njacs document create -f test.json -v","breadcrumbs":"Error Codes » Test Signing","id":"1500","title":"Test Signing"},"1501":{"body":"Configuration Reference - Configuration options CLI Command Reference - CLI usage Security Model - Security details","breadcrumbs":"Error Codes » See Also","id":"1501","title":"See Also"},"1502":{"body":"This guide covers migrating between JACS versions and common migration scenarios.","breadcrumbs":"Migration Guide » Migration Guide","id":"1502","title":"Migration Guide"},"1503":{"body":"JACS maintains backward compatibility for document verification: Documents signed with older versions can be verified with newer versions Older JACS versions cannot verify documents using newer cryptographic algorithms","breadcrumbs":"Migration Guide » Version Compatibility","id":"1503","title":"Version Compatibility"},"1504":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.5.1 to 0.5.2","id":"1504","title":"Migrating from 0.5.1 to 0.5.2"},"1505":{"body":"PBKDF2 Iteration Count : New key encryptions use 600,000 iterations (up from 100,000). Existing encrypted keys are decrypted automatically via fallback. To upgrade existing keys, re-encrypt them: # Re-generate keys to use the new iteration count\njacs keygen","breadcrumbs":"Migration Guide » Migration Notes","id":"1505","title":"Migration Notes"},"1506":{"body":"JACS_USE_SECURITY is now JACS_ENABLE_FILESYSTEM_QUARANTINE. The old name still works with a deprecation warning.","breadcrumbs":"Migration Guide » Deprecated Environment Variables","id":"1506","title":"Deprecated Environment Variables"},"1507":{"body":"Variable Default Description JACS_MAX_SIGNATURE_AGE_SECONDS 0 (no expiration) Maximum age of valid signatures. Set to a positive value to enable (e.g., 7776000 for 90 days). JACS_REQUIRE_EXPLICIT_ALGORITHM false When true, reject verification if signingAlgorithm is missing. JACS_ENABLE_FILESYSTEM_QUARANTINE false Enable filesystem quarantine (replaces JACS_USE_SECURITY).","breadcrumbs":"Migration Guide » New Environment Variables","id":"1507","title":"New Environment Variables"},"1508":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.2.x to 0.3.x","id":"1508","title":"Migrating from 0.2.x to 0.3.x"},"1509":{"body":"New Configuration Fields: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" }, \"metrics\": { \"enabled\": false }, \"tracing\": { \"enabled\": false } }\n} Deprecated Fields: jacs_log_level → Use observability.logs.level jacs_log_file → Use observability.logs.destination","breadcrumbs":"Migration Guide » Configuration Changes","id":"1509","title":"Configuration Changes"},"151":{"body":"Create an agent definition file (my-agent.json): { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent specialized in content creation\", \"jacsServices\": [ { \"jacsServiceName\": \"content-generation\", \"jacsServiceDescription\": \"Generate high-quality content\", \"jacsServiceSuccess\": \"Engaging, accurate content delivered\", \"jacsServiceFailure\": \"Unable to generate requested content\" } ]\n} Then create the agent: jacs agent create --create-keys true -f my-agent.json","breadcrumbs":"Creating an Agent » With Custom Agent Definition","id":"151","title":"With Custom Agent Definition"},"1510":{"body":"Update Configuration: # Backup current config\ncp jacs.config.json jacs.config.json.backup # Update to new format\n# Add observability section if needed Update Dependencies: # Node.js\nnpm install @hai.ai/jacs@latest # Python\npip install --upgrade jacs Verify Existing Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Migration Steps","id":"1510","title":"Migration Steps"},"1511":{"body":"","breadcrumbs":"Migration Guide » Migrating Storage Backends","id":"1511","title":"Migrating Storage Backends"},"1512":{"body":"Create S3 Bucket: aws s3 mb s3://my-jacs-bucket Update Configuration: { \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n} Set Environment Variables: export AWS_ACCESS_KEY_ID=\"your-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret\"\nexport AWS_REGION=\"us-east-1\" Migrate Documents: # Upload existing documents\naws s3 sync ./jacs_data/ s3://my-jacs-bucket/data/ Verify Migration: jacs document verify -d s3://my-jacs-bucket/data/documents/","breadcrumbs":"Migration Guide » Filesystem to AWS S3","id":"1512","title":"Filesystem to AWS S3"},"1513":{"body":"Download Documents: aws s3 sync s3://my-jacs-bucket/data/ ./jacs_data/ Update Configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n} Verify Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » AWS S3 to Filesystem","id":"1513","title":"AWS S3 to Filesystem"},"1514":{"body":"","breadcrumbs":"Migration Guide » Migrating Cryptographic Algorithms","id":"1514","title":"Migrating Cryptographic Algorithms"},"1515":{"body":"For increased security, you may want to migrate to post-quantum algorithms. Create New Agent with New Algorithm: { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} jacs agent create --create-keys true -f new-agent.json Update Configuration: { \"jacs_agent_key_algorithm\": \"pq-dilithium\", \"jacs_agent_id_and_version\": \"new-agent-id:new-version\"\n} Re-sign Critical Documents (Optional): // Re-sign documents with new algorithm\nconst oldDoc = JSON.parse(fs.readFileSync('./old-doc.json')); // Remove old signature fields\ndelete oldDoc.jacsSignature;\ndelete oldDoc.jacsSha256; // Create new signed version\nconst newDoc = await agent.createDocument(JSON.stringify(oldDoc)); Note: Old documents remain valid with old signatures. Re-signing is only needed for documents that require the new algorithm.","breadcrumbs":"Migration Guide » Ed25519 to Post-Quantum","id":"1515","title":"Ed25519 to Post-Quantum"},"1516":{"body":"","breadcrumbs":"Migration Guide » Migrating Between Platforms","id":"1516","title":"Migrating Between Platforms"},"1517":{"body":"Both platforms use the same document format: // Node.js - create document\nconst signedDoc = await agent.createDocument(JSON.stringify(content));\nfs.writeFileSync('doc.json', signedDoc); # Python - verify the same document\nwith open('doc.json', 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string)","breadcrumbs":"Migration Guide » Node.js to Python","id":"1517","title":"Node.js to Python"},"1518":{"body":"Agents can be used across platforms by sharing configuration: Export Agent Files: jacs_keys/\n├── private.pem\n└── public.pem\njacs.config.json Use Same Config in Both: // Node.js\nawait agent.load('./jacs.config.json'); # Python\nagent.load('./jacs.config.json')","breadcrumbs":"Migration Guide » Sharing Agents Between Platforms","id":"1518","title":"Sharing Agents Between Platforms"},"1519":{"body":"","breadcrumbs":"Migration Guide » Migrating Key Formats","id":"1519","title":"Migrating Key Formats"},"152":{"body":"JACS supports four agent types: Type Description Contacts Required ai Fully artificial intelligence No human Individual person Yes human-org Group of people (organization) Yes hybrid Human-AI combination Yes","breadcrumbs":"Creating an Agent » Agent Types","id":"152","title":"Agent Types"},"1520":{"body":"Encrypt Existing Key: # Backup original\ncp jacs_keys/private.pem jacs_keys/private.pem.backup # Encrypt with password\nopenssl pkcs8 -topk8 -in jacs_keys/private.pem \\ -out jacs_keys/private.pem.enc -v2 aes-256-cbc # Remove unencrypted key\nrm jacs_keys/private.pem\nmv jacs_keys/private.pem.enc jacs_keys/private.pem Update Configuration: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} Set Password: export JACS_PRIVATE_KEY_PASSWORD=\"your-secure-password\"","breadcrumbs":"Migration Guide » Unencrypted to Encrypted Keys","id":"1520","title":"Unencrypted to Encrypted Keys"},"1521":{"body":"","breadcrumbs":"Migration Guide » Database Migration","id":"1521","title":"Database Migration"},"1522":{"body":"If migrating from filesystem to include database storage: Create Database Schema: CREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), UNIQUE(id, version_id)\n); Import Existing Documents: const fs = require('fs');\nconst path = require('path');\nconst { Pool } = require('pg'); const pool = new Pool({ connectionString: process.env.DATABASE_URL });\nconst docsDir = './jacs_data/documents'; async function importDocuments() { const docDirs = fs.readdirSync(docsDir); for (const docId of docDirs) { const docPath = path.join(docsDir, docId); const versions = fs.readdirSync(docPath); for (const versionFile of versions) { const docString = fs.readFileSync( path.join(docPath, versionFile), 'utf-8' ); const doc = JSON.parse(docString); await pool.query(` INSERT INTO jacs_documents (id, version_id, document) VALUES ($1, $2, $3) ON CONFLICT (id, version_id) DO NOTHING `, [doc.jacsId, doc.jacsVersion, doc]); } }\n} importDocuments();","breadcrumbs":"Migration Guide » Adding Database Storage","id":"1522","title":"Adding Database Storage"},"1523":{"body":"","breadcrumbs":"Migration Guide » MCP Integration Migration","id":"1523","title":"MCP Integration Migration"},"1524":{"body":"Install JACS: npm install @hai.ai/jacs Wrap Existing Transport: // Before\nconst transport = new StdioServerTransport();\nawait server.connect(transport); // After\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);\nawait server.connect(secureTransport); Update Client: // Client also needs JACS\nconst baseTransport = new StdioClientTransport({ command: 'node', args: ['server.js'] });\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.client.config.json', 'client'\n);\nawait client.connect(secureTransport);","breadcrumbs":"Migration Guide » Adding JACS to Existing MCP Server","id":"1524","title":"Adding JACS to Existing MCP Server"},"1525":{"body":"","breadcrumbs":"Migration Guide » HTTP API Migration","id":"1525","title":"HTTP API Migration"},"1526":{"body":"Install Middleware: npm install @hai.ai/jacs Add Middleware to Routes: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Before\napp.use('/api', express.json()); // After - for JACS-protected routes\napp.use('/api/secure', express.text({ type: '*/*' }));\napp.use('/api/secure', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Keep non-JACS routes unchanged\napp.use('/api/public', express.json()); Update Route Handlers: // Before\napp.post('/api/data', (req, res) => { const payload = req.body; // ...\n}); // After\napp.post('/api/secure/data', (req, res) => { const payload = req.jacsPayload; // Verified payload // ...\n});","breadcrumbs":"Migration Guide » Adding JACS to Existing Express API","id":"1526","title":"Adding JACS to Existing Express API"},"1527":{"body":"","breadcrumbs":"Migration Guide » Troubleshooting Migration","id":"1527","title":"Troubleshooting Migration"},"1528":{"body":"Documents Not Verifying After Migration: Check algorithm compatibility Verify keys were copied correctly Ensure configuration paths are correct Key File Errors: Verify file permissions (600 for private key) Check key format matches algorithm Ensure password is set for encrypted keys Storage Errors After Migration: Verify storage backend is accessible Check credentials/permissions Ensure directory structure is correct","breadcrumbs":"Migration Guide » Common Issues","id":"1528","title":"Common Issues"},"1529":{"body":"After any migration: Verify Configuration: jacs config read Verify Agent: jacs agent verify Verify Sample Document: jacs document verify -f ./sample-doc.json Test Document Creation: echo '{\"test\": true}' > test.json\njacs document create -f test.json Verify Version: jacs version","breadcrumbs":"Migration Guide » Verification Checklist","id":"1529","title":"Verification Checklist"},"153":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"name\": \"DataBot\", \"description\": \"Data processing agent\", \"jacsServices\": [ { \"jacsServiceName\": \"data-processing\", \"jacsServiceDescription\": \"Process and transform data\" } ]\n}","breadcrumbs":"Creating an Agent » AI Agent Example","id":"153","title":"AI Agent Example"},"1530":{"body":"If migration fails: Restore Configuration: cp jacs.config.json.backup jacs.config.json Restore Keys: cp -r jacs_keys.backup/* jacs_keys/ Restore Dependencies: # Node.js\nnpm install @hai.ai/jacs@previous-version # Python\npip install jacs==previous-version Verify Rollback: jacs agent verify\njacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Rollback Procedures","id":"1530","title":"Rollback Procedures"},"1531":{"body":"Configuration Reference - Configuration options Cryptographic Algorithms - Algorithm details Storage Backends - Storage options","breadcrumbs":"Migration Guide » See Also","id":"1531","title":"See Also"},"154":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"human\", \"name\": \"John Smith\", \"description\": \"Software engineer\", \"jacsContacts\": [ { \"jacsContactType\": \"email\", \"jacsContactValue\": \"john@example.com\" } ], \"jacsServices\": [ { \"jacsServiceName\": \"code-review\", \"jacsServiceDescription\": \"Review code for quality and security\" } ]\n}","breadcrumbs":"Creating an Agent » Human Agent Example","id":"154","title":"Human Agent Example"},"155":{"body":"Services define what an agent can do. Each service has: { \"jacsServiceName\": \"service-identifier\", \"jacsServiceDescription\": \"What the service does\", \"jacsServiceSuccess\": \"Definition of successful completion\", \"jacsServiceFailure\": \"What constitutes failure\", \"jacsServiceActions\": [ { \"jacsActionName\": \"action-1\", \"jacsActionDescription\": \"First action in this service\" } ]\n}","breadcrumbs":"Creating an Agent » Agent Services","id":"155","title":"Agent Services"},"156":{"body":"{ \"jacsServiceName\": \"document-processing\", \"jacsServiceDescription\": \"Process and analyze documents\", \"jacsServiceActions\": [ { \"jacsActionName\": \"extract-text\", \"jacsActionDescription\": \"Extract text from PDF documents\" }, { \"jacsActionName\": \"summarize\", \"jacsActionDescription\": \"Generate document summaries\" }, { \"jacsActionName\": \"translate\", \"jacsActionDescription\": \"Translate documents between languages\" } ]\n}","breadcrumbs":"Creating an Agent » Service with Actions","id":"156","title":"Service with Actions"},"157":{"body":"For human and hybrid agents, contacts are required: { \"jacsContacts\": [ { \"jacsContactType\": \"email\", \"jacsContactValue\": \"agent@example.com\" }, { \"jacsContactType\": \"website\", \"jacsContactValue\": \"https://example.com\" }, { \"jacsContactType\": \"phone\", \"jacsContactValue\": \"+1-555-0123\" } ]\n}","breadcrumbs":"Creating an Agent » Agent Contacts","id":"157","title":"Agent Contacts"},"158":{"body":"","breadcrumbs":"Creating an Agent » Cryptographic Keys","id":"158","title":"Cryptographic Keys"},"159":{"body":"JACS supports multiple cryptographic algorithms: Algorithm Description Recommended For ring-Ed25519 Fast elliptic curve signatures General use (default) RSA-PSS Traditional RSA signatures Legacy compatibility pq-dilithium Post-quantum signatures Future-proof security","breadcrumbs":"Creating an Agent » Key Algorithms","id":"159","title":"Key Algorithms"},"16":{"body":"JSON-based documents work everywhere - store them in any database, transmit over any protocol, integrate with any system.","breadcrumbs":"Introduction » 🌐 Universal Compatibility","id":"16","title":"🌐 Universal Compatibility"},"160":{"body":"In jacs.config.json: { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Or via environment variable: JACS_AGENT_KEY_ALGORITHM=ring-Ed25519 jacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Configure Key Algorithm","id":"160","title":"Configure Key Algorithm"},"161":{"body":"Keys are stored in the key directory (default: ./jacs_keys): jacs_keys/\n├── private_key.pem # Private key (keep secure!)\n└── public_key.pem # Public key (can be shared)","breadcrumbs":"Creating an Agent » Key Storage","id":"161","title":"Key Storage"},"162":{"body":"","breadcrumbs":"Creating an Agent » Verifying Agents","id":"162","title":"Verifying Agents"},"163":{"body":"jacs agent verify","breadcrumbs":"Creating an Agent » Verify Your Own Agent","id":"163","title":"Verify Your Own Agent"},"164":{"body":"jacs agent verify -a ./path/to/agent.json","breadcrumbs":"Creating an Agent » Verify a Specific Agent File","id":"164","title":"Verify a Specific Agent File"},"165":{"body":"# Require DNS validation\njacs agent verify --require-dns # Require strict DNSSEC\njacs agent verify --require-strict-dns","breadcrumbs":"Creating an Agent » With DNS Verification","id":"165","title":"With DNS Verification"},"166":{"body":"Agent updates create a new version while maintaining the same jacsId: Modify the agent document Re-sign with the agent's keys The jacsVersion changes but jacsId remains constant.","breadcrumbs":"Creating an Agent » Updating Agents","id":"166","title":"Updating Agents"},"167":{"body":"A complete agent document looks like: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsLevel\": \"config\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent for content generation\", \"jacsServices\": [ { \"jacsServiceName\": \"content-generation\", \"jacsServiceDescription\": \"Generate high-quality content\" } ], \"jacsSha256\": \"hash-of-document\", \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"signature\": \"base64-encoded-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"name\", \"jacsServices\"] }\n}","breadcrumbs":"Creating an Agent » Agent Document Structure","id":"167","title":"Agent Document Structure"},"168":{"body":"","breadcrumbs":"Creating an Agent » Best Practices","id":"168","title":"Best Practices"},"169":{"body":"Protect private keys : Never share or commit private keys Use strong algorithms : Prefer Ed25519 or post-quantum Enable DNS verification : For production agents Regular key rotation : Update keys periodically","breadcrumbs":"Creating an Agent » Security","id":"169","title":"Security"},"17":{"body":"Whether you're building a simple CLI tool or a complex multi-agent system, JACS adapts to your architecture.","breadcrumbs":"Introduction » 🧩 Flexible Integration","id":"17","title":"🧩 Flexible Integration"},"170":{"body":"Clear service definitions : Be specific about capabilities Meaningful names : Use descriptive agent names Contact information : Include for human agents Version control : Track agent document changes","breadcrumbs":"Creating an Agent » Agent Design","id":"170","title":"Agent Design"},"171":{"body":"Backup keys : Keep secure backups of private keys Monitor signatures : Watch for unauthorized signing Document services : Keep service definitions current","breadcrumbs":"Creating an Agent » Operations","id":"171","title":"Operations"},"172":{"body":"Working with Documents - Create signed documents Agreements - Multi-agent coordination DNS Verification - Publish agent identity","breadcrumbs":"Creating an Agent » Next Steps","id":"172","title":"Next Steps"},"173":{"body":"Documents are the core data structure in JACS. Any JSON object can become a JACS document by adding the required header fields and a cryptographic signature.","breadcrumbs":"Working with Documents » Working with Documents","id":"173","title":"Working with Documents"},"174":{"body":"A JACS document is a JSON object that includes: Identity : Unique ID and version tracking Metadata : Type, timestamps, and origin information Signature : Cryptographic proof of authenticity Hash : Integrity verification","breadcrumbs":"Working with Documents » What is a JACS Document?","id":"174","title":"What is a JACS Document?"},"175":{"body":"","breadcrumbs":"Working with Documents » Creating Documents","id":"175","title":"Creating Documents"},"176":{"body":"Create a simple JSON document (my-document.json): { \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\"\n} Sign it with JACS: jacs document create -f my-document.json This adds JACS headers and signature, producing a signed document.","breadcrumbs":"Working with Documents » From a JSON File","id":"176","title":"From a JSON File"},"177":{"body":"Process multiple documents at once: jacs document create -d ./documents/","breadcrumbs":"Working with Documents » From a Directory","id":"177","title":"From a Directory"},"178":{"body":"Validate against a custom JSON schema: jacs document create -f my-document.json -s ./schemas/proposal.schema.json","breadcrumbs":"Working with Documents » With Custom Schema","id":"178","title":"With Custom Schema"},"179":{"body":"# Save to specific file\njacs document create -f my-document.json -o ./output/signed-doc.json # Print to stdout instead of saving\njacs document create -f my-document.json --no-save # Verbose output\njacs document create -f my-document.json -v","breadcrumbs":"Working with Documents » Output Options","id":"179","title":"Output Options"},"18":{"body":"Core Concepts - Understand agents, documents, and agreements Quick Start Guide - Get up and running in minutes Choose Your Implementation : Rust CLI & Library Node.js Package Python Package","breadcrumbs":"Introduction » Getting Started","id":"18","title":"Getting Started"},"180":{"body":"After signing, a document looks like: { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"version-uuid-here\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"document\", \"jacsLevel\": \"artifact\", \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\", \"jacsSha256\": \"a1b2c3d4...\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\", \"budget\", \"deadline\"] }\n}","breadcrumbs":"Working with Documents » Document Structure","id":"180","title":"Document Structure"},"181":{"body":"Field Description Auto-generated $schema JSON Schema reference Yes jacsId Permanent document UUID Yes jacsVersion Version UUID (changes on update) Yes jacsVersionDate When this version was created Yes jacsOriginalVersion First version UUID Yes jacsOriginalDate Original creation timestamp Yes jacsType Document type Yes jacsLevel Data level (raw, config, artifact, derived) Yes","breadcrumbs":"Working with Documents » Required Header Fields","id":"181","title":"Required Header Fields"},"182":{"body":"The jacsLevel field indicates the document's purpose: Level Description Use Case raw Original data, should not change Source documents config Configuration, meant to be updated Agent definitions, settings artifact Generated output Reports, summaries derived Computed from other documents Analysis results","breadcrumbs":"Working with Documents » Document Levels","id":"182","title":"Document Levels"},"183":{"body":"","breadcrumbs":"Working with Documents » File Attachments","id":"183","title":"File Attachments"},"184":{"body":"# Attach a single file\njacs document create -f my-document.json --attach ./report.pdf # Attach a directory of files\njacs document create -f my-document.json --attach ./attachments/","breadcrumbs":"Working with Documents » Attach Files","id":"184","title":"Attach Files"},"185":{"body":"# Embed files directly in the document (larger document, self-contained)\njacs document create -f my-document.json --attach ./files/ --embed true # Reference files (smaller document, files stored separately)\njacs document create -f my-document.json --attach ./files/ --embed false","breadcrumbs":"Working with Documents » Embed vs. Reference","id":"185","title":"Embed vs. Reference"},"186":{"body":"Embedded attachments appear in the jacsFiles field: { \"jacsFiles\": [ { \"jacsFileName\": \"report.pdf\", \"jacsFileMimeType\": \"application/pdf\", \"jacsFileSha256\": \"file-hash\", \"jacsFileContent\": \"base64-encoded-content\" } ]\n}","breadcrumbs":"Working with Documents » Attachment Structure","id":"186","title":"Attachment Structure"},"187":{"body":"","breadcrumbs":"Working with Documents » Verifying Documents","id":"187","title":"Verifying Documents"},"188":{"body":"jacs document verify -f ./signed-document.json Verification checks: Hash integrity (document hasn't been modified) Signature validity (signature matches content) Schema compliance (if schema specified)","breadcrumbs":"Working with Documents » Basic Verification","id":"188","title":"Basic Verification"},"189":{"body":"jacs document verify -f ./document.json -s ./schema.json","breadcrumbs":"Working with Documents » Verify with Schema","id":"189","title":"Verify with Schema"},"19":{"body":"GitHub : HumanAssisted/JACS Issues : Report bugs and feature requests Examples : Complete examples for all implementations Documentation : This comprehensive guide Ready to build trustworthy AI systems? Let's get started!","breadcrumbs":"Introduction » Community and Support","id":"19","title":"Community and Support"},"190":{"body":"jacs document verify -d ./documents/","breadcrumbs":"Working with Documents » Verify Directory","id":"190","title":"Verify Directory"},"191":{"body":"jacs document verify -f ./document.json -v","breadcrumbs":"Working with Documents » Verbose Output","id":"191","title":"Verbose Output"},"192":{"body":"Updates create a new version while maintaining the same jacsId: jacs document update -f ./original.json -n ./modified.json The update process: Reads the original document Applies changes from the modified file Increments jacsVersion Links to previous version via jacsPreviousVersion Re-signs with agent's key","breadcrumbs":"Working with Documents » Updating Documents","id":"192","title":"Updating Documents"},"193":{"body":"jacs document update -f ./original.json -n ./modified.json --attach ./new-file.pdf","breadcrumbs":"Working with Documents » Update with Attachments","id":"193","title":"Update with Attachments"},"194":{"body":"Extract attachments from a document: jacs document extract -f ./document-with-attachments.json Extract from multiple documents: jacs document extract -d ./documents/","breadcrumbs":"Working with Documents » Extracting Embedded Content","id":"194","title":"Extracting Embedded Content"},"195":{"body":"","breadcrumbs":"Working with Documents » Document Types","id":"195","title":"Document Types"},"196":{"body":"Tasks are specialized documents for work tracking: jacs task create -n \"Code Review\" -d \"Review PR #123\" See Task Schema for details.","breadcrumbs":"Working with Documents » Task Documents","id":"196","title":"Task Documents"},"197":{"body":"Messages for agent communication: { \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"jacsType\": \"message\", \"jacsMessageContent\": \"Hello, I've completed the task.\", \"jacsMessageReplyTo\": \"previous-message-uuid\"\n}","breadcrumbs":"Working with Documents » Message Documents","id":"197","title":"Message Documents"},"198":{"body":"Any JSON can be a JACS document. Create custom schemas: { \"$schema\": \"https://example.com/schemas/invoice.schema.json\", \"jacsType\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1000, \"currency\": \"USD\"\n}","breadcrumbs":"Working with Documents » Custom Documents","id":"198","title":"Custom Documents"},"199":{"body":"JACS tracks document history through version chains: Version 1 (jacsOriginalVersion) ↓\nVersion 2 (jacsPreviousVersion → Version 1) ↓\nVersion 3 (jacsPreviousVersion → Version 2) ↓\nCurrent Version Each version is a complete document that can be independently verified.","breadcrumbs":"Working with Documents » Version History","id":"199","title":"Version History"},"2":{"body":"🔐 Cryptographic Security : RSA, Ed25519, and post-quantum cryptographic algorithms 📋 JSON Schema Validation : Enforced document structure and validation 🤝 Multi-Agent Agreements : Built-in support for agent collaboration and task agreements 🔍 Full Audit Trail : Complete versioning and modification history 🌐 Multiple Language Support : Rust, Node.js, and Python implementations 🔌 MCP Integration : Native Model Context Protocol support 📊 Observability : Built-in logging and metrics for production systems","breadcrumbs":"Introduction » Key Features","id":"2","title":"Key Features"},"20":{"body":"JACS (JSON Agent Communication Standard) is a comprehensive framework designed to solve a critical problem in AI systems: How do agents communicate and collaborate securely with verifiable trust?","breadcrumbs":"What is JACS? » What is JACS?","id":"20","title":"What is JACS?"},"200":{"body":"","breadcrumbs":"Working with Documents » Working with Multiple Agents","id":"200","title":"Working with Multiple Agents"},"201":{"body":"# Use a specific agent's keys\njacs document create -f ./document.json -a ./other-agent.json","breadcrumbs":"Working with Documents » Different Agent Signs Document","id":"201","title":"Different Agent Signs Document"},"202":{"body":"# Verify with strict DNS requirement\njacs document verify -f ./document.json --require-strict-dns","breadcrumbs":"Working with Documents » Verify Document from Unknown Agent","id":"202","title":"Verify Document from Unknown Agent"},"203":{"body":"","breadcrumbs":"Working with Documents » Best Practices","id":"203","title":"Best Practices"},"204":{"body":"Use appropriate levels : Match jacsLevel to document purpose Include context : Add descriptive fields for human readability Version control : Keep source files in git alongside JACS documents","breadcrumbs":"Working with Documents » Document Design","id":"204","title":"Document Design"},"205":{"body":"Verify before trusting : Always verify signatures Check agent identity : Verify the signing agent Validate schemas : Use custom schemas for strict validation","breadcrumbs":"Working with Documents » Security","id":"205","title":"Security"},"206":{"body":"External attachments : Use --embed false for large files Batch processing : Use directory mode for multiple documents Selective verification : Verify only when needed","breadcrumbs":"Working with Documents » Performance","id":"206","title":"Performance"},"207":{"body":"","breadcrumbs":"Working with Documents » Common Workflows","id":"207","title":"Common Workflows"},"208":{"body":"# 1. Create document\njacs document create -f ./proposal.json -o ./signed-proposal.json # 2. Share the signed document\n# The recipient can verify it:\njacs document verify -f ./signed-proposal.json","breadcrumbs":"Working with Documents » Create and Share Document","id":"208","title":"Create and Share Document"},"209":{"body":"# 1. Create initial version\njacs document create -f ./contract-v1.json # 2. Make changes and update\njacs document update -f ./contract-v1.json -n ./contract-v2.json # 3. Continue updating\njacs document update -f ./contract-v2.json -n ./contract-v3.json","breadcrumbs":"Working with Documents » Track Document Changes","id":"209","title":"Track Document Changes"},"21":{"body":"As AI systems become more sophisticated, we're moving toward multi-agent architectures where different AI agents need to: Exchange tasks and delegate work to each other Create agreements and verify their completion Share data with guaranteed authenticity Maintain audit trails of decisions and actions Establish trust without centralized authorities Traditional approaches fall short because they lack: Cryptographic integrity for agent communications Standardized formats for agent interactions Built-in versioning and audit trails Support for multi-agent agreements and workflows","breadcrumbs":"What is JACS? » The Problem JACS Solves","id":"21","title":"The Problem JACS Solves"},"210":{"body":"# Create all documents in a directory\njacs document create -d ./input-docs/ # Verify all documents\njacs document verify -d ./signed-docs/","breadcrumbs":"Working with Documents » Process Multiple Documents","id":"210","title":"Process Multiple Documents"},"211":{"body":"Agreements - Multi-agent consent Task Schema - Task document structure Custom Schemas - Create your own schemas","breadcrumbs":"Working with Documents » Next Steps","id":"211","title":"Next Steps"},"212":{"body":"Agreements enable multi-party consent in JACS. They allow multiple agents to cryptographically sign a document, creating binding commitments between parties.","breadcrumbs":"Creating and Using Agreements » Creating and Using Agreements","id":"212","title":"Creating and Using Agreements"},"213":{"body":"An agreement is a mechanism for: Collecting signatures from multiple agents Tracking consent from required parties Enforcing completion before proceeding Creating audit trails of who agreed and when","breadcrumbs":"Creating and Using Agreements » What is an Agreement?","id":"213","title":"What is an Agreement?"},"214":{"body":"1. Create Agreement → 2. Distribute → 3. Agents Sign → 4. Verify Complete Create : Initial agent creates agreement with required participants Distribute : Agreement document shared with all parties Sign : Each agent reviews and adds their signature Verify : Check that all required parties have signed","breadcrumbs":"Creating and Using Agreements » Agreement Lifecycle","id":"214","title":"Agreement Lifecycle"},"215":{"body":"","breadcrumbs":"Creating and Using Agreements » Creating Agreements","id":"215","title":"Creating Agreements"},"216":{"body":"# Create agreement requiring signatures from two agents\njacs document create-agreement \\ -f ./document.json \\ -i agent1-uuid,agent2-uuid","breadcrumbs":"Creating and Using Agreements » Basic Agreement","id":"216","title":"Basic Agreement"},"217":{"body":"Include a question and context for clarity: { \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to the terms of this contract?\", \"jacsAgreementContext\": \"Service agreement for Q1 2024\", \"jacsAgreementAgents\": [\"agent1-uuid\", \"agent2-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » With Context","id":"217","title":"With Context"},"218":{"body":"","breadcrumbs":"Creating and Using Agreements » Signing Agreements","id":"218","title":"Signing Agreements"},"219":{"body":"jacs document sign-agreement -f ./document-with-agreement.json","breadcrumbs":"Creating and Using Agreements » Sign as Current Agent","id":"219","title":"Sign as Current Agent"},"22":{"body":"","breadcrumbs":"What is JACS? » JACS Core Philosophy","id":"22","title":"JACS Core Philosophy"},"220":{"body":"# Use a different configuration/agent\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json","breadcrumbs":"Creating and Using Agreements » Sign as Different Agent","id":"220","title":"Sign as Different Agent"},"221":{"body":"When signing, agents can include a response: { \"jacsAgreement\": { \"signatures\": { \"agent1-uuid\": { \"agentID\": \"agent1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\", \"response\": \"Agreed with minor reservation about timeline\", \"responseType\": \"agree\" } } }\n} Response types: agree - Agent consents disagree - Agent does not consent reject - Agent considers the question invalid or irrelevant","breadcrumbs":"Creating and Using Agreements » Sign with Response","id":"221","title":"Sign with Response"},"222":{"body":"","breadcrumbs":"Creating and Using Agreements » Checking Agreement Status","id":"222","title":"Checking Agreement Status"},"223":{"body":"jacs document check-agreement -f ./document.json This shows: Which agents have signed Which agents still need to sign Whether the agreement is complete","breadcrumbs":"Creating and Using Agreements » Check if Complete","id":"223","title":"Check if Complete"},"224":{"body":"A document with an agreement includes: { \"jacsId\": \"doc-uuid\", \"jacsType\": \"contract\", \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to these terms?\", \"jacsAgreementContext\": \"Annual service contract\", \"jacsAgreementAgents\": [ \"550e8400-e29b-41d4-a716-446655440000\", \"123e4567-e89b-12d3-a456-426614174000\" ], \"signatures\": { \"550e8400-e29b-41d4-a716-446655440000\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash\", \"date\": \"2024-01-15T10:30:00Z\", \"responseType\": \"agree\", \"fields\": [\"jacsId\", \"jacsAgreement\"] } } }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Creating and Using Agreements » Agreement Structure","id":"224","title":"Agreement Structure"},"225":{"body":"Tasks have built-in support for start and end agreements: { \"jacsType\": \"task\", \"jacsTaskName\": \"Code Review\", \"jacsStartAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to start this task?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }, \"jacsEndAgreement\": { \"jacsAgreementQuestion\": \"Do you agree the task is complete?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » Task Agreements","id":"225","title":"Task Agreements"},"226":{"body":"# 1. Agent A creates a task\njacs task create -n \"Write Report\" -d \"Quarterly sales report\" # 2. Agent A adds agreement requiring both agents\njacs document create-agreement \\ -f ./task.json \\ -i agent-a-uuid,agent-b-uuid # 3. Agent A signs the agreement\njacs document sign-agreement -f ./task.json # 4. Agent B signs the agreement\nJACS_CONFIG_PATH=./agent-b.config.json \\ jacs document sign-agreement -f ./task.json # 5. Check agreement is complete\njacs document check-agreement -f ./task.json","breadcrumbs":"Creating and Using Agreements » Multi-Agent Workflow Example","id":"226","title":"Multi-Agent Workflow Example"},"227":{"body":"The jacsAgreementHash ensures all agents agree to the same content: Hash is computed from the agreement content Each signature includes the hash If content changes, hash changes, invalidating existing signatures This prevents modifications after some parties have signed.","breadcrumbs":"Creating and Using Agreements » Agreement Hash","id":"227","title":"Agreement Hash"},"228":{"body":"Verify before signing : Always review documents before signing Check agent identities : Verify who you're agreeing with (use DNS) Include context : Make the agreement purpose clear Handle disagreement : Have a process for when agents disagree","breadcrumbs":"Creating and Using Agreements » Best Practices","id":"228","title":"Best Practices"},"229":{"body":"DNS Verification - Verify agent identities Task Schema - Task-specific agreements Security Model - Agreement security","breadcrumbs":"Creating and Using Agreements » Next Steps","id":"229","title":"Next Steps"},"23":{"body":"JACS is built specifically for AI agent communication patterns, not as a general-purpose document signing system. It understands concepts like: Agents with identities and capabilities Tasks that can be delegated and tracked Agreements between multiple parties Versioning for iterative improvements","breadcrumbs":"What is JACS? » 🎯 Agent-First Design","id":"23","title":"🎯 Agent-First Design"},"230":{"body":"JACS supports DNS-based agent verification using DNS TXT records and DNSSEC. This allows agents to publish their identity in a decentralized, verifiable way that doesn't require a central authority.","breadcrumbs":"DNS-Based Verification » DNS-Based Agent Verification","id":"230","title":"DNS-Based Agent Verification"},"231":{"body":"DNS verification in JACS works by: Publishing an agent's public key fingerprint as a DNS TXT record Using DNSSEC to cryptographically verify the DNS response Comparing the fingerprint from DNS with the agent's actual public key This provides a secure, decentralized way to verify agent identity across the internet.","breadcrumbs":"DNS-Based Verification » Overview","id":"231","title":"Overview"},"232":{"body":"Decentralized : No central authority required Existing Infrastructure : Uses established DNS infrastructure DNSSEC Security : Cryptographic verification of DNS responses Human-Readable : Agents can be identified by domain names Widely Supported : Works with any DNS provider","breadcrumbs":"DNS-Based Verification » Why DNS Verification?","id":"232","title":"Why DNS Verification?"},"233":{"body":"","breadcrumbs":"DNS-Based Verification » Publishing Agent Identity","id":"233","title":"Publishing Agent Identity"},"234":{"body":"# Generate DNS TXT record commands for your agent\njacs agent dns --domain myagent.example.com # Specify agent ID explicitly\njacs agent dns --domain myagent.example.com --agent-id 550e8400-e29b-41d4-a716-446655440000 # Use hex encoding instead of base64\njacs agent dns --domain myagent.example.com --encoding hex # Set custom TTL (time-to-live)\njacs agent dns --domain myagent.example.com --ttl 7200","breadcrumbs":"DNS-Based Verification » Generate DNS Commands","id":"234","title":"Generate DNS Commands"},"235":{"body":"JACS can generate DNS commands for various providers: # Plain text format (default)\njacs agent dns --domain myagent.example.com --provider plain # AWS Route 53 format\njacs agent dns --domain myagent.example.com --provider aws # Azure DNS format\njacs agent dns --domain myagent.example.com --provider azure # Cloudflare DNS format\njacs agent dns --domain myagent.example.com --provider cloudflare","breadcrumbs":"DNS-Based Verification » Provider-Specific Formats","id":"235","title":"Provider-Specific Formats"},"236":{"body":"The DNS TXT record follows this format: _v1.agent.jacs.myagent.example.com. 3600 IN TXT \"jacs-agent-fingerprint=\" Where: _v1.agent.jacs. is the JACS-specific subdomain prefix  is the base64-encoded hash of the agent's public key","breadcrumbs":"DNS-Based Verification » DNS Record Structure","id":"236","title":"DNS Record Structure"},"237":{"body":"Generate the AWS-formatted command: jacs agent dns --domain myagent.example.com --provider aws The output will include an AWS CLI command like: aws route53 change-resource-record-sets \\ --hosted-zone-id YOUR_ZONE_ID \\ --change-batch '{ \"Changes\": [{ \"Action\": \"UPSERT\", \"ResourceRecordSet\": { \"Name\": \"_v1.agent.jacs.myagent.example.com\", \"Type\": \"TXT\", \"TTL\": 3600, \"ResourceRecords\": [{\"Value\": \"\\\"jacs-agent-fingerprint=...\\\"\"}] } }] }' Replace YOUR_ZONE_ID with your actual Route 53 hosted zone ID.","breadcrumbs":"DNS-Based Verification » Setting Up with Route 53 (AWS)","id":"237","title":"Setting Up with Route 53 (AWS)"},"238":{"body":"Generate the Cloudflare-formatted command: jacs agent dns --domain myagent.example.com --provider cloudflare Or add manually in the Cloudflare dashboard: Type: TXT Name: _v1.agent.jacs Content: jacs-agent-fingerprint= TTL: 3600","breadcrumbs":"DNS-Based Verification » Setting Up with Cloudflare","id":"238","title":"Setting Up with Cloudflare"},"239":{"body":"Generate the Azure-formatted command: jacs agent dns --domain myagent.example.com --provider azure The output will include an Azure CLI command that you can run directly.","breadcrumbs":"DNS-Based Verification » Setting Up with Azure DNS","id":"239","title":"Setting Up with Azure DNS"},"24":{"body":"Every JACS document includes: Digital signatures proving authenticity Hash verification ensuring integrity Public key cryptography for identity verification Timestamps for chronological ordering","breadcrumbs":"What is JACS? » 🔐 Trust Through Cryptography","id":"24","title":"🔐 Trust Through Cryptography"},"240":{"body":"","breadcrumbs":"DNS-Based Verification » Verifying Agents with DNS","id":"240","title":"Verifying Agents with DNS"},"241":{"body":"# Look up an agent by their domain\njacs agent lookup other-agent.example.com # With strict DNSSEC validation\njacs agent lookup other-agent.example.com --strict # Skip DNS verification (not recommended)\njacs agent lookup other-agent.example.com --no-dns","breadcrumbs":"DNS-Based Verification » Look Up Another Agent","id":"241","title":"Look Up Another Agent"},"242":{"body":"When verifying an agent, you can specify DNS requirements: # Default: Use DNS if available, but don't require it\njacs agent verify -a ./agent.json # Require DNS validation (non-strict)\njacs agent verify -a ./agent.json --require-dns # Require strict DNSSEC validation\njacs agent verify -a ./agent.json --require-strict-dns # Disable DNS validation entirely\njacs agent verify -a ./agent.json --no-dns # Ignore DNS (won't fail if DNS unavailable)\njacs agent verify -a ./agent.json --ignore-dns","breadcrumbs":"DNS-Based Verification » Verify Agent with DNS","id":"242","title":"Verify Agent with DNS"},"243":{"body":"Mode Flag Behavior Default (none) Use DNS if available, fall back to local verification Require DNS --require-dns Fail if DNS record not found (DNSSEC not required) Require Strict --require-strict-dns Fail if DNSSEC validation fails No DNS --no-dns Skip DNS validation entirely Ignore DNS --ignore-dns Don't fail on DNS errors, just warn","breadcrumbs":"DNS-Based Verification » DNS Validation Modes","id":"243","title":"DNS Validation Modes"},"244":{"body":"Agents can specify their domain in their agent document: { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n} The jacsAgentDomain field is optional but enables DNS-based verification.","breadcrumbs":"DNS-Based Verification » Agent Domain Configuration","id":"244","title":"Agent Domain Configuration"},"245":{"body":"For maximum security, enable DNSSEC on your domain: Enable DNSSEC at your registrar : Most registrars support DNSSEC Configure your DNS provider : Ensure your DNS provider signs zones Use --require-strict-dns : Enforce DNSSEC validation","breadcrumbs":"DNS-Based Verification » DNSSEC Requirements","id":"245","title":"DNSSEC Requirements"},"246":{"body":"You can verify DNSSEC is working using standard tools: # Check if DNSSEC is enabled\ndig +dnssec _v1.agent.jacs.myagent.example.com TXT # Verify DNSSEC validation\ndelv @8.8.8.8 _v1.agent.jacs.myagent.example.com TXT","breadcrumbs":"DNS-Based Verification » Checking DNSSEC Status","id":"246","title":"Checking DNSSEC Status"},"247":{"body":"","breadcrumbs":"DNS-Based Verification » Security Considerations","id":"247","title":"Security Considerations"},"248":{"body":"With DNSSEC : Full cryptographic chain of trust from root DNS servers Without DNSSEC : Trust depends on DNS infrastructure security Local Only : Trust is limited to having the correct public key","breadcrumbs":"DNS-Based Verification » Trust Model","id":"248","title":"Trust Model"},"249":{"body":"Always enable DNSSEC for production agents Use strict validation when verifying unknown agents Rotate keys carefully - update DNS records before key changes Monitor DNS records for unauthorized changes Use short TTLs during transitions then increase for stability","breadcrumbs":"DNS-Based Verification » Best Practices","id":"249","title":"Best Practices"},"25":{"body":"JACS builds on proven standards: JSON for universal compatibility JSON Schema for structure validation RFC 3339 timestamps for consistency Standard cryptographic algorithms (RSA, Ed25519, post-quantum)","breadcrumbs":"What is JACS? » 📋 Standards-Based","id":"25","title":"📋 Standards-Based"},"250":{"body":"DNS responses are cached based on TTL. Consider: Short TTL (300-600s) : Better for development or key rotation Long TTL (3600-86400s) : Better for production stability","breadcrumbs":"DNS-Based Verification » Caching","id":"250","title":"Caching"},"251":{"body":"","breadcrumbs":"DNS-Based Verification » Troubleshooting","id":"251","title":"Troubleshooting"},"252":{"body":"Verify the record exists: dig _v1.agent.jacs.myagent.example.com TXT Check DNS propagation (may take up to 48 hours for new records) Verify the domain in the agent document matches","breadcrumbs":"DNS-Based Verification » \"DNS record not found\"","id":"252","title":"\"DNS record not found\""},"253":{"body":"Check DNSSEC is enabled: dig +dnssec myagent.example.com Verify DS records at registrar Use --require-dns instead of --require-strict-dns if DNSSEC isn't available","breadcrumbs":"DNS-Based Verification » \"DNSSEC validation failed\"","id":"253","title":"\"DNSSEC validation failed\""},"254":{"body":"The public key may have changed - regenerate DNS record: jacs agent dns --domain myagent.example.com Update the DNS TXT record with the new fingerprint Wait for DNS propagation","breadcrumbs":"DNS-Based Verification » \"Fingerprint mismatch\"","id":"254","title":"\"Fingerprint mismatch\""},"255":{"body":"Automate DNS updates in your deployment pipeline: #!/bin/bash\n# deploy-agent.sh # 1. Create new agent keys\njacs agent create --create-keys true # 2. Generate DNS update command\nDNS_CMD=$(jacs agent dns --domain $AGENT_DOMAIN --provider aws) # 3. Execute DNS update\neval $DNS_CMD # 4. Wait for propagation\nsleep 60 # 5. Verify DNS is working\njacs agent verify --require-dns","breadcrumbs":"DNS-Based Verification » Integration with CI/CD","id":"255","title":"Integration with CI/CD"},"256":{"body":"Creating an Agent - Set up agents with DNS domains Security Model - Deep dive into JACS security Agreements - Use DNS-verified agents in agreements","breadcrumbs":"DNS-Based Verification » Next Steps","id":"256","title":"Next Steps"},"257":{"body":"JACS provides a Rust library for programmatic agent and document management. This chapter covers how to use the JACS library in your Rust applications.","breadcrumbs":"Rust Library API » Rust Library API","id":"257","title":"Rust Library API"},"258":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Rust Library API » Adding JACS as a Dependency","id":"258","title":"Adding JACS as a Dependency"},"259":{"body":"[dependencies]\njacs = { version = \"0.3\", features = [\"cli\", \"observability\"] } Feature Description cli CLI utilities and helpers observability OpenTelemetry logging and metrics observability-convenience Helper functions for observability full All features enabled","breadcrumbs":"Rust Library API » Feature Flags","id":"259","title":"Feature Flags"},"26":{"body":"","breadcrumbs":"What is JACS? » Key Concepts","id":"26","title":"Key Concepts"},"260":{"body":"","breadcrumbs":"Rust Library API » Core Types","id":"260","title":"Core Types"},"261":{"body":"The Agent struct is the central type in JACS. It holds: Schema validators Agent identity and keys Document storage Configuration use jacs::{get_empty_agent, load_agent};\nuse std::error::Error; fn main() -> Result<(), Box> { // Create a new empty agent let agent = get_empty_agent(); // Or load an existing agent let agent = load_agent(Some(\"path/to/agent.json\".to_string()))?; Ok(())\n}","breadcrumbs":"Rust Library API » Agent","id":"261","title":"Agent"},"262":{"body":"Documents in JACS are represented by the JACSDocument struct: pub struct JACSDocument { pub id: String, pub version: String, pub value: serde_json::Value, pub jacs_type: String,\n} Key methods: getkey() - Returns \"id:version\" identifier getvalue() - Returns reference to the JSON value getschema() - Returns the document's schema URL signing_agent() - Returns the ID of the signing agent","breadcrumbs":"Rust Library API » JACSDocument","id":"262","title":"JACSDocument"},"263":{"body":"","breadcrumbs":"Rust Library API » Creating an Agent","id":"263","title":"Creating an Agent"},"264":{"body":"use jacs::{get_empty_agent, create_minimal_blank_agent}; fn main() -> Result<(), Box> { // Create agent JSON let agent_json = create_minimal_blank_agent( \"ai\".to_string(), // agent type Some(\"My service\".to_string()), // service description Some(\"Task completed\".to_string()), // success description Some(\"Task failed\".to_string()), // failure description )?; // Initialize and load the agent let mut agent = get_empty_agent(); agent.create_agent_and_load(&agent_json, true, None)?; // Save the agent agent.save()?; Ok(())\n}","breadcrumbs":"Rust Library API » Minimal Agent","id":"264","title":"Minimal Agent"},"265":{"body":"use jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); // Load from config file agent.load_by_config(\"./jacs.config.json\".to_string())?; // Or load by agent ID agent.load_by_id(\"agent-id:version-id\".to_string())?; Ok(())\n}","breadcrumbs":"Rust Library API » Loading by Configuration","id":"265","title":"Loading by Configuration"},"266":{"body":"use jacs::load_agent_with_dns_strict; fn main() -> Result<(), Box> { // Load agent with strict DNS verification let agent = load_agent_with_dns_strict( \"path/to/agent.json\".to_string(), true // strict mode )?; Ok(())\n}","breadcrumbs":"Rust Library API » DNS Strict Mode","id":"266","title":"DNS Strict Mode"},"267":{"body":"","breadcrumbs":"Rust Library API » Working with Documents","id":"267","title":"Working with Documents"},"268":{"body":"The DocumentTraits trait provides document operations: use jacs::agent::document::DocumentTraits;\nuse jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document from JSON let json = r#\"{\"title\": \"My Document\", \"content\": \"Hello, World!\"}\"#; let doc = agent.create_document_and_load(json, None, None)?; println!(\"Document created: {}\", doc.getkey()); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Documents","id":"268","title":"Creating Documents"},"269":{"body":"use jacs::agent::document::DocumentTraits; // With file attachments\nlet attachments = Some(vec![\"./report.pdf\".to_string()]);\nlet embed = Some(true); // Embed files in document let doc = agent.create_document_and_load( json, attachments, embed\n)?;","breadcrumbs":"Rust Library API » Creating Documents with Attachments","id":"269","title":"Creating Documents with Attachments"},"27":{"body":"An Agent is an autonomous entity with: A unique identity (UUID) Cryptographic keys for signing Capabilities defined in services The ability to create and verify documents","breadcrumbs":"What is JACS? » Agents","id":"27","title":"Agents"},"270":{"body":"use jacs::agent::document::DocumentTraits; // Load a document from JSON string\nlet doc = agent.load_document(&document_json_string)?; // Get a stored document by key\nlet doc = agent.get_document(\"doc-id:version-id\")?; // List all document keys\nlet keys = agent.get_document_keys();","breadcrumbs":"Rust Library API » Loading Documents","id":"270","title":"Loading Documents"},"271":{"body":"use jacs::agent::document::DocumentTraits; // Update creates a new version\nlet updated_doc = agent.update_document( \"doc-id:version-id\", // original document key &modified_json_string, // new content None, // optional attachments None, // embed flag\n)?;","breadcrumbs":"Rust Library API » Updating Documents","id":"271","title":"Updating Documents"},"272":{"body":"use jacs::agent::document::DocumentTraits; // Verify document signature with agent's public key\nagent.verify_document_signature( \"doc-id:version-id\", None, // signature key (uses default) None, // fields to verify None, // public key (uses agent's) None, // key encoding type\n)?; // Verify using external public key\nagent.verify_external_document_signature(\"doc-id:version-id\")?;","breadcrumbs":"Rust Library API » Verifying Documents","id":"272","title":"Verifying Documents"},"273":{"body":"use jacs::agent::document::DocumentTraits; // Save document to filesystem\nagent.save_document( \"doc-id:version-id\", Some(\"output.json\".to_string()), // output filename Some(true), // export embedded files None, // extract only\n)?;","breadcrumbs":"Rust Library API » Saving Documents","id":"273","title":"Saving Documents"},"274":{"body":"use jacs::{get_empty_agent, create_task}; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a task let task_json = create_task( &mut agent, \"Review Code\".to_string(), \"Review pull request #123\".to_string(), )?; println!(\"Task created: {}\", task_json); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Tasks","id":"274","title":"Creating Tasks"},"275":{"body":"","breadcrumbs":"Rust Library API » Signing and Verification","id":"275","title":"Signing and Verification"},"276":{"body":"The agent's signing_procedure method creates cryptographic signatures: use serde_json::json; let document = json!({ \"title\": \"Contract\", \"terms\": \"...\"\n}); // Sign the document\nlet signature = agent.signing_procedure( &document, None, // fields to sign (None = all) \"jacsSignature\" // placement key\n)?;","breadcrumbs":"Rust Library API » Signing Documents","id":"276","title":"Signing Documents"},"277":{"body":"// Verify self-signature (agent document)\nagent.verify_self_signature()?; // Verify hash integrity\nagent.verify_hash(&document)?; // Full signature verification\nagent.signature_verification_procedure( &document, None, // fields \"jacsSignature\", // signature key public_key, // public key bytes Some(\"ring-Ed25519\".to_string()), // algorithm None, // original public key hash None, // signature override\n)?;","breadcrumbs":"Rust Library API » Verification","id":"277","title":"Verification"},"278":{"body":"// Load custom schemas\nagent.load_custom_schemas(&[ \"./schemas/invoice.schema.json\".to_string(), \"https://example.com/schemas/contract.schema.json\".to_string(),\n])?; // Validate document against custom schema\nagent.validate_document_with_custom_schema( \"./schemas/invoice.schema.json\", &document_value,\n)?;","breadcrumbs":"Rust Library API » Custom Schema Validation","id":"278","title":"Custom Schema Validation"},"279":{"body":"","breadcrumbs":"Rust Library API » Configuration","id":"279","title":"Configuration"},"28":{"body":"A Document is any JSON object that includes: JACS header fields (ID, version, creator, etc.) A cryptographic signature A hash for integrity verification Business logic specific to the document type","breadcrumbs":"What is JACS? » Documents","id":"28","title":"Documents"},"280":{"body":"use jacs::config::{load_config, find_config, Config}; // Load from specific path\nlet config = load_config(\"./jacs.config.json\")?; // Find config in directory\nlet config = find_config(\"./\".to_string())?; // Create programmatically\nlet config = Config::new( Some(\"false\".to_string()), // use_security Some(\"./jacs_data\".to_string()), // data_directory Some(\"./jacs_keys\".to_string()), // key_directory Some(\"private_key.pem\".to_string()), // private key filename Some(\"public_key.pem\".to_string()), // public key filename Some(\"ring-Ed25519\".to_string()), // key algorithm Some(\"password\".to_string()), // private key password None, // agent ID and version Some(\"fs\".to_string()), // storage type\n);","breadcrumbs":"Rust Library API » Loading Configuration","id":"280","title":"Loading Configuration"},"281":{"body":"// Get key algorithm\nlet algorithm = config.get_key_algorithm()?; // Access config fields\nlet data_dir = config.jacs_data_directory();\nlet key_dir = config.jacs_key_directory();\nlet storage_type = config.jacs_default_storage();","breadcrumbs":"Rust Library API » Accessing Configuration","id":"281","title":"Accessing Configuration"},"282":{"body":"","breadcrumbs":"Rust Library API » Observability","id":"282","title":"Observability"},"283":{"body":"use jacs::init_default_observability; fn main() -> Result<(), Box> { // Set up file-based logging init_default_observability()?; // Your application code... Ok(())\n}","breadcrumbs":"Rust Library API » Initialize Default Observability","id":"283","title":"Initialize Default Observability"},"284":{"body":"use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://localhost:4317\".to_string(), headers: None, }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Rust Library API » Custom Observability Configuration","id":"284","title":"Custom Observability Configuration"},"285":{"body":"JACS supports multiple storage backends: use jacs::storage::MultiStorage; // Filesystem storage (default)\nlet storage = MultiStorage::new(\"fs\".to_string())?; // In-memory storage\nlet storage = MultiStorage::new(\"memory\".to_string())?; // S3 storage\nlet storage = MultiStorage::new(\"s3\".to_string())?;","breadcrumbs":"Rust Library API » Storage Backends","id":"285","title":"Storage Backends"},"286":{"body":"JACS functions return Result>: use jacs::get_empty_agent; fn main() { match get_empty_agent().load_by_config(\"./jacs.config.json\".to_string()) { Ok(()) => println!(\"Agent loaded successfully\"), Err(e) => eprintln!(\"Failed to load agent: {}\", e), }\n}","breadcrumbs":"Rust Library API » Error Handling","id":"286","title":"Error Handling"},"287":{"body":"The Agent struct uses internal mutexes for thread-safe access to: Document schemas (Arc>>) Storage operations For concurrent usage: use std::sync::{Arc, Mutex};\nuse jacs::get_empty_agent; let agent = Arc::new(Mutex::new(get_empty_agent())); // Clone Arc for threads\nlet agent_clone = Arc::clone(&agent);\nstd::thread::spawn(move || { let mut agent = agent_clone.lock().unwrap(); // Use agent...\n});","breadcrumbs":"Rust Library API » Thread Safety","id":"287","title":"Thread Safety"},"288":{"body":"use jacs::{get_empty_agent, create_task};\nuse jacs::agent::document::DocumentTraits;\nuse serde_json::json; fn main() -> Result<(), Box> { // Initialize agent let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document let doc_json = json!({ \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000 }); let doc = agent.create_document_and_load( &doc_json.to_string(), None, None )?; println!(\"Created document: {}\", doc.getkey()); // Verify the document agent.verify_document_signature(&doc.getkey(), None, None, None, None)?; println!(\"Document verified successfully\"); // Save to file agent.save_document(&doc.getkey(), Some(\"proposal.json\".to_string()), None, None)?; // Create a task let task = create_task( &mut agent, \"Review Proposal\".to_string(), \"Review and approve the project proposal\".to_string(), )?; println!(\"Task created\"); Ok(())\n}","breadcrumbs":"Rust Library API » Complete Example","id":"288","title":"Complete Example"},"289":{"body":"Observability - Logging and metrics setup Storage Backends - Configure different storage Custom Schemas - Define custom document types","breadcrumbs":"Rust Library API » Next Steps","id":"289","title":"Next Steps"},"29":{"body":"A Task is a special document type representing: Work to be performed Success/failure criteria Input/output specifications Delegation and completion tracking","breadcrumbs":"What is JACS? » Tasks","id":"29","title":"Tasks"},"290":{"body":"JACS provides comprehensive observability features including logging, metrics, and distributed tracing. This chapter covers configuring and using these features in your applications.","breadcrumbs":"Observability » Observability","id":"290","title":"Observability"},"291":{"body":"JACS observability is built on the OpenTelemetry standard, providing: Logging : Structured logging with multiple destinations Metrics : Counters, gauges, and histograms for monitoring Tracing : Distributed tracing for request flows","breadcrumbs":"Observability » Overview","id":"291","title":"Overview"},"292":{"body":"Enable observability features in your Cargo.toml: [dependencies]\njacs = { version = \"0.3\", features = [\"observability\"] } Feature Description observability Core observability support observability-convenience Helper functions for recording operations otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support","breadcrumbs":"Observability » Feature Flags","id":"292","title":"Feature Flags"},"293":{"body":"","breadcrumbs":"Observability » Quick Start","id":"293","title":"Quick Start"},"294":{"body":"The simplest way to enable observability: use jacs::init_default_observability; fn main() -> Result<(), Box> { init_default_observability()?; // Your application code... Ok(())\n} This sets up: File-based logging to ./logs/ with daily rotation Metrics disabled by default Tracing disabled by default","breadcrumbs":"Observability » Default Configuration","id":"294","title":"Default Configuration"},"295":{"body":"For more control, use init_custom_observability: use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Observability » Custom Configuration","id":"295","title":"Custom Configuration"},"296":{"body":"","breadcrumbs":"Observability » Logging","id":"296","title":"Logging"},"297":{"body":"Supported log levels (from most to least verbose): trace debug info warn error","breadcrumbs":"Observability » Log Levels","id":"297","title":"Log Levels"},"298":{"body":"Stderr (Default) LogDestination::Stderr Logs to standard error. Useful for development and containerized environments. File LogDestination::File { path: \"./logs\".to_string(),\n} Logs to rotating files with daily rotation. Creates files like app.log.2024-01-15. OTLP LogDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports logs via OpenTelemetry Protocol. Requires otlp-logs feature. Null LogDestination::Null Disables logging completely.","breadcrumbs":"Observability » Log Destinations","id":"298","title":"Log Destinations"},"299":{"body":"JACS uses the tracing crate for logging: use tracing::{info, debug, warn, error}; fn process_document() { info!(\"Processing document\"); debug!(\"Document details: {:?}\", doc); if let Err(e) = verify() { error!(\"Verification failed: {}\", e); }\n}","breadcrumbs":"Observability » Using Logs","id":"299","title":"Using Logs"},"3":{"body":"JACS is available in three languages, each with its own strengths:","breadcrumbs":"Introduction » Available Implementations","id":"3","title":"Available Implementations"},"30":{"body":"An Agreement is a mechanism for: Multiple agents to consent to terms Tracking signatures from all required parties Ensuring all participants have signed before proceeding Creating binding commitments between agents","breadcrumbs":"What is JACS? » Agreements","id":"30","title":"Agreements"},"300":{"body":"","breadcrumbs":"Observability » Metrics","id":"300","title":"Metrics"},"301":{"body":"MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None,\n}","breadcrumbs":"Observability » Enabling Metrics","id":"301","title":"Enabling Metrics"},"302":{"body":"OTLP MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports to an OpenTelemetry collector. Requires otlp-metrics feature. Prometheus (via Collector) MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None,\n} Note: Direct Prometheus export requires routing through an OTLP collector. File MetricsDestination::File { path: \"./metrics.txt\".to_string(),\n} Writes metrics to a file. Stdout MetricsDestination::Stdout Prints metrics to standard output. Useful for testing.","breadcrumbs":"Observability » Metrics Destinations","id":"302","title":"Metrics Destinations"},"303":{"body":"JACS provides convenience functions for common metrics: use jacs::observability::metrics::{increment_counter, set_gauge, record_histogram};\nuse std::collections::HashMap; // Increment a counter\nlet mut tags = HashMap::new();\ntags.insert(\"operation\".to_string(), \"sign\".to_string());\nincrement_counter(\"jacs_operations_total\", 1, Some(tags)); // Set a gauge value\nset_gauge(\"jacs_documents_active\", 42.0, None); // Record a histogram value (e.g., latency)\nlet mut tags = HashMap::new();\ntags.insert(\"method\".to_string(), \"verify\".to_string());\nrecord_histogram(\"jacs_operation_duration_ms\", 150.0, Some(tags));","breadcrumbs":"Observability » Recording Metrics","id":"303","title":"Recording Metrics"},"304":{"body":"When observability-convenience feature is enabled, JACS automatically records: jacs_agent_operations - Count of agent operations jacs_signature_verifications - Signature verification results jacs_document_operations - Document create/update/verify counts","breadcrumbs":"Observability » Built-in Metrics","id":"304","title":"Built-in Metrics"},"305":{"body":"","breadcrumbs":"Observability » Distributed Tracing","id":"305","title":"Distributed Tracing"},"306":{"body":"use jacs::{TracingConfig, TracingDestination, SamplingConfig, ResourceConfig};\nuse std::collections::HashMap; let config = ObservabilityConfig { // ... logs and metrics config ... tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 1.0, // Sample all traces parent_based: true, rate_limit: None, }, resource: Some(ResourceConfig { service_name: \"my-jacs-app\".to_string(), service_version: Some(\"1.0.0\".to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }), }),\n};","breadcrumbs":"Observability » Enabling Tracing","id":"306","title":"Enabling Tracing"},"307":{"body":"OTLP TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Jaeger TracingDestination::Jaeger { endpoint: \"http://localhost:14268/api/traces\".to_string(), headers: None,\n}","breadcrumbs":"Observability » Tracing Destinations","id":"307","title":"Tracing Destinations"},"308":{"body":"Control how many traces are captured: SamplingConfig { ratio: 0.1, // Sample 10% of traces parent_based: true, // Inherit parent sampling decision rate_limit: Some(100), // Max 100 samples per second\n}","breadcrumbs":"Observability » Sampling Configuration","id":"308","title":"Sampling Configuration"},"309":{"body":"use tracing::{instrument, info_span}; #[instrument]\nfn sign_document(doc: &Document) -> Result<(), Error> { // Automatically creates a span named \"sign_document\" // with doc as a field\n} fn manual_span() { let span = info_span!(\"verify_chain\", doc_count = 5); let _guard = span.enter(); // Operations within this span\n}","breadcrumbs":"Observability » Using Tracing Spans","id":"309","title":"Using Tracing Spans"},"31":{"body":"graph TD A[Agent A] -->|Creates Task| T[JACS Task Document] T -->|Contains| S[Digital Signature] T -->|Contains| H[SHA256 Hash] T -->|Contains| M[Metadata] A -->|Sends to| B[Agent B] B -->|Verifies| T B -->|Signs Agreement| AG[Agreement Document] AG -->|Returns to| A Agent A creates a task document with their requirements The document is signed with Agent A's private key A hash is calculated for integrity verification Agent B receives and verifies the signature and hash Agent B can create an agreement to accept the task Both agents have a verifiable record of the interaction","breadcrumbs":"What is JACS? » How JACS Works","id":"31","title":"How JACS Works"},"310":{"body":"You can configure observability via jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"file\": { \"path\": \"./logs\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-service\", \"service_version\": \"1.0.0\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n}","breadcrumbs":"Observability » Configuration File","id":"310","title":"Configuration File"},"311":{"body":"For production use, route telemetry through an OpenTelemetry Collector: # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: loglevel: debug prometheus: endpoint: \"0.0.0.0:9090\" jaeger: endpoint: jaeger:14250 service: pipelines: logs: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus] traces: receivers: [otlp] processors: [batch] exporters: [jaeger]","breadcrumbs":"Observability » OpenTelemetry Collector Setup","id":"311","title":"OpenTelemetry Collector Setup"},"312":{"body":"For testing or reinitialization: use jacs::observability::{reset_observability, flush_observability, force_reset_for_tests}; // Flush pending data\nflush_observability(); // Reset configuration\nreset_observability(); // Force reset for tests (clears all state)\nforce_reset_for_tests();","breadcrumbs":"Observability » Reset and Cleanup","id":"312","title":"Reset and Cleanup"},"313":{"body":"","breadcrumbs":"Observability » Best Practices","id":"313","title":"Best Practices"},"314":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None,\n};","breadcrumbs":"Observability » Development","id":"314","title":"Development"},"315":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, export_interval_seconds: Some(30), headers: None, }, tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 0.1, // Sample 10% in production parent_based: true, rate_limit: Some(1000), }, resource: Some(ResourceConfig { service_name: \"jacs-production\".to_string(), service_version: Some(env!(\"CARGO_PKG_VERSION\").to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }), }),\n};","breadcrumbs":"Observability » Production","id":"315","title":"Production"},"316":{"body":"","breadcrumbs":"Observability » Troubleshooting","id":"316","title":"Troubleshooting"},"317":{"body":"Check that logging is enabled: logs.enabled: true Verify log level includes your log statements For file logging, ensure the directory is writable","breadcrumbs":"Observability » Logs Not Appearing","id":"317","title":"Logs Not Appearing"},"318":{"body":"Verify otlp-metrics feature is enabled Check endpoint connectivity Confirm metrics are enabled: metrics.enabled: true","breadcrumbs":"Observability » Metrics Not Exporting","id":"318","title":"Metrics Not Exporting"},"319":{"body":"Verify otlp-tracing feature is enabled Check sampling ratio isn't filtering all traces Ensure spans are properly instrumented","breadcrumbs":"Observability » Traces Missing","id":"319","title":"Traces Missing"},"32":{"body":"","breadcrumbs":"What is JACS? » Real-World Examples","id":"32","title":"Real-World Examples"},"320":{"body":"Rust Library API - Use observability in your code Configuration Reference - Full config options Advanced Topics - Security considerations","breadcrumbs":"Observability » Next Steps","id":"320","title":"Next Steps"},"321":{"body":"The JACS Node.js package (@hai.ai/jacs) provides JavaScript/TypeScript bindings to the JACS Rust library, making it easy to integrate JACS into web applications, servers, and Node.js projects.","breadcrumbs":"Installation » Node.js Installation","id":"321","title":"Node.js Installation"},"322":{"body":"Node.js : Version 16.0 or higher npm or yarn : For package management Operating System : macOS, Linux, or Windows with WSL","breadcrumbs":"Installation » Requirements","id":"322","title":"Requirements"},"323":{"body":"","breadcrumbs":"Installation » Installation","id":"323","title":"Installation"},"324":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Installation » Using npm","id":"324","title":"Using npm"},"325":{"body":"yarn add @hai.ai/jacs","breadcrumbs":"Installation » Using yarn","id":"325","title":"Using yarn"},"326":{"body":"pnpm add @hai.ai/jacs","breadcrumbs":"Installation » Using pnpm","id":"326","title":"Using pnpm"},"327":{"body":"Create a simple test to verify everything is working: // test.js\nimport { JacsAgent } from '@hai.ai/jacs'; console.log('JACS Node.js bindings loaded successfully!'); // Test basic functionality\ntry { const agent = new JacsAgent(); agent.load('./jacs.config.json'); console.log('Agent loaded successfully!');\n} catch (error) { console.error('Error loading agent:', error);\n} Run the test: node test.js","breadcrumbs":"Installation » Verify Installation","id":"327","title":"Verify Installation"},"328":{"body":"The @hai.ai/jacs package includes several modules:","breadcrumbs":"Installation » Package Structure","id":"328","title":"Package Structure"},"329":{"body":"import { JacsAgent, JacsConfig, JacsDocument, JacsError\n} from '@hai.ai/jacs';","breadcrumbs":"Installation » Core Module (@hai.ai/jacs)","id":"329","title":"Core Module (@hai.ai/jacs)"},"33":{"body":"Content Agent → Research Agent → Review Agent → Publishing Agent Each handoff includes signed task documents with clear requirements and deliverables.","breadcrumbs":"What is JACS? » 🤖 AI Content Pipeline","id":"33","title":"🤖 AI Content Pipeline"},"330":{"body":"import { JacsMcpServer, createJacsMiddleware } from '@hai.ai/jacs/mcp';","breadcrumbs":"Installation » MCP Integration (@hai.ai/jacs/mcp)","id":"330","title":"MCP Integration (@hai.ai/jacs/mcp)"},"331":{"body":"import { JacsHttpServer, createJacsRouter } from '@hai.ai/jacs/http';","breadcrumbs":"Installation » HTTP Server (@hai.ai/jacs/http)","id":"331","title":"HTTP Server (@hai.ai/jacs/http)"},"332":{"body":"The package includes full TypeScript definitions: import { JacsAgent, createConfig, hashString } from '@hai.ai/jacs'; // Create an agent instance\nconst agent: JacsAgent = new JacsAgent(); // Load configuration from file\nagent.load('./jacs.config.json'); // Use utility functions\nconst hash: string = hashString('some data'); // Create a configuration string\nconst configJson: string = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // jacs_agent_private_key_filename undefined, // jacs_agent_public_key_filename 'ring-Ed25519', // jacs_agent_key_algorithm undefined, // jacs_private_key_password undefined, // jacs_agent_id_and_version 'fs' // jacs_default_storage\n);","breadcrumbs":"Installation » TypeScript Support","id":"332","title":"TypeScript Support"},"333":{"body":"","breadcrumbs":"Installation » Configuration","id":"333","title":"Configuration"},"334":{"body":"const config = { // Required fields jacs_data_directory: \"./jacs_data\", // Where documents are stored jacs_key_directory: \"./jacs_keys\", // Where keys are stored jacs_default_storage: \"fs\", // Storage backend jacs_agent_key_algorithm: \"ring-Ed25519\", // Signing algorithm // Optional fields jacs_agent_id_and_version: null, // Existing agent to load jacs_agent_private_key_filename: \"private.pem\", jacs_agent_public_key_filename: \"public.pem\"\n};","breadcrumbs":"Installation » Basic Configuration","id":"334","title":"Basic Configuration"},"335":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Load the configuration: import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Installation » Configuration File","id":"335","title":"Configuration File"},"336":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"336","title":"Environment Variables"},"337":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"337","title":"Storage Backends"},"338":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"338","title":"File System (Default)"},"339":{"body":"{ \"jacs_default_storage\": \"s3\"\n} S3 credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » S3 Storage","id":"339","title":"S3 Storage"},"34":{"body":"Data Ingestion Agent → Processing Agent → Validation Agent → Storage Agent Each step is tracked with verifiable completion certificates and quality metrics.","breadcrumbs":"What is JACS? » 📊 Data Processing Workflow","id":"34","title":"📊 Data Processing Workflow"},"340":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"340","title":"Memory Storage (Testing)"},"341":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"341","title":"Cryptographic Algorithms"},"342":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"342","title":"ring-Ed25519 (Recommended)"},"343":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"343","title":"RSA-PSS"},"344":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"344","title":"pq-dilithium (Post-Quantum)"},"345":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"345","title":"pq2025 (Post-Quantum Hybrid)"},"346":{"body":"","breadcrumbs":"Installation » Development Setup","id":"346","title":"Development Setup"},"347":{"body":"my-jacs-project/\n├── package.json\n├── jacs.config.json\n├── src/\n│ ├── agent.js\n│ ├── tasks.js\n│ └── agreements.js\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n└── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Installation » Project Structure","id":"347","title":"Project Structure"},"348":{"body":"{ \"name\": \"my-jacs-app\", \"version\": \"1.0.0\", \"type\": \"module\", \"dependencies\": { \"@hai.ai/jacs\": \"^0.6.0\", \"express\": \"^4.18.0\" }, \"scripts\": { \"start\": \"node src/app.js\", \"test\": \"node test/test.js\", \"dev\": \"nodemon src/app.js\" }\n}","breadcrumbs":"Installation » Package.json Setup","id":"348","title":"Package.json Setup"},"349":{"body":"// src/app.js\nimport { JacsAgent } from '@hai.ai/jacs'; // Create and load agent\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create a document\nconst documentJson = JSON.stringify({ title: \"My First Document\", content: \"Hello from Node.js!\"\n}); const signedDoc = agent.createDocument(documentJson);\nconsole.log('Document created:', signedDoc); // Verify the document\nconst isValid = agent.verifyDocument(signedDoc);\nconsole.log('Document valid:', isValid); console.log('JACS agent ready!');","breadcrumbs":"Installation » Basic Application","id":"349","title":"Basic Application"},"35":{"body":"Query Agent → Research Agent → Analysis Agent → Reporting Agent Complex analysis tasks are broken down with clear accountability for each step.","breadcrumbs":"What is JACS? » 🔍 Multi-Agent Analysis","id":"35","title":"🔍 Multi-Agent Analysis"},"350":{"body":"","breadcrumbs":"Installation » Common Issues","id":"350","title":"Common Issues"},"351":{"body":"If you get Module not found errors: # Check Node.js version\nnode --version # Should be 16+ # Clear node_modules and reinstall\nrm -rf node_modules package-lock.json\nnpm install","breadcrumbs":"Installation » Module Not Found","id":"351","title":"Module Not Found"},"352":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"352","title":"Permission Errors"},"353":{"body":"If you get binary compatibility errors: # Rebuild native modules\nnpm rebuild # Or reinstall\nnpm uninstall @hai.ai/jacs\nnpm install @hai.ai/jacs","breadcrumbs":"Installation » Binary Compatibility","id":"353","title":"Binary Compatibility"},"354":{"body":"If TypeScript can't find definitions: // tsconfig.json\n{ \"compilerOptions\": { \"moduleResolution\": \"node\", \"esModuleInterop\": true, \"allowSyntheticDefaultImports\": true }\n}","breadcrumbs":"Installation » TypeScript Issues","id":"354","title":"TypeScript Issues"},"355":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support HTTP Server - Create JACS HTTP APIs Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"355","title":"Next Steps"},"356":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Express.js middleware integration MCP server implementation","breadcrumbs":"Installation » Examples","id":"356","title":"Examples"},"357":{"body":"The simplified API (@hai.ai/jacs/simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"357","title":"Simplified API"},"358":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load your agent\nconst agent = jacs.load('./jacs.config.json'); // Sign a message\nconst signed = jacs.signMessage({ action: 'approve', amount: 100 });\nconsole.log(`Document ID: ${signed.documentId}`); // Verify it\nconst result = jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}`);","breadcrumbs":"Simplified API » Quick Start","id":"358","title":"Quick Start"},"359":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"359","title":"When to Use the Simplified API"},"36":{"body":"Feature JACS Traditional APIs General Signing Agent Identity ✅ Built-in ❌ Custom implementation ❌ Not agent-focused Task Management ✅ Native support ❌ Application-specific ❌ Not applicable Multi-Party Agreements ✅ Core feature ❌ Complex to implement ⚠️ Possible but difficult Audit Trails ✅ Automatic ❌ Manual logging ⚠️ Basic signing only Schema Validation ✅ JSON Schema ❌ Custom validation ❌ No structure Versioning ✅ Built-in ❌ Manual versioning ❌ Not supported Cross-Platform ✅ JSON everywhere ⚠️ Protocol dependent ⚠️ Format dependent","breadcrumbs":"What is JACS? » Benefits Over Alternatives","id":"36","title":"Benefits Over Alternatives"},"360":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"360","title":"API Reference"},"361":{"body":"Load an agent from a configuration file. This must be called before any other operations. Parameters: configPath (string, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: AgentInfo object const info = jacs.load('./jacs.config.json');\nconsole.log(`Agent ID: ${info.agentId}`);\nconsole.log(`Config: ${info.configPath}`);","breadcrumbs":"Simplified API » load(configPath?)","id":"361","title":"load(configPath?)"},"362":{"body":"Check if an agent is currently loaded. Returns: boolean if (!jacs.isLoaded()) { jacs.load('./jacs.config.json');\n}","breadcrumbs":"Simplified API » isLoaded()","id":"362","title":"isLoaded()"},"363":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or null if no agent is loaded const info = jacs.getAgentInfo();\nif (info) { console.log(`Agent: ${info.agentId}`);\n}","breadcrumbs":"Simplified API » getAgentInfo()","id":"363","title":"getAgentInfo()"},"364":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Throws: Error if no agent is loaded const result = jacs.verifySelf();\nif (result.valid) { console.log('Agent integrity verified');\n} else { console.log('Errors:', result.errors);\n}","breadcrumbs":"Simplified API » verifySelf()","id":"364","title":"verifySelf()"},"365":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Object, array, string, or any JSON-serializable value Returns: SignedDocument Throws: Error if no agent is loaded // Sign an object\nconst signed = jacs.signMessage({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); console.log(`Document ID: ${signed.documentId}`);\nconsole.log(`Signed by: ${signed.agentId}`);\nconsole.log(`Timestamp: ${signed.timestamp}`);\nconsole.log(`Raw JSON: ${signed.raw}`);","breadcrumbs":"Simplified API » signMessage(data)","id":"365","title":"signMessage(data)"},"366":{"body":"Sign a file with optional content embedding. Parameters: filePath (string): Path to the file to sign embed (boolean, optional): If true, embed file content in the document (default: false) Returns: SignedDocument Throws: Error if file not found or no agent loaded // Reference only (stores hash)\nconst signed = jacs.signFile('contract.pdf', false); // Embed content (creates portable document)\nconst embedded = jacs.signFile('contract.pdf', true);","breadcrumbs":"Simplified API » signFile(filePath, embed?)","id":"366","title":"signFile(filePath, embed?)"},"367":{"body":"Verify a signed document and extract its content. Parameters: signedDocument (string): The JSON string of the signed document Returns: VerificationResult Throws: Error if no agent is loaded const result = jacs.verify(signedJson); if (result.valid) { console.log(`Signed by: ${result.signerId}`); console.log(`Timestamp: ${result.timestamp}`); console.log(`Data: ${JSON.stringify(result.data)}`);\n} else { console.log(`Invalid: ${result.errors.join(', ')}`);\n}","breadcrumbs":"Simplified API » verify(signedDocument)","id":"367","title":"verify(signedDocument)"},"368":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Does not use the global agent. Parameters: signedDocument (string): The signed JACS document JSON options (object, optional): { keyResolution?, dataDirectory?, keyDirectory? } Returns: VerificationResult (same shape as verify()) const result = jacs.verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './keys' });\nconsole.log(result.valid, result.signerId);","breadcrumbs":"Simplified API » verifyStandalone(signedDocument, options?)","id":"368","title":"verifyStandalone(signedDocument, options?)"},"369":{"body":"Run a read-only security audit and health checks. Returns an object with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. Parameters: options (object, optional): { configPath?, recentN? } Returns: Object with risks, health_checks, summary, overall_status, etc. See Security Model — Security Audit for full details and options. const result = jacs.audit();\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`);","breadcrumbs":"Simplified API » audit(options?)","id":"369","title":"audit(options?)"},"37":{"body":"✅ Perfect for: Multi-agent AI systems Task delegation and tracking Audit trail requirements Cross-organization AI collaboration Compliance-critical AI applications Research environments with multiple AI models ⚠️ Consider alternatives for: Simple single-agent systems Real-time streaming data High-frequency micro-transactions Systems where trust is not a concern","breadcrumbs":"What is JACS? » When to Use JACS","id":"37","title":"When to Use JACS"},"370":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use exportAgent() to get the current document, modify it, then pass it here. Parameters: newAgentData (object|string): Complete agent document as JSON string or object Returns: string - The updated and re-signed agent document Throws: Error if no agent loaded or validation fails // Get current agent document\nconst agentDoc = JSON.parse(jacs.exportAgent()); // Modify fields\nagentDoc.jacsAgentType = 'hybrid';\nagentDoc.jacsContacts = [{ contactFirstName: 'Jane', contactLastName: 'Doe' }]; // Update (creates new version, re-signs, re-hashes)\nconst updated = jacs.updateAgent(agentDoc);\nconst newDoc = JSON.parse(updated); console.log(`New version: ${newDoc.jacsVersion}`);\nconsole.log(`Previous: ${newDoc.jacsPreviousVersion}`); Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » updateAgent(newAgentData)","id":"370","title":"updateAgent(newAgentData)"},"371":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without noSave: true). Parameters: documentId (string): The document ID (jacsId) to update newDocumentData (object|string): Updated document as JSON string or object attachments (string[], optional): Array of file paths to attach embed (boolean, optional): If true, embed attachment contents Returns: SignedDocument with the updated document Throws: Error if document not found, no agent loaded, or validation fails // Create a document (must be saved to disk)\nconst original = jacs.signMessage({ status: 'pending', amount: 100 }); // Later, update it\nconst doc = JSON.parse(original.raw);\ndoc.content.status = 'approved'; const updated = jacs.updateDocument(original.documentId, doc);\nconst newDoc = JSON.parse(updated.raw); console.log(`New version: ${newDoc.jacsVersion}`);\nconsole.log(`Previous: ${newDoc.jacsPreviousVersion}`);","breadcrumbs":"Simplified API » updateDocument(documentId, newDocumentData, attachments?, embed?)","id":"371","title":"updateDocument(documentId, newDocumentData, attachments?, embed?)"},"372":{"body":"Export the current agent document for sharing or inspection. Returns: string - The agent JSON document Throws: Error if no agent loaded const agentDoc = jacs.exportAgent();\nconsole.log(agentDoc); // Parse to inspect\nconst agent = JSON.parse(agentDoc);\nconsole.log(`Agent type: ${agent.jacsAgentType}`);","breadcrumbs":"Simplified API » exportAgent()","id":"372","title":"exportAgent()"},"373":{"body":"Register the loaded agent with HAI.ai. Requires a loaded agent and an API key (options.apiKey or HAI_API_KEY). Parameters: options (object, optional): { apiKey?, haiUrl?, preview? } Returns: Promise with agentId, jacsId, dnsVerified, signatures","breadcrumbs":"Simplified API » registerWithHai(options?)","id":"373","title":"registerWithHai(options?)"},"374":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Parameters: domain (string), ttl (number, optional, default 3600) Returns: string","breadcrumbs":"Simplified API » getDnsRecord(domain, ttl?)","id":"374","title":"getDnsRecord(domain, ttl?)"},"375":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: object","breadcrumbs":"Simplified API » getWellKnownJson()","id":"375","title":"getWellKnownJson()"},"376":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: string - PEM-encoded public key Throws: Error if no agent loaded const pem = jacs.getPublicKey();\nconsole.log(pem);\n// -----BEGIN PUBLIC KEY-----\n// ...\n// -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » getPublicKey()","id":"376","title":"getPublicKey()"},"377":{"body":"","breadcrumbs":"Simplified API » Type Definitions","id":"377","title":"Type Definitions"},"378":{"body":"interface AgentInfo { agentId: string; // Agent's UUID name: string; // Agent name from config publicKeyPath: string; // Path to public key file configPath: string; // Path to loaded config\n}","breadcrumbs":"Simplified API » AgentInfo","id":"378","title":"AgentInfo"},"379":{"body":"interface SignedDocument { raw: string; // Full JSON document with signature documentId: string; // Document's UUID (jacsId) agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp\n}","breadcrumbs":"Simplified API » SignedDocument","id":"379","title":"SignedDocument"},"38":{"body":"Ready to dive deeper? Continue with: Core Concepts - Learn about agents, documents, and agreements Quick Start - Get hands-on experience Implementation guides for Rust , Node.js , or Python","breadcrumbs":"What is JACS? » Next Steps","id":"38","title":"Next Steps"},"380":{"body":"interface VerificationResult { valid: boolean; // True if signature verified data?: any; // Extracted document content signerId: string; // Agent who signed timestamp: string; // When it was signed attachments: Attachment[]; // File attachments errors: string[]; // Error messages if invalid\n}","breadcrumbs":"Simplified API » VerificationResult","id":"380","title":"VerificationResult"},"381":{"body":"interface Attachment { filename: string; // Original filename mimeType: string; // MIME type hash: string; // SHA-256 hash embedded: boolean; // True if content is embedded content?: Buffer; // Embedded content (if available)\n}","breadcrumbs":"Simplified API » Attachment","id":"381","title":"Attachment"},"382":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load agent\nconst agent = jacs.load('./jacs.config.json');\nconsole.log(`Loaded agent: ${agent.agentId}`); // Verify agent integrity\nconst selfCheck = jacs.verifySelf();\nif (!selfCheck.valid) { throw new Error('Agent integrity check failed');\n} // Sign a transaction\nconst transaction = { type: 'payment', from: agent.agentId, to: 'recipient-agent-uuid', amount: 250.00, currency: 'USD', memo: 'Q1 Service Payment'\n}; const signed = jacs.signMessage(transaction);\nconsole.log(`Transaction signed: ${signed.documentId}`); // Verify the transaction (simulating recipient)\nconst verification = jacs.verify(signed.raw); if (verification.valid) { console.log(`Payment verified from: ${verification.signerId}`); console.log(`Amount: ${verification.data.amount} ${verification.data.currency}`);\n} else { console.log(`Verification failed: ${verification.errors.join(', ')}`);\n} // Sign a file\nconst contractSigned = jacs.signFile('./contract.pdf', true);\nconsole.log(`Contract signed: ${contractSigned.documentId}`); // Update agent metadata\nconst agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'ai';\nif (!agentDoc.jacsContacts || agentDoc.jacsContacts.length === 0) { agentDoc.jacsContacts = [{ contactFirstName: 'AI', contactLastName: 'Agent' }];\n}\nconst updatedAgent = jacs.updateAgent(agentDoc);\nconsole.log('Agent metadata updated'); // Share public key\nconst publicKey = jacs.getPublicKey();\nconsole.log('Share this public key for verification:');\nconsole.log(publicKey);","breadcrumbs":"Simplified API » Complete Example","id":"382","title":"Complete Example"},"383":{"body":"The simplified API works well with MCP tool implementations: const { Server } = require('@modelcontextprotocol/sdk/server/index.js');\nconst jacs = require('@hai.ai/jacs/simple'); // Load agent once at startup\njacs.load('./jacs.config.json'); // Define a signed tool\nserver.setRequestHandler('tools/call', async (request) => { const { name, arguments: args } = request.params; if (name === 'approve_request') { const signed = jacs.signMessage({ action: 'approve', requestId: args.requestId, approvedBy: jacs.getAgentInfo().agentId }); return { content: [{ type: 'text', text: signed.raw }] }; }\n});","breadcrumbs":"Simplified API » MCP Integration","id":"383","title":"MCP Integration"},"384":{"body":"const jacs = require('@hai.ai/jacs/simple'); try { jacs.load('./missing-config.json');\n} catch (e) { console.error('Config not found:', e.message);\n} try { // Will fail if no agent loaded jacs.signMessage({ data: 'test' });\n} catch (e) { console.error('No agent:', e.message);\n} try { jacs.signFile('/nonexistent/file.pdf');\n} catch (e) { console.error('File not found:', e.message);\n} // Verification doesn't throw - check result.valid\nconst result = jacs.verify('invalid json');\nif (!result.valid) { console.error('Verification errors:', result.errors);\n}","breadcrumbs":"Simplified API » Error Handling","id":"384","title":"Error Handling"},"385":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"385","title":"See Also"},"386":{"body":"This chapter covers fundamental JACS operations in Node.js, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"386","title":"Basic Usage"},"387":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"387","title":"Initializing an Agent"},"388":{"body":"import { JacsAgent } from '@hai.ai/jacs'; // Create a new agent instance\nconst agent = new JacsAgent(); // Load configuration from file\nagent.load('./jacs.config.json');","breadcrumbs":"Basic Usage » Create and Load Agent","id":"388","title":"Create and Load Agent"},"389":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"389","title":"Configuration File"},"39":{"body":"Understanding JACS requires familiarity with several key concepts that work together to create a secure, verifiable communication framework for AI agents.","breadcrumbs":"Core Concepts » Core Concepts","id":"39","title":"Core Concepts"},"390":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"390","title":"Creating Documents"},"391":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create a document from JSON\nconst documentData = { title: \"Project Proposal\", content: \"Quarterly development plan\", budget: 50000\n}; const signedDocument = agent.createDocument(JSON.stringify(documentData));\nconsole.log('Signed document:', signedDocument);","breadcrumbs":"Basic Usage » Basic Document Creation","id":"391","title":"Basic Document Creation"},"392":{"body":"Validate against a custom JSON Schema: const signedDocument = agent.createDocument( JSON.stringify(documentData), './schemas/proposal.schema.json' // custom schema path\n);","breadcrumbs":"Basic Usage » With Custom Schema","id":"392","title":"With Custom Schema"},"393":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema './output/proposal.json' // output filename\n);","breadcrumbs":"Basic Usage » With Output File","id":"393","title":"With Output File"},"394":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename true // noSave = true\n);","breadcrumbs":"Basic Usage » Without Saving","id":"394","title":"Without Saving"},"395":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename false, // save the document './attachments/report.pdf', // attachment path true // embed files\n);","breadcrumbs":"Basic Usage » With Attachments","id":"395","title":"With Attachments"},"396":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"396","title":"Verifying Documents"},"397":{"body":"// Verify a document's signature and hash\nconst isValid = agent.verifyDocument(signedDocumentJson);\nconsole.log('Document valid:', isValid);","breadcrumbs":"Basic Usage » Verify Document Signature","id":"397","title":"Verify Document Signature"},"398":{"body":"// Verify with a custom signature field\nconst isValid = agent.verifySignature( signedDocumentJson, 'jacsSignature' // signature field name\n);","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"398","title":"Verify Specific Signature Field"},"399":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"399","title":"Updating Documents"},"4":{"body":"Performance : Fastest implementation with native performance CLI Tool : Complete command-line interface for agent and document management Library : Full-featured Rust library for embedded applications Observability : Advanced logging and metrics with OpenTelemetry support","breadcrumbs":"Introduction » 🦀 Rust (Core Library + CLI)","id":"4","title":"🦀 Rust (Core Library + CLI)"},"40":{"body":"An Agent is the fundamental entity in JACS - an autonomous participant that can create, sign, and verify documents.","breadcrumbs":"Core Concepts » Agents","id":"40","title":"Agents"},"400":{"body":"// Original document key format: \"id:version\"\nconst documentKey = 'doc-uuid:version-uuid'; // Modified document content\nconst updatedData = { jacsId: 'doc-uuid', jacsVersion: 'version-uuid', title: \"Updated Proposal\", content: \"Revised quarterly plan\", budget: 75000\n}; const updatedDocument = agent.updateDocument( documentKey, JSON.stringify(updatedData)\n); console.log('Updated document:', updatedDocument);","breadcrumbs":"Basic Usage » Update Existing Document","id":"400","title":"Update Existing Document"},"401":{"body":"const updatedDocument = agent.updateDocument( documentKey, JSON.stringify(updatedData), ['./new-report.pdf'], // new attachments true // embed files\n);","breadcrumbs":"Basic Usage » Update with New Attachments","id":"401","title":"Update with New Attachments"},"402":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"402","title":"Signing and Verification"},"403":{"body":"// Sign any string data\nconst signature = agent.signString('Important message to sign');\nconsole.log('Signature:', signature);","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"403","title":"Sign Arbitrary Data"},"404":{"body":"// Verify a signature on string data\nconst isValid = agent.verifyString( 'Important message to sign', // original data signatureBase64, // base64 signature publicKeyBuffer, // public key as Buffer 'ring-Ed25519' // algorithm\n);","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"404","title":"Verify Arbitrary Data"},"405":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"405","title":"Working with Agreements"},"406":{"body":"// Add agreement requiring multiple agent signatures\nconst documentWithAgreement = agent.createAgreement( signedDocumentJson, ['agent1-uuid', 'agent2-uuid'], // required signers 'Do you agree to these terms?', // question 'Q1 2024 service contract', // context 'jacsAgreement' // field name\n);","breadcrumbs":"Basic Usage » Create an Agreement","id":"406","title":"Create an Agreement"},"407":{"body":"// Sign the agreement as the current agent\nconst signedAgreement = agent.signAgreement( documentWithAgreementJson, 'jacsAgreement' // agreement field name\n);","breadcrumbs":"Basic Usage » Sign an Agreement","id":"407","title":"Sign an Agreement"},"408":{"body":"// Check which agents have signed\nconst status = agent.checkAgreement( documentWithAgreementJson, 'jacsAgreement'\n); console.log('Agreement status:', JSON.parse(status));","breadcrumbs":"Basic Usage » Check Agreement Status","id":"408","title":"Check Agreement Status"},"409":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"409","title":"Agent Operations"},"41":{"body":"{ \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsType\": \"agent\", \"name\": \"Content Creation Agent\", \"description\": \"Specialized in creating marketing content\"\n} Key Properties: jacsId : Permanent UUID identifying the agent jacsVersion : UUID that changes with each update Cryptographic Keys : Ed25519, RSA, or post-quantum key pairs Services : Capabilities the agent offers Contacts : How to reach the agent","breadcrumbs":"Core Concepts » Agent Identity","id":"41","title":"Agent Identity"},"410":{"body":"// Verify the loaded agent's signature\nconst isValid = agent.verifyAgent();\nconsole.log('Agent valid:', isValid); // Verify a specific agent file\nconst isValidOther = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Basic Usage » Verify Agent","id":"410","title":"Verify Agent"},"411":{"body":"// Update agent document\nconst updatedAgentJson = agent.updateAgent(JSON.stringify({ jacsId: 'agent-uuid', jacsVersion: 'version-uuid', name: 'Updated Agent Name', description: 'Updated description'\n}));","breadcrumbs":"Basic Usage » Update Agent","id":"411","title":"Update Agent"},"412":{"body":"// Sign another agent's document with registration signature\nconst signedAgentJson = agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"Basic Usage » Sign External Agent","id":"412","title":"Sign External Agent"},"413":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"413","title":"Request/Response Signing"},"414":{"body":"// Sign request parameters as a JACS document\nconst signedRequest = agent.signRequest({ method: 'GET', path: '/api/resource', timestamp: new Date().toISOString(), body: { query: 'data' }\n});","breadcrumbs":"Basic Usage » Sign a Request","id":"414","title":"Sign a Request"},"415":{"body":"// Verify a signed response\nconst result = agent.verifyResponse(signedResponseJson);\nconsole.log('Response valid:', result); // Verify and get signer's agent ID\nconst resultWithId = agent.verifyResponseWithAgentId(signedResponseJson);\nconsole.log('Signer ID:', resultWithId);","breadcrumbs":"Basic Usage » Verify a Response","id":"415","title":"Verify a Response"},"416":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"416","title":"Utility Functions"},"417":{"body":"import { hashString } from '@hai.ai/jacs'; // SHA-256 hash of a string\nconst hash = hashString('data to hash');\nconsole.log('Hash:', hash);","breadcrumbs":"Basic Usage » Hash String","id":"417","title":"Hash String"},"418":{"body":"import { createConfig } from '@hai.ai/jacs'; // Programmatically create a config JSON string\nconst configJson = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // key algorithm undefined, // private key password undefined, // agent id and version 'fs' // default storage\n); console.log('Config:', configJson);","breadcrumbs":"Basic Usage » Create Configuration","id":"418","title":"Create Configuration"},"419":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent(); try { agent.load('./jacs.config.json');\n} catch (error) { console.error('Failed to load agent:', error.message);\n} try { const doc = agent.createDocument(JSON.stringify({ data: 'test' })); console.log('Document created');\n} catch (error) { console.error('Failed to create document:', error.message);\n} try { const isValid = agent.verifyDocument(invalidJson);\n} catch (error) { console.error('Verification failed:', error.message);\n}","breadcrumbs":"Basic Usage » Error Handling","id":"419","title":"Error Handling"},"42":{"body":"Creation : Generate keys and initial agent document Registration : Store public keys for verification Operation : Create and sign documents Updates : Version changes while maintaining identity Verification : Other agents validate signatures","breadcrumbs":"Core Concepts » Agent Lifecycle","id":"42","title":"Agent Lifecycle"},"420":{"body":"import { JacsAgent, hashString } from '@hai.ai/jacs'; async function main() { // Initialize agent const agent = new JacsAgent(); agent.load('./jacs.config.json'); // Create a task document const task = { title: 'Code Review', description: 'Review pull request #123', assignee: 'developer-uuid', deadline: '2024-02-01' }; const signedTask = agent.createDocument(JSON.stringify(task)); console.log('Task created'); // Verify the task if (agent.verifyDocument(signedTask)) { console.log('Task signature valid'); } // Create agreement for task acceptance const taskWithAgreement = agent.createAgreement( signedTask, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ); // Sign the agreement const signedAgreement = agent.signAgreement(taskWithAgreement); console.log('Agreement signed'); // Check agreement status const status = agent.checkAgreement(signedAgreement); console.log('Status:', status); // Hash some data for reference const taskHash = hashString(signedTask); console.log('Task hash:', taskHash);\n} main().catch(console.error);","breadcrumbs":"Basic Usage » Complete Example","id":"420","title":"Complete Example"},"421":{"body":"MCP Integration - Model Context Protocol support HTTP Server - Create HTTP APIs Express Middleware - Express.js integration API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"421","title":"Next Steps"},"422":{"body":"JACS provides native integration with the Model Context Protocol (MCP) , enabling secure agent communication within AI systems. JACS uses a transport proxy pattern that wraps any MCP transport with cryptographic signing and verification.","breadcrumbs":"MCP Integration » Model Context Protocol (MCP) Integration","id":"422","title":"Model Context Protocol (MCP) Integration"},"423":{"body":"Model Context Protocol is a standard for AI models to securely access external tools, data, and services. JACS enhances MCP by adding: Cryptographic verification of all messages Agent identity for all operations Transparent encryption of MCP JSON-RPC traffic Audit trails of all MCP interactions","breadcrumbs":"MCP Integration » What is MCP?","id":"423","title":"What is MCP?"},"424":{"body":"JACS provides a transport proxy that sits between your MCP server/client and the underlying transport (STDIO, SSE, WebSocket). The proxy: Outgoing messages : Signs JSON-RPC messages with the JACS agent's key using signRequest() Incoming messages : Verifies signatures using verifyResponse() and extracts the payload Fallback : If verification fails, passes messages through as plain JSON (graceful degradation)","breadcrumbs":"MCP Integration » How JACS MCP Works","id":"424","title":"How JACS MCP Works"},"425":{"body":"","breadcrumbs":"MCP Integration » Quick Start","id":"425","title":"Quick Start"},"426":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; const JACS_CONFIG_PATH = \"./jacs.config.json\"; async function main() { // Create the base STDIO transport const baseTransport = new StdioServerTransport(); // Wrap with JACS encryption const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG_PATH, \"server\" ); // Create MCP server const server = new McpServer({ name: \"my-jacs-server\", version: \"1.0.0\" }); // Register tools server.tool(\"add\", { a: z.number().describe(\"First number\"), b: z.number().describe(\"Second number\") }, async ({ a, b }) => { return { content: [{ type: \"text\", text: `${a} + ${b} = ${a + b}` }] }; }); // Connect with JACS encryption await server.connect(secureTransport); console.error(\"JACS MCP Server running with encryption enabled\");\n} main();","breadcrumbs":"MCP Integration » Basic MCP Server with JACS","id":"426","title":"Basic MCP Server with JACS"},"427":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const JACS_CONFIG_PATH = \"./jacs.config.json\"; async function main() { // Create base transport to connect to MCP server const baseTransport = new StdioClientTransport({ command: 'node', args: ['my-jacs-server.js'] }); // Wrap with JACS encryption const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG_PATH, \"client\" ); // Create MCP client const client = new Client({ name: \"my-jacs-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); // Connect with JACS encryption await client.connect(secureTransport); // List available tools const tools = await client.listTools(); console.log('Available tools:', tools.tools.map(t => t.name)); // Call a tool (message will be JACS-signed) const result = await client.callTool({ name: \"add\", arguments: { a: 5, b: 3 } }); console.log('Result:', result.content);\n} main();","breadcrumbs":"MCP Integration » MCP Client with JACS","id":"427","title":"MCP Client with JACS"},"428":{"body":"","breadcrumbs":"MCP Integration » API Reference","id":"428","title":"API Reference"},"429":{"body":"The main class that wraps MCP transports with JACS encryption. import { JACSTransportProxy } from '@hai.ai/jacs/mcp'; const proxy = new JACSTransportProxy( transport, // Any MCP transport (Stdio, SSE, WebSocket) role, // \"server\" or \"client\" jacsConfigPath // Path to jacs.config.json\n);","breadcrumbs":"MCP Integration » JACSTransportProxy","id":"429","title":"JACSTransportProxy"},"43":{"body":"When consuming signed documents, you can verify in two ways: With a loaded agent (load(config) first): Call verify(signedDocument). The loaded agent uses its config (trust store, key resolution) to resolve the signer’s public key and verify the signature. Use this when your process already has a JACS config (e.g. it also signs) or when you want to use a specific key directory and resolution order. Without loading an agent (one-off verification): Call verify_standalone(signedDocument, options) (or the language equivalent: verifyStandalone, VerifyStandalone). This verifies the document using only the options you pass (e.g. keyResolution, keyDirectory). No config file or persistent agent state is required. Use this in lightweight services that only need to verify incoming documents.","breadcrumbs":"Core Concepts » Verification: load() vs verify_standalone()","id":"43","title":"Verification: load() vs verify_standalone()"},"430":{"body":"Factory function for creating a transport proxy. import { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const secureTransport = createJACSTransportProxy( baseTransport, // The underlying MCP transport configPath, // Path to jacs.config.json role // \"server\" or \"client\"\n);","breadcrumbs":"MCP Integration » createJACSTransportProxy","id":"430","title":"createJACSTransportProxy"},"431":{"body":"Async factory that waits for JACS to be fully loaded before returning. import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( baseTransport, configPath, role\n);","breadcrumbs":"MCP Integration » createJACSTransportProxyAsync","id":"431","title":"createJACSTransportProxyAsync"},"432":{"body":"","breadcrumbs":"MCP Integration » Transport Options","id":"432","title":"Transport Options"},"433":{"body":"Best for CLI tools and subprocess communication: import { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); Important : When using STDIO transport, all debug logging goes to stderr to keep stdout clean for JSON-RPC messages.","breadcrumbs":"MCP Integration » STDIO Transport","id":"433","title":"STDIO Transport"},"434":{"body":"For web-based MCP servers: import { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport express from 'express'; const app = express(); app.get('/sse', (req, res) => { const baseTransport = new SSEServerTransport('/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\" ); // Connect your MCP server to secureTransport server.connect(secureTransport);\n}); // Handle POST messages with JACS decryption\napp.post('/messages', express.text(), async (req, res) => { await secureTransport.handlePostMessage(req, res, req.body);\n}); app.listen(3000);","breadcrumbs":"MCP Integration » SSE Transport (HTTP)","id":"434","title":"SSE Transport (HTTP)"},"435":{"body":"","breadcrumbs":"MCP Integration » Configuration","id":"435","title":"Configuration"},"436":{"body":"Create a jacs.config.json for your MCP server/client: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"MCP Integration » JACS Config File","id":"436","title":"JACS Config File"},"437":{"body":"Enable debug logging (not recommended for STDIO): export JACS_MCP_DEBUG=true","breadcrumbs":"MCP Integration » Environment Variables","id":"437","title":"Environment Variables"},"438":{"body":"","breadcrumbs":"MCP Integration » How Messages Are Signed","id":"438","title":"How Messages Are Signed"},"439":{"body":"When the MCP SDK sends a message, the proxy intercepts it and: Serializes the JSON-RPC message Calls jacs.signRequest(message) to create a JACS artifact Sends the signed artifact to the transport // Original MCP message\n{ \"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"tools/call\", \"params\": { \"name\": \"add\", \"arguments\": { \"a\": 5, \"b\": 3 } }\n} // Becomes a JACS-signed artifact with jacsId, jacsSignature, etc.","breadcrumbs":"MCP Integration » Outgoing Messages","id":"439","title":"Outgoing Messages"},"44":{"body":"A Document is any JSON object that follows JACS conventions for identity, versioning, and cryptographic integrity.","breadcrumbs":"Core Concepts » Documents","id":"44","title":"Documents"},"440":{"body":"When the transport receives a message, the proxy: Attempts to verify it as a JACS artifact using jacs.verifyResponse() If valid, extracts the original JSON-RPC payload If not valid JACS, parses as plain JSON (fallback mode) Passes the clean message to the MCP SDK","breadcrumbs":"MCP Integration » Incoming Messages","id":"440","title":"Incoming Messages"},"441":{"body":"","breadcrumbs":"MCP Integration » Complete Example","id":"441","title":"Complete Example"},"442":{"body":"#!/usr/bin/env node\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; async function main() { console.error(\"JACS MCP Server starting...\"); // Create transport with JACS encryption const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.server.config.json\", \"server\" ); // Create MCP server const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called with: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"add\", { a: z.number().describe(\"First number\"), b: z.number().describe(\"Second number\") }, async ({ a, b }) => { console.error(`Add called with: ${a}, ${b}`); return { content: [{ type: \"text\", text: `Result: ${a + b}` }] }; }); // Register resources server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: \"JACS-secured MCP Server\", mimeType: \"text/plain\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"MCP Integration » Server (mcp.server.js)","id":"442","title":"Server (mcp.server.js)"},"443":{"body":"#!/usr/bin/env node\nimport { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; async function main() { console.log(\"JACS MCP Client starting...\"); // Connect to the server const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp.server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.client.config.json\", \"client\" ); const client = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await client.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await client.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo tool const echoResult = await client.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo result:\", echoResult.content[0].text); // Call add tool const addResult = await client.callTool({ name: \"add\", arguments: { a: 10, b: 20 } }); console.log(\"Add result:\", addResult.content[0].text); await client.close();\n} main().catch(console.error);","breadcrumbs":"MCP Integration » Client (mcp.client.js)","id":"443","title":"Client (mcp.client.js)"},"444":{"body":"","breadcrumbs":"MCP Integration » Security Considerations","id":"444","title":"Security Considerations"},"445":{"body":"All JACS-signed messages include: jacsId - Unique document identifier jacsVersion - Version tracking jacsSignature - Cryptographic signature jacsHash - Content hash for integrity","breadcrumbs":"MCP Integration » Message Verification","id":"445","title":"Message Verification"},"446":{"body":"If JACS cannot verify an incoming message, it falls back to plain JSON parsing. This allows: Gradual migration to JACS-secured communication Interoperability with non-JACS MCP clients/servers To require JACS verification (no fallback), implement custom validation in your tools.","breadcrumbs":"MCP Integration » Passthrough Mode","id":"446","title":"Passthrough Mode"},"447":{"body":"Each MCP server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file","breadcrumbs":"MCP Integration » Key Management","id":"447","title":"Key Management"},"448":{"body":"","breadcrumbs":"MCP Integration » Debugging","id":"448","title":"Debugging"},"449":{"body":"export JACS_MCP_DEBUG=true This outputs detailed logs about message signing and verification.","breadcrumbs":"MCP Integration » Enable Debug Logging","id":"449","title":"Enable Debug Logging"},"45":{"body":"{ \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsType\": \"task\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"previous-version-uuid\", \"title\": \"Analyze Q4 Sales Data\", \"description\": \"Generate insights from sales data\", \"jacsSha256\": \"hash-of-document-content\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\"] }\n}","breadcrumbs":"Core Concepts » Document Structure","id":"45","title":"Document Structure"},"450":{"body":"For STDIO transports, debug logs go to stderr to prevent contaminating the JSON-RPC stream on stdout.","breadcrumbs":"MCP Integration » STDIO Debug Note","id":"450","title":"STDIO Debug Note"},"451":{"body":"\"JACS not operational\" : Check that your config file path is correct and the agent is properly initialized. Verification failures : Ensure both server and client are using compatible JACS versions and valid keys. Empty responses : The proxy removes null values from messages to prevent MCP schema validation issues.","breadcrumbs":"MCP Integration » Common Issues","id":"451","title":"Common Issues"},"452":{"body":"HTTP Server - Create HTTP APIs with JACS Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"MCP Integration » Next Steps","id":"452","title":"Next Steps"},"453":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing. This enables secure communication between JACS agents over HTTP.","breadcrumbs":"HTTP Server » HTTP Server","id":"453","title":"HTTP Server"},"454":{"body":"JACS HTTP integration provides: Request signing : Sign outgoing HTTP requests with your agent's key Request verification : Verify incoming requests were signed by a valid agent Response signing : Automatically sign responses before sending Response verification : Verify server responses on the client side Framework middleware : Ready-to-use middleware for Express and Koa","breadcrumbs":"HTTP Server » Overview","id":"454","title":"Overview"},"455":{"body":"","breadcrumbs":"HTTP Server » Core Concepts","id":"455","title":"Core Concepts"},"456":{"body":"Client Server | | |-- signRequest(payload) -----> | | |-- verifyResponse() --> payload | |-- process payload | |-- signResponse(result) |<-- verifyResponse(result) ---| | All messages are cryptographically signed, ensuring: Message integrity (no tampering) Agent identity (verified sender) Non-repudiation (proof of origin)","breadcrumbs":"HTTP Server » Request/Response Flow","id":"456","title":"Request/Response Flow"},"457":{"body":"","breadcrumbs":"HTTP Server » HTTP Client","id":"457","title":"HTTP Client"},"458":{"body":"import jacs from '@hai.ai/jacs';\nimport http from 'http'; async function main() { // Load JACS agent await jacs.load('./jacs.config.json'); // Prepare payload const payload = { message: \"Hello, secure server!\", data: { id: 123, value: \"some data\" }, timestamp: new Date().toISOString() }; // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await sendRequest(signedRequest, 'localhost', 3000, '/api/echo'); // Verify the response const verifiedResponse = await jacs.verifyResponse(response); console.log('Verified payload:', verifiedResponse.payload);\n} function sendRequest(body, host, port, path) { return new Promise((resolve, reject) => { const options = { hostname: host, port: port, path: path, method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Length': Buffer.byteLength(body), }, }; const req = http.request(options, (res) => { let data = ''; res.on('data', chunk => data += chunk); res.on('end', () => { if (res.statusCode >= 200 && res.statusCode < 300) { resolve(data); } else { reject(new Error(`HTTP ${res.statusCode}: ${data}`)); } }); }); req.on('error', reject); req.write(body); req.end(); });\n} main();","breadcrumbs":"HTTP Server » Basic Client Usage","id":"458","title":"Basic Client Usage"},"459":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { await jacs.load('./jacs.config.json'); // Sign the payload const signedRequest = await jacs.signRequest(payload); // Send request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"HTTP Server » Using Fetch","id":"459","title":"Using Fetch"},"46":{"body":"Field Purpose Example $schema JSON Schema reference URL to schema jacsId Permanent document identifier UUID v4 jacsVersion Version identifier (changes on update) UUID v4 jacsType Document type \"agent\", \"task\", \"message\" jacsVersionDate When this version was created RFC 3339 timestamp jacsOriginalVersion Original version UUID UUID v4 jacsOriginalDate Original creation timestamp RFC 3339 timestamp jacsLevel Data level/intent \"raw\", \"config\", \"artifact\", \"derived\" jacsPreviousVersion Previous version UUID (optional) UUID v4 or null jacsSha256 Hash of document content SHA-256 hex string jacsSignature Cryptographic signature Signature object","breadcrumbs":"Core Concepts » Required JACS Fields","id":"46","title":"Required JACS Fields"},"460":{"body":"","breadcrumbs":"HTTP Server » Express Server","id":"460","title":"Express Server"},"461":{"body":"JACS provides JACSExpressMiddleware that automatically: Verifies incoming JACS requests Attaches the verified payload to req.jacsPayload Signs outgoing responses when you call res.send() with an object import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // IMPORTANT: Use express.text() BEFORE JACS middleware\n// This ensures req.body is a string for JACS verification\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware to API routes\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.post('/api/echo', (req, res) => { // Access verified payload from req.jacsPayload const payload = req.jacsPayload; if (!payload) { return res.status(400).send('JACS payload missing'); } console.log('Received verified payload:', payload); // Send response object - middleware will sign it automatically res.send({ echo: \"Server says hello!\", received: payload, timestamp: new Date().toISOString() });\n}); app.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Express Middleware","id":"461","title":"Using Express Middleware"},"462":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"HTTP Server » Middleware Configuration","id":"462","title":"Middleware Configuration"},"463":{"body":"For more control, you can handle signing manually: import express from 'express';\nimport jacs from '@hai.ai/jacs'; const app = express(); // Initialize JACS once at startup\nawait jacs.load('./jacs.config.json'); app.use(express.text({ type: '*/*' })); app.post('/api/process', async (req, res) => { try { // Manually verify incoming request const verified = await jacs.verifyResponse(req.body); const payload = verified.payload; // Process the request const result = { success: true, data: processData(payload), timestamp: new Date().toISOString() }; // Manually sign the response const signedResponse = await jacs.signResponse(result); res.type('text/plain').send(signedResponse); } catch (error) { console.error('JACS verification failed:', error); res.status(400).send('Invalid JACS request'); }\n});","breadcrumbs":"HTTP Server » Manual Request/Response Handling","id":"463","title":"Manual Request/Response Handling"},"464":{"body":"","breadcrumbs":"HTTP Server » Koa Server","id":"464","title":"Koa Server"},"465":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa();\nconst PORT = 3000; // Apply JACS Koa middleware\n// Handles raw body reading, verification, and response signing\napp.use(JACSKoaMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.use(async (ctx) => { if (ctx.path === '/api/echo' && ctx.method === 'POST') { // Access verified payload from ctx.state.jacsPayload or ctx.jacsPayload const payload = ctx.state.jacsPayload || ctx.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = 'JACS payload missing'; return; } console.log('Received verified payload:', payload); // Set response object - middleware will sign it automatically ctx.body = { echo: \"Koa server says hello!\", received: payload, timestamp: new Date().toISOString() }; } else { ctx.status = 404; ctx.body = 'Not Found. Try POST to /api/echo'; }\n}); app.listen(PORT, () => { console.log(`JACS Koa server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Koa Middleware","id":"465","title":"Using Koa Middleware"},"466":{"body":"","breadcrumbs":"HTTP Server » API Reference","id":"466","title":"API Reference"},"467":{"body":"Sign an object as a JACS request. const signedRequest = await jacs.signRequest({ method: 'getData', params: { id: 123 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signRequest(payload)","id":"467","title":"jacs.signRequest(payload)"},"468":{"body":"Verify a JACS-signed response and extract the payload. const result = await jacs.verifyResponse(jacsResponseString);\n// Returns: { payload: {...}, jacsId: '...', ... } const payload = result.payload;","breadcrumbs":"HTTP Server » jacs.verifyResponse(responseString)","id":"468","title":"jacs.verifyResponse(responseString)"},"469":{"body":"Sign an object as a JACS response. const signedResponse = await jacs.signResponse({ success: true, data: { result: 42 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signResponse(payload)","id":"469","title":"jacs.signResponse(payload)"},"47":{"body":"Agent Documents Define agent identity and capabilities Contain service definitions and contact information Self-signed by the agent Task Documents Describe work to be performed Include success/failure criteria Can be delegated between agents Message Documents General communication between agents Can include attachments and metadata Support threaded conversations Agreement Documents Multi-party consent mechanisms Track required and actual signatures Enforce completion before proceeding","breadcrumbs":"Core Concepts » Document Types","id":"47","title":"Document Types"},"470":{"body":"Express middleware for JACS request/response handling. import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use(JACSExpressMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads req.body as a JACS string Verifies the signature Attaches payload to req.jacsPayload On failure, sends 400 response Response Processing: Intercepts res.send() calls If body is an object, signs it as JACS Sends signed string to client","breadcrumbs":"HTTP Server » JACSExpressMiddleware(options)","id":"470","title":"JACSExpressMiddleware(options)"},"471":{"body":"Koa middleware for JACS request/response handling. import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads raw request body Verifies JACS signature Attaches payload to ctx.state.jacsPayload and ctx.jacsPayload Response Processing: Signs ctx.body if it's an object Converts to JACS string before sending","breadcrumbs":"HTTP Server » JACSKoaMiddleware(options)","id":"471","title":"JACSKoaMiddleware(options)"},"472":{"body":"","breadcrumbs":"HTTP Server » Complete Example","id":"472","title":"Complete Example"},"473":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // JACS middleware for /api routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Echo endpoint\napp.post('/api/echo', (req, res) => { const payload = req.jacsPayload; res.send({ echo: payload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = a / b; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); app.listen(3000, () => console.log('Server running on port 3000'));","breadcrumbs":"HTTP Server » Server (server.js)","id":"473","title":"Server (server.js)"},"474":{"body":"import jacs from '@hai.ai/jacs'; async function main() { await jacs.load('./jacs.client.config.json'); // Call echo endpoint const echoResult = await callApi('/api/echo', { message: 'Hello, server!' }); console.log('Echo result:', echoResult); // Call calculate endpoint const calcResult = await callApi('/api/calculate', { operation: 'multiply', a: 7, b: 6 }); console.log('Calculate result:', calcResult);\n} async function callApi(path, payload) { const signedRequest = await jacs.signRequest(payload); const response = await fetch(`http://localhost:3000${path}`, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} main().catch(console.error);","breadcrumbs":"HTTP Server » Client (client.js)","id":"474","title":"Client (client.js)"},"475":{"body":"","breadcrumbs":"HTTP Server » Security Considerations","id":"475","title":"Security Considerations"},"476":{"body":"JACS requests should use text/plain content type since they are signed JSON strings, not raw JSON.","breadcrumbs":"HTTP Server » Content-Type","id":"476","title":"Content-Type"},"477":{"body":"Always handle verification failures gracefully: try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"HTTP Server » Error Handling","id":"477","title":"Error Handling"},"478":{"body":"Each server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file pointing to the keys","breadcrumbs":"HTTP Server » Agent Keys","id":"478","title":"Agent Keys"},"479":{"body":"For Express, ensure express.text() comes before JACSExpressMiddleware: // Correct order\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong - JACS middleware won't receive string body\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"HTTP Server » Middleware Order","id":"479","title":"Middleware Order"},"48":{"body":"Tasks represent work that can be delegated, tracked, and verified between agents.","breadcrumbs":"Core Concepts » Tasks","id":"48","title":"Tasks"},"480":{"body":"Express Middleware - More Express integration patterns MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"HTTP Server » Next Steps","id":"480","title":"Next Steps"},"481":{"body":"This chapter covers advanced Express.js integration patterns with JACS, building on the basics covered in HTTP Server .","breadcrumbs":"Express Middleware » Express Middleware","id":"481","title":"Express Middleware"},"482":{"body":"JACS provides JACSExpressMiddleware for seamless integration with Express.js applications: Automatic request verification Automatic response signing Access to verified payloads via req.jacsPayload Error handling for invalid requests","breadcrumbs":"Express Middleware » Overview","id":"482","title":"Overview"},"483":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // Required: Parse body as text before JACS middleware\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Routes automatically get verified payloads and signed responses\napp.post('/api/data', (req, res) => { const payload = req.jacsPayload; res.send({ received: payload, status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » Quick Start","id":"483","title":"Quick Start"},"484":{"body":"","breadcrumbs":"Express Middleware » Middleware Configuration","id":"484","title":"Middleware Configuration"},"485":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"Express Middleware » Basic Configuration","id":"485","title":"Basic Configuration"},"486":{"body":"Apply JACS to specific routes: const app = express(); // Non-JACS routes (public endpoints)\napp.get('/health', (req, res) => res.send({ status: 'ok' }));\napp.get('/public/info', (req, res) => res.send({ name: 'My API' })); // JACS-protected routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/secure', (req, res) => { // Only JACS-signed requests reach here res.send({ data: 'secure response' });\n});","breadcrumbs":"Express Middleware » Per-Route Configuration","id":"486","title":"Per-Route Configuration"},"487":{"body":"Use different JACS agents for different routes: // Admin routes with admin agent\napp.use('/admin', express.text({ type: '*/*' }));\napp.use('/admin', JACSExpressMiddleware({ configPath: './jacs.admin.config.json'\n})); // User routes with user agent\napp.use('/user', express.text({ type: '*/*' }));\napp.use('/user', JACSExpressMiddleware({ configPath: './jacs.user.config.json'\n}));","breadcrumbs":"Express Middleware » Multiple JACS Agents","id":"487","title":"Multiple JACS Agents"},"488":{"body":"","breadcrumbs":"Express Middleware » Request Handling","id":"488","title":"Request Handling"},"489":{"body":"The middleware attaches the verified payload to req.jacsPayload: app.post('/api/process', (req, res) => { // req.jacsPayload contains the verified, decrypted payload const { action, data, timestamp } = req.jacsPayload; console.log('Action:', action); console.log('Data:', data); console.log('Request timestamp:', timestamp); res.send({ processed: true });\n});","breadcrumbs":"Express Middleware » Accessing Verified Payload","id":"489","title":"Accessing Verified Payload"},"49":{"body":"{ \"jacsType\": \"task\", \"title\": \"Generate Marketing Copy\", \"description\": \"Create compelling copy for product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Research competitors\", \"description\": \"Analyze competitor messaging\", \"success\": \"Complete competitive analysis report\", \"failure\": \"Unable to access competitor data\" } ], \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"signature\": \"customer-signature\" }\n}","breadcrumbs":"Core Concepts » Task Structure","id":"49","title":"Task Structure"},"490":{"body":"If JACS verification fails, req.jacsPayload will be undefined: app.post('/api/secure', (req, res) => { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request' }); } // Process verified payload res.send({ success: true });\n});","breadcrumbs":"Express Middleware » Handling Missing Payload","id":"490","title":"Handling Missing Payload"},"491":{"body":"Create a reusable validation middleware: function requireJacsPayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'JACS verification failed', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Apply to routes\napp.post('/api/secure', requireJacsPayload, (req, res) => { // Guaranteed to have valid req.jacsPayload res.send({ data: req.jacsPayload });\n});","breadcrumbs":"Express Middleware » Validation Helper","id":"491","title":"Validation Helper"},"492":{"body":"","breadcrumbs":"Express Middleware » Response Handling","id":"492","title":"Response Handling"},"493":{"body":"When you call res.send() with an object, the middleware automatically signs it: app.post('/api/data', (req, res) => { // This object will be automatically JACS-signed res.send({ result: 'success', data: { value: 42 }, timestamp: new Date().toISOString() });\n});","breadcrumbs":"Express Middleware » Automatic Signing","id":"493","title":"Automatic Signing"},"494":{"body":"To bypass automatic signing, send a string directly: app.post('/api/raw', (req, res) => { // String responses are not signed res.type('text/plain').send('Raw text response');\n});","breadcrumbs":"Express Middleware » Sending Unsigned Responses","id":"494","title":"Sending Unsigned Responses"},"495":{"body":"app.post('/api/custom', (req, res) => { const response = { success: true, payload: { action: 'completed', result: processRequest(req.jacsPayload) }, metadata: { serverTime: new Date().toISOString(), requestId: generateRequestId() } }; // Automatically signed before sending res.send(response);\n});","breadcrumbs":"Express Middleware » Custom Response Format","id":"495","title":"Custom Response Format"},"496":{"body":"","breadcrumbs":"Express Middleware » Error Handling","id":"496","title":"Error Handling"},"497":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/process', (req, res, next) => { try { if (!req.jacsPayload) { throw new Error('Missing JACS payload'); } const result = processData(req.jacsPayload); res.send({ result }); } catch (error) { next(error); }\n}); // Global error handler\napp.use((error, req, res, next) => { console.error('Error:', error.message); res.status(500).send({ error: 'Internal server error', message: error.message });\n});","breadcrumbs":"Express Middleware » Global Error Handler","id":"497","title":"Global Error Handler"},"498":{"body":"class JacsValidationError extends Error { constructor(message) { super(message); this.name = 'JacsValidationError'; this.statusCode = 400; }\n} app.post('/api/validate', (req, res, next) => { try { if (!req.jacsPayload) { throw new JacsValidationError('Invalid JACS request'); } const { requiredField } = req.jacsPayload; if (!requiredField) { throw new JacsValidationError('Missing required field'); } res.send({ valid: true }); } catch (error) { next(error); }\n}); // Error handler\napp.use((error, req, res, next) => { const statusCode = error.statusCode || 500; res.status(statusCode).send({ error: error.name, message: error.message });\n});","breadcrumbs":"Express Middleware » Typed Errors","id":"498","title":"Typed Errors"},"499":{"body":"","breadcrumbs":"Express Middleware » Advanced Patterns","id":"499","title":"Advanced Patterns"},"5":{"body":"Web Integration : Perfect for web servers and Express.js applications MCP Support : Native Model Context Protocol integration HTTP Server : Built-in HTTP server capabilities NPM Package : Easy installation and integration","breadcrumbs":"Introduction » 🟢 Node.js (@hai.ai/jacs)","id":"5","title":"🟢 Node.js (@hai.ai/jacs)"},"50":{"body":"Creation : Customer agent creates task with requirements Delegation : Task sent to service provider agent Agreement : Provider signs agreement to accept task Execution : Provider performs the work Completion : Provider creates completion document Verification : Customer verifies and accepts results","breadcrumbs":"Core Concepts » Task Lifecycle","id":"50","title":"Task Lifecycle"},"500":{"body":"import { Router } from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Create a JACS-enabled router\nfunction createJacsRouter(configPath) { const router = Router(); router.use(express.text({ type: '*/*' })); router.use(JACSExpressMiddleware({ configPath })); return router;\n} // Usage\nconst apiRouter = createJacsRouter('./jacs.config.json'); apiRouter.post('/users', (req, res) => { res.send({ users: getUserList() });\n}); apiRouter.post('/orders', (req, res) => { res.send({ orders: getOrders(req.jacsPayload.userId) });\n}); app.use('/api', apiRouter);","breadcrumbs":"Express Middleware » Router-Level Middleware","id":"500","title":"Router-Level Middleware"},"501":{"body":"Combine JACS with other middleware: import rateLimit from 'express-rate-limit';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const limiter = rateLimit({ windowMs: 15 * 60 * 1000, // 15 minutes max: 100 // limit each IP to 100 requests per windowMs\n}); // Apply multiple middleware in order\napp.use('/api', limiter, // Rate limiting first express.text({ type: '*/*' }), // Parse body as text JACSExpressMiddleware({ configPath: './jacs.config.json' }) // JACS verification\n);","breadcrumbs":"Express Middleware » Middleware Composition","id":"501","title":"Middleware Composition"},"502":{"body":"Log JACS requests for auditing: function jacsLogger(req, res, next) { if (req.jacsPayload) { console.log(JSON.stringify({ timestamp: new Date().toISOString(), method: req.method, path: req.path, jacsPayload: req.jacsPayload, ip: req.ip })); } next();\n} app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' }));\napp.use('/api', jacsLogger); // After JACS middleware","breadcrumbs":"Express Middleware » Logging Middleware","id":"502","title":"Logging Middleware"},"503":{"body":"Combine JACS with user authentication: // JACS middleware first\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); // Then authentication check\nfunction requireAuth(req, res, next) { const payload = req.jacsPayload; if (!payload || !payload.userId) { return res.status(401).send({ error: 'Authentication required' }); } // Attach user to request req.user = { id: payload.userId }; next();\n} app.post('/api/protected', requireAuth, (req, res) => { res.send({ message: `Hello, user ${req.user.id}`, data: req.jacsPayload.data });\n});","breadcrumbs":"Express Middleware » Authentication Integration","id":"503","title":"Authentication Integration"},"504":{"body":"","breadcrumbs":"Express Middleware » Testing","id":"504","title":"Testing"},"505":{"body":"import request from 'supertest';\nimport jacs from '@hai.ai/jacs'; describe('JACS API', () => { beforeAll(async () => { await jacs.load('./jacs.test.config.json'); }); it('should accept valid JACS requests', async () => { const payload = { action: 'test', data: 'hello' }; const signedRequest = await jacs.signRequest(payload); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); // Verify response is JACS-signed const verified = await jacs.verifyResponse(response.text); expect(verified.payload.echo).toEqual(payload); }); it('should reject unsigned requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Express Middleware » Unit Testing Routes","id":"505","title":"Unit Testing Routes"},"506":{"body":"// test/mocks/jacs.js\nexport const mockJacs = { payload: null, setPayload(p) { this.payload = p; }, reset() { this.payload = null; }\n}; // Mock middleware for testing\nexport function mockJacsMiddleware(req, res, next) { req.jacsPayload = mockJacs.payload; next();\n} // In tests\ndescribe('API without real JACS', () => { beforeEach(() => { mockJacs.setPayload({ userId: 'test-user', action: 'test' }); }); afterEach(() => { mockJacs.reset(); }); it('processes payload correctly', async () => { const response = await request(testApp) .post('/api/process') .send('test'); expect(response.status).toBe(200); });\n});","breadcrumbs":"Express Middleware » Mock JACS for Testing","id":"506","title":"Mock JACS for Testing"},"507":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // Health check (no JACS)\napp.get('/health', (req, res) => res.send({ status: 'healthy' })); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } next();\n} // Routes\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload });\n}); app.post('/api/users', requirePayload, (req, res) => { const { name, email } = req.jacsPayload; if (!name || !email) { return res.status(400).send({ error: 'Name and email required' }); } const user = createUser({ name, email }); res.send({ user, created: true });\n}); app.post('/api/documents', requirePayload, async (req, res) => { const { title, content } = req.jacsPayload; const document = await createDocument({ title, content }); res.send({ document });\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); // Start server\nconst PORT = process.env.PORT || 3000;\napp.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"Express Middleware » Complete Application Example","id":"507","title":"Complete Application Example"},"508":{"body":"","breadcrumbs":"Express Middleware » Troubleshooting","id":"508","title":"Troubleshooting"},"509":{"body":"Problem : req.jacsPayload is always undefined Solution : Ensure express.text() comes before JACS middleware: // Correct\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"Express Middleware » Body Parsing Issues","id":"509","title":"Body Parsing Issues"},"51":{"body":"Actions : Individual steps within a task id : Unique identifier within the task name : Human-readable action name description : Detailed requirements success : Definition of successful completion failure : What constitutes failure Services : Required capabilities type : Service category requirements : Specific needs constraints : Limitations or restrictions","breadcrumbs":"Core Concepts » Task Components","id":"51","title":"Task Components"},"510":{"body":"Problem : Using express.json() interferes with JACS Solution : Use route-specific middleware: // JSON for non-JACS routes\napp.use('/public', express.json()); // Text for JACS routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));","breadcrumbs":"Express Middleware » JSON Body Parser Conflict","id":"510","title":"JSON Body Parser Conflict"},"511":{"body":"Problem : Responses are plain JSON, not JACS-signed Solution : Ensure you're sending an object, not a string: // Will be signed\nres.send({ data: 'value' }); // Will NOT be signed\nres.send(JSON.stringify({ data: 'value' }));","breadcrumbs":"Express Middleware » Response Not Signed","id":"511","title":"Response Not Signed"},"512":{"body":"HTTP Server - Core HTTP integration concepts MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"Express Middleware » Next Steps","id":"512","title":"Next Steps"},"513":{"body":"Complete API documentation for the @hai.ai/jacs Node.js package.","breadcrumbs":"API Reference » API Reference","id":"513","title":"API Reference"},"514":{"body":"npm install @hai.ai/jacs","breadcrumbs":"API Reference » Installation","id":"514","title":"Installation"},"515":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';","breadcrumbs":"API Reference » Core Module","id":"515","title":"Core Module"},"516":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"516","title":"JacsAgent Class"},"517":{"body":"new JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"API Reference » Constructor","id":"517","title":"Constructor"},"518":{"body":"Load and initialize the agent from a configuration file. Parameters: configPath (string): Path to the JACS configuration file Returns: string - The loaded agent's JSON Example: const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconsole.log('Agent loaded:', JSON.parse(agentJson).jacsId);","breadcrumbs":"API Reference » agent.load(configPath)","id":"518","title":"agent.load(configPath)"},"519":{"body":"Create and sign a new JACS document. Parameters: documentString (string): JSON string of the document content customSchema (string, optional): Path to a custom JSON Schema for validation outputFilename (string, optional): Filename to save the document noSave (boolean, optional): If true, don't save to storage (default: false) attachments (string, optional): Path to file attachments embed (boolean, optional): If true, embed attachments in the document Returns: string - The signed document as a JSON string Example: // Basic document creation\nconst doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Hello, World!'\n})); // With custom schema\nconst validatedDoc = agent.createDocument( JSON.stringify({ title: 'Validated', amount: 100 }), './schemas/invoice.schema.json'\n); // Without saving\nconst tempDoc = agent.createDocument( JSON.stringify({ data: 'temporary' }), null, null, true // noSave = true\n); // With attachments\nconst docWithFile = agent.createDocument( JSON.stringify({ report: 'Monthly Report' }), null, null, false, './report.pdf', true // embed = true\n);","breadcrumbs":"API Reference » agent.createDocument(documentString, customSchema?, outputFilename?, noSave?, attachments?, embed?)","id":"519","title":"agent.createDocument(documentString, customSchema?, outputFilename?, noSave?, attachments?, embed?)"},"52":{"body":"Agreements enable multi-party consent and coordination between agents.","breadcrumbs":"Core Concepts » Agreements","id":"52","title":"Agreements"},"520":{"body":"Verify a document's signature and hash integrity. Parameters: documentString (string): The signed document JSON string Returns: boolean - True if the document is valid Example: const isValid = agent.verifyDocument(signedDocumentJson);\nif (isValid) { console.log('Document signature verified');\n} else { console.log('Document verification failed');\n}","breadcrumbs":"API Reference » agent.verifyDocument(documentString)","id":"520","title":"agent.verifyDocument(documentString)"},"521":{"body":"Verify a document's signature with an optional custom signature field. Parameters: documentString (string): The signed document JSON string signatureField (string, optional): Name of the signature field (default: 'jacsSignature') Returns: boolean - True if the signature is valid Example: // Verify default signature field\nconst isValid = agent.verifySignature(docJson); // Verify custom signature field\nconst isValidCustom = agent.verifySignature(docJson, 'customSignature');","breadcrumbs":"API Reference » agent.verifySignature(documentString, signatureField?)","id":"521","title":"agent.verifySignature(documentString, signatureField?)"},"522":{"body":"Update an existing document, creating a new version. Parameters: documentKey (string): The document key in format \"id:version\" newDocumentString (string): The modified document as JSON string attachments (Array, optional): Array of attachment file paths embed (boolean, optional): If true, embed attachments Returns: string - The updated document as a JSON string Example: // Parse existing document to get key\nconst doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; // Update the document\nconst updatedDoc = agent.updateDocument( documentKey, JSON.stringify({ ...doc, title: 'Updated Title', content: 'Modified content' })\n);","breadcrumbs":"API Reference » agent.updateDocument(documentKey, newDocumentString, attachments?, embed?)","id":"522","title":"agent.updateDocument(documentKey, newDocumentString, attachments?, embed?)"},"523":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: documentString (string): The document JSON string agentIds (Array): Array of agent IDs required to sign question (string, optional): The agreement question context (string, optional): Additional context for the agreement agreementFieldName (string, optional): Field name for the agreement (default: 'jacsAgreement') Returns: string - The document with agreement as a JSON string Example: const docWithAgreement = agent.createAgreement( signedDocumentJson, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], 'Do you agree to these terms?', 'Q1 2024 Service Agreement', 'jacsAgreement'\n);","breadcrumbs":"API Reference » agent.createAgreement(documentString, agentIds, question?, context?, agreementFieldName?)","id":"523","title":"agent.createAgreement(documentString, agentIds, question?, context?, agreementFieldName?)"},"524":{"body":"Sign an agreement as the current agent. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name of the agreement (default: 'jacsAgreement') Returns: string - The document with this agent's signature added Example: const signedAgreement = agent.signAgreement( docWithAgreementJson, 'jacsAgreement'\n);","breadcrumbs":"API Reference » agent.signAgreement(documentString, agreementFieldName?)","id":"524","title":"agent.signAgreement(documentString, agreementFieldName?)"},"525":{"body":"Check the status of an agreement (which agents have signed). Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name of the agreement (default: 'jacsAgreement') Returns: string - JSON string with agreement status Example: const statusJson = agent.checkAgreement(signedAgreementJson);\nconst status = JSON.parse(statusJson); console.log('Required signers:', status.required);\nconsole.log('Signatures received:', status.signed);\nconsole.log('Complete:', status.complete);","breadcrumbs":"API Reference » agent.checkAgreement(documentString, agreementFieldName?)","id":"525","title":"agent.checkAgreement(documentString, agreementFieldName?)"},"526":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (string): The data to sign Returns: string - Base64-encoded signature Example: const signature = agent.signString('Important message');\nconsole.log('Signature:', signature);","breadcrumbs":"API Reference » agent.signString(data)","id":"526","title":"agent.signString(data)"},"527":{"body":"Verify a signature on arbitrary string data. Parameters: data (string): The original data signatureBase64 (string): The base64-encoded signature publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm (e.g., 'ring-Ed25519') Returns: boolean - True if the signature is valid Example: const isValid = agent.verifyString( 'Important message', signatureBase64, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"API Reference » agent.verifyString(data, signatureBase64, publicKey, publicKeyEncType)","id":"527","title":"agent.verifyString(data, signatureBase64, publicKey, publicKeyEncType)"},"528":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload object Returns: string - JACS-signed request as a JSON string Example: const signedRequest = agent.signRequest({ method: 'GET', path: '/api/data', timestamp: new Date().toISOString(), body: { query: 'value' }\n});","breadcrumbs":"API Reference » agent.signRequest(params)","id":"528","title":"agent.signRequest(params)"},"529":{"body":"Verify a JACS-signed response and extract the payload. Parameters: documentString (string): The JACS-signed response Returns: object - Object containing the verified payload Example: const result = agent.verifyResponse(jacsResponseString);\nconst payload = result.payload;\nconsole.log('Verified payload:', payload);","breadcrumbs":"API Reference » agent.verifyResponse(documentString)","id":"529","title":"agent.verifyResponse(documentString)"},"53":{"body":"{ \"jacsType\": \"agreement\", \"title\": \"Task Acceptance Agreement\", \"question\": \"Do you agree to complete the marketing copy task?\", \"context\": \"Task ID: abc123, Deadline: 2024-01-20\", \"agents\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"jacsAgreement\": { \"agent-1-uuid\": { \"agentID\": \"agent-1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\" }, \"agent-2-uuid\": { \"agentID\": \"agent-2-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T11:15:00Z\" } // agent-3-uuid has not signed yet }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Core Concepts » Agreement Structure","id":"53","title":"Agreement Structure"},"530":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: documentString (string): The JACS-signed response Returns: object - Object with payload and agent ID Example: const result = agent.verifyResponseWithAgentId(jacsResponseString);\nconsole.log('Payload:', result.payload);\nconsole.log('Signed by agent:', result.agentId);","breadcrumbs":"API Reference » agent.verifyResponseWithAgentId(documentString)","id":"530","title":"agent.verifyResponseWithAgentId(documentString)"},"531":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agentFile (string, optional): Path to an agent file to verify Returns: boolean - True if the agent is valid Example: // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"API Reference » agent.verifyAgent(agentFile?)","id":"531","title":"agent.verifyAgent(agentFile?)"},"532":{"body":"Update the agent document with new data. Parameters: newAgentString (string): The modified agent document as JSON string Returns: string - The updated agent document Example: const currentAgent = JSON.parse(agent.load('./jacs.config.json'));\nconst updatedAgent = agent.updateAgent(JSON.stringify({ ...currentAgent, description: 'Updated description'\n}));","breadcrumbs":"API Reference » agent.updateAgent(newAgentString)","id":"532","title":"agent.updateAgent(newAgentString)"},"533":{"body":"Sign another agent's document with a registration signature. Parameters: agentString (string): The agent document to sign publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm Returns: string - The signed agent document Example: const signedAgent = agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"API Reference » agent.signAgent(agentString, publicKey, publicKeyEncType)","id":"533","title":"agent.signAgent(agentString, publicKey, publicKeyEncType)"},"534":{"body":"","breadcrumbs":"API Reference » Utility Functions","id":"534","title":"Utility Functions"},"535":{"body":"Hash a string using SHA-256. Parameters: data (string): The string to hash Returns: string - Hexadecimal hash string Example: import { hashString } from '@hai.ai/jacs'; const hash = hashString('data to hash');\nconsole.log('SHA-256:', hash);","breadcrumbs":"API Reference » hashString(data)","id":"535","title":"hashString(data)"},"536":{"body":"Create a JACS configuration JSON string programmatically. Parameters: jacsUseSecurity (string, optional): Enable security features jacsDataDirectory (string, optional): Directory for data storage jacsKeyDirectory (string, optional): Directory for key storage jacsAgentPrivateKeyFilename (string, optional): Private key filename jacsAgentPublicKeyFilename (string, optional): Public key filename jacsAgentKeyAlgorithm (string, optional): Signing algorithm jacsPrivateKeyPassword (string, optional): Password for private key jacsAgentIdAndVersion (string, optional): Agent ID and version to load jacsDefaultStorage (string, optional): Storage backend ('fs', 's3', 'memory') Returns: string - Configuration as JSON string Example: import { createConfig } from '@hai.ai/jacs'; const configJson = createConfig( undefined, // jacsUseSecurity './jacs_data', // jacsDataDirectory './jacs_keys', // jacsKeyDirectory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // algorithm undefined, // password undefined, // agent id 'fs' // storage\n); // Write to file\nfs.writeFileSync('jacs.config.json', configJson);","breadcrumbs":"API Reference » createConfig(options)","id":"536","title":"createConfig(options)"},"537":{"body":"import { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http';","breadcrumbs":"API Reference » HTTP Module","id":"537","title":"HTTP Module"},"538":{"body":"Express middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Express middleware function Example: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); app.post('/api/data', (req, res) => { // req.jacsPayload contains verified payload res.send({ received: req.jacsPayload });\n});","breadcrumbs":"API Reference » JACSExpressMiddleware(options)","id":"538","title":"JACSExpressMiddleware(options)"},"539":{"body":"Koa middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Koa middleware function Example: import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json'\n})); app.use(async (ctx) => { // ctx.state.jacsPayload contains verified payload ctx.body = { received: ctx.state.jacsPayload };\n});","breadcrumbs":"API Reference » JACSKoaMiddleware(options)","id":"539","title":"JACSKoaMiddleware(options)"},"54":{"body":"Creation : Initial agent creates agreement with required participants Distribution : Agreement sent to all required agents Review : Each agent reviews terms and conditions Signing : Agents add their signatures if they consent Completion : Agreement becomes binding when all parties have signed Verification : Any party can verify all signatures","breadcrumbs":"Core Concepts » Agreement Process","id":"54","title":"Agreement Process"},"540":{"body":"import { JACSTransportProxy, createJACSTransportProxy, createJACSTransportProxyAsync\n} from '@hai.ai/jacs/mcp';","breadcrumbs":"API Reference » MCP Module","id":"540","title":"MCP Module"},"541":{"body":"Class that wraps MCP transports with JACS encryption. Constructor: new JACSTransportProxy(transport, role, jacsConfigPath) Parameters: transport: Any MCP transport (Stdio, SSE, WebSocket) role (string): 'server' or 'client' jacsConfigPath (string): Path to JACS configuration file","breadcrumbs":"API Reference » JACSTransportProxy","id":"541","title":"JACSTransportProxy"},"542":{"body":"Factory function for creating a transport proxy. Parameters: transport: The underlying MCP transport configPath (string): Path to JACS configuration file role (string): 'server' or 'client' Returns: JACSTransportProxy instance Example: import { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);","breadcrumbs":"API Reference » createJACSTransportProxy(transport, configPath, role)","id":"542","title":"createJACSTransportProxy(transport, configPath, role)"},"543":{"body":"Async factory that waits for JACS to be fully loaded. Parameters: Same as createJACSTransportProxy Returns: Promise Example: const secureTransport = await createJACSTransportProxyAsync( baseTransport, './jacs.config.json', 'server'\n);","breadcrumbs":"API Reference » createJACSTransportProxyAsync(transport, configPath, role)","id":"543","title":"createJACSTransportProxyAsync(transport, configPath, role)"},"544":{"body":"The package includes full TypeScript definitions. Import types as needed: import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs'; const agent: JacsAgent = new JacsAgent();\nconst hash: string = hashString('data');\nconst config: string = createConfig( undefined, './data', './keys'\n);","breadcrumbs":"API Reference » TypeScript Support","id":"544","title":"TypeScript Support"},"545":{"body":"The following module-level functions are deprecated. Use new JacsAgent() and instance methods instead: load() - Use agent.load() signAgent() - Use agent.signAgent() verifyString() - Use agent.verifyString() signString() - Use agent.signString() verifyAgent() - Use agent.verifyAgent() updateAgent() - Use agent.updateAgent() verifyDocument() - Use agent.verifyDocument() updateDocument() - Use agent.updateDocument() verifySignature() - Use agent.verifySignature() createAgreement() - Use agent.createAgreement() signAgreement() - Use agent.signAgreement() createDocument() - Use agent.createDocument() checkAgreement() - Use agent.checkAgreement() signRequest() - Use agent.signRequest() verifyResponse() - Use agent.verifyResponse() verifyResponseWithAgentId() - Use agent.verifyResponseWithAgentId() Migration Example: // Old (deprecated)\nimport jacs from '@hai.ai/jacs';\nawait jacs.load('./jacs.config.json');\nconst doc = jacs.createDocument(JSON.stringify({ data: 'test' })); // New (recommended)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json');\nconst doc = agent.createDocument(JSON.stringify({ data: 'test' }));","breadcrumbs":"API Reference » Deprecated Functions","id":"545","title":"Deprecated Functions"},"546":{"body":"All methods may throw errors. Use try/catch for error handling: try { const agent = new JacsAgent(); agent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ data: 'test' }));\n} catch (error) { console.error('JACS error:', error.message);\n}","breadcrumbs":"API Reference » Error Handling","id":"546","title":"Error Handling"},"547":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol HTTP Server - HTTP integration Express Middleware - Express.js patterns","breadcrumbs":"API Reference » See Also","id":"547","title":"See Also"},"548":{"body":"The JACS Python package (jacs) provides Python bindings to the JACS Rust library, making it easy to integrate JACS into AI/ML workflows, data science projects, and Python applications.","breadcrumbs":"Installation » Python Installation","id":"548","title":"Python Installation"},"549":{"body":"Python : Version 3.10 or higher pip : For package management Operating System : Linux, macOS, or Windows with WSL Architecture : x86_64 or ARM64","breadcrumbs":"Installation » Requirements","id":"549","title":"Requirements"},"55":{"body":"Task Agreements : Consent to perform specific work Service Agreements : Long-term service provision contracts Data Sharing Agreements : Permission to access or use data Update Agreements : Consent to system or process changes","breadcrumbs":"Core Concepts » Agreement Types","id":"55","title":"Agreement Types"},"550":{"body":"","breadcrumbs":"Installation » Installation","id":"550","title":"Installation"},"551":{"body":"pip install jacs","breadcrumbs":"Installation » Using pip","id":"551","title":"Using pip"},"552":{"body":"conda install -c conda-forge jacs","breadcrumbs":"Installation » Using conda","id":"552","title":"Using conda"},"553":{"body":"poetry add jacs","breadcrumbs":"Installation » Using poetry","id":"553","title":"Using poetry"},"554":{"body":"# Clone the repository\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacspy # Create virtual environment\npython -m venv .venv\nsource .venv/bin/activate # On Windows: .venv\\Scripts\\activate # Install in development mode\npip install -e .","breadcrumbs":"Installation » Development Installation","id":"554","title":"Development Installation"},"555":{"body":"Create a simple test to verify everything is working: # test.py\nimport jacs print('JACS Python bindings loaded successfully!') # Test basic functionality\ntry: agent = jacs.JacsAgent() agent.load('./jacs.config.json') print('Agent loaded successfully!')\nexcept Exception as error: print(f'Error loading agent: {error}') Run the test: python test.py","breadcrumbs":"Installation » Verify Installation","id":"555","title":"Verify Installation"},"556":{"body":"The jacs package provides Python bindings to the JACS Rust library:","breadcrumbs":"Installation » Package Structure","id":"556","title":"Package Structure"},"557":{"body":"import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Utility functions\nhash_value = jacs.hash_string(\"data to hash\")\nconfig_json = jacs.create_config( jacs_data_directory=\"./data\", jacs_key_directory=\"./keys\", jacs_agent_key_algorithm=\"ring-Ed25519\"\n)","breadcrumbs":"Installation » Core Module","id":"557","title":"Core Module"},"558":{"body":"# Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration\nagent.load('./jacs.config.json') # Document operations\nsigned_doc = agent.create_document(json_string)\nis_valid = agent.verify_document(document_string) # Signing operations\nsignature = agent.sign_string(\"data to sign\")","breadcrumbs":"Installation » JacsAgent Methods","id":"558","title":"JacsAgent Methods"},"559":{"body":"","breadcrumbs":"Installation » Configuration","id":"559","title":"Configuration"},"56":{"body":"JACS uses industry-standard cryptographic primitives for security.","breadcrumbs":"Core Concepts » Cryptographic Security","id":"56","title":"Cryptographic Security"},"560":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Installation » Configuration File","id":"560","title":"Configuration File"},"561":{"body":"import jacs # Create agent and load configuration\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Installation » Load Configuration in Python","id":"561","title":"Load Configuration in Python"},"562":{"body":"import jacs # Create a configuration JSON string programmatically\nconfig_json = jacs.create_config( jacs_data_directory=\"./jacs_data\", jacs_key_directory=\"./jacs_keys\", jacs_agent_key_algorithm=\"ring-Ed25519\", jacs_default_storage=\"fs\"\n)","breadcrumbs":"Installation » Programmatic Configuration","id":"562","title":"Programmatic Configuration"},"563":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"563","title":"Environment Variables"},"564":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"564","title":"Storage Backends"},"565":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"565","title":"File System (Default)"},"566":{"body":"{ \"jacs_default_storage\": \"s3\"\n} S3 credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » S3 Storage","id":"566","title":"S3 Storage"},"567":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"567","title":"Memory Storage (Testing)"},"568":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"568","title":"Cryptographic Algorithms"},"569":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"569","title":"ring-Ed25519 (Recommended)"},"57":{"body":"Current Standards ring-Ed25519 : Fast elliptic curve signatures using the ring library (recommended) RSA-PSS : Traditional RSA with probabilistic signature scheme Post-Quantum pq-dilithium : NIST-standardized post-quantum signatures","breadcrumbs":"Core Concepts » Supported Algorithms","id":"57","title":"Supported Algorithms"},"570":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"570","title":"RSA-PSS"},"571":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"571","title":"pq-dilithium (Post-Quantum)"},"572":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"572","title":"pq2025 (Post-Quantum Hybrid)"},"573":{"body":"","breadcrumbs":"Installation » Development Setup","id":"573","title":"Development Setup"},"574":{"body":"my-jacs-project/\n├── requirements.txt\n├── jacs.config.json\n├── src/\n│ ├── agent.py\n│ ├── tasks.py\n│ └── agreements.py\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n├── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── tests/ └── test_jacs.py","breadcrumbs":"Installation » Project Structure","id":"574","title":"Project Structure"},"575":{"body":"jacs>=0.1.0\nfastapi>=0.100.0 # For FastMCP integration\nuvicorn>=0.23.0 # For ASGI server\npydantic>=2.0.0 # For data validation","breadcrumbs":"Installation » Requirements.txt Setup","id":"575","title":"Requirements.txt Setup"},"576":{"body":"# src/app.py\nimport jacs\nimport json def main(): # Create and load agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a document document_data = { \"title\": \"My First Document\", \"content\": \"Hello from Python!\" } signed_doc = agent.create_document(json.dumps(document_data)) print('Document created') # Verify the document is_valid = agent.verify_document(signed_doc) print(f'Document valid: {is_valid}') print('JACS agent ready!') return agent if __name__ == \"__main__\": agent = main()","breadcrumbs":"Installation » Basic Application","id":"576","title":"Basic Application"},"577":{"body":"","breadcrumbs":"Installation » Virtual Environment Setup","id":"577","title":"Virtual Environment Setup"},"578":{"body":"# Create virtual environment\npython -m venv jacs-env # Activate (Linux/macOS)\nsource jacs-env/bin/activate # Activate (Windows)\njacs-env\\Scripts\\activate # Install JACS\npip install jacs","breadcrumbs":"Installation » Using venv","id":"578","title":"Using venv"},"579":{"body":"# Create conda environment\nconda create -n jacs-env python=3.11 # Activate environment\nconda activate jacs-env # Install JACS\npip install jacs","breadcrumbs":"Installation » Using conda","id":"579","title":"Using conda"},"58":{"body":"Content Extraction : Specific fields are extracted for signing Canonicalization : Fields are sorted and formatted consistently Hashing : SHA-256 hash of the canonical content Signing : Private key signs the hash Verification : Public key verifies the signature","breadcrumbs":"Core Concepts » Signature Process","id":"58","title":"Signature Process"},"580":{"body":"# Initialize poetry project\npoetry init # Add JACS dependency\npoetry add jacs # Install dependencies\npoetry install # Activate shell\npoetry shell","breadcrumbs":"Installation » Using poetry","id":"580","title":"Using poetry"},"581":{"body":"# Install Jupyter in your JACS environment\npip install jupyter # Start Jupyter\njupyter notebook # In your notebook\nimport jacs\nimport json # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a simple document\ndoc = agent.create_document(json.dumps({ \"title\": \"Notebook Analysis\", \"data\": [1, 2, 3, 4, 5]\n})) print(\"Document created!\")\nprint(\"JACS ready for notebook use!\")","breadcrumbs":"Installation » Jupyter Notebook Setup","id":"581","title":"Jupyter Notebook Setup"},"582":{"body":"","breadcrumbs":"Installation » Common Issues","id":"582","title":"Common Issues"},"583":{"body":"If you get ModuleNotFoundError: No module named 'jacs': # Check Python version\npython --version # Should be 3.10+ # Check if jacs is installed\npip list | grep jacs # Reinstall if needed\npip uninstall jacs\npip install jacs","breadcrumbs":"Installation » Module Not Found","id":"583","title":"Module Not Found"},"584":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"584","title":"Permission Errors"},"585":{"body":"If you get binary compatibility errors: # Update pip and reinstall\npip install --upgrade pip\npip uninstall jacs\npip install jacs --no-cache-dir","breadcrumbs":"Installation » Binary Compatibility","id":"585","title":"Binary Compatibility"},"586":{"body":"On Windows, you may need Visual C++ Build Tools: # Install Visual C++ Build Tools\n# Or use conda-forge\nconda install -c conda-forge jacs","breadcrumbs":"Installation » Windows Issues","id":"586","title":"Windows Issues"},"587":{"body":"JACS is built with Rust and PyO3, providing Python bindings: import jacs\nimport json # Create agent instance\nagent: jacs.JacsAgent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create and verify documents\nsigned_doc: str = agent.create_document(json.dumps({\"title\": \"Test\"}))\nis_valid: bool = agent.verify_document(signed_doc)","breadcrumbs":"Installation » Type Hints and IDE Support","id":"587","title":"Type Hints and IDE Support"},"588":{"body":"# tests/test_jacs.py\nimport unittest\nimport jacs\nimport json class TestJACS(unittest.TestCase): def setUp(self): # Requires a valid jacs.config.json file self.agent = jacs.JacsAgent() self.agent.load('./jacs.config.json') def test_document_creation(self): doc_data = {\"title\": \"Test Document\", \"content\": \"Test content\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) # Document should be a valid JSON string parsed = json.loads(signed_doc) self.assertIn(\"jacsId\", parsed) self.assertIn(\"jacsSignature\", parsed) def test_document_verification(self): doc_data = {\"title\": \"Verify Test\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) is_valid = self.agent.verify_document(signed_doc) self.assertTrue(is_valid) def test_sign_string(self): signature = self.agent.sign_string(\"test data\") self.assertIsInstance(signature, str) self.assertTrue(len(signature) > 0) if __name__ == \"__main__\": unittest.main()","breadcrumbs":"Installation » Testing Setup","id":"588","title":"Testing Setup"},"589":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"589","title":"Next Steps"},"59":{"body":"Agent Keys : Each agent has a unique key pair Public Key Distribution : Public keys shared through secure channels Key Rotation : Agents can update keys while maintaining identity Key Verification : Public key hashes ensure integrity","breadcrumbs":"Core Concepts » Key Management","id":"59","title":"Key Management"},"590":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Jupyter notebook workflows FastMCP server implementation AI/ML pipeline integration","breadcrumbs":"Installation » Examples","id":"590","title":"Examples"},"591":{"body":"The simplified API (jacs.simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"591","title":"Simplified API"},"592":{"body":"import jacs.simple as jacs # Load your agent\nagent = jacs.load(\"./jacs.config.json\") # Sign a message\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nprint(f\"Document ID: {signed.document_id}\") # Verify it\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}\")","breadcrumbs":"Simplified API » Quick Start","id":"592","title":"Quick Start"},"593":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"593","title":"When to Use the Simplified API"},"594":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"594","title":"API Reference"},"595":{"body":"Load an agent from a configuration file. This must be called before any other operations. Parameters: config_path (str, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: AgentInfo dataclass Raises: JacsError if config not found or invalid info = jacs.load(\"./jacs.config.json\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config: {info.config_path}\")","breadcrumbs":"Simplified API » load(config_path=None)","id":"595","title":"load(config_path=None)"},"596":{"body":"Check if an agent is currently loaded. Returns: bool if not jacs.is_loaded(): jacs.load(\"./jacs.config.json\")","breadcrumbs":"Simplified API » is_loaded()","id":"596","title":"is_loaded()"},"597":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or None if no agent is loaded info = jacs.get_agent_info()\nif info: print(f\"Agent: {info.agent_id}\")","breadcrumbs":"Simplified API » get_agent_info()","id":"597","title":"get_agent_info()"},"598":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify_self()\nif result.valid: print(\"Agent integrity verified\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Simplified API » verify_self()","id":"598","title":"verify_self()"},"599":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Dict, list, string, or any JSON-serializable value Returns: SignedDocument Raises: AgentNotLoadedError if no agent is loaded # Sign a dict\nsigned = jacs.sign_message({ \"action\": \"transfer\", \"amount\": 500, \"recipient\": \"agent-123\"\n}) print(f\"Document ID: {signed.document_id}\")\nprint(f\"Signed by: {signed.agent_id}\")\nprint(f\"Timestamp: {signed.timestamp}\")\nprint(f\"Raw JSON: {signed.raw}\")","breadcrumbs":"Simplified API » sign_message(data)","id":"599","title":"sign_message(data)"},"6":{"body":"AI/ML Integration : Ideal for AI and machine learning workflows MCP Support : Authenticated MCP server patterns PyPI Package : Simple pip install integration Data Science : Perfect for Jupyter notebooks and data pipelines","breadcrumbs":"Introduction » 🐍 Python (jacs)","id":"6","title":"🐍 Python (jacs)"},"60":{"body":"JACS provides comprehensive versioning for tracking document evolution.","breadcrumbs":"Core Concepts » Versioning and Audit Trails","id":"60","title":"Versioning and Audit Trails"},"600":{"body":"Sign a file with optional content embedding. Parameters: file_path (str): Path to the file to sign embed (bool, optional): If True, embed file content in the document (default: False) Returns: SignedDocument Raises: JacsError if file not found or no agent loaded # Reference only (stores hash)\nsigned = jacs.sign_file(\"contract.pdf\", embed=False) # Embed content (creates portable document)\nembedded = jacs.sign_file(\"contract.pdf\", embed=True)","breadcrumbs":"Simplified API » sign_file(file_path, embed=False)","id":"600","title":"sign_file(file_path, embed=False)"},"601":{"body":"Verify a signed document and extract its content. Parameters: signed_document (str): The JSON string of the signed document Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify(signed_json) if result.valid: print(f\"Signed by: {result.signer_id}\") print(f\"Timestamp: {result.timestamp}\")\nelse: print(f\"Invalid: {', '.join(result.errors)}\")","breadcrumbs":"Simplified API » verify(signed_document)","id":"601","title":"verify(signed_document)"},"602":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Parameters: document (str|dict), key_resolution (str), data_directory (str, optional), key_directory (str, optional) Returns: VerificationResult","breadcrumbs":"Simplified API » verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)","id":"602","title":"verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)"},"603":{"body":"Run a read-only security audit and health checks. Returns a dict with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. See Security Model — Security Audit for full details and options. result = jacs.audit()\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\")","breadcrumbs":"Simplified API » audit(config_path=None, recent_n=None)","id":"603","title":"audit(config_path=None, recent_n=None)"},"604":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use export_agent() to get the current document, modify it, then pass it here. Parameters: new_agent_data (dict|str): Complete agent document as JSON string or dict Returns: str - The updated and re-signed agent document Raises: AgentNotLoadedError if no agent loaded, JacsError if validation fails import json # Get current agent document\nagent_doc = json.loads(jacs.export_agent()) # Modify fields\nagent_doc[\"jacsAgentType\"] = \"hybrid\"\nagent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"Jane\", \"contactLastName\": \"Doe\"}] # Update (creates new version, re-signs, re-hashes)\nupdated = jacs.update_agent(agent_doc)\nnew_doc = json.loads(updated) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\") Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » update_agent(new_agent_data)","id":"604","title":"update_agent(new_agent_data)"},"605":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without no_save=True). Parameters: document_id (str): The document ID (jacsId) to update new_document_data (dict|str): Updated document as JSON string or dict attachments (list, optional): List of file paths to attach embed (bool, optional): If True, embed attachment contents Returns: SignedDocument with the updated document Raises: JacsError if document not found, no agent loaded, or validation fails import json # Create a document (must be saved to disk)\noriginal = jacs.sign_message({\"status\": \"pending\", \"amount\": 100}) # Later, update it\ndoc = json.loads(original.raw)\ndoc[\"content\"][\"status\"] = \"approved\" updated = jacs.update_document(original.document_id, doc)\nnew_doc = json.loads(updated.raw) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\")","breadcrumbs":"Simplified API » update_document(document_id, new_document_data, attachments=None, embed=False)","id":"605","title":"update_document(document_id, new_document_data, attachments=None, embed=False)"},"606":{"body":"Export the current agent document for sharing or inspection. Returns: str - The agent JSON document Raises: AgentNotLoadedError if no agent loaded agent_doc = jacs.export_agent()\nprint(agent_doc) # Parse to inspect\nagent = json.loads(agent_doc)\nprint(f\"Agent type: {agent['jacsAgentType']}\")","breadcrumbs":"Simplified API » export_agent()","id":"606","title":"export_agent()"},"607":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Returns: str","breadcrumbs":"Simplified API » get_dns_record(domain, ttl=3600)","id":"607","title":"get_dns_record(domain, ttl=3600)"},"608":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: dict","breadcrumbs":"Simplified API » get_well_known_json()","id":"608","title":"get_well_known_json()"},"609":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: str - PEM-encoded public key Raises: AgentNotLoadedError if no agent loaded pem = jacs.get_public_key()\nprint(pem)\n# -----BEGIN PUBLIC KEY-----\n# ...\n# -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » get_public_key()","id":"609","title":"get_public_key()"},"61":{"body":"Immutable IDs : jacsId never changes for a document Version IDs : jacsVersion changes with each update Previous Versions : jacsPreviousVersion creates a chain Timestamps : jacsVersionDate provides chronological order","breadcrumbs":"Core Concepts » Version Management","id":"61","title":"Version Management"},"610":{"body":"All types are Python dataclasses for convenient access:","breadcrumbs":"Simplified API » Type Definitions","id":"610","title":"Type Definitions"},"611":{"body":"@dataclass\nclass AgentInfo: agent_id: str # Agent's UUID config_path: str # Path to loaded config public_key_path: Optional[str] = None # Path to public key file","breadcrumbs":"Simplified API » AgentInfo","id":"611","title":"AgentInfo"},"612":{"body":"@dataclass\nclass SignedDocument: raw: str # Full JSON document with signature document_id: str # Document's UUID (jacsId) agent_id: str # Signing agent's ID timestamp: str # ISO 8601 timestamp","breadcrumbs":"Simplified API » SignedDocument","id":"612","title":"SignedDocument"},"613":{"body":"@dataclass\nclass VerificationResult: valid: bool # True if signature verified signer_id: Optional[str] # Agent who signed timestamp: Optional[str] # When it was signed attachments: List[Attachment] # File attachments errors: List[str] # Error messages if invalid","breadcrumbs":"Simplified API » VerificationResult","id":"613","title":"VerificationResult"},"614":{"body":"@dataclass\nclass Attachment: filename: str # Original filename mime_type: str # MIME type hash: str # SHA-256 hash embedded: bool # True if content is embedded content: Optional[bytes] = None # Embedded content (if available)","breadcrumbs":"Simplified API » Attachment","id":"614","title":"Attachment"},"615":{"body":"class JacsError(Exception): \"\"\"Base exception for JACS errors.\"\"\" pass class AgentNotLoadedError(JacsError): \"\"\"Raised when an operation requires a loaded agent.\"\"\" pass","breadcrumbs":"Simplified API » Exceptions","id":"615","title":"Exceptions"},"616":{"body":"import json\nimport jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError # Load agent\nagent = jacs.load(\"./jacs.config.json\")\nprint(f\"Loaded agent: {agent.agent_id}\") # Verify agent integrity\nself_check = jacs.verify_self()\nif not self_check.valid: raise RuntimeError(\"Agent integrity check failed\") # Sign a transaction\ntransaction = { \"type\": \"payment\", \"from\": agent.agent_id, \"to\": \"recipient-agent-uuid\", \"amount\": 250.00, \"currency\": \"USD\", \"memo\": \"Q1 Service Payment\"\n} signed = jacs.sign_message(transaction)\nprint(f\"Transaction signed: {signed.document_id}\") # Verify the transaction (simulating recipient)\nverification = jacs.verify(signed.raw) if verification.valid: doc = json.loads(signed.raw) print(f\"Payment verified from: {verification.signer_id}\") print(f\"Amount: {doc['content']['amount']} {doc['content']['currency']}\")\nelse: print(f\"Verification failed: {', '.join(verification.errors)}\") # Sign a file\ncontract_signed = jacs.sign_file(\"./contract.pdf\", embed=True)\nprint(f\"Contract signed: {contract_signed.document_id}\") # Update agent metadata\nagent_doc = json.loads(jacs.export_agent())\nagent_doc[\"jacsAgentType\"] = \"ai\"\nif not agent_doc.get(\"jacsContacts\") or len(agent_doc[\"jacsContacts\"]) == 0: agent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"AI\", \"contactLastName\": \"Agent\"}]\nupdated_agent = jacs.update_agent(agent_doc)\nprint(\"Agent metadata updated\") # Share public key\npublic_key = jacs.get_public_key()\nprint(\"Share this public key for verification:\")\nprint(public_key)","breadcrumbs":"Simplified API » Complete Example","id":"616","title":"Complete Example"},"617":{"body":"The simplified API works well with FastMCP tool implementations: from fastmcp import FastMCP\nimport jacs.simple as jacs mcp = FastMCP(\"My Server\") # Load agent once at startup\njacs.load(\"./jacs.config.json\") @mcp.tool()\ndef approve_request(request_id: str) -> dict: \"\"\"Approve a request with cryptographic signature.\"\"\" signed = jacs.sign_message({ \"action\": \"approve\", \"request_id\": request_id, \"approved_by\": jacs.get_agent_info().agent_id }) return {\"signed_approval\": signed.raw} @mcp.tool()\ndef verify_approval(signed_json: str) -> dict: \"\"\"Verify a signed approval.\"\"\" result = jacs.verify(signed_json) return { \"valid\": result.valid, \"signer\": result.signer_id, \"errors\": result.errors }","breadcrumbs":"Simplified API » MCP Integration","id":"617","title":"MCP Integration"},"618":{"body":"import jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError try: jacs.load(\"./missing-config.json\")\nexcept JacsError as e: print(f\"Config not found: {e}\") try: # Will fail if no agent loaded jacs.sign_message({\"data\": \"test\"})\nexcept AgentNotLoadedError as e: print(f\"No agent: {e}\") try: jacs.sign_file(\"/nonexistent/file.pdf\")\nexcept JacsError as e: print(f\"File not found: {e}\") # Verification doesn't throw - check result.valid\nresult = jacs.verify(\"invalid json\")\nif not result.valid: print(f\"Verification errors: {result.errors}\")","breadcrumbs":"Simplified API » Error Handling","id":"618","title":"Error Handling"},"619":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"619","title":"See Also"},"62":{"body":"Complete History : Track all changes to any document Attribution : Know exactly who made each change Verification : Cryptographic proof of authenticity Compliance : Meet regulatory audit requirements","breadcrumbs":"Core Concepts » Audit Trail Benefits","id":"62","title":"Audit Trail Benefits"},"620":{"body":"This chapter covers fundamental JACS operations in Python, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"620","title":"Basic Usage"},"621":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"621","title":"Initializing an Agent"},"622":{"body":"import jacs # Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration from file\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Create and Load Agent","id":"622","title":"Create and Load Agent"},"623":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"623","title":"Configuration File"},"624":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"624","title":"Creating Documents"},"625":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a document from JSON\ndocument_data = { \"title\": \"Project Proposal\", \"content\": \"Quarterly development plan\", \"budget\": 50000\n} signed_document = agent.create_document(json.dumps(document_data))\nprint('Signed document:', signed_document)","breadcrumbs":"Basic Usage » Basic Document Creation","id":"625","title":"Basic Document Creation"},"626":{"body":"Validate against a custom JSON Schema: signed_document = agent.create_document( json.dumps(document_data), './schemas/proposal.schema.json' # custom schema path\n)","breadcrumbs":"Basic Usage » With Custom Schema","id":"626","title":"With Custom Schema"},"627":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema './output/proposal.json' # output filename\n)","breadcrumbs":"Basic Usage » With Output File","id":"627","title":"With Output File"},"628":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename True # no_save = True\n)","breadcrumbs":"Basic Usage » Without Saving","id":"628","title":"Without Saving"},"629":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename False, # save the document './attachments/report.pdf', # attachment path True # embed files\n)","breadcrumbs":"Basic Usage » With Attachments","id":"629","title":"With Attachments"},"63":{"body":"JACS documents are designed to be storage and transport agnostic.","breadcrumbs":"Core Concepts » Storage and Transport","id":"63","title":"Storage and Transport"},"630":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"630","title":"Verifying Documents"},"631":{"body":"# Verify a document's signature and hash\nis_valid = agent.verify_document(signed_document_json)\nprint('Document valid:', is_valid)","breadcrumbs":"Basic Usage » Verify Document Signature","id":"631","title":"Verify Document Signature"},"632":{"body":"# Verify with a custom signature field\nis_valid = agent.verify_signature( signed_document_json, 'jacsSignature' # signature field name\n)","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"632","title":"Verify Specific Signature Field"},"633":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"633","title":"Updating Documents"},"634":{"body":"# Original document key format: \"id:version\"\ndocument_key = 'doc-uuid:version-uuid' # Modified document content (must include jacsId and jacsVersion)\nupdated_data = { \"jacsId\": \"doc-uuid\", \"jacsVersion\": \"version-uuid\", \"title\": \"Updated Proposal\", \"content\": \"Revised quarterly plan\", \"budget\": 75000\n} updated_document = agent.update_document( document_key, json.dumps(updated_data)\n) print('Updated document:', updated_document)","breadcrumbs":"Basic Usage » Update Existing Document","id":"634","title":"Update Existing Document"},"635":{"body":"updated_document = agent.update_document( document_key, json.dumps(updated_data), ['./new-report.pdf'], # new attachments True # embed files\n)","breadcrumbs":"Basic Usage » Update with New Attachments","id":"635","title":"Update with New Attachments"},"636":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"636","title":"Signing and Verification"},"637":{"body":"# Sign any string data\nsignature = agent.sign_string('Important message to sign')\nprint('Signature:', signature)","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"637","title":"Sign Arbitrary Data"},"638":{"body":"# Verify a signature on string data\nis_valid = agent.verify_string( 'Important message to sign', # original data signature_base64, # base64 signature public_key_bytes, # public key as bytes 'ring-Ed25519' # algorithm\n)","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"638","title":"Verify Arbitrary Data"},"639":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"639","title":"Working with Agreements"},"64":{"body":"File System : Simple JSON files Databases : Store as JSON/JSONB fields Object Storage : S3, Azure Blob, Google Cloud Storage Version Control : Git repositories for change tracking","breadcrumbs":"Core Concepts » Storage Options","id":"64","title":"Storage Options"},"640":{"body":"# Add agreement requiring multiple agent signatures\ndocument_with_agreement = agent.create_agreement( signed_document_json, ['agent1-uuid', 'agent2-uuid'], # required signers 'Do you agree to these terms?', # question 'Q1 2024 service contract', # context 'jacsAgreement' # field name\n)","breadcrumbs":"Basic Usage » Create an Agreement","id":"640","title":"Create an Agreement"},"641":{"body":"# Sign the agreement as the current agent\nsigned_agreement = agent.sign_agreement( document_with_agreement_json, 'jacsAgreement' # agreement field name\n)","breadcrumbs":"Basic Usage » Sign an Agreement","id":"641","title":"Sign an Agreement"},"642":{"body":"# Check which agents have signed\nstatus = agent.check_agreement( document_with_agreement_json, 'jacsAgreement'\n) print('Agreement status:', json.loads(status))","breadcrumbs":"Basic Usage » Check Agreement Status","id":"642","title":"Check Agreement Status"},"643":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"643","title":"Agent Operations"},"644":{"body":"# Verify the loaded agent's signature\nis_valid = agent.verify_agent()\nprint('Agent valid:', is_valid) # Verify a specific agent file\nis_valid_other = agent.verify_agent('./other-agent.json')","breadcrumbs":"Basic Usage » Verify Agent","id":"644","title":"Verify Agent"},"645":{"body":"# Update agent document\nupdated_agent_json = agent.update_agent(json.dumps({ \"jacsId\": \"agent-uuid\", \"jacsVersion\": \"version-uuid\", \"name\": \"Updated Agent Name\", \"description\": \"Updated description\"\n}))","breadcrumbs":"Basic Usage » Update Agent","id":"645","title":"Update Agent"},"646":{"body":"# Sign another agent's document with registration signature\nsigned_agent_json = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"Basic Usage » Sign External Agent","id":"646","title":"Sign External Agent"},"647":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"647","title":"Request/Response Signing"},"648":{"body":"# Sign request parameters as a JACS document\nsigned_request = agent.sign_request({ \"method\": \"GET\", \"path\": \"/api/resource\", \"timestamp\": datetime.now().isoformat(), \"body\": {\"query\": \"data\"}\n})","breadcrumbs":"Basic Usage » Sign a Request","id":"648","title":"Sign a Request"},"649":{"body":"# Verify a signed response\nresult = agent.verify_response(signed_response_json)\nprint('Response valid:', result) # Verify and get signer's agent ID\nresult_with_id = agent.verify_response_with_agent_id(signed_response_json)\nprint('Signer ID:', result_with_id)","breadcrumbs":"Basic Usage » Verify a Response","id":"649","title":"Verify a Response"},"65":{"body":"HTTP APIs : RESTful or GraphQL endpoints Message Queues : RabbitMQ, Kafka, SQS Email : Documents as attachments Direct Transfer : USB drives, file sharing","breadcrumbs":"Core Concepts » Transport Mechanisms","id":"65","title":"Transport Mechanisms"},"650":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"650","title":"Utility Functions"},"651":{"body":"import jacs # SHA-256 hash of a string\nhash_value = jacs.hash_string('data to hash')\nprint('Hash:', hash_value)","breadcrumbs":"Basic Usage » Hash String","id":"651","title":"Hash String"},"652":{"body":"import jacs # Programmatically create a config JSON string\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) print('Config:', config_json)","breadcrumbs":"Basic Usage » Create Configuration","id":"652","title":"Create Configuration"},"653":{"body":"import jacs agent = jacs.JacsAgent() try: agent.load('./jacs.config.json')\nexcept Exception as error: print(f'Failed to load agent: {error}') try: doc = agent.create_document(json.dumps({'data': 'test'})) print('Document created')\nexcept Exception as error: print(f'Failed to create document: {error}') try: is_valid = agent.verify_document(invalid_json)\nexcept Exception as error: print(f'Verification failed: {error}')","breadcrumbs":"Basic Usage » Error Handling","id":"653","title":"Error Handling"},"654":{"body":"import jacs\nimport json def main(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a task document task = { \"title\": \"Code Review\", \"description\": \"Review pull request #123\", \"assignee\": \"developer-uuid\", \"deadline\": \"2024-02-01\" } signed_task = agent.create_document(json.dumps(task)) print('Task created') # Verify the task if agent.verify_document(signed_task): print('Task signature valid') # Create agreement for task acceptance task_with_agreement = agent.create_agreement( signed_task, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ) # Sign the agreement signed_agreement = agent.sign_agreement(task_with_agreement) print('Agreement signed') # Check agreement status status = agent.check_agreement(signed_agreement) print('Status:', status) # Hash some data for reference task_hash = jacs.hash_string(signed_task) print('Task hash:', task_hash) if __name__ == \"__main__\": main()","breadcrumbs":"Basic Usage » Complete Example","id":"654","title":"Complete Example"},"655":{"body":"","breadcrumbs":"Basic Usage » Working with Document Data","id":"655","title":"Working with Document Data"},"656":{"body":"import json # Create and sign a document\ndoc_data = {\"title\": \"My Document\", \"content\": \"Hello, World!\"}\nsigned_doc = agent.create_document(json.dumps(doc_data)) # Parse the signed document to access JACS fields\nparsed = json.loads(signed_doc)\nprint('Document ID:', parsed.get('jacsId'))\nprint('Document Version:', parsed.get('jacsVersion'))\nprint('Signature:', parsed.get('jacsSignature'))","breadcrumbs":"Basic Usage » Parse Signed Documents","id":"656","title":"Parse Signed Documents"},"657":{"body":"# Document keys combine ID and version\ndoc_id = parsed['jacsId']\ndoc_version = parsed['jacsVersion']\ndocument_key = f\"{doc_id}:{doc_version}\" # Use the key for updates\nupdated_doc = agent.update_document(document_key, json.dumps({ **parsed, \"content\": \"Updated content\"\n}))","breadcrumbs":"Basic Usage » Document Key Format","id":"657","title":"Document Key Format"},"658":{"body":"","breadcrumbs":"Basic Usage » Configuration Management","id":"658","title":"Configuration Management"},"659":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Load from File","id":"659","title":"Load from File"},"66":{"body":"JSON : Universal compatibility across all systems Schema Validation : Ensures consistent structure Self-Contained : All necessary information in the document Human Readable : Can be inspected and debugged easily","breadcrumbs":"Core Concepts » Format Compatibility","id":"66","title":"Format Compatibility"},"660":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Basic Usage » Environment Variables","id":"660","title":"Environment Variables"},"661":{"body":"import jacs\nimport json\nimport os # Create config programmatically\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) # Write to file\nwith open('jacs.config.json', 'w') as f: f.write(config_json) # Then load it\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Programmatic Configuration","id":"661","title":"Programmatic Configuration"},"662":{"body":"MCP Integration - Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"662","title":"Next Steps"},"663":{"body":"JACS provides seamless integration with the Model Context Protocol (MCP), enabling cryptographically signed and verified communication between AI agents and MCP servers. This integration ensures that all tool calls, resource requests, and prompt interactions are authenticated and tamper-proof.","breadcrumbs":"MCP Integration » MCP Integration","id":"663","title":"MCP Integration"},"664":{"body":"JACS MCP integration provides: Cryptographic Authentication : All MCP messages are signed and verified FastMCP Support : Native integration with FastMCP servers HTTP & SSE Transports : Support for Server-Sent Events transport Transparent Security : Existing MCP code works with minimal changes","breadcrumbs":"MCP Integration » Overview","id":"664","title":"Overview"},"665":{"body":"","breadcrumbs":"MCP Integration » Quick Start","id":"665","title":"Quick Start"},"666":{"body":"import jacs\nimport os\nfrom pathlib import Path\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Setup JACS configuration\ncurrent_dir = Path(__file__).parent.absolute()\njacs_config_path = current_dir / \"jacs.config.json\" # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(str(jacs_config_path)) # Create FastMCP server with JACS authentication\nmcp = JACSMCPServer(FastMCP(\"Authenticated Echo Server\")) @mcp.tool()\ndef echo_tool(text: str) -> str: \"\"\"Echo the input text with server prefix\"\"\" return f\"SERVER SAYS: {text}\" @mcp.resource(\"echo://static\")\ndef echo_resource() -> str: return \"Echo!\" @mcp.prompt(\"echo\")\ndef echo_prompt(text: str) -> str: return f\"Echo prompt: {text}\" # Get the ASGI app with JACS middleware\nsse_app_with_middleware = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS-enabled MCP server...\") uvicorn.run(sse_app_with_middleware, host=\"localhost\", port=8000)","breadcrumbs":"MCP Integration » Basic MCP Server with JACS","id":"666","title":"Basic MCP Server with JACS"},"667":{"body":"import asyncio\nimport os\nfrom pathlib import Path\nimport jacs\nfrom jacs.mcp import JACSMCPClient # Setup JACS configuration\ncurrent_dir = Path(__file__).parent.absolute()\njacs_config_path = current_dir / \"jacs.client.config.json\" # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(str(jacs_config_path)) async def main(): server_url = \"http://localhost:8000/sse\" try: client = JACSMCPClient(server_url) async with client: # Call authenticated tool result = await client.call_tool(\"echo_tool\", { \"text\": \"Hello from authenticated client!\" }) print(f\"Tool result: {result}\") # Read authenticated resource resource = await client.read_resource(\"echo://static\") print(f\"Resource: {resource}\") except Exception as e: print(f\"Error: {e}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"MCP Integration » Basic MCP Client with JACS","id":"667","title":"Basic MCP Client with JACS"},"668":{"body":"","breadcrumbs":"MCP Integration » How It Works","id":"668","title":"How It Works"},"669":{"body":"The JACSMCPServer wrapper adds JACS middleware to a FastMCP server: Incoming Requests : Intercepts JSON-RPC requests and verifies them using jacs.verify_request() Outgoing Responses : Signs JSON-RPC responses using jacs.sign_response() from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP # Create FastMCP server\nbase_server = FastMCP(\"My Server\") # Wrap with JACS authentication\nauthenticated_server = JACSMCPServer(base_server) # All decorators work normally\n@authenticated_server.tool()\ndef my_tool(data: str) -> str: return f\"Processed: {data}\" # Get ASGI app with JACS middleware\napp = authenticated_server.sse_app()","breadcrumbs":"MCP Integration » JACSMCPServer","id":"669","title":"JACSMCPServer"},"67":{"body":"Now that you understand the core concepts: Quick Start - Try JACS hands-on Choose Implementation : Rust CLI for command-line usage Node.js for web applications Python for AI/ML workflows Examples - See real-world usage patterns","breadcrumbs":"Core Concepts » Next Steps","id":"67","title":"Next Steps"},"670":{"body":"The JACSMCPClient wrapper adds interceptors to a FastMCP client: Outgoing Messages : Signs messages using jacs.sign_request() Incoming Messages : Verifies messages using jacs.verify_response() from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: result = await client.call_tool(\"my_tool\", {\"data\": \"test\"})","breadcrumbs":"MCP Integration » JACSMCPClient","id":"670","title":"JACSMCPClient"},"671":{"body":"","breadcrumbs":"MCP Integration » Configuration","id":"671","title":"Configuration"},"672":{"body":"Create a jacs.config.json file for your server and client: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"MCP Integration » JACS Configuration File","id":"672","title":"JACS Configuration File"},"673":{"body":"Before using MCP integration, initialize your JACS agent: import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Agent is now ready for MCP operations","breadcrumbs":"MCP Integration » Initializing the Agent","id":"673","title":"Initializing the Agent"},"674":{"body":"","breadcrumbs":"MCP Integration » Integration Patterns","id":"674","title":"Integration Patterns"},"675":{"body":"from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport jacs # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Create and wrap server\nserver = FastMCP(\"My Server\")\nauthenticated_server = JACSMCPServer(server) @authenticated_server.tool()\ndef secure_tool(input_data: str) -> str: \"\"\"A tool that processes signed input\"\"\" return f\"Securely processed: {input_data}\" # Run server\nif __name__ == \"__main__\": import uvicorn app = authenticated_server.sse_app() uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"MCP Integration » FastMCP with JACS Middleware","id":"675","title":"FastMCP with JACS Middleware"},"676":{"body":"For custom integrations, you can use the module-level functions directly: import jacs # Initialize agent first\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Sign a request\nsigned_request = jacs.sign_request({ \"method\": \"tools/call\", \"params\": {\"name\": \"my_tool\", \"arguments\": {\"data\": \"test\"}}\n}) # Verify a response\nverified_response = jacs.verify_response(signed_response_string)\npayload = verified_response.get(\"payload\")","breadcrumbs":"MCP Integration » Manual Request/Response Signing","id":"676","title":"Manual Request/Response Signing"},"677":{"body":"","breadcrumbs":"MCP Integration » Error Handling","id":"677","title":"Error Handling"},"678":{"body":"import jacs\nfrom jacs.mcp import JACSMCPClient async def robust_mcp_client(): try: agent = jacs.JacsAgent() agent.load(\"./jacs.config.json\") client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: result = await client.call_tool(\"my_tool\", {\"data\": \"test\"}) return result except FileNotFoundError as e: print(f\"Configuration file not found: {e}\") except ConnectionError as e: print(f\"MCP connection failed: {e}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"MCP Integration » Common Errors","id":"678","title":"Common Errors"},"679":{"body":"Enable logging to debug authentication issues: import logging # Enable detailed logging\nlogging.basicConfig(level=logging.DEBUG) # Your MCP code here...","breadcrumbs":"MCP Integration » Debugging","id":"679","title":"Debugging"},"68":{"body":"This guide will get you up and running with JACS in under 10 minutes. We'll create an agent, generate a task, and demonstrate the core workflow across all three implementations.","breadcrumbs":"Quick Start » Quick Start Guide","id":"68","title":"Quick Start Guide"},"680":{"body":"","breadcrumbs":"MCP Integration » Production Deployment","id":"680","title":"Production Deployment"},"681":{"body":"Key Management : Store private keys securely Environment Variables : Use environment variables for sensitive paths Network Security : Use TLS for network transport Key Rotation : Implement key rotation policies import os\nimport jacs # Production initialization\nconfig_path = os.getenv(\"JACS_CONFIG_PATH\", \"/etc/jacs/config.json\") agent = jacs.JacsAgent()\nagent.load(config_path)","breadcrumbs":"MCP Integration » Security Best Practices","id":"681","title":"Security Best Practices"},"682":{"body":"FROM python:3.11-slim WORKDIR /app # Install dependencies\nCOPY requirements.txt .\nRUN pip install -r requirements.txt # Copy application\nCOPY . . # Create secure key directory\nRUN mkdir -p /secure/keys && chmod 700 /secure/keys # Set environment variables\nENV JACS_CONFIG_PATH=/app/jacs.config.json # Run MCP server\nCMD [\"python\", \"mcp_server.py\"]","breadcrumbs":"MCP Integration » Docker Deployment","id":"682","title":"Docker Deployment"},"683":{"body":"","breadcrumbs":"MCP Integration » Testing","id":"683","title":"Testing"},"684":{"body":"import pytest\nimport jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nfrom fastmcp.client import Client\nfrom fastmcp.client.transports import FastMCPTransport @pytest.fixture\ndef jacs_agent(): agent = jacs.JacsAgent() agent.load(\"./test.config.json\") return agent @pytest.fixture\ndef jacs_mcp_server(jacs_agent): server = FastMCP(\"Test Server\") return JACSMCPServer(server) async def test_authenticated_tool(jacs_mcp_server): @jacs_mcp_server.tool() def echo(text: str) -> str: return f\"Echo: {text}\" # Test the tool directly result = echo(\"test\") assert \"test\" in result","breadcrumbs":"MCP Integration » Unit Testing MCP Tools","id":"684","title":"Unit Testing MCP Tools"},"685":{"body":"","breadcrumbs":"MCP Integration » API Reference","id":"685","title":"API Reference"},"686":{"body":"Wraps a FastMCP server with JACS authentication middleware. Parameters: mcp_server: A FastMCP server instance Returns: The wrapped server with JACS middleware Example: from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP server = FastMCP(\"My Server\")\nauthenticated = JACSMCPServer(server)\napp = authenticated.sse_app()","breadcrumbs":"MCP Integration » JACSMCPServer(mcp_server)","id":"686","title":"JACSMCPServer(mcp_server)"},"687":{"body":"Creates a FastMCP client with JACS authentication interceptors. Parameters: url: The MCP server SSE endpoint URL **kwargs: Additional arguments passed to the FastMCP Client Returns: A FastMCP Client with JACS interceptors Example: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\")\nasync with client: result = await client.call_tool(\"my_tool\", {\"arg\": \"value\"})","breadcrumbs":"MCP Integration » JACSMCPClient(url, **kwargs)","id":"687","title":"JACSMCPClient(url, **kwargs)"},"688":{"body":"These functions are used internally by the MCP integration: jacs.sign_request(data) - Sign a request payload jacs.verify_request(data) - Verify an incoming request jacs.sign_response(data) - Sign a response payload jacs.verify_response(data) - Verify an incoming response","breadcrumbs":"MCP Integration » Module Functions","id":"688","title":"Module Functions"},"689":{"body":"FastMCP Integration - Advanced FastMCP patterns API Reference - Complete API documentation Examples - More complex examples","breadcrumbs":"MCP Integration » Next Steps","id":"689","title":"Next Steps"},"69":{"body":"Select the implementation that best fits your needs: 🦀 Rust CLI","breadcrumbs":"Quick Start » Choose Your Implementation","id":"69","title":"Choose Your Implementation"},"690":{"body":"Complete API documentation for the jacs Python package.","breadcrumbs":"API Reference » API Reference","id":"690","title":"API Reference"},"691":{"body":"pip install jacs","breadcrumbs":"API Reference » Installation","id":"691","title":"Installation"},"692":{"body":"import jacs\nfrom jacs import JacsAgent","breadcrumbs":"API Reference » Core Module","id":"692","title":"Core Module"},"693":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"693","title":"JacsAgent Class"},"694":{"body":"JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"API Reference » Constructor","id":"694","title":"Constructor"},"695":{"body":"Load and initialize the agent from a configuration file. Parameters: config_path (str): Path to the JACS configuration file Returns: str - The loaded agent's JSON Example: agent = jacs.JacsAgent()\nagent_json = agent.load('./jacs.config.json')\nprint('Agent loaded:', json.loads(agent_json)['jacsId'])","breadcrumbs":"API Reference » agent.load(config_path)","id":"695","title":"agent.load(config_path)"},"696":{"body":"Create and sign a new JACS document. Parameters: document_string (str): JSON string of the document content custom_schema (str, optional): Path to a custom JSON Schema for validation output_filename (str, optional): Filename to save the document no_save (bool, optional): If True, don't save to storage (default: False) attachments (str, optional): Path to file attachments embed (bool, optional): If True, embed attachments in the document Returns: str - The signed document as a JSON string Example: # Basic document creation\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Hello, World!'\n})) # With custom schema\nvalidated_doc = agent.create_document( json.dumps({'title': 'Validated', 'amount': 100}), custom_schema='./schemas/invoice.schema.json'\n) # Without saving\ntemp_doc = agent.create_document( json.dumps({'data': 'temporary'}), no_save=True\n) # With attachments\ndoc_with_file = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n)","breadcrumbs":"API Reference » agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)","id":"696","title":"agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)"},"697":{"body":"Verify a document's signature and hash integrity. Parameters: document_string (str): The signed document JSON string Returns: bool - True if the document is valid Example: is_valid = agent.verify_document(signed_document_json)\nif is_valid: print('Document signature verified')\nelse: print('Document verification failed')","breadcrumbs":"API Reference » agent.verify_document(document_string)","id":"697","title":"agent.verify_document(document_string)"},"698":{"body":"Verify a document's signature with an optional custom signature field. Parameters: document_string (str): The signed document JSON string signature_field (str, optional): Name of the signature field (default: 'jacsSignature') Returns: bool - True if the signature is valid Example: # Verify default signature field\nis_valid = agent.verify_signature(doc_json) # Verify custom signature field\nis_valid_custom = agent.verify_signature(doc_json, 'customSignature')","breadcrumbs":"API Reference » agent.verify_signature(document_string, signature_field=None)","id":"698","title":"agent.verify_signature(document_string, signature_field=None)"},"699":{"body":"Update an existing document, creating a new version. Parameters: document_key (str): The document key in format \"id:version\" new_document_string (str): The modified document as JSON string attachments (list, optional): List of attachment file paths embed (bool, optional): If True, embed attachments Returns: str - The updated document as a JSON string Example: # Parse existing document to get key\ndoc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" # Update the document\nupdated_doc = agent.update_document( document_key, json.dumps({ **doc, 'title': 'Updated Title', 'content': 'Modified content' })\n)","breadcrumbs":"API Reference » agent.update_document(document_key, new_document_string, attachments=None, embed=False)","id":"699","title":"agent.update_document(document_key, new_document_string, attachments=None, embed=False)"},"7":{"body":"Choose your implementation and get started in minutes:","breadcrumbs":"Introduction » Quick Start","id":"7","title":"Quick Start"},"70":{"body":"# Install from crates.io\ncargo install jacs # Or build from source\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacs\ncargo install --path . --features=\"cli\"","breadcrumbs":"Quick Start » Install Rust CLI","id":"70","title":"Install Rust CLI"},"700":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: document_string (str): The document JSON string agent_ids (list): List of agent IDs required to sign question (str, optional): The agreement question context (str, optional): Additional context for the agreement agreement_field_name (str, optional): Field name for the agreement (default: 'jacsAgreement') Returns: str - The document with agreement as a JSON string Example: doc_with_agreement = agent.create_agreement( signed_document_json, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], question='Do you agree to these terms?', context='Q1 2024 Service Agreement', agreement_field_name='jacsAgreement'\n)","breadcrumbs":"API Reference » agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)","id":"700","title":"agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)"},"701":{"body":"Sign an agreement as the current agent. Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - The document with this agent's signature added Example: signed_agreement = agent.sign_agreement( doc_with_agreement_json, 'jacsAgreement'\n)","breadcrumbs":"API Reference » agent.sign_agreement(document_string, agreement_field_name=None)","id":"701","title":"agent.sign_agreement(document_string, agreement_field_name=None)"},"702":{"body":"Check the status of an agreement (which agents have signed). Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - JSON string with agreement status Example: status_json = agent.check_agreement(signed_agreement_json)\nstatus = json.loads(status_json) print('Required signers:', status['required'])\nprint('Signatures received:', status['signed'])\nprint('Complete:', status['complete'])","breadcrumbs":"API Reference » agent.check_agreement(document_string, agreement_field_name=None)","id":"702","title":"agent.check_agreement(document_string, agreement_field_name=None)"},"703":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (str): The data to sign Returns: str - Base64-encoded signature Example: signature = agent.sign_string('Important message')\nprint('Signature:', signature)","breadcrumbs":"API Reference » agent.sign_string(data)","id":"703","title":"agent.sign_string(data)"},"704":{"body":"Verify a signature on arbitrary string data. Parameters: data (str): The original data signature_base64 (str): The base64-encoded signature public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm (e.g., 'ring-Ed25519') Returns: bool - True if the signature is valid Example: is_valid = agent.verify_string( 'Important message', signature_base64, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.verify_string(data, signature_base64, public_key, public_key_enc_type)","id":"704","title":"agent.verify_string(data, signature_base64, public_key, public_key_enc_type)"},"705":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload (will be JSON serialized) Returns: str - JACS-signed request as a JSON string Example: signed_request = agent.sign_request({ 'method': 'GET', 'path': '/api/data', 'timestamp': datetime.now().isoformat(), 'body': {'query': 'value'}\n})","breadcrumbs":"API Reference » agent.sign_request(params)","id":"705","title":"agent.sign_request(params)"},"706":{"body":"Verify a JACS-signed response and extract the payload. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary containing the verified payload Example: result = agent.verify_response(jacs_response_string)\npayload = result.get('payload')\nprint('Verified payload:', payload)","breadcrumbs":"API Reference » agent.verify_response(document_string)","id":"706","title":"agent.verify_response(document_string)"},"707":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary with payload and agent ID Example: result = agent.verify_response_with_agent_id(jacs_response_string)\nprint('Payload:', result['payload'])\nprint('Signed by agent:', result['agentId'])","breadcrumbs":"API Reference » agent.verify_response_with_agent_id(document_string)","id":"707","title":"agent.verify_response_with_agent_id(document_string)"},"708":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agent_file (str, optional): Path to an agent file to verify Returns: bool - True if the agent is valid Example: # Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_other_valid = agent.verify_agent('./other-agent.json')","breadcrumbs":"API Reference » agent.verify_agent(agent_file=None)","id":"708","title":"agent.verify_agent(agent_file=None)"},"709":{"body":"Update the agent document with new data. Parameters: new_agent_string (str): The modified agent document as JSON string Returns: str - The updated agent document Example: current_agent = json.loads(agent.load('./jacs.config.json'))\nupdated_agent = agent.update_agent(json.dumps({ **current_agent, 'description': 'Updated description'\n}))","breadcrumbs":"API Reference » agent.update_agent(new_agent_string)","id":"709","title":"agent.update_agent(new_agent_string)"},"71":{"body":"# Create configuration and agent in one step\njacs init # This creates:\n# - ~/.jacs/config.json\n# - Agent keys and documents\n# - Basic directory structure","breadcrumbs":"Quick Start » Initialize JACS","id":"71","title":"Initialize JACS"},"710":{"body":"Sign another agent's document with a registration signature. Parameters: agent_string (str): The agent document to sign public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm Returns: str - The signed agent document Example: signed_agent = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.sign_agent(agent_string, public_key, public_key_enc_type)","id":"710","title":"agent.sign_agent(agent_string, public_key, public_key_enc_type)"},"711":{"body":"These functions operate on a global agent singleton and are maintained for backwards compatibility. New code should use the JacsAgent class instead.","breadcrumbs":"API Reference » Module-Level Functions","id":"711","title":"Module-Level Functions"},"712":{"body":"Load the global agent from a configuration file. import jacs\njacs.load('./jacs.config.json')","breadcrumbs":"API Reference » jacs.load(config_path)","id":"712","title":"jacs.load(config_path)"},"713":{"body":"Sign a request using the global agent. signed = jacs.sign_request({'method': 'tools/call', 'params': {...}})","breadcrumbs":"API Reference » jacs.sign_request(data)","id":"713","title":"jacs.sign_request(data)"},"714":{"body":"Verify an incoming request using the global agent. payload = jacs.verify_request(incoming_request_string)","breadcrumbs":"API Reference » jacs.verify_request(data)","id":"714","title":"jacs.verify_request(data)"},"715":{"body":"Sign a response using the global agent. signed = jacs.sign_response({'result': 'success'})","breadcrumbs":"API Reference » jacs.sign_response(data)","id":"715","title":"jacs.sign_response(data)"},"716":{"body":"Verify an incoming response using the global agent. result = jacs.verify_response(response_string)\npayload = result.get('payload')","breadcrumbs":"API Reference » jacs.verify_response(data)","id":"716","title":"jacs.verify_response(data)"},"717":{"body":"from jacs.mcp import JACSMCPServer, JACSMCPClient","breadcrumbs":"API Reference » MCP Module","id":"717","title":"MCP Module"},"718":{"body":"Wraps a FastMCP server with JACS authentication middleware. Parameters: mcp_server: A FastMCP server instance Returns: The wrapped server with JACS middleware Example: from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP server = FastMCP(\"My Server\")\nauthenticated = JACSMCPServer(server)\napp = authenticated.sse_app()","breadcrumbs":"API Reference » JACSMCPServer(mcp_server)","id":"718","title":"JACSMCPServer(mcp_server)"},"719":{"body":"Creates a FastMCP client with JACS authentication interceptors. Parameters: url: The MCP server SSE endpoint URL **kwargs: Additional arguments passed to the FastMCP Client Returns: A FastMCP Client with JACS interceptors Example: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\")\nasync with client: result = await client.call_tool(\"my_tool\", {\"arg\": \"value\"})","breadcrumbs":"API Reference » JACSMCPClient(url, **kwargs)","id":"719","title":"JACSMCPClient(url, **kwargs)"},"72":{"body":"# Create an agent (if not done via jacs init)\n# Agent type is defined in the input JSON file or default template\njacs agent create --create-keys true # Or provide a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Verify your agent was created correctly\njacs agent verify","breadcrumbs":"Quick Start » Create Your First Agent","id":"72","title":"Create Your First Agent"},"720":{"body":"","breadcrumbs":"API Reference » Configuration","id":"720","title":"Configuration"},"721":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"API Reference » Configuration File Format","id":"721","title":"Configuration File Format"},"722":{"body":"Field Type Description jacs_agent_id_and_version string Agent ID and version in format \"id:version\" jacs_agent_key_algorithm string Signing algorithm: \"ring-Ed25519\", \"RSA-PSS\", \"pq-dilithium\", \"pq2025\" jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_data_directory string Directory for data storage jacs_key_directory string Directory for key storage jacs_default_storage string Storage backend: \"fs\", \"s3\", \"memory\"","breadcrumbs":"API Reference » Configuration Options","id":"722","title":"Configuration Options"},"723":{"body":"All methods may raise exceptions. Use try/except for error handling: try: agent = jacs.JacsAgent() agent.load('./jacs.config.json') doc = agent.create_document(json.dumps({'data': 'test'}))\nexcept FileNotFoundError as e: print(f'Configuration file not found: {e}')\nexcept ValueError as e: print(f'Invalid configuration: {e}')\nexcept Exception as e: print(f'JACS error: {e}')","breadcrumbs":"API Reference » Error Handling","id":"723","title":"Error Handling"},"724":{"body":"Exception Description FileNotFoundError Configuration file or key file not found ValueError Invalid configuration or document format RuntimeError Agent not loaded or cryptographic operation failed","breadcrumbs":"API Reference » Common Exceptions","id":"724","title":"Common Exceptions"},"725":{"body":"The package supports type hints for better IDE integration: from jacs import JacsAgent\nimport json def process_document(agent: JacsAgent, data: dict) -> str: \"\"\"Create and return a signed document.\"\"\" doc_string = json.dumps(data) return agent.create_document(doc_string) def verify_and_extract(agent: JacsAgent, doc: str) -> dict: \"\"\"Verify document and extract content.\"\"\" if agent.verify_document(doc): return json.loads(doc) raise ValueError(\"Document verification failed\")","breadcrumbs":"API Reference » Type Hints","id":"725","title":"Type Hints"},"726":{"body":"JacsAgent instances use internal locking and are thread-safe. You can safely use the same agent instance across multiple threads: import threading\nfrom jacs import JacsAgent agent = JacsAgent()\nagent.load('./jacs.config.json') def worker(data): # Safe to call from multiple threads doc = agent.create_document(json.dumps(data)) return doc threads = [ threading.Thread(target=worker, args=({'id': i},)) for i in range(10)\n]\nfor t in threads: t.start()\nfor t in threads: t.join()","breadcrumbs":"API Reference » Thread Safety","id":"726","title":"Thread Safety"},"727":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol Examples - More complex examples","breadcrumbs":"API Reference » See Also","id":"727","title":"See Also"},"728":{"body":"JACS uses JSON Schema (Draft-07) to define the structure and validation rules for all documents in the system. These schemas ensure consistency, enable validation, and provide a contract for interoperability between agents.","breadcrumbs":"JSON Schemas » JSON Schemas","id":"728","title":"JSON Schemas"},"729":{"body":"JACS schemas follow a hierarchical composition pattern: ┌─────────────────────────────────────────────────────────┐\n│ Document Schemas │\n│ (agent.schema.json, task.schema.json, message.schema.json) │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Header Schema │\n│ (header.schema.json) │\n│ Base fields: jacsId, jacsVersion, jacsSignature, etc. │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Component Schemas │\n│ signature.schema.json, agreement.schema.json, │\n│ files.schema.json, embedding.schema.json, etc. │\n└─────────────────────────────────────────────────────────┘","breadcrumbs":"JSON Schemas » Schema Architecture","id":"729","title":"Schema Architecture"},"73":{"body":"# Create a task document with name and description\njacs task create \\ -n \"Write Product Description\" \\ -d \"Create compelling copy for new product launch\" # The task is automatically signed by your agent 🟢 Node.js","breadcrumbs":"Quick Start » Create and Sign a Task","id":"73","title":"Create and Sign a Task"},"730":{"body":"","breadcrumbs":"JSON Schemas » Schema Categories","id":"730","title":"Schema Categories"},"731":{"body":"Schema Purpose jacs.config.schema.json Agent configuration file format","breadcrumbs":"JSON Schemas » Configuration Schema","id":"731","title":"Configuration Schema"},"732":{"body":"Schema Purpose header/v1/header.schema.json Base fields for all JACS documents agent/v1/agent.schema.json Agent identity and capabilities task/v1/task.schema.json Task workflow and state management message/v1/message.schema.json Inter-agent messages node/v1/node.schema.json Graph node representation program/v1/program.schema.json Executable program definitions eval/v1/eval.schema.json Evaluation and assessment records agentstate/v1/agentstate.schema.json Signed agent state files (memory, skills, plans, configs, hooks, other) commitment/v1/commitment.schema.json Shared, signed agreements between agents todo/v1/todo.schema.json Private, signed todo lists with inline items","breadcrumbs":"JSON Schemas » Document Schemas","id":"732","title":"Document Schemas"},"733":{"body":"Schema Purpose signature/v1/signature.schema.json Cryptographic signatures agreement/v1/agreement.schema.json Multi-party agreements files/v1/files.schema.json File attachments embedding/v1/embedding.schema.json Vector embeddings contact/v1/contact.schema.json Contact information service/v1/service.schema.json Service definitions tool/v1/tool.schema.json Tool capabilities action/v1/action.schema.json Action definitions unit/v1/unit.schema.json Unit of measurement todoitem/v1/todoitem.schema.json Inline todo item (goal or task)","breadcrumbs":"JSON Schemas » Component Schemas","id":"733","title":"Component Schemas"},"734":{"body":"Schemas are available at: HTTPS URLs : https://hai.ai/schemas/... Local files : jacs/schemas/... Example schema URLs: https://hai.ai/schemas/jacs.config.schema.json\nhttps://hai.ai/schemas/header/v1/header.schema.json\nhttps://hai.ai/schemas/agent/v1/agent.schema.json\nhttps://hai.ai/schemas/components/signature/v1/signature.schema.json","breadcrumbs":"JSON Schemas » Schema Locations","id":"734","title":"Schema Locations"},"735":{"body":"","breadcrumbs":"JSON Schemas » Using Schemas","id":"735","title":"Using Schemas"},"736":{"body":"Every JACS document must include a $schema field: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsType\": \"agent\", ...\n}","breadcrumbs":"JSON Schemas » In Documents","id":"736","title":"In Documents"},"737":{"body":"Reference the config schema for IDE support: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", ...\n}","breadcrumbs":"JSON Schemas » In Configuration Files","id":"737","title":"In Configuration Files"},"738":{"body":"Validate documents against custom schemas: import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create document with custom schema\ndoc = agent.create_document( json.dumps({'invoice_id': 'INV-001', 'amount': 100.00}), custom_schema='./schemas/invoice.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create document with custom schema\nconst doc = agent.createDocument( JSON.stringify({ invoice_id: 'INV-001', amount: 100.00 }), './schemas/invoice.schema.json'\n);","breadcrumbs":"JSON Schemas » Custom Schema Validation","id":"738","title":"Custom Schema Validation"},"739":{"body":"JACS schemas include a custom hai property that categorizes fields: Value Description meta Metadata fields (IDs, dates, versions) base Core cryptographic fields (hashes, signatures) agent Agent-controlled content fields This categorization helps determine which fields should be included in hash calculations and signature operations.","breadcrumbs":"JSON Schemas » HAI Extensions","id":"739","title":"HAI Extensions"},"74":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Quick Start » Install Node.js Package","id":"74","title":"Install Node.js Package"},"740":{"body":"Schemas are versioned using directory paths: schemas/\n├── header/\n│ └── v1/\n│ └── header.schema.json\n├── agent/\n│ └── v1/\n│ └── agent.schema.json\n└── components/ └── signature/ └── v1/ └── signature.schema.json Configuration options allow specifying schema versions: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"JSON Schemas » Versioning","id":"740","title":"Versioning"},"741":{"body":"Document schemas use JSON Schema's allOf to compose the header with type-specific fields: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"jacsAgentType\": { ... }, \"jacsServices\": { ... } } } ]\n} This ensures all documents share common header fields while allowing type-specific extensions.","breadcrumbs":"JSON Schemas » Schema Composition","id":"741","title":"Schema Composition"},"742":{"body":"Create custom schemas that extend JACS schemas: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0, \"description\": \"Invoice amount\" }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"], \"default\": \"USD\" }, \"lineItems\": { \"type\": \"array\", \"items\": { \"type\": \"object\", \"properties\": { \"description\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"unitPrice\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"description\", \"quantity\", \"unitPrice\"] } } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"JSON Schemas » Creating Custom Schemas","id":"742","title":"Creating Custom Schemas"},"743":{"body":"","breadcrumbs":"JSON Schemas » Validation Rules","id":"743","title":"Validation Rules"},"744":{"body":"All JACS documents require these header fields: jacsId - Unique document identifier (UUID v4) jacsType - Document type identifier jacsVersion - Version identifier (UUID v4) jacsVersionDate - Version timestamp (ISO 8601) jacsOriginalVersion - First version identifier jacsOriginalDate - Creation timestamp jacsLevel - Document level (raw, config, artifact, derived) $schema - Schema reference URL","breadcrumbs":"JSON Schemas » Required Fields","id":"744","title":"Required Fields"},"745":{"body":"Fields use JSON Schema format keywords: uuid - UUID v4 format date-time - ISO 8601 date-time format uri - Valid URI format","breadcrumbs":"JSON Schemas » Format Validation","id":"745","title":"Format Validation"},"746":{"body":"Many fields have enumerated valid values: { \"jacsLevel\": { \"enum\": [\"raw\", \"config\", \"artifact\", \"derived\"] }, \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }, \"jacs_agent_key_algorithm\": { \"enum\": [\"RSA-PSS\", \"ring-Ed25519\", \"pq-dilithium\", \"pq2025\"] }\n}","breadcrumbs":"JSON Schemas » Enum Constraints","id":"746","title":"Enum Constraints"},"747":{"body":"For detailed documentation on specific schemas: Agent Schema - Agent identity and capabilities Document Schema - Document header and structure Task Schema - Task workflow management Agent State Schema - Signed agent state documents Commitment Schema - Shared agreements between agents Todo List Schema - Private task tracking with inline items Conversation Schema - Message threading and ordering Configuration - Configuration file format","breadcrumbs":"JSON Schemas » Schema Reference","id":"747","title":"Schema Reference"},"748":{"body":"Custom Schemas - Creating custom document types Security Model - How schemas relate to security API Reference - Using schemas in code","breadcrumbs":"JSON Schemas » See Also","id":"748","title":"See Also"},"749":{"body":"The Agent Schema defines the structure for agent identity documents in JACS. Agents represent entities that can sign documents, participate in agreements, and provide services.","breadcrumbs":"Agent Schema » Agent Schema","id":"749","title":"Agent Schema"},"75":{"body":"import { JacsAgent, createConfig } from '@hai.ai/jacs';\nimport fs from 'fs'; // Create configuration\nconst config = { jacs_agent_id_and_version: null, jacs_data_directory: \"./jacs_data\", jacs_key_directory: \"./jacs_keys\", jacs_default_storage: \"fs\", jacs_agent_key_algorithm: \"ring-Ed25519\"\n}; // Save config\nfs.writeFileSync('./jacs.config.json', JSON.stringify(config, null, 2)); // Create agent instance and load configuration\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Quick Start » Basic Setup","id":"75","title":"Basic Setup"},"750":{"body":"https://hai.ai/schemas/agent/v1/agent.schema.json","breadcrumbs":"Agent Schema » Schema Location","id":"750","title":"Schema Location"},"751":{"body":"Agent documents describe: Identity : Unique identifiers and versioning Type : Human, organizational, hybrid, or AI classification Services : Capabilities the agent offers Contacts : How to reach human or hybrid agents Domain : Optional DNS-based verification","breadcrumbs":"Agent Schema » Overview","id":"751","title":"Overview"},"752":{"body":"The agent schema extends the Header Schema using JSON Schema composition: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"title\": \"Agent\", \"description\": \"General schema for human, hybrid, and AI agents\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Agent Schema » Schema Structure","id":"752","title":"Schema Structure"},"753":{"body":"The jacsAgentType field classifies the agent: Type Description human A biological entity (individual person) human-org A group of people (organization, company) hybrid Combination of human and AI components ai Fully artificial intelligence { \"jacsAgentType\": { \"type\": \"string\", \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }\n}","breadcrumbs":"Agent Schema » Agent Types","id":"753","title":"Agent Types"},"754":{"body":"Human and hybrid agents must provide contact information: { \"if\": { \"properties\": { \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\"] } } }, \"then\": { \"required\": [\"jacsContacts\"] }\n}","breadcrumbs":"Agent Schema » Contact Requirements","id":"754","title":"Contact Requirements"},"755":{"body":"","breadcrumbs":"Agent Schema » Agent Properties","id":"755","title":"Agent Properties"},"756":{"body":"All agents inherit these header fields: Field Type Required Description jacsId string (UUID) Yes Unique agent identifier jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version timestamp jacsType string Yes Set to \"agent\" jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Creation timestamp jacsLevel string Yes Document level jacsSignature object No Cryptographic signature jacsSha256 string No Content hash","breadcrumbs":"Agent Schema » Core Fields (from Header)","id":"756","title":"Core Fields (from Header)"},"757":{"body":"Field Type Required Description jacsAgentType string Yes Agent classification jacsAgentDomain string No Domain for DNS verification jacsServices array Yes Services the agent provides jacsContacts array Conditional Contact information (required for human/hybrid)","breadcrumbs":"Agent Schema » Agent-Specific Fields","id":"757","title":"Agent-Specific Fields"},"758":{"body":"Services describe capabilities the agent offers: { \"jacsServices\": [{ \"name\": \"Document Signing Service\", \"serviceDescription\": \"Sign and verify JACS documents\", \"successDescription\": \"Documents are signed with valid signatures\", \"failureDescription\": \"Invalid documents or signing errors\", \"costDescription\": \"Free for basic usage, paid tiers available\", \"idealCustomerDescription\": \"Developers building secure agent systems\", \"termsOfService\": \"https://example.com/tos\", \"privacyPolicy\": \"https://example.com/privacy\", \"isDev\": false, \"tools\": [...] }]\n}","breadcrumbs":"Agent Schema » Services","id":"758","title":"Services"},"759":{"body":"Field Type Required Description name string No Service name serviceDescription string Yes What the service does successDescription string Yes What success looks like failureDescription string Yes What failure looks like costDescription string No Pricing information idealCustomerDescription string No Target customer profile termsOfService string No Legal terms URL or text privacyPolicy string No Privacy policy URL or text copyright string No Usage rights for provided data eula string No End-user license agreement isDev boolean No Whether this is a dev/test service tools array No Tool definitions piiDesired array No Types of sensitive data needed","breadcrumbs":"Agent Schema » Service Schema Fields","id":"759","title":"Service Schema Fields"},"76":{"body":"// Create agent with services\nconst agentData = { name: \"Content Creator Bot\", description: \"AI agent specialized in content creation\", services: [ { type: \"content_generation\", name: \"Product Description Writer\", description: \"Creates compelling product descriptions\", success: \"Engaging copy that converts visitors\", failure: \"Generic or low-quality content\" } ]\n}; // Generate keys and create agent\nawait agent.generateKeys();\nconst agentDoc = await agent.createAgent(agentData);\nconsole.log('Agent created:', agentDoc.jacsId);","breadcrumbs":"Quick Start » Create Agent Document","id":"76","title":"Create Agent Document"},"760":{"body":"Services can declare what personally identifiable information they need: { \"piiDesired\": [\"email\", \"phone\", \"address\"]\n} Valid PII types: signature - Digital signatures cryptoaddress - Cryptocurrency addresses creditcard - Payment card numbers govid - Government identification social - Social security numbers email - Email addresses phone - Phone numbers address - Physical addresses zip - Postal codes PHI - Protected health information MHI - Mental health information identity - Identity documents political - Political affiliation bankaddress - Banking information income - Income data","breadcrumbs":"Agent Schema » PII Types","id":"760","title":"PII Types"},"761":{"body":"Contact information for human and hybrid agents: { \"jacsContacts\": [{ \"firstName\": \"Jane\", \"lastName\": \"Smith\", \"email\": \"jane@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true, \"mailAddress\": \"123 Main St\", \"mailState\": \"CA\", \"mailZip\": \"94102\", \"mailCountry\": \"USA\" }]\n}","breadcrumbs":"Agent Schema » Contacts","id":"761","title":"Contacts"},"762":{"body":"Field Type Description firstName string First name lastName string Last name addressName string Location name phone string Phone number email string (email) Email address mailName string Name at address mailAddress string Street address mailAddressTwo string Address line 2 mailState string State/province mailZip string Postal code mailCountry string Country isPrimary boolean Primary contact flag","breadcrumbs":"Agent Schema » Contact Schema Fields","id":"762","title":"Contact Schema Fields"},"763":{"body":"Agents can link to a domain for DNSSEC-validated verification: { \"jacsAgentDomain\": \"example.com\"\n} The domain should have a DNS TXT record at _v1.agent.jacs.example.com. containing the agent's public key fingerprint. See the DNS chapter for complete setup instructions.","breadcrumbs":"Agent Schema » DNS Verification","id":"763","title":"DNS Verification"},"764":{"body":"","breadcrumbs":"Agent Schema » Complete Example","id":"764","title":"Complete Example"},"765":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"ai\", \"jacsServices\": [{ \"name\": \"Code Review Service\", \"serviceDescription\": \"Automated code review and analysis\", \"successDescription\": \"Review completed with actionable feedback\", \"failureDescription\": \"Unable to process or analyze code\", \"isDev\": false }], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature...\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"jacsServices\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Agent Schema » AI Agent","id":"765","title":"AI Agent"},"766":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsVersionDate\": \"2024-01-15T11:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsOriginalDate\": \"2024-01-15T11:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human\", \"jacsAgentDomain\": \"smith.example.com\", \"jacsServices\": [{ \"name\": \"Consulting\", \"serviceDescription\": \"Technical consulting services\", \"successDescription\": \"Project goals achieved\", \"failureDescription\": \"Unable to meet requirements\", \"termsOfService\": \"https://smith.example.com/tos\" }], \"jacsContacts\": [{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@smith.example.com\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Human Agent","id":"766","title":"Human Agent"},"767":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"770e8400-e29b-41d4-a716-446655440002\", \"jacsVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsVersionDate\": \"2024-01-15T12:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsOriginalDate\": \"2024-01-15T12:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human-org\", \"jacsAgentDomain\": \"acme.com\", \"jacsServices\": [{ \"name\": \"Enterprise Software\", \"serviceDescription\": \"Enterprise software solutions\", \"successDescription\": \"Software deployed and operational\", \"failureDescription\": \"Deployment or integration failure\", \"privacyPolicy\": \"https://acme.com/privacy\", \"piiDesired\": [\"email\", \"phone\"] }], \"jacsContacts\": [{ \"addressName\": \"Acme Corporation\", \"email\": \"contact@acme.com\", \"phone\": \"+1-800-555-ACME\", \"mailAddress\": \"1 Corporate Plaza\", \"mailState\": \"NY\", \"mailZip\": \"10001\", \"mailCountry\": \"USA\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Organization Agent","id":"767","title":"Organization Agent"},"768":{"body":"","breadcrumbs":"Agent Schema » Creating Agents","id":"768","title":"Creating Agents"},"769":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # The agent is created during configuration setup\n# Agent document is available after loading\nagent_json = agent.load('./jacs.config.json')\nagent_doc = json.loads(agent_json) print(f\"Agent ID: {agent_doc['jacsId']}\")\nprint(f\"Agent Type: {agent_doc['jacsAgentType']}\")","breadcrumbs":"Agent Schema » Python","id":"769","title":"Python"},"77":{"body":"// Create task document\nconst task = { title: \"Write Product Description\", description: \"Create compelling copy for new product launch\", actions: [ { id: \"research\", name: \"Product Research\", description: \"Analyze product features and benefits\", success: \"Complete understanding of product value\", failure: \"Insufficient product knowledge\" }, { id: \"write\", name: \"Write Copy\", description: \"Create engaging product description\", success: \"200-word compelling description\", failure: \"Generic or unconvincing copy\" } ]\n}; // Sign and create task\nconst signedTask = await agent.createTask(task);\nconsole.log('Task created:', signedTask.jacsId); 🐍 Python","breadcrumbs":"Quick Start » Create a Task","id":"77","title":"Create a Task"},"770":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconst agentDoc = JSON.parse(agentJson); console.log(`Agent ID: ${agentDoc.jacsId}`);\nconsole.log(`Agent Type: ${agentDoc.jacsAgentType}`);","breadcrumbs":"Agent Schema » Node.js","id":"770","title":"Node.js"},"771":{"body":"# Create a new agent\njacs agent create # View agent details\njacs agent show","breadcrumbs":"Agent Schema » CLI","id":"771","title":"CLI"},"772":{"body":"# Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_valid = agent.verify_agent('./other-agent.json') // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Agent Schema » Verifying Agents","id":"772","title":"Verifying Agents"},"773":{"body":"Document Schema - Header fields documentation Task Schema - Task workflow schema DNS Verification - Setting up domain verification Creating an Agent - Agent creation guide","breadcrumbs":"Agent Schema » See Also","id":"773","title":"See Also"},"774":{"body":"The Document Schema (Header Schema) defines the base structure for all JACS documents. Every JACS document type (agents, tasks, messages, etc.) extends this schema.","breadcrumbs":"Document Schema » Document Schema","id":"774","title":"Document Schema"},"775":{"body":"https://hai.ai/schemas/header/v1/header.schema.json","breadcrumbs":"Document Schema » Schema Location","id":"775","title":"Schema Location"},"776":{"body":"The header schema provides: Unique Identification : Every document has a unique ID and version Version Tracking : Full history with previous version references Cryptographic Integrity : Signatures and hashes for verification File Attachments : Support for embedded or linked files Vector Embeddings : Pre-computed embeddings for semantic search Agreements : Multi-party signature support","breadcrumbs":"Document Schema » Overview","id":"776","title":"Overview"},"777":{"body":"","breadcrumbs":"Document Schema » Core Fields","id":"777","title":"Core Fields"},"778":{"body":"Field Type Required Description $schema string Yes Schema URL for validation jacsId string (UUID) Yes Unique document identifier jacsType string Yes Document type (agent, task, etc.) { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\"\n}","breadcrumbs":"Document Schema » Identification","id":"778","title":"Identification"},"779":{"body":"Field Type Required Description jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version creation timestamp jacsPreviousVersion string (UUID) No Previous version (if not first) jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Document creation timestamp jacsBranch string (UUID) No Branch identifier for JACS databases { \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"e36ac10b-58cc-4372-a567-0e02b2c3d478\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d476\", \"jacsOriginalDate\": \"2024-01-01T09:00:00Z\"\n}","breadcrumbs":"Document Schema » Versioning","id":"779","title":"Versioning"},"78":{"body":"pip install jacs","breadcrumbs":"Quick Start » Install Python Package","id":"78","title":"Install Python Package"},"780":{"body":"The jacsLevel field indicates the intended use: Level Description raw Raw data that should not change config Configuration meant to be updated artifact Generated content that may be updated derived Computed from other documents { \"jacsLevel\": \"artifact\"\n}","breadcrumbs":"Document Schema » Document Level","id":"780","title":"Document Level"},"781":{"body":"","breadcrumbs":"Document Schema » Cryptographic Fields","id":"781","title":"Cryptographic Fields"},"782":{"body":"The jacsSignature field contains the creator's cryptographic signature: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature-string\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsType\", \"content\"] }\n} Signature Schema Fields Field Type Required Description agentID string (UUID) Yes Signing agent's ID agentVersion string (UUID) Yes Signing agent's version date string (date-time) Yes Signing timestamp signature string Yes Base64-encoded signature publicKeyHash string Yes Hash of public key used signingAlgorithm string No Algorithm used (ring-Ed25519, RSA-PSS, pq-dilithium) fields array Yes Fields included in signature response string No Text response with signature responseType string No agree, disagree, or reject","breadcrumbs":"Document Schema » Signature","id":"782","title":"Signature"},"783":{"body":"The jacsRegistration field contains a signature from a registration authority: { \"jacsRegistration\": { \"agentID\": \"registrar-agent-id\", \"agentVersion\": \"registrar-version\", \"date\": \"2024-01-15T10:35:00Z\", \"signature\": \"registrar-signature\", \"publicKeyHash\": \"registrar-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsSignature\"] }\n}","breadcrumbs":"Document Schema » Registration","id":"783","title":"Registration"},"784":{"body":"The jacsSha256 field contains a SHA-256 hash of all document content (excluding this field): { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Document Schema » Hash","id":"784","title":"Hash"},"785":{"body":"Documents can include multi-party agreements using jacsAgreement: { \"jacsAgreement\": { \"agentIDs\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"question\": \"Do you agree to these terms?\", \"context\": \"Q1 2024 Service Agreement\", \"signatures\": [ { \"agentID\": \"agent-1-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T11:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-of-content-at-agreement-time\"\n}","breadcrumbs":"Document Schema » Agreements","id":"785","title":"Agreements"},"786":{"body":"Field Type Required Description agentIDs array Yes Required signers question string No What parties are agreeing to context string No Additional context signatures array No Collected signatures","breadcrumbs":"Document Schema » Agreement Schema Fields","id":"786","title":"Agreement Schema Fields"},"787":{"body":"Documents can include file attachments using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./documents/contract.pdf\", \"embed\": true, \"contents\": \"base64-encoded-file-contents\", \"sha256\": \"file-content-hash\" }, { \"mimetype\": \"image/png\", \"path\": \"./images/diagram.png\", \"embed\": false, \"sha256\": \"file-content-hash\" } ]\n}","breadcrumbs":"Document Schema » File Attachments","id":"787","title":"File Attachments"},"788":{"body":"Field Type Required Description mimetype string Yes MIME type of the file path string Yes File location (local path) embed boolean Yes Whether to embed contents contents string No Base64-encoded file contents sha256 string No Hash for content verification","breadcrumbs":"Document Schema » File Schema Fields","id":"788","title":"File Schema Fields"},"789":{"body":"Documents can include pre-computed embeddings for semantic search: { \"jacsEmbedding\": [ { \"llm\": \"text-embedding-ada-002\", \"vector\": [0.0023, -0.0089, 0.0156, ...] } ]\n}","breadcrumbs":"Document Schema » Vector Embeddings","id":"789","title":"Vector Embeddings"},"79":{"body":"import jacs\nimport json\nimport os # Create configuration\nconfig = { \"jacs_agent_id_and_version\": None, \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} # Ensure directories exist\nos.makedirs(\"./jacs_data\", exist_ok=True)\nos.makedirs(\"./jacs_keys\", exist_ok=True) # Save config\nwith open('jacs.config.json', 'w') as f: json.dump(config, f, indent=2) # Create agent instance and load configuration\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\")","breadcrumbs":"Quick Start » Basic Setup","id":"79","title":"Basic Setup"},"790":{"body":"Field Type Required Description llm string Yes Model used for embedding vector array Yes Vector of numbers","breadcrumbs":"Document Schema » Embedding Schema Fields","id":"790","title":"Embedding Schema Fields"},"791":{"body":"{ \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"title\": \"Sample Document\", \"content\": \"This is the document content.\", \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./attachment.pdf\", \"embed\": false, \"sha256\": \"abc123...\" } ], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"signature-base64...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"title\", \"content\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Document Schema » Complete Example","id":"791","title":"Complete Example"},"792":{"body":"Fields include a hai property indicating their category: Category Description Examples meta Metadata (IDs, dates) jacsId, jacsVersion, jacsVersionDate base Cryptographic data jacsSha256, signature agent Agent-controlled content Custom content fields This categorization determines which fields are included in hash and signature calculations.","breadcrumbs":"Document Schema » HAI Field Categories","id":"792","title":"HAI Field Categories"},"793":{"body":"","breadcrumbs":"Document Schema » Working with Documents","id":"793","title":"Working with Documents"},"794":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a basic document\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Document content here'\n})) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Document content here'\n}));","breadcrumbs":"Document Schema » Creating Documents","id":"794","title":"Creating Documents"},"795":{"body":"is_valid = agent.verify_document(doc_json) const isValid = agent.verifyDocument(docJson);","breadcrumbs":"Document Schema » Verifying Documents","id":"795","title":"Verifying Documents"},"796":{"body":"doc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" updated = agent.update_document( document_key, json.dumps({**doc, 'content': 'Updated content'})\n) const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; const updated = agent.updateDocument( documentKey, JSON.stringify({...doc, content: 'Updated content'})\n);","breadcrumbs":"Document Schema » Updating Documents","id":"796","title":"Updating Documents"},"797":{"body":"doc = agent.create_document( json.dumps({'title': 'Report'}), attachments='./report.pdf', embed=True\n) const doc = agent.createDocument( JSON.stringify({ title: 'Report' }), null, // custom_schema null, // output_filename false, // no_save './report.pdf', // attachments true // embed\n);","breadcrumbs":"Document Schema » Adding Attachments","id":"797","title":"Adding Attachments"},"798":{"body":"Documents maintain a version chain: Original (v1) ← Previous (v2) ← Current (v3) │ └── jacsOriginalVersion points here for all versions Each version: Has its own jacsVersion UUID References jacsPreviousVersion (except the first) All share the same jacsId and jacsOriginalVersion","breadcrumbs":"Document Schema » Version History","id":"798","title":"Version History"},"799":{"body":"Agent Schema - Agent document structure Task Schema - Task document structure Working with Documents - Document operations guide Agreements - Multi-party agreements","breadcrumbs":"Document Schema » See Also","id":"799","title":"See Also"},"8":{"body":"cargo install jacs\njacs init # Create config, keys, and agent Or step by step: jacs config create\njacs agent create --create-keys true","breadcrumbs":"Introduction » Rust CLI","id":"8","title":"Rust CLI"},"80":{"body":"# Define agent capabilities\nagent_data = { \"name\": \"Content Creator Bot\", \"description\": \"AI agent specialized in content creation\", \"services\": [ { \"type\": \"content_generation\", \"name\": \"Product Description Writer\", \"description\": \"Creates compelling product descriptions\", \"success\": \"Engaging copy that converts visitors\", \"failure\": \"Generic or low-quality content\" } ]\n} # Generate keys and create agent\nagent.generate_keys()\nagent_doc = agent.create_agent(agent_data)\nprint(f'Agent created: {agent_doc[\"jacsId\"]}')","breadcrumbs":"Quick Start » Create Agent Document","id":"80","title":"Create Agent Document"},"800":{"body":"The Task Schema defines the structure for task documents in JACS. Tasks represent work items with defined states, assigned agents, and completion criteria.","breadcrumbs":"Task Schema » Task Schema","id":"800","title":"Task Schema"},"801":{"body":"https://hai.ai/schemas/task/v1/task.schema.json","breadcrumbs":"Task Schema » Schema Location","id":"801","title":"Schema Location"},"802":{"body":"Task documents manage: Workflow States : From creation through completion Agent Assignment : Customer and assigned agent tracking Actions : Desired outcomes and completion criteria Agreements : Start and end agreements between parties Relationships : Sub-tasks, copies, and merges","breadcrumbs":"Task Schema » Overview","id":"802","title":"Overview"},"803":{"body":"The task schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/task/v1/task-schema.json\", \"title\": \"Task\", \"description\": \"General schema for stateful resources.\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Task Schema » Schema Structure","id":"803","title":"Schema Structure"},"804":{"body":"Tasks progress through defined workflow states: State Description creating Task is being drafted rfp Request for proposal - seeking agents proposal Agent has submitted a proposal negotiation Terms being negotiated started Work has begun review Work submitted for review completed Task is finished { \"jacsTaskState\": \"started\"\n}","breadcrumbs":"Task Schema » Task States","id":"804","title":"Task States"},"805":{"body":"creating → rfp → proposal → negotiation → started → review → completed ↑_______________| (may cycle back for renegotiation)","breadcrumbs":"Task Schema » State Transitions","id":"805","title":"State Transitions"},"806":{"body":"","breadcrumbs":"Task Schema » Task Properties","id":"806","title":"Task Properties"},"807":{"body":"Tasks inherit all document header fields plus task-specific fields.","breadcrumbs":"Task Schema » Core Fields (from Header)","id":"807","title":"Core Fields (from Header)"},"808":{"body":"Field Type Required Description jacsTaskName string No Human-readable task name jacsTaskSuccess string No Description of success criteria jacsTaskState string Yes Current workflow state jacsTaskCustomer object Yes Customer agent signature jacsTaskAgent object No Assigned agent signature jacsTaskStartDate string (date-time) No When work started jacsTaskCompleteDate string (date-time) No When work completed jacsTaskActionsDesired array Yes Required actions jacsStartAgreement object No Agreement to begin work jacsEndAgreement object No Agreement that work is complete","breadcrumbs":"Task Schema » Task-Specific Fields","id":"808","title":"Task-Specific Fields"},"809":{"body":"Field Type Description jacsTaskSubTaskOf array Parent task IDs jacsTaskCopyOf array Source task IDs (branching) jacsTaskMergedTasks array Tasks folded into this one","breadcrumbs":"Task Schema » Relationship Fields","id":"809","title":"Relationship Fields"},"81":{"body":"# Define task\ntask = { \"title\": \"Write Product Description\", \"description\": \"Create compelling copy for new product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Product Research\", \"description\": \"Analyze product features and benefits\", \"success\": \"Complete understanding of product value\", \"failure\": \"Insufficient product knowledge\" }, { \"id\": \"write\", \"name\": \"Write Copy\", \"description\": \"Create engaging product description\", \"success\": \"200-word compelling description\", \"failure\": \"Generic or unconvincing copy\" } ]\n} # Sign and create task\nsigned_task = agent.create_task(task)\nprint(f'Task created: {signed_task[\"jacsId\"]}')","breadcrumbs":"Quick Start » Create a Task","id":"81","title":"Create a Task"},"810":{"body":"Actions define what needs to be accomplished: { \"jacsTaskActionsDesired\": [ { \"name\": \"Create API Endpoint\", \"description\": \"Build REST endpoint for user registration\", \"cost\": { \"value\": 500, \"unit\": \"USD\" }, \"duration\": { \"value\": 8, \"unit\": \"hours\" }, \"completionAgreementRequired\": true, \"tools\": [...] } ]\n}","breadcrumbs":"Task Schema » Actions","id":"810","title":"Actions"},"811":{"body":"Field Type Required Description name string Yes Action name description string Yes What needs to be done tools array No Tools that can be used cost object No Cost estimate duration object No Time estimate completionAgreementRequired boolean No Requires sign-off","breadcrumbs":"Task Schema » Action Schema Fields","id":"811","title":"Action Schema Fields"},"812":{"body":"Costs and durations use the unit schema: { \"cost\": { \"value\": 100, \"unit\": \"USD\" }, \"duration\": { \"value\": 2, \"unit\": \"days\" }\n}","breadcrumbs":"Task Schema » Unit Schema","id":"812","title":"Unit Schema"},"813":{"body":"Tasks can include start and end agreements:","breadcrumbs":"Task Schema » Agreements","id":"813","title":"Agreements"},"814":{"body":"Signed when parties agree to begin work: { \"jacsStartAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree to begin this work?\", \"context\": \"Project XYZ - Phase 1\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » Start Agreement","id":"814","title":"Start Agreement"},"815":{"body":"Signed when parties agree work is complete: { \"jacsEndAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree this work is complete?\", \"context\": \"Final deliverables reviewed\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » End Agreement","id":"815","title":"End Agreement"},"816":{"body":"{ \"$schema\": \"https://hai.ai/schemas/task/v1/task.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"task\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsTaskName\": \"Build Authentication System\", \"jacsTaskSuccess\": \"Users can register, login, and manage sessions\", \"jacsTaskState\": \"started\", \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"customer-signature...\", \"publicKeyHash\": \"customer-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskAgent\": { \"agentID\": \"assigned-agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"date\": \"2024-01-16T09:00:00Z\", \"signature\": \"agent-signature...\", \"publicKeyHash\": \"agent-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskStartDate\": \"2024-01-16T09:00:00Z\", \"jacsStartAgreement\": { \"agentIDs\": [\"customer-agent-uuid\", \"assigned-agent-uuid\"], \"question\": \"Do you agree to begin work on this task?\", \"signatures\": [ { \"agentID\": \"customer-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:00:00Z\" }, { \"agentID\": \"assigned-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:05:00Z\" } ] }, \"jacsTaskActionsDesired\": [ { \"name\": \"User Registration\", \"description\": \"Implement user registration with email verification\", \"duration\": { \"value\": 4, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"User Login\", \"description\": \"Implement secure login with password hashing\", \"duration\": { \"value\": 3, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"Session Management\", \"description\": \"Implement JWT-based session tokens\", \"duration\": { \"value\": 2, \"unit\": \"hours\" }, \"completionAgreementRequired\": false } ], \"jacsSignature\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"document-signature...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsTaskName\", \"jacsTaskActionsDesired\"] }\n}","breadcrumbs":"Task Schema » Complete Example","id":"816","title":"Complete Example"},"817":{"body":"","breadcrumbs":"Task Schema » Task Relationships","id":"817","title":"Task Relationships"},"818":{"body":"Break large tasks into smaller units: { \"jacsTaskSubTaskOf\": [\"parent-task-uuid\"]\n}","breadcrumbs":"Task Schema » Sub-Tasks","id":"818","title":"Sub-Tasks"},"819":{"body":"Create variations or branches: { \"jacsTaskCopyOf\": [\"original-task-uuid\"]\n}","breadcrumbs":"Task Schema » Task Copies (Branching)","id":"819","title":"Task Copies (Branching)"},"82":{"body":"For scripts, CI/CD, and server environments, all bindings support fully programmatic agent creation without interactive prompts: Python import jacs.simple as jacs agent = jacs.create( name=\"my-agent\", password=\"Str0ng-P@ssw0rd!\", # or set JACS_PRIVATE_KEY_PASSWORD algorithm=\"pq2025\",\n)\nprint(f\"Agent: {agent.agent_id}\") Node.js const jacs = require('@hai.ai/jacs/simple'); const agent = jacs.create({ name: 'my-agent', password: process.env.JACS_PRIVATE_KEY_PASSWORD, algorithm: 'pq2025',\n});\nconsole.log(`Agent: ${agent.agentId}`); Go info, err := jacs.Create(\"my-agent\", &jacs.CreateAgentOptions{ Password: os.Getenv(\"JACS_PRIVATE_KEY_PASSWORD\"), Algorithm: \"pq2025\",\n}) Rust use jacs::simple::{CreateAgentParams, SimpleAgent}; let params = CreateAgentParams { name: \"my-agent\".into(), password: std::env::var(\"JACS_PRIVATE_KEY_PASSWORD\").unwrap(), algorithm: \"pq2025\".into(), ..Default::default()\n};\nlet (agent, info) = SimpleAgent::create_with_params(params)?; Password requirements : At least 8 characters, with uppercase, lowercase, a digit, and a special character. Algorithm note : pq-dilithium is deprecated in v0.6.0. Use pq2025 (ML-DSA-87, FIPS-204) instead.","breadcrumbs":"Quick Start » Non-Interactive Agent Creation (v0.6.0+)","id":"82","title":"Non-Interactive Agent Creation (v0.6.0+)"},"820":{"body":"Combine completed tasks: { \"jacsTaskMergedTasks\": [ \"subtask-1-uuid\", \"subtask-2-uuid\" ]\n}","breadcrumbs":"Task Schema » Merged Tasks","id":"820","title":"Merged Tasks"},"821":{"body":"","breadcrumbs":"Task Schema » Task Workflow","id":"821","title":"Task Workflow"},"822":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') task = agent.create_document(json.dumps({ 'jacsTaskName': 'Build Feature X', 'jacsTaskSuccess': 'Feature is deployed and tested', 'jacsTaskState': 'creating', 'jacsTaskActionsDesired': [ { 'name': 'Implementation', 'description': 'Write the code', 'completionAgreementRequired': True } ]\n}), custom_schema='https://hai.ai/schemas/task/v1/task.schema.json')","breadcrumbs":"Task Schema » 1. Creating a Task","id":"822","title":"1. Creating a Task"},"823":{"body":"When an agent accepts the task, add their signature to jacsTaskAgent and update state to started.","breadcrumbs":"Task Schema » 2. Assigning an Agent","id":"823","title":"2. Assigning an Agent"},"824":{"body":"Both parties sign the start agreement to confirm work begins.","breadcrumbs":"Task Schema » 3. Signing Start Agreement","id":"824","title":"3. Signing Start Agreement"},"825":{"body":"Update state to review, then both parties sign the end agreement.","breadcrumbs":"Task Schema » 4. Completing Work","id":"825","title":"4. Completing Work"},"826":{"body":"After end agreement is signed by all parties, update state to completed.","breadcrumbs":"Task Schema » 5. Final Completion","id":"826","title":"5. Final Completion"},"827":{"body":"Current State Valid Next States creating rfp rfp proposal, creating proposal negotiation, rfp negotiation started, proposal started review review completed, started completed (terminal)","breadcrumbs":"Task Schema » State Machine Rules","id":"827","title":"State Machine Rules"},"828":{"body":"Document Schema - Base document fields Agent Schema - Agent structure Agreements - Working with agreements JSON Schemas Overview - Schema architecture","breadcrumbs":"Task Schema » See Also","id":"828","title":"See Also"},"829":{"body":"The Agent State Schema defines the structure for signed agent state documents in JACS. Agent state documents wrap and cryptographically sign any agent configuration file -- memory files, skills, plans, configs, hooks, or any other document an agent wants to verify.","breadcrumbs":"Agent State Schema » Agent State Schema","id":"829","title":"Agent State Schema"},"83":{"body":"When you completed the quick start, several important things occurred:","breadcrumbs":"Quick Start » Understanding What Happened","id":"83","title":"Understanding What Happened"},"830":{"body":"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json","breadcrumbs":"Agent State Schema » Schema Location","id":"830","title":"Schema Location"},"831":{"body":"Agent state documents provide: Signed state files : Cryptographically sign MEMORY.md, skill files, plans, configs, hooks, or any file File integrity : SHA-256 hashes verify file contents haven't been tampered with Origin tracking : Record whether state was authored, adopted, generated, or imported Framework tagging : Identify which agent framework (claude-code, langchain, etc.) the state belongs to General-purpose signing : Use type other to sign any document an agent wants to verify All documents are stored within the JACS data directory for security.","breadcrumbs":"Agent State Schema » Overview","id":"831","title":"Overview"},"832":{"body":"The agent state schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"title\": \"Agent State Document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" } ], \"properties\": { \"jacsAgentStateType\": { \"type\": \"string\", \"enum\": [\"memory\", \"skill\", \"plan\", \"config\", \"hook\", \"other\"] }, \"jacsAgentStateName\": { \"type\": \"string\" } }, \"required\": [\"jacsAgentStateType\", \"jacsAgentStateName\"]\n}","breadcrumbs":"Agent State Schema » Schema Structure","id":"832","title":"Schema Structure"},"833":{"body":"Type Description Example memory Agent memory/knowledge files MEMORY.md, context files skill Agent skill definitions Coding patterns, domain knowledge plan Agent plans and strategies Implementation plans, workflows config Agent configuration files Settings, preferences hook Agent hooks and triggers (always embedded) Pre-commit hooks, event handlers other Any document the agent wants to sign and verify Reports, artifacts, custom files","breadcrumbs":"Agent State Schema » State Types","id":"833","title":"State Types"},"834":{"body":"","breadcrumbs":"Agent State Schema » Properties","id":"834","title":"Properties"},"835":{"body":"Field Type Description jacsAgentStateType string (enum) Type of agent state: memory, skill, plan, config, hook, other jacsAgentStateName string Human-readable name for this state document","breadcrumbs":"Agent State Schema » Required Fields","id":"835","title":"Required Fields"},"836":{"body":"Field Type Description jacsAgentStateDescription string Description of what this state contains jacsAgentStateFramework string Agent framework (e.g., \"claude-code\", \"langchain\") jacsAgentStateVersion string Content version (distinct from jacsVersion) jacsAgentStateContentType string MIME type (text/markdown, application/json, etc.) jacsAgentStateContent string Inline content (used when embedding) jacsAgentStateTags string[] Tags for categorization and search jacsAgentStateOrigin string (enum) How created: authored, adopted, generated, imported jacsAgentStateSourceUrl string (uri) Where content was obtained from","breadcrumbs":"Agent State Schema » Optional Fields","id":"836","title":"Optional Fields"},"837":{"body":"Every agent state document can track its provenance: Origin Meaning authored Created by the signing agent adopted Found unsigned, signed by adopting agent generated Produced by AI/automation imported Brought from another JACS installation","breadcrumbs":"Agent State Schema » Origin Tracking","id":"837","title":"Origin Tracking"},"838":{"body":"Agent state documents can reference external files using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"text/markdown\", \"path\": \"MEMORY.md\", \"embed\": true, \"sha256\": \"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9\", \"contents\": \"base64-encoded-gzipped-content\" } ]\n} When embed is true, the file content is stored inline in the document. Hook-type documents always embed content for security (prevents time-of-check/time-of-use attacks).","breadcrumbs":"Agent State Schema » File References","id":"838","title":"File References"},"839":{"body":"","breadcrumbs":"Agent State Schema » Examples","id":"839","title":"Examples"},"84":{"body":"A unique identity (UUID) was generated for your agent Cryptographic key pair was created for signing Agent document was created and self-signed Public key was stored for verification","breadcrumbs":"Quick Start » 1. Agent Creation","id":"84","title":"1. Agent Creation"},"840":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"Project Memory\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Minimal Agent State","id":"840","title":"Minimal Agent State"},"841":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"JACS Project Memory\", \"jacsAgentStateDescription\": \"Agent memory for the JACS project workspace\", \"jacsAgentStateFramework\": \"claude-code\", \"jacsAgentStateOrigin\": \"authored\", \"jacsAgentStateContentType\": \"text/markdown\", \"jacsAgentStateContent\": \"# MEMORY.md\\n\\n## Project: JACS\\n- Location: /home/agent/jacs\\n- Rust library for cryptographic signing\\n\", \"jacsAgentStateTags\": [\"jacs\", \"rust\", \"crypto\"], \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Memory File with Embedding","id":"841","title":"Memory File with Embedding"},"842":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"skill\", \"jacsAgentStateName\": \"JSON Schema Validation\", \"jacsAgentStateOrigin\": \"adopted\", \"jacsAgentStateSourceUrl\": \"https://agentskills.io/skills/json-schema\", \"jacsAgentStateVersion\": \"2.1.0\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Adopted Skill","id":"842","title":"Adopted Skill"},"843":{"body":"Use type other to sign any document: { \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"other\", \"jacsAgentStateName\": \"Q1 Financial Report\", \"jacsAgentStateDescription\": \"Quarterly financial summary for verification\", \"jacsAgentStateContentType\": \"application/json\", \"jacsAgentStateContent\": \"{\\\"revenue\\\": 150000, \\\"expenses\\\": 120000}\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » General-Purpose Signed Document","id":"843","title":"General-Purpose Signed Document"},"844":{"body":"","breadcrumbs":"Agent State Schema » Rust API","id":"844","title":"Rust API"},"845":{"body":"use jacs::schema::agentstate_crud::*; // Minimal state\nlet doc = create_minimal_agentstate(\"memory\", \"Project Memory\", Some(\"Agent memory file\"))?; // With file reference\nlet doc = create_agentstate_with_file(\"skill\", \"Rust Patterns\", \"./skills/rust.md\", true)?; // With inline content\nlet doc = create_agentstate_with_content( \"config\", \"Agent Settings\", \"{\\\"theme\\\": \\\"dark\\\"}\", \"application/json\"\n)?; // General-purpose signing\nlet doc = create_agentstate_with_content( \"other\", \"Audit Report\", \"Report contents here...\", \"text/plain\"\n)?; // Set metadata\nlet mut doc = create_minimal_agentstate(\"memory\", \"My Memory\", None)?;\nset_agentstate_framework(&mut doc, \"claude-code\")?;\nset_agentstate_origin(&mut doc, \"authored\", None)?;\nset_agentstate_tags(&mut doc, vec![\"project\", \"notes\"])?;\nset_agentstate_version(&mut doc, \"1.0.0\")?;","breadcrumbs":"Agent State Schema » Creating Agent State Documents","id":"845","title":"Creating Agent State Documents"},"846":{"body":"// Create, sign, and store\nlet doc_string = serde_json::to_string(&doc)?;\nlet signed_doc = agent.create_document_and_load(&doc_string, None, None)?; // Verify file integrity\nlet hash_valid = verify_agentstate_file_hash(&doc)?;","breadcrumbs":"Agent State Schema » Signing and Verification","id":"846","title":"Signing and Verification"},"847":{"body":"Six MCP tools are available for agent state operations: Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document's signature jacs_load_state Load an agent state document by key jacs_update_state Update and re-sign an agent state document jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state","breadcrumbs":"Agent State Schema » MCP Tools","id":"847","title":"MCP Tools"},"848":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"memory\", \"name\": \"Project Memory\", \"content\": \"# My Agent Memory\\n\\nKey facts about the project...\", \"content_type\": \"text/markdown\", \"framework\": \"claude-code\", \"tags\": [\"project\", \"memory\"] }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign a Memory File","id":"848","title":"MCP Example: Sign a Memory File"},"849":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"other\", \"name\": \"Verification Report\", \"content\": \"{\\\"status\\\": \\\"passed\\\", \\\"checks\\\": 42}\", \"content_type\": \"application/json\" }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign Any Document","id":"849","title":"MCP Example: Sign Any Document"},"85":{"body":"Storage directories were configured Cryptographic algorithm was selected Agent identity was linked to configuration","breadcrumbs":"Quick Start » 2. Configuration Setup","id":"85","title":"2. Configuration Setup"},"850":{"body":"All agent state documents are stored within the JACS data directory for security Hook-type documents always embed content to prevent TOCTOU attacks File hashes (SHA-256) are verified on load to detect tampering Origin tracking provides provenance auditing Documents are signed with the agent's private key, providing non-repudiation","breadcrumbs":"Agent State Schema » Security Notes","id":"850","title":"Security Notes"},"851":{"body":"JSON Schemas - Schema architecture overview Working with Documents - General document operations MCP Integration - MCP server setup Security Model - Cryptographic details","breadcrumbs":"Agent State Schema » See Also","id":"851","title":"See Also"},"852":{"body":"Commitments are shared, signed agreements between agents. They represent what an agent commits to doing, optionally within a conversation or linked to a task or todo item. Key design : Commitments work standalone. They do not require goals, tasks, conversations, or any other document type to be created first.","breadcrumbs":"Commitment Schema » Commitment Schema","id":"852","title":"Commitment Schema"},"853":{"body":"ID : https://hai.ai/schemas/commitment/v1/commitment.schema.json Type : jacsType: \"commitment\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf","breadcrumbs":"Commitment Schema » Schema","id":"853","title":"Schema"},"854":{"body":"Field Type Description jacsCommitmentDescription string Human-readable description of the commitment jacsCommitmentStatus enum Lifecycle status","breadcrumbs":"Commitment Schema » Required Fields","id":"854","title":"Required Fields"},"855":{"body":"pending -> active -> completed -> failed -> renegotiated -> disputed -> revoked Status Meaning pending Created but not yet started active Work is underway completed Successfully fulfilled failed Could not be fulfilled renegotiated Terms changed, replaced by new commitment disputed One party contests the commitment revoked Withdrawn by the owner","breadcrumbs":"Commitment Schema » Status Lifecycle","id":"855","title":"Status Lifecycle"},"856":{"body":"Field Type Description jacsCommitmentTerms object Structured terms (deliverable, deadline, compensation, etc.) jacsCommitmentDisputeReason string Reason when status is disputed or revoked jacsCommitmentTaskId uuid Reference to a task document jacsCommitmentConversationRef uuid Thread ID of the conversation that produced this commitment jacsCommitmentTodoRef string Todo item reference in format list-uuid:item-uuid jacsCommitmentQuestion string Structured question prompt jacsCommitmentAnswer string Answer to the question jacsCommitmentCompletionQuestion string Question to verify completion jacsCommitmentCompletionAnswer string Answer verifying completion jacsCommitmentStartDate date-time When the commitment period begins jacsCommitmentEndDate date-time Deadline jacsCommitmentRecurrence object Recurrence pattern (frequency + interval) jacsCommitmentOwner signature Single-agent owner signature","breadcrumbs":"Commitment Schema » Optional Fields","id":"856","title":"Optional Fields"},"857":{"body":"Commitments can link to other document types: Conversation : jacsCommitmentConversationRef holds a thread UUID Todo item : jacsCommitmentTodoRef uses format list-uuid:item-uuid Task : jacsCommitmentTaskId holds a task document UUID These references are optional. Commitments work independently.","breadcrumbs":"Commitment Schema » Cross-References","id":"857","title":"Cross-References"},"858":{"body":"Commitments use the standard JACS agreement mechanism from the header schema. Two or more agents can co-sign a commitment using jacsAgreement.","breadcrumbs":"Commitment Schema » Multi-Agent Agreements","id":"858","title":"Multi-Agent Agreements"},"859":{"body":"{ \"$schema\": \"https://hai.ai/schemas/commitment/v1/commitment.schema.json\", \"jacsCommitmentDescription\": \"Deliver Q1 analytics report by March 15\", \"jacsCommitmentStatus\": \"active\", \"jacsCommitmentTerms\": { \"deliverable\": \"PDF report with charts\", \"deadline\": \"2026-03-15T00:00:00Z\" }, \"jacsCommitmentStartDate\": \"2026-01-15T00:00:00Z\", \"jacsCommitmentEndDate\": \"2026-03-15T00:00:00Z\", \"jacsType\": \"commitment\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Commitment Schema » Example","id":"859","title":"Example"},"86":{"body":"Task document was structured according to JACS schema Document was signed with your agent's private key SHA-256 hash was calculated for integrity Signature metadata was embedded in the document","breadcrumbs":"Quick Start » 3. Task Creation","id":"86","title":"3. Task Creation"},"860":{"body":"use jacs::schema::commitment_crud::*; // Create\nlet commitment = create_minimal_commitment(\"Deliver report\").unwrap(); // With structured terms\nlet commitment = create_commitment_with_terms( \"Weekly standup\", serde_json::json!({\"frequency\": \"weekly\"}),\n).unwrap(); // Update status\nupdate_commitment_status(&mut commitment, \"active\").unwrap(); // Dispute\ndispute_commitment(&mut commitment, \"Terms not met\").unwrap(); // Cross-references\nset_conversation_ref(&mut commitment, &thread_id).unwrap();\nset_todo_ref(&mut commitment, \"list-uuid:item-uuid\").unwrap();\nset_task_ref(&mut commitment, &task_id).unwrap();","breadcrumbs":"Commitment Schema » Rust API","id":"860","title":"Rust API"},"861":{"body":"Since commitments use jacsLevel: \"config\", they can be updated. Each update creates a new jacsVersion linked to the previous via jacsPreviousVersion. This provides a full audit trail of status changes and modifications.","breadcrumbs":"Commitment Schema » Versioning","id":"861","title":"Versioning"},"862":{"body":"Todo List Schema - Private task tracking Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Commitment Schema » See Also","id":"862","title":"See Also"},"863":{"body":"Todo lists are private, signed documents belonging to a single agent. They contain inline items (goals and tasks) and are re-signed as a whole when any item changes.","breadcrumbs":"Todo List Schema » Todo List Schema","id":"863","title":"Todo List Schema"},"864":{"body":"ID : https://hai.ai/schemas/todo/v1/todo.schema.json Type : jacsType: \"todo\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf Component : todoitem.schema.json for inline items","breadcrumbs":"Todo List Schema » Schema","id":"864","title":"Schema"},"865":{"body":"Field Type Description jacsTodoName string Human-readable name for this list jacsTodoItems array Inline todo items","breadcrumbs":"Todo List Schema » Required Fields","id":"865","title":"Required Fields"},"866":{"body":"Field Type Description jacsTodoArchiveRefs uuid[] UUIDs of archived todo lists","breadcrumbs":"Todo List Schema » Optional Fields","id":"866","title":"Optional Fields"},"867":{"body":"Each item in jacsTodoItems is an inline object following todoitem.schema.json.","breadcrumbs":"Todo List Schema » Todo Items","id":"867","title":"Todo Items"},"868":{"body":"Field Type Description itemId uuid Stable UUID that does not change on re-signing itemType enum \"goal\" (broad objective) or \"task\" (specific action) description string Human-readable description status enum \"pending\", \"in-progress\", \"completed\", \"abandoned\"","breadcrumbs":"Todo List Schema » Required Item Fields","id":"868","title":"Required Item Fields"},"869":{"body":"Field Type Description priority enum \"low\", \"medium\", \"high\", \"critical\" childItemIds uuid[] Sub-goals or tasks under this item relatedCommitmentId uuid Commitment that formalizes this item relatedConversationThread uuid Conversation thread related to this item completedDate date-time When the item was completed assignedAgent uuid Agent assigned to this item tags string[] Tags for categorization","breadcrumbs":"Todo List Schema » Optional Item Fields","id":"869","title":"Optional Item Fields"},"87":{"body":"Let's verify that the documents are properly signed and can be validated: 🦀 Rust # Verify agent signature\njacs agent verify # Verify a specific document\njacs document verify -f ./jacs_data/[document-id].json # Sign a document\njacs document sign -f ./jacs_data/[document-id].json 🟢 Node.js // Verify agent signature\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent signature valid:', isValid); // List all documents\nconst documents = await agent.listDocuments();\nconsole.log('Documents:', documents.length); // Verify task signature\nconst taskValid = await agent.verifyDocument(signedTask);\nconsole.log('Task signature valid:', taskValid); // Get document details\nconst taskDetails = await agent.getDocument(signedTask.jacsId);\nconsole.log('Task details:', taskDetails); 🐍 Python # Verify agent signature\nis_valid = agent.verify_agent()\nprint(f'Agent signature valid: {is_valid}') # List all documents\ndocuments = agent.list_documents()\nprint(f'Documents: {len(documents)}') # Verify task signature task_valid = agent.verify_document(signed_task)\nprint(f'Task signature valid: {task_valid}') # Get document details\ntask_details = agent.get_document(signed_task[\"jacsId\"])\nprint(f'Task details: {task_details}')","breadcrumbs":"Quick Start » Verify Everything Works","id":"87","title":"Verify Everything Works"},"870":{"body":"Todo items can link to other document types: Commitment : relatedCommitmentId links an item to a commitment Conversation : relatedConversationThread links an item to a message thread References use the list-uuid:item-uuid format when referenced FROM other documents (e.g., jacsCommitmentTodoRef on a commitment). Use build_todo_item_ref() and parse_todo_item_ref() from reference_utils for this format.","breadcrumbs":"Todo List Schema » Cross-References","id":"870","title":"Cross-References"},"871":{"body":"Items support parent-child relationships via childItemIds: Goal: \"Ship Q1 release\" ├── Task: \"Write documentation\" ├── Task: \"Run integration tests\" └── Goal: \"Performance optimization\" ├── Task: \"Profile database queries\" └── Task: \"Add caching layer\"","breadcrumbs":"Todo List Schema » Item Hierarchy","id":"871","title":"Item Hierarchy"},"872":{"body":"{ \"$schema\": \"https://hai.ai/schemas/todo/v1/todo.schema.json\", \"jacsTodoName\": \"Q1 Sprint\", \"jacsTodoItems\": [ { \"itemId\": \"550e8400-e29b-41d4-a716-446655440001\", \"itemType\": \"goal\", \"description\": \"Ship analytics dashboard\", \"status\": \"in-progress\", \"priority\": \"high\", \"childItemIds\": [ \"550e8400-e29b-41d4-a716-446655440002\" ] }, { \"itemId\": \"550e8400-e29b-41d4-a716-446655440002\", \"itemType\": \"task\", \"description\": \"Build chart components\", \"status\": \"pending\", \"priority\": \"medium\", \"relatedCommitmentId\": \"660e8400-e29b-41d4-a716-446655440000\", \"tags\": [\"frontend\", \"charts\"] } ], \"jacsType\": \"todo\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Todo List Schema » Example","id":"872","title":"Example"},"873":{"body":"use jacs::schema::todo_crud::*; // Create a list\nlet mut list = create_minimal_todo_list(\"Sprint Work\").unwrap(); // Add items\nlet goal_id = add_todo_item(&mut list, \"goal\", \"Ship Q1\", Some(\"high\")).unwrap();\nlet task_id = add_todo_item(&mut list, \"task\", \"Write tests\", None).unwrap(); // Build hierarchy\nadd_child_to_item(&mut list, &goal_id, &task_id).unwrap(); // Progress tracking\nupdate_todo_item_status(&mut list, &task_id, \"in-progress\").unwrap();\nmark_todo_item_complete(&mut list, &task_id).unwrap(); // Cross-references\nset_item_commitment_ref(&mut list, &task_id, &commitment_id).unwrap();\nset_item_conversation_ref(&mut list, &task_id, &thread_id).unwrap(); // Archive completed items\nlet completed = remove_completed_items(&mut list).unwrap();","breadcrumbs":"Todo List Schema » Rust API","id":"873","title":"Rust API"},"874":{"body":"Since todo lists use jacsLevel: \"config\", each modification creates a new signed version. The itemId fields remain stable across versions, enabling consistent cross-referencing even as items are added, updated, or removed.","breadcrumbs":"Todo List Schema » Versioning","id":"874","title":"Versioning"},"875":{"body":"Commitment Schema - Shared agreements Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Todo List Schema » See Also","id":"875","title":"See Also"},"876":{"body":"Conversations use the existing message schema enhanced with thread tracking and message ordering. There is no separate \"conversation\" schema - conversations are sequences of signed messages sharing a thread ID.","breadcrumbs":"Conversation Schema » Conversation Schema","id":"876","title":"Conversation Schema"},"877":{"body":"ID : https://hai.ai/schemas/message/v1/message.schema.json Type : jacsType: \"message\" Level : jacsLevel: \"raw\" (immutable once signed) Extends : header.schema.json via allOf","breadcrumbs":"Conversation Schema » Schema","id":"877","title":"Schema"},"878":{"body":"","breadcrumbs":"Conversation Schema » Message Fields","id":"878","title":"Message Fields"},"879":{"body":"Field Type Description to string[] Recipient agent identifiers from string[] Sender agent identifiers content object Message body (free-form object)","breadcrumbs":"Conversation Schema » Required","id":"879","title":"Required"},"88":{"body":"Now let's create a second agent and demonstrate inter-agent communication: 🦀 Rust # Create a second agent configuration\ncp jacs.config.json reviewer.config.json\n# Edit reviewer.config.json to set jacs_agent_id_and_version to null # Create reviewer agent (uses JACS_CONFIG_PATH environment variable)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agent create --create-keys true # Create an agreement on a document\njacs agreement create -f ./document.json \\ --agents [agent-1-id],[agent-2-id] \\ --question \"Do you agree to collaborate on this content task?\" # Sign the agreement as first agent\njacs agreement sign -f ./document.json # Sign as second agent (using reviewer config)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agreement sign -f ./document.json # Verify agreement is complete\njacs agreement check -f ./document.json 🟢 Node.js // Create second agent with separate config file\nconst reviewerConfig = { ...config };\nreviewerConfig.jacs_agent_id_and_version = null; fs.writeFileSync('./reviewer.config.json', JSON.stringify(reviewerConfig, null, 2)); const reviewer = new JacsAgent();\nreviewer.load('./reviewer.config.json');\nawait reviewer.generateKeys(); const reviewerDoc = await reviewer.createAgent({ name: \"Content Reviewer Bot\", description: \"AI agent specialized in content review\"\n}); // Create agreement between agents\nconst agreement = { title: \"Content Collaboration Agreement\", question: \"Do you agree to collaborate on this content task?\", context: `Task: ${signedTask.jacsId}`, agents: [agentDoc.jacsId, reviewerDoc.jacsId]\n}; const signedAgreement = await agent.createAgreement(agreement); // Both agents sign the agreement\nawait agent.signAgreement(signedAgreement.jacsId);\nawait reviewer.signAgreement(signedAgreement.jacsId); // Verify all signatures\nconst agreementValid = await agent.verifyAgreement(signedAgreement.jacsId);\nconsole.log('Agreement complete:', agreementValid); 🐍 Python # Create second agent with separate config file\nreviewer_config = config.copy()\nreviewer_config[\"jacs_agent_id_and_version\"] = None with open('reviewer.config.json', 'w') as f: json.dump(reviewer_config, f, indent=2) reviewer = jacs.JacsAgent()\nreviewer.load(\"./reviewer.config.json\")\nreviewer.generate_keys() reviewer_doc = reviewer.create_agent({ \"name\": \"Content Reviewer Bot\", \"description\": \"AI agent specialized in content review\"\n}) # Create agreement between agents\nagreement = { \"title\": \"Content Collaboration Agreement\", \"question\": \"Do you agree to collaborate on this content task?\", \"context\": f\"Task: {signed_task['jacsId']}\", \"agents\": [agent_doc[\"jacsId\"], reviewer_doc[\"jacsId\"]]\n} signed_agreement = agent.create_agreement(agreement) # Both agents sign the agreement\nagent.sign_agreement(signed_agreement[\"jacsId\"])\nreviewer.sign_agreement(signed_agreement[\"jacsId\"]) # Verify all signatures\nagreement_valid = agent.verify_agreement(signed_agreement[\"jacsId\"])\nprint(f'Agreement complete: {agreement_valid}')","breadcrumbs":"Quick Start » Next Steps: Multi-Agent Workflow","id":"88","title":"Next Steps: Multi-Agent Workflow"},"880":{"body":"Field Type Description threadID string UUID of the conversation thread jacsMessagePreviousId uuid UUID of the previous message in this thread attachments array File attachments","breadcrumbs":"Conversation Schema » Optional","id":"880","title":"Optional"},"881":{"body":"Messages form a thread via two fields: threadID - All messages in a conversation share the same thread ID jacsMessagePreviousId - Each message references the previous one, creating an ordered chain Message 1 (threadID: \"abc-123\", previousId: null) └── Message 2 (threadID: \"abc-123\", previousId: msg1.jacsId) └── Message 3 (threadID: \"abc-123\", previousId: msg2.jacsId)","breadcrumbs":"Conversation Schema » Threading Model","id":"881","title":"Threading Model"},"882":{"body":"Messages use jacsLevel: \"raw\", making them immutable once signed. To continue a conversation, create a new message referencing the previous one. This ensures the integrity of the conversation history.","breadcrumbs":"Conversation Schema » Immutability","id":"882","title":"Immutability"},"883":{"body":"{ \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"threadID\": \"550e8400-e29b-41d4-a716-446655440000\", \"content\": { \"body\": \"I agree to the proposed terms.\", \"subject\": \"Re: Q1 Deliverables\" }, \"to\": [\"agent-b-uuid\"], \"from\": [\"agent-a-uuid\"], \"jacsMessagePreviousId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsType\": \"message\", \"jacsLevel\": \"raw\"\n}","breadcrumbs":"Conversation Schema » Example","id":"883","title":"Example"},"884":{"body":"use jacs::schema::conversation_crud::*; // Start a new conversation (generates thread ID)\nlet (first_msg, thread_id) = start_new_conversation( serde_json::json!({\"body\": \"Hello, let's discuss terms.\"}), vec![\"agent-b\".to_string()], vec![\"agent-a\".to_string()],\n).unwrap(); // Continue the conversation\nlet reply = create_conversation_message( &thread_id, serde_json::json!({\"body\": \"Sounds good. Here are my terms.\"}), vec![\"agent-a\".to_string()], vec![\"agent-b\".to_string()], Some(&previous_message_jacs_id),\n).unwrap(); // Extract thread info\nlet tid = get_thread_id(&message).unwrap();\nlet prev = get_previous_message_id(&message);","breadcrumbs":"Conversation Schema » Rust API","id":"884","title":"Rust API"},"885":{"body":"Conversations can be referenced by other document types: Commitment : jacsCommitmentConversationRef stores the thread UUID Todo item : relatedConversationThread stores the thread UUID This allows tracking which conversation led to a commitment or is related to a work item.","breadcrumbs":"Conversation Schema » Cross-References","id":"885","title":"Cross-References"},"886":{"body":"Commitment Schema - Agreements arising from conversations Todo List Schema - Private task tracking Document Schema - Header fields and signing","breadcrumbs":"Conversation Schema » See Also","id":"886","title":"See Also"},"887":{"body":"The JACS configuration file (jacs.config.json) defines agent settings, key locations, storage backends, and observability options.","breadcrumbs":"Configuration » Configuration","id":"887","title":"Configuration"},"888":{"body":"https://hai.ai/schemas/jacs.config.schema.json","breadcrumbs":"Configuration » Schema Location","id":"888","title":"Schema Location"},"889":{"body":"Create a minimal configuration file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Configuration » Quick Start","id":"889","title":"Quick Start"},"89":{"body":"Congratulations! You've successfully: ✅ Created JACS agents with cryptographic identities ✅ Generated and signed documents with verifiable integrity ✅ Established multi-agent agreements with cryptographic consent ✅ Verified signatures and document authenticity ✅ Created an audit trail of all interactions","breadcrumbs":"Quick Start » What You've Accomplished","id":"89","title":"What You've Accomplished"},"890":{"body":"Field Type Description jacs_data_directory string Path to store documents and agents jacs_key_directory string Path to store cryptographic keys jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_agent_key_algorithm string Signing algorithm jacs_default_storage string Storage backend","breadcrumbs":"Configuration » Required Fields","id":"890","title":"Required Fields"},"891":{"body":"","breadcrumbs":"Configuration » Configuration Options","id":"891","title":"Configuration Options"},"892":{"body":"jacs_agent_key_algorithm Specifies the cryptographic algorithm for signing: Value Description ring-Ed25519 Ed25519 signatures (recommended) RSA-PSS RSA with PSS padding pq-dilithium Post-quantum Dilithium pq2025 Post-quantum composite { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} jacs_agent_private_key_filename Name of the private key file in the key directory: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} If the key is encrypted, it will have .enc appended automatically when loading. jacs_agent_public_key_filename Name of the public key file: { \"jacs_agent_public_key_filename\": \"public.pem\"\n} jacs_private_key_password Password for encrypted private keys: { \"jacs_private_key_password\": \"your-password\"\n} Warning : Do not store passwords in config files for production. Use the JACS_PRIVATE_KEY_PASSWORD environment variable instead.","breadcrumbs":"Configuration » Key Configuration","id":"892","title":"Key Configuration"},"893":{"body":"jacs_default_storage Specifies where documents are stored: Value Description fs Local filesystem aws AWS S3 storage hai HAI cloud storage { \"jacs_default_storage\": \"fs\"\n} jacs_data_directory Path for storing documents and agents: { \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Configuration » Storage Configuration","id":"893","title":"Storage Configuration"},"894":{"body":"jacs_agent_id_and_version Load an existing agent by ID and version: { \"jacs_agent_id_and_version\": \"550e8400-e29b-41d4-a716-446655440000:f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n}","breadcrumbs":"Configuration » Agent Identity","id":"894","title":"Agent Identity"},"895":{"body":"Specify which schema versions to use: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"Configuration » Schema Versions","id":"895","title":"Schema Versions"},"896":{"body":"For DNSSEC-based agent verification: jacs_agent_domain Domain for DNS-based public key verification: { \"jacs_agent_domain\": \"example.com\"\n} jacs_dns_validate Enable DNS TXT fingerprint validation: { \"jacs_dns_validate\": true\n} jacs_dns_strict Require DNSSEC validation (no fallback): { \"jacs_dns_strict\": true\n} jacs_dns_required Require domain and DNS validation: { \"jacs_dns_required\": true\n}","breadcrumbs":"Configuration » DNS Configuration","id":"896","title":"DNS Configuration"},"897":{"body":"jacs_use_security Enable strict security features: { \"jacs_use_security\": \"1\"\n} Values: \"0\", \"1\", or \"false\", \"true\"","breadcrumbs":"Configuration » Security","id":"897","title":"Security"},"898":{"body":"JACS supports comprehensive observability through logs, metrics, and tracing.","breadcrumbs":"Configuration » Observability Configuration","id":"898","title":"Observability Configuration"},"899":{"body":"{ \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"stderr\" } } }\n} Log Levels Level Description trace Most verbose debug Debug information info General information warn Warnings error Errors only Log Destinations stderr (default): { \"destination\": { \"type\": \"stderr\" }\n} File : { \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/app.log\" }\n} OTLP (OpenTelemetry): { \"destination\": { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" } }\n} Null (disabled): { \"destination\": { \"type\": \"null\" }\n}","breadcrumbs":"Configuration » Logs Configuration","id":"899","title":"Logs Configuration"},"9":{"body":"npm install @hai.ai/jacs import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./config.json');","breadcrumbs":"Introduction » Node.js","id":"9","title":"Node.js"},"90":{"body":"Everything is verifiable : All documents have cryptographic signatures Agents are autonomous : Each has its own identity and keys Agreements enable trust : Multi-party consent before proceeding Audit trails are automatic : Complete history of all interactions JSON is universal : Documents work everywhere","breadcrumbs":"Quick Start » Key Takeaways","id":"90","title":"Key Takeaways"},"900":{"body":"{ \"observability\": { \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\" }, \"export_interval_seconds\": 60 } }\n} Metrics Destinations Prometheus : { \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\" }\n} OTLP : { \"destination\": { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\" }\n} File : { \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.json\" }\n} stdout : { \"destination\": { \"type\": \"stdout\" }\n}","breadcrumbs":"Configuration » Metrics Configuration","id":"900","title":"Metrics Configuration"},"901":{"body":"{ \"observability\": { \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"my-jacs-agent\", \"service_version\": \"1.0.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"backend\" } } } }\n} Sampling Options Field Type Description ratio number (0-1) Percentage of traces to sample parent_based boolean Follow parent span's sampling decision rate_limit integer Max traces per second","breadcrumbs":"Configuration » Tracing Configuration","id":"901","title":"Tracing Configuration"},"902":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\", \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\", \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": false, \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/agent.log\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://prometheus:9090/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-agent\", \"service_version\": \"1.0.0\", \"environment\": \"production\" } } }\n}","breadcrumbs":"Configuration » Complete Configuration Example","id":"902","title":"Complete Configuration Example"},"903":{"body":"Configuration can be overridden with environment variables: Variable Config Field JACS_PRIVATE_KEY_PASSWORD jacs_private_key_password JACS_DATA_DIRECTORY jacs_data_directory JACS_KEY_DIRECTORY jacs_key_directory export JACS_PRIVATE_KEY_PASSWORD=\"secure-password\"","breadcrumbs":"Configuration » Environment Variables","id":"903","title":"Environment Variables"},"904":{"body":"","breadcrumbs":"Configuration » Loading Configuration","id":"904","title":"Loading Configuration"},"905":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Configuration » Python","id":"905","title":"Python"},"906":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Configuration » Node.js","id":"906","title":"Node.js"},"907":{"body":"jacs --config ./jacs.config.json agent show","breadcrumbs":"Configuration » CLI","id":"907","title":"CLI"},"908":{"body":"Never commit private keys - Keep keys out of version control Use environment variables for secrets - Don't store passwords in config files Enable observability - Configure logs and metrics for monitoring Use DNS validation - Enable jacs_dns_validate for additional security Secure key directories - Restrict file permissions on key directories chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Configuration » Production Best Practices","id":"908","title":"Production Best Practices"},"909":{"body":"JSON Schemas Overview - Schema architecture Observability - Monitoring guide DNS Verification - Domain-based verification Quick Start - Getting started guide","breadcrumbs":"Configuration » See Also","id":"909","title":"See Also"},"91":{"body":"Now that you have the basics working: Rust Deep Dive - Learn the full Rust API Node.js Integration - Add MCP support Python MCP - Build authenticated MCP servers Production Security - Harden runtime settings and key management Real Examples - See production patterns","breadcrumbs":"Quick Start » Where to Go Next","id":"91","title":"Where to Go Next"},"910":{"body":"JACS implements a comprehensive security model designed to ensure authenticity, integrity, and non-repudiation for all agent communications and documents.","breadcrumbs":"Security Model » Security Model","id":"910","title":"Security Model"},"911":{"body":"Passwords : The private key password must be set only via the JACS_PRIVATE_KEY_PASSWORD environment variable. It is never stored in config files. Keys : Private keys are encrypted at rest (AES-256-GCM with PBKDF2, 600k iterations). Public keys and config may be stored on disk. Path validation : All paths built from untrusted input (e.g. publicKeyHash, filenames) are validated via require_relative_path_safe() to prevent directory traversal. This single validation function is used in data and key directory path builders and the trust store. It rejects empty segments, ., .., null bytes, and Windows drive-prefixed paths. Trust ID canonicalization : Trust-store operations normalize canonical agent docs (jacsId + jacsVersion) into a safe UUID:VERSION_UUID identifier before filesystem use, preserving path-safety checks while supporting standard agent document layout. Filesystem schema policy : Local schema loading is disabled by default and requires JACS_ALLOW_FILESYSTEM_SCHEMAS=true. When enabled, schema paths must remain within configured roots (JACS_DATA_DIRECTORY and/or JACS_SCHEMA_DIRECTORY) after normalized/canonical path checks. Network endpoint policy : HAI registration verification requires HTTPS for HAI_API_URL (localhost HTTP is allowed for local testing only). No secrets in config : Config files must not contain passwords or other secrets. The example config (jacs.config.example.json) does not include jacs_private_key_password. Dependency auditing : Run cargo audit (Rust), npm audit (Node.js), or pip audit (Python) to check for known vulnerabilities.","breadcrumbs":"Security Model » Security Model (v0.6.0)","id":"911","title":"Security Model (v0.6.0)"},"912":{"body":"","breadcrumbs":"Security Model » Core Security Principles","id":"912","title":"Core Security Principles"},"913":{"body":"Every JACS agent has a unique cryptographic identity: Key Pair : Each agent possesses a private/public key pair Agent ID : Unique UUID identifying the agent Public Key Hash : SHA-256 hash of the public key for verification { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\" }\n}","breadcrumbs":"Security Model » 1. Cryptographic Identity","id":"913","title":"1. Cryptographic Identity"},"914":{"body":"All documents include cryptographic guarantees: Signature : Cryptographic signature over specified fields Hash : SHA-256 hash of document contents Version Tracking : Immutable version history","breadcrumbs":"Security Model » 2. Document Integrity","id":"914","title":"2. Document Integrity"},"915":{"body":"Signatures provide proof of origin: Agents cannot deny signing a document Timestamps record when signatures were made Public keys enable independent verification","breadcrumbs":"Security Model » 3. Non-Repudiation","id":"915","title":"3. Non-Repudiation"},"916":{"body":"JACS provides a read-only security audit that checks configuration, directories, secrets, trust store, storage, quarantine/failed files, and optionally re-verifies recent documents. It does not modify state. Purpose : Surface misconfiguration, missing keys, unexpected paths, and verification failures in one report. Options (all optional): config_path: Path to jacs.config.json (default: 12-factor load) data_directory / key_directory: Override paths recent_verify_count: Number of recent documents to re-verify (default 10, max 100) Return structure : AuditResult with overall_status, risks (list of AuditRisk), health_checks (list of ComponentHealth), summary, checked_at, and optional quarantine_entries / failed_entries. Rust : use jacs::audit::{audit, AuditOptions}; let result = audit(AuditOptions::default())?;\nprintln!(\"{}\", jacs::format_audit_report(&result)); Python : import jacs.simple as jacs result = jacs.audit() # dict with risks, health_checks, summary, overall_status\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\") Node.js : import * as jacs from '@hai.ai/jacs/simple'; const result = jacs.audit({ recentN: 5 });\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`); Available in all bindings and as an MCP tool (jacs_audit) for automation.","breadcrumbs":"Security Model » Security Audit (audit())","id":"916","title":"Security Audit (audit())"},"917":{"body":"","breadcrumbs":"Security Model » Threat Model","id":"917","title":"Threat Model"},"918":{"body":"Threat Protection Tampering Content hashes detect modifications Impersonation Cryptographic signatures verify identity Replay Attacks Timestamps and version IDs ensure freshness; future timestamps rejected; optional signature expiration via JACS_MAX_SIGNATURE_AGE_SECONDS Man-in-the-Middle DNS verification via DNSSEC; TLS certificate validation Key Compromise Key rotation through versioning Weak Passwords Minimum 28-bit entropy enforcement (35-bit for single class)","breadcrumbs":"Security Model » Protected Against","id":"918","title":"Protected Against"},"919":{"body":"Private keys are kept secure Cryptographic algorithms are sound DNS infrastructure (when used) is trustworthy","breadcrumbs":"Security Model » Trust Assumptions","id":"919","title":"Trust Assumptions"},"92":{"body":"Agent creation fails : Check that the data and key directories exist and are writable Signature verification fails : Ensure public keys are properly stored and accessible Agreement signing fails : Verify all agent IDs are correct and agents exist Documents not found : Check the data directory configuration Need help? Check the GitHub issues or review the detailed implementation guides.","breadcrumbs":"Quick Start » Troubleshooting","id":"92","title":"Troubleshooting"},"920":{"body":"","breadcrumbs":"Security Model » Signature Process","id":"920","title":"Signature Process"},"921":{"body":"Field Selection : Determine which fields to sign Canonicalization : Serialize fields deterministically Signature Generation : Sign with private key Hash Computation : Compute SHA-256 of signed document import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create signed document\ndoc = agent.create_document(json.dumps({ 'title': 'Confidential Report', 'content': 'Sensitive data here'\n})) # Document now includes jacsSignature and jacsSha256","breadcrumbs":"Security Model » Signing a Document","id":"921","title":"Signing a Document"},"922":{"body":"Hash Verification : Recompute hash and compare Signature Verification : Verify signature with public key Agent Verification : Optionally verify agent identity via DNS is_valid = agent.verify_document(doc_json)\nis_signature_valid = agent.verify_signature(doc_json)","breadcrumbs":"Security Model » Verifying a Document","id":"922","title":"Verifying a Document"},"923":{"body":"","breadcrumbs":"Security Model » Key Management","id":"923","title":"Key Management"},"924":{"body":"JACS generates cryptographic key pairs during agent creation: # Keys are created in the configured key directory\njacs_keys/\n├── private.pem # Private key (keep secure!)\n└── public.pem # Public key (can be shared)","breadcrumbs":"Security Model » Key Generation","id":"924","title":"Key Generation"},"925":{"body":"Encryption at Rest : Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC-SHA256 (600,000 iterations). Never store the password in config files. # Set via environment variable only\nexport JACS_PRIVATE_KEY_PASSWORD=\"secure-password\" Important : The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable. Password Entropy Requirements : JACS enforces password entropy minimums for private key encryption. Password validation is performed at encryption time, and weak passwords are rejected with helpful error messages: Minimum 28-bit entropy for passwords with 2+ character classes (mixed case, numbers, symbols) Minimum 35-bit entropy for single-character-class passwords (e.g., all lowercase) Entropy is calculated based on character class diversity and length Weak passwords result in immediate rejection during key encryption Error messages guide users toward stronger password choices Example of rejected weak passwords: password - Too common and predictable 12345678 - Insufficient character diversity abc - Too short File Permissions : chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » Key Protection","id":"925","title":"Key Protection"},"926":{"body":"Update agent version to rotate keys: Generate new key pair Create new agent version Sign new version with old key Update configuration to use new keys","breadcrumbs":"Security Model » Key Rotation","id":"926","title":"Key Rotation"},"927":{"body":"JACS includes configurable TLS certificate validation for secure network communication.","breadcrumbs":"Security Model » TLS Certificate Validation","id":"927","title":"TLS Certificate Validation"},"928":{"body":"By default, JACS warns about invalid TLS certificates but accepts them to facilitate development environments with self-signed certificates: WARNING: Invalid TLS certificate detected. Set JACS_STRICT_TLS=true for production.","breadcrumbs":"Security Model » Default Behavior (Development)","id":"928","title":"Default Behavior (Development)"},"929":{"body":"For production deployments, enable strict TLS validation: export JACS_STRICT_TLS=true When enabled, JACS will: Reject connections with invalid, expired, or self-signed certificates Enforce proper certificate chain validation Fail fast with clear error messages for certificate issues Implementation : Certificate validation logic is located in jacs/src/schema/utils.rs.","breadcrumbs":"Security Model » Production Configuration","id":"929","title":"Production Configuration"},"93":{"body":"JACS supports a wide range of workflows: proving where data came from, protecting who runs an agent, registering with a platform, enforcing provenance in your app, and proving that a specific agent sent a message. This page summarizes five common use cases; each links to the full fictional scenario and technical flow in the repository. For detailed narratives (scenario, technical flow, outcome), see USECASES.md in the JACS repo.","breadcrumbs":"Use cases » Use cases","id":"93","title":"Use cases"},"930":{"body":"Mode Behavior Use Case Default (dev) Warn on invalid certs, allow connection Local development, testing Strict (JACS_STRICT_TLS=true) Reject invalid certs Production, staging For HAI registration verification endpoints, HAI_API_URL must use HTTPS. HTTP is only allowed for localhost test endpoints.","breadcrumbs":"Security Model » Security Implications","id":"930","title":"Security Implications"},"931":{"body":"JACS signatures include timestamps to prevent replay attacks and ensure temporal integrity.","breadcrumbs":"Security Model » Signature Timestamp Validation","id":"931","title":"Signature Timestamp Validation"},"932":{"body":"Timestamp Inclusion : Every signature includes a UTC timestamp recording when it was created Future Timestamp Rejection : Signatures with timestamps more than 5 minutes in the future are rejected Optional Signature Expiration : Configurable via JACS_MAX_SIGNATURE_AGE_SECONDS (disabled by default since JACS documents are designed to be eternal) Validation : Timestamp validation occurs during signature verification","breadcrumbs":"Security Model » How It Works","id":"932","title":"How It Works"},"933":{"body":"By default, signatures do not expire. JACS documents are designed to be idempotent and eternal. For use cases that require expiration: # Enable expiration (e.g., 90 days)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=7776000 # Default: no expiration (0)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=0","breadcrumbs":"Security Model » Configuring Signature Expiration","id":"933","title":"Configuring Signature Expiration"},"934":{"body":"The 5-minute future tolerance window: Allows for reasonable clock skew between systems Prevents attackers from creating signatures with future timestamps Ensures signatures cannot be pre-generated for later fraudulent use { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"signature\": \"...\", \"date\": \"2024-01-15T10:30:00Z\" // Must be within 5 min of verifier's clock }\n}","breadcrumbs":"Security Model » Protection Against Replay Attacks","id":"934","title":"Protection Against Replay Attacks"},"935":{"body":"For reliable timestamp validation across distributed systems: Ensure all agents use NTP or similar time synchronization Monitor for clock drift in production environments Consider the 5-minute tolerance when debugging verification failures","breadcrumbs":"Security Model » Clock Synchronization","id":"935","title":"Clock Synchronization"},"936":{"body":"Agents can claim a verification level that determines security requirements. This follows the principle: \"If you claim it, you must prove it.\"","breadcrumbs":"Security Model » Verification Claims","id":"936","title":"Verification Claims"},"937":{"body":"Claim Required Conditions Behavior unverified (default) None Relaxed DNS/TLS settings allowed; self-asserted identity verified Domain with DNSSEC Strict TLS, strict DNS with DNSSEC validation required verified-hai.ai Above + HAI.ai registration Must be registered and verified with HAI.ai","breadcrumbs":"Security Model » Claim Levels","id":"937","title":"Claim Levels"},"938":{"body":"Add the jacsVerificationClaim field to your agent definition: { \"jacsAgentType\": \"ai\", \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n}","breadcrumbs":"Security Model » Setting a Verification Claim","id":"938","title":"Setting a Verification Claim"},"939":{"body":"When an agent claims verified or verified-hai.ai: Domain Required : The jacsAgentDomain field must be set Strict DNS : DNS lookup uses DNSSEC validation (no insecure fallback) DNS Required : Public key fingerprint must match DNS TXT record Strict TLS : TLS certificate validation is mandatory (no self-signed certs) For verified-hai.ai claims, additional enforcement: HAI.ai Registration : Agent must be registered at hai.ai Public Key Match : Registered public key must match the agent's key Network Required : Verification fails if HAI.ai API is unreachable","breadcrumbs":"Security Model » Claim Enforcement","id":"939","title":"Claim Enforcement"},"94":{"body":"Summary. You have a pipeline or service that emits JSON (configs, reports, compliance data). Consumers need to trust that a given file or payload was produced by that program and not modified. With JACS, the program has one agent identity: it signs each artifact with sign_message or sign_file at emission; consumers verify with verify() or verify_by_id() (local storage), or use verify_standalone() for one-off verification without loading an agent. No central server is required. See USECASES.md § 1 for the full scenario.","breadcrumbs":"Use cases » 1. Verifying that JSON came from a specific program","id":"94","title":"1. Verifying that JSON came from a specific program"},"940":{"body":"Agents without jacsVerificationClaim are treated as unverified Existing agents continue to work with their current DNS settings No breaking changes for agents that don't opt into verified status","breadcrumbs":"Security Model » Backward Compatibility","id":"940","title":"Backward Compatibility"},"941":{"body":"If verification fails, clear error messages explain what's wrong: Verification claim 'verified' failed: Verified agents must have jacsAgentDomain set.\nAgents claiming 'verified' must meet the required security conditions. Verification claim 'verified-hai.ai' failed: Agent 'uuid' is not registered with HAI.ai.\nAgents claiming 'verified-hai.ai' must be registered at https://hai.ai","breadcrumbs":"Security Model » Error Messages","id":"941","title":"Error Messages"},"942":{"body":"No Downgrade : Once an agent claims verified, it cannot be verified with relaxed settings Claim Changes : Changing the claim requires creating a new agent version Network Dependency : verified-hai.ai requires network access to HAI.ai Audit Trail : Verification claim and enforcement results are logged","breadcrumbs":"Security Model » Security Considerations","id":"942","title":"Security Considerations"},"943":{"body":"JACS supports DNSSEC-validated identity verification:","breadcrumbs":"Security Model » DNS-Based Verification","id":"943","title":"DNS-Based Verification"},"944":{"body":"Agent publishes public key fingerprint in DNS TXT record Verifier queries DNS for _v1.agent.jacs.. DNSSEC validates the response authenticity Fingerprint is compared against agent's public key","breadcrumbs":"Security Model » How It Works","id":"944","title":"How It Works"},"945":{"body":"{ \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": true\n}","breadcrumbs":"Security Model » Configuration","id":"945","title":"Configuration"},"946":{"body":"Mode Description jacs_dns_validate: false No DNS verification jacs_dns_validate: true Attempt DNS verification, allow fallback jacs_dns_strict: true Require DNSSEC validation jacs_dns_required: true Fail if domain not present","breadcrumbs":"Security Model » Security Levels","id":"946","title":"Security Levels"},"947":{"body":"JACS maintains a trust store for managing trusted agent relationships.","breadcrumbs":"Security Model » Trust Store Management","id":"947","title":"Trust Store Management"},"948":{"body":"Before trusting an agent, JACS performs public key hash verification: # Trust an agent after verifying their public key hash\nagent.trust_agent(agent_id, public_key_hash)","breadcrumbs":"Security Model » Trusting Agents","id":"948","title":"Trusting Agents"},"949":{"body":"The untrust_agent() method properly handles the case when an agent is not in the trust store: try: agent.untrust_agent(agent_id)\nexcept AgentNotTrusted as e: # Agent was not in the trust store print(f\"Agent {agent_id} was not trusted: {e}\")","breadcrumbs":"Security Model » Untrusting Agents","id":"949","title":"Untrusting Agents"},"95":{"body":"Summary. You run a public-facing agent and want its messages to be verifiable (signed) without exposing who operates it. JACS supports this by keeping signing internal-only and publishing only the public key (via DNS and optionally HAI). Recipients use verify() (core JACS) or jacs_verify_auto (OpenClaw/moltyjacs) to confirm origin and integrity; they never learn who runs the agent. See USECASES.md § 2 for the full scenario.","breadcrumbs":"Use cases » 2. Protecting your agent's identity on the internet","id":"95","title":"2. Protecting your agent's identity on the internet"},"950":{"body":"Operation Validation trust_agent() UUID format validation, path traversal rejection, public key hash verification, self-signature verification before adding untrust_agent() UUID format validation, path containment check, returns AgentNotTrusted error if agent not found get_trusted_agent() UUID format validation, path containment check is_trusted() UUID format validation, safe lookup without side effects Key cache (load_public_key_from_cache) require_relative_path_safe() rejects traversal in publicKeyHash Key cache (save_public_key_to_cache) require_relative_path_safe() rejects traversal in publicKeyHash Path Traversal Protection (v0.6.0) : All trust store operations that construct file paths from agent IDs or key hashes use defense-in-depth: UUID format validation : Agent IDs must match UUID:UUID format (rejects special characters) Path character rejection : Explicit rejection of .., /, \\, and null bytes Path containment check : For existing files, canonicalized paths are verified to stay within the trust store directory require_relative_path_safe() : Key hashes are validated to prevent traversal before constructing cache file paths","breadcrumbs":"Security Model » Trust Store Security","id":"950","title":"Trust Store Security"},"951":{"body":"Verify Before Trust : Always verify an agent's public key hash through an out-of-band channel before trusting Audit Trust Changes : Log all trust store modifications for security auditing Periodic Review : Regularly review and prune the trust store","breadcrumbs":"Security Model » Best Practices","id":"951","title":"Best Practices"},"952":{"body":"Multi-party agreements provide additional security:","breadcrumbs":"Security Model » Agreement Security","id":"952","title":"Agreement Security"},"953":{"body":"{ \"jacsAgreement\": { \"agentIDs\": [\"agent-1\", \"agent-2\", \"agent-3\"], \"signatures\": [ { \"agentID\": \"agent-1\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T10:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-at-agreement-time\"\n}","breadcrumbs":"Security Model » Agreement Structure","id":"953","title":"Agreement Structure"},"954":{"body":"Content Lock : jacsAgreementHash ensures all parties agreed to same content Individual Consent : Each signature records explicit agreement Response Types : Support for agree, disagree, or reject Timestamp : Records when each party signed","breadcrumbs":"Security Model » Agreement Guarantees","id":"954","title":"Agreement Guarantees"},"955":{"body":"For MCP and HTTP communication:","breadcrumbs":"Security Model » Request/Response Security","id":"955","title":"Request/Response Security"},"956":{"body":"signed_request = agent.sign_request({ 'method': 'tools/call', 'params': {'name': 'echo', 'arguments': {'text': 'hello'}}\n}) The signed request includes: Full JACS document structure Agent signature Timestamp Content hash","breadcrumbs":"Security Model » Request Signing","id":"956","title":"Request Signing"},"957":{"body":"result = agent.verify_response(response_string)\npayload = result.get('payload')\nagent_id = result.get('agentId') # Who signed the response","breadcrumbs":"Security Model » Response Verification","id":"957","title":"Response Verification"},"958":{"body":"","breadcrumbs":"Security Model » Algorithm Security","id":"958","title":"Algorithm Security"},"959":{"body":"Algorithm Type Security Level ring-Ed25519 Elliptic Curve High (recommended) RSA-PSS RSA High pq-dilithium Post-Quantum Quantum-resistant pq2025 Composite Transitional","breadcrumbs":"Security Model » Supported Algorithms","id":"959","title":"Supported Algorithms"},"96":{"body":"Summary. You want to register your JACS agent with HAI.ai for attestation and discoverability, and to test verification before going live. Use the HAI registration flow: from Node registerWithHai() (@hai.ai/jacs), from Go RegisterWithHai() (jacsgo), from Python register_with_hai / register_new_agent() (jacspy), or openclaw jacs register (moltyjacs). Set HAI_API_KEY, then check attestation and run verification with JACS_KEY_RESOLUTION=local,hai. See USECASES.md § 3 for the full scenario.","breadcrumbs":"Use cases » 3. Registering and testing your agent on HAI.ai","id":"96","title":"3. Registering and testing your agent on HAI.ai"},"960":{"body":"Choose based on requirements: General Use : ring-Ed25519 - fast, secure, small signatures Legacy Systems : RSA-PSS - widely supported Future-Proofing : pq-dilithium - quantum-resistant Transition : pq2025 - hybrid classical/post-quantum","breadcrumbs":"Security Model » Algorithm Selection","id":"960","title":"Algorithm Selection"},"961":{"body":"","breadcrumbs":"Security Model » Security Best Practices","id":"961","title":"Security Best Practices"},"962":{"body":"# Never commit keys to version control\necho \"jacs_keys/\" >> .gitignore # Secure file permissions\nchmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » 1. Key Storage","id":"962","title":"1. Key Storage"},"963":{"body":"# Use environment variables\nexport JACS_PRIVATE_KEY_PASSWORD=\"$(pass show jacs/key-password)\"","breadcrumbs":"Security Model » 2. Password Handling","id":"963","title":"2. Password Handling"},"964":{"body":"Always use TLS for network communication: # HTTPS for web transport\nclient = JACSMCPClient(\"https://localhost:8000/sse\") # Good\n# client = JACSMCPClient(\"http://localhost:8000/sse\") # Avoid in production","breadcrumbs":"Security Model » 3. Transport Security","id":"964","title":"3. Transport Security"},"965":{"body":"{ \"jacs_dns_strict\": true, \"jacs_dns_required\": true, \"jacs_enable_filesystem_quarantine\": \"true\"\n}","breadcrumbs":"Security Model » 4. Verification Policies","id":"965","title":"4. Verification Policies"},"966":{"body":"Enable observability for security auditing: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" } }\n}","breadcrumbs":"Security Model » 5. Audit Logging","id":"966","title":"5. Audit Logging"},"967":{"body":"","breadcrumbs":"Security Model » Security Checklist","id":"967","title":"Security Checklist"},"968":{"body":"Generate unique keys for each environment Never commit private keys Use test keys separate from production","breadcrumbs":"Security Model » Development","id":"968","title":"Development"},"969":{"body":"Encrypt private keys at rest Use environment variables for secrets (never store jacs_private_key_password in config) Enable DNS verification Configure strict security mode Enable audit logging Use TLS for all network transport Restrict key file permissions (0600 for keys, 0700 for key directory) Implement key rotation policy Set JACS_STRICT_TLS=true for certificate validation Use strong passwords (28+ bit entropy, 35+ for single character class) Enable signature timestamp validation Verify public key hashes before trusting agents Run cargo audit / npm audit / pip audit regularly for dependency vulnerabilities","breadcrumbs":"Security Model » Production","id":"969","title":"Production"},"97":{"body":"Summary. Your agent (in Go, Node, or Python) must prove the origin and integrity of every important output for compliance. Use the simple API in jacspy, jacsnpm, or jacsgo: load(config), sign_message(payload) for each output, and verify(signed.raw) (or verify_standalone() for one-off verification without agent setup) wherever you consume signed data. Keys stay local; use JACS_KEY_RESOLUTION for external signers or air-gapped use. See USECASES.md § 4 for the full scenario.","breadcrumbs":"Use cases » 4. A Go, Node, or Python agent with strong data provenance","id":"97","title":"4. A Go, Node, or Python agent with strong data provenance"},"970":{"body":"Always verify documents before trusting Verify agent signatures Check agreement completeness Validate DNS records when required","breadcrumbs":"Security Model » Verification","id":"970","title":"Verification"},"971":{"body":"","breadcrumbs":"Security Model » Security Considerations","id":"971","title":"Security Considerations"},"972":{"body":"Verify JACS packages are from official sources Use package checksums Keep dependencies updated","breadcrumbs":"Security Model » Supply Chain","id":"972","title":"Supply Chain"},"973":{"body":"Use constant-time comparison for signatures Protect against timing attacks Secure memory handling for keys","breadcrumbs":"Security Model » Side Channels","id":"973","title":"Side Channels"},"974":{"body":"Backup key material securely Document key recovery procedures Plan for key compromise scenarios","breadcrumbs":"Security Model » Recovery","id":"974","title":"Recovery"},"975":{"body":"","breadcrumbs":"Security Model » Troubleshooting Verification Claims","id":"975","title":"Troubleshooting Verification Claims"},"976":{"body":"\"Verified agents must have jacsAgentDomain set\" Problem : You set jacsVerificationClaim to verified but didn't specify a domain. Solution : Either add a domain or use unverified: // Option 1: Add a domain (recommended for production)\n{ \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} // Option 2: Use unverified if DNS verification isn't needed\n{ \"jacsVerificationClaim\": \"unverified\"\n} \"Agent is not registered with HAI.ai\" Problem : You're using verified-hai.ai but the agent isn't registered. Solution : Register your agent at hai.ai Or use verified for DNS-only verification: { \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} \"Cannot downgrade from 'verified' to 'unverified'\" Problem : You're trying to change an existing agent's claim to a lower level. Solution : Verification claims cannot be downgraded for security. Options: Keep the current claim level Create a new agent with the desired claim level If this is a test/development scenario, start fresh # Create a new agent instead\njacs create --type ai --claim unverified \"DNS fingerprint mismatch\" Problem : The public key hash in DNS doesn't match your agent's key. Solution : Regenerate the DNS record with your current keys: jacs dns-record Update your DNS TXT record with the new value Wait for DNS propagation (can take up to 48 hours) \"Strict DNSSEC validation failed\" Problem : Your domain doesn't have DNSSEC enabled. Solution : Enable DNSSEC with your domain registrar Publish DS records at the parent zone Or use verified with non-strict DNS (development only)","breadcrumbs":"Security Model » Common Issues and Solutions","id":"976","title":"Common Issues and Solutions"},"977":{"body":"Claim Security Level Requirements unverified 0 (lowest) None - self-asserted identity verified 1 Domain + DNS TXT record + DNSSEC verified-hai.ai 2 (highest) Above + HAI.ai registration","breadcrumbs":"Security Model » Claim Level Reference","id":"977","title":"Claim Level Reference"},"978":{"body":"Upgrades allowed : unverified → verified → verified-hai.ai Downgrades blocked : Cannot go from higher to lower claim Same level allowed : Can update agent while keeping same claim","breadcrumbs":"Security Model » Upgrade vs Downgrade Rules","id":"978","title":"Upgrade vs Downgrade Rules"},"979":{"body":"# Check your agent's current claim\njacs info | grep jacsVerificationClaim # Verify DNS record is correct\njacs dns-check # Test verification\njacs verify --agent your-agent-id:version","breadcrumbs":"Security Model » Quick Diagnostic Commands","id":"979","title":"Quick Diagnostic Commands"},"98":{"body":"Summary. You use OpenClaw with the moltyjacs plugin and need cryptographic proof that a specific message came from your agent. The agent signs outbound messages with jacs_sign; the recipient verifies with jacs_verify_auto. The signature travels with the message; no custom PKI is required. See USECASES.md § 5 for the full scenario.","breadcrumbs":"Use cases » 5. OpenClaw (moltyjacs): proving your agent sent a message","id":"98","title":"5. OpenClaw (moltyjacs): proving your agent sent a message"},"980":{"body":"Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity Configuration - Security configuration Agreements - Multi-party agreements","breadcrumbs":"Security Model » See Also","id":"980","title":"See Also"},"981":{"body":"Key rotation is the process of replacing an agent's cryptographic keys while preserving the ability to verify documents signed with previous keys. JACS implements version-aware key management to support secure key lifecycle operations.","breadcrumbs":"Key Rotation » Key Rotation","id":"981","title":"Key Rotation"},"982":{"body":"","breadcrumbs":"Key Rotation » Why Key Rotation Matters","id":"982","title":"Why Key Rotation Matters"},"983":{"body":"When a private key is compromised, the agent must be able to: Generate new keys and continue operating Revoke trust in the compromised key Maintain verifiability of documents signed before the compromise","breadcrumbs":"Key Rotation » Key Compromise Recovery","id":"983","title":"Key Compromise Recovery"},"984":{"body":"Cryptographic algorithms evolve. Key rotation enables: Migration from older algorithms to newer ones Transition to post-quantum cryptography when needed Algorithm upgrades without breaking existing signatures","breadcrumbs":"Key Rotation » Cryptographic Agility","id":"984","title":"Cryptographic Agility"},"985":{"body":"Many security standards require periodic key rotation: PCI-DSS mandates regular key changes SOC 2 requires key management policies NIST guidelines recommend rotation schedules","breadcrumbs":"Key Rotation » Compliance Requirements","id":"985","title":"Compliance Requirements"},"986":{"body":"JACS uses a versioned identity model where each key rotation creates a new agent version.","breadcrumbs":"Key Rotation » Agent Versioning","id":"986","title":"Agent Versioning"},"987":{"body":"Agent identifiers follow the format: {agent_id}:{version_uuid} jacsId : The stable agent identity (UUID v4) - never changes jacsVersion : Current version UUID - changes on each update jacsPreviousVersion : Links to the prior version jacsOriginalVersion : The first version ever created { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"7c9e6679-7425-40de-944b-e07fc1f90ae7\", \"jacsPreviousVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"jacsOriginalVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"\n}","breadcrumbs":"Key Rotation » Version Format","id":"987","title":"Version Format"},"988":{"body":"Each version forms a linked chain back to the original: Original (v1) <-- Previous (v2) <-- Current (v3) | | | key-A key-B key-C This chain provides an audit trail of all key changes and allows verification of any version.","breadcrumbs":"Key Rotation » Version Chain","id":"988","title":"Version Chain"},"989":{"body":"The critical insight enabling key rotation is that signatures contain both the agent ID and the version that created them.","breadcrumbs":"Key Rotation » Version-Aware Verification","id":"989","title":"Version-Aware Verification"},"99":{"body":"This guide covers installing the JACS Rust CLI and library.","breadcrumbs":"Installation » Installation","id":"99","title":"Installation"},"990":{"body":"{ \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"publicKeyHash\": \"sha256-of-public-key-A\", \"signingAlgorithm\": \"ring-Ed25519\", \"signature\": \"base64-encoded-signature\", \"date\": \"2024-01-15T10:00:00Z\" }\n}","breadcrumbs":"Key Rotation » Signature Structure","id":"990","title":"Signature Structure"},"991":{"body":"When verifying a signature: Extract agentVersion and publicKeyHash from the signature Look up the public key that was active for that version Verify the signature using that historical key // Pseudocode for version-aware verification\nfn verify_signature(doc: &Document) -> Result<()> { let sig = &doc.jacs_signature; // Find the key that was active for this version let public_key = resolve_key_for_version( &sig.agent_id, &sig.agent_version, &sig.public_key_hash, )?; // Verify with the historical key verify_with_key(&doc, &sig, &public_key)\n}","breadcrumbs":"Key Rotation » Key Resolution Process","id":"991","title":"Key Resolution Process"},"992":{"body":"The verification system tries multiple sources: Local cache by hash - Fastest, key already stored locally Trust store by version - Most accurate for known agents Trust store by hash - Fallback for legacy entries DNS lookup - External verification, authoritative Fail - Key not found, verification impossible","breadcrumbs":"Key Rotation » Key Lookup Priority","id":"992","title":"Key Lookup Priority"},"993":{"body":"","breadcrumbs":"Key Rotation » Key Rotation Process","id":"993","title":"Key Rotation Process"},"994":{"body":"Generate new key pair with the desired algorithm Create new agent version with updated key information Sign new version with old key (transition signature) Update DNS records to include new key fingerprint Store old public key for future verifications","breadcrumbs":"Key Rotation » Step-by-Step Rotation","id":"994","title":"Step-by-Step Rotation"},"995":{"body":"The transition signature proves the key rotation was authorized by the holder of the old key: JACS_KEY_ROTATION:{agent_id}:{old_key_hash}:{new_key_hash}:{timestamp} This signed message: Proves continuity of ownership Provides an audit trail Binds old and new keys together cryptographically","breadcrumbs":"Key Rotation » Transition Signature","id":"995","title":"Transition Signature"},"996":{"body":"Note : These CLI commands are planned for a future release. Currently, key rotation must be performed programmatically using the Rust API. # Rotate keys with default algorithm (Coming Soon)\njacs agent rotate-keys # Rotate to post-quantum algorithm (Coming Soon)\njacs agent rotate-keys --algorithm pq2025 # List key history (Coming Soon)\njacs agent keys list # Revoke a compromised key (Coming Soon)\njacs agent keys revoke ","breadcrumbs":"Key Rotation » CLI Commands (Planned)","id":"996","title":"CLI Commands (Planned)"},"997":{"body":"Time T0: Agent created - jacsId: \"abc-123\" - jacsVersion: \"v1-uuid\" - jacsCurrentKeyHash: \"hash-A\" Time T1: Agent signs document D1 - D1.jacsSignature.agentVersion: \"v1-uuid\" - D1.jacsSignature.publicKeyHash: \"hash-A\" Time T2: Key rotation - New keys generated with hash-B - jacsVersion: \"v2-uuid\" - jacsKeyHistory: [{ hash: \"hash-A\", status: \"rotated\" }] - jacsCurrentKeyHash: \"hash-B\" Time T3: Verify D1 - Extract agentVersion \"v1-uuid\" and hash \"hash-A\" - Look up key: find \"hash-A\" with status \"rotated\" - Verification succeeds (old key still valid for old docs) Time T4: Agent signs document D2 - D2.jacsSignature.agentVersion: \"v2-uuid\" - D2.jacsSignature.publicKeyHash: \"hash-B\"","breadcrumbs":"Key Rotation » Example Rotation Flow","id":"997","title":"Example Rotation Flow"},"998":{"body":"The trust store maintains a history of all public keys for each trusted agent.","breadcrumbs":"Key Rotation » Trust Store with Version History","id":"998","title":"Trust Store with Version History"},"999":{"body":"{ \"agent_id\": \"550e8400-e29b-41d4-a716-446655440000\", \"name\": \"Example Agent\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"current_key_hash\": \"abc123...\", \"domain\": \"agent.example.com\", \"key_history\": [ { \"public_key_hash\": \"xyz789...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-01T00:00:00Z\", \"first_version\": \"11111111-1111-1111-1111-111111111111\", \"last_version\": \"22222222-2222-2222-2222-222222222222\", \"status\": \"rotated\" }, { \"public_key_hash\": \"abc123...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"first_version\": \"33333333-3333-3333-3333-333333333333\", \"last_version\": null, \"status\": \"active\" } ]\n}","breadcrumbs":"Key Rotation » TrustedAgent Structure","id":"999","title":"TrustedAgent Structure"}},"length":1532,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"3":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1441":{"tf":1.0}}},"5":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":1,"docs":{"1441":{"tf":1.0}}},"1":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":5,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1437":{"tf":1.0},"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.0}}},"2":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":8,"docs":{"1112":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":2,"docs":{"157":{"tf":1.0},"761":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1003":{"tf":1.0},"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"298":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"654":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"859":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"779":{"tf":1.0}}}},"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":6,"docs":{"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}},"3":{"df":3,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"859":{"tf":1.4142135623730951}}},"6":{"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1432":{"tf":1.0},"728":{"tf":1.0}}},"df":27,"docs":{"1084":{"tf":1.4142135623730951},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1129":{"tf":1.0},"1307":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1362":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"382":{"tf":1.0},"588":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"897":{"tf":1.0},"901":{"tf":1.0},"933":{"tf":1.0},"977":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"779":{"tf":1.0}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":9,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":15,"docs":{"1134":{"tf":1.0},"1179":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.0},"1401":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"845":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1441":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0}}},"3":{"df":2,"docs":{"1015":{"tf":1.4142135623730951},"1030":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1329":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":2,"docs":{"1169":{"tf":1.0},"1403":{"tf":1.4142135623730951}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}},"1":{"df":1,"docs":{"767":{"tf":1.0}}},"df":5,"docs":{"1116":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"198":{"tf":1.0},"501":{"tf":1.0}}},"df":16,"docs":{"1048":{"tf":1.0},"1390":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"501":{"tf":1.4142135623730951},"519":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"812":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"k":{"df":1,"docs":{"1253":{"tf":1.0}}}},"df":15,"docs":{"1071":{"tf":1.0},"1079":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1441":{"tf":1.7320508075688772},"308":{"tf":1.0},"315":{"tf":1.0},"443":{"tf":1.0},"68":{"tf":1.0},"916":{"tf":1.0}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1024":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"196":{"tf":1.0},"365":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"599":{"tf":1.0},"654":{"tf":1.0},"761":{"tf":1.0},"881":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0}}},"d":{"3":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1079":{"tf":1.0},"1215":{"tf":1.0},"916":{"tf":1.0}}},"4":{"df":1,"docs":{"1087":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0}}},"df":3,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0}}},"df":5,"docs":{"1003":{"tf":1.0},"1336":{"tf":1.0},"298":{"tf":1.0},"501":{"tf":1.4142135623730951},"859":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":15,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.0},"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"783":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"785":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"767":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"351":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"1071":{"tf":1.0}}},"8":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":76,"docs":{"1048":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1072":{"tf":1.0},"1079":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.0},"1168":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1202":{"tf":1.0},"1242":{"tf":1.0},"1248":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":2.23606797749979},"1302":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1312":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1392":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1512":{"tf":1.0},"1522":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"303":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"700":{"tf":1.0},"742":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"814":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"962":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0}}},"5":{"df":3,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"1149":{"tf":1.0},"1271":{"tf":1.0},"1379":{"tf":1.0},"458":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"1071":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":37,"docs":{"100":{"tf":1.0},"1045":{"tf":1.0},"115":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1403":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"176":{"tf":1.0},"180":{"tf":2.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":4,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1048":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.0}}},"df":2,"docs":{"443":{"tf":1.0},"53":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{"c":{"d":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"d":{"3":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1003":{"tf":1.0},"1015":{"tf":1.0},"1024":{"tf":1.0},"1046":{"tf":1.0},"1228":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.4142135623730951},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1346":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":62,"docs":{"1048":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1203":{"tf":1.0},"1242":{"tf":1.0},"1248":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"1437":{"tf":1.0},"144":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"357":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"591":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"762":{"tf":1.0},"785":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"881":{"tf":1.0},"914":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.0},"963":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0}}},"3":{".":{"1":{"0":{"df":2,"docs":{"549":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":8,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.0},"458":{"tf":1.0}}},"df":5,"docs":{"1079":{"tf":1.0},"1399":{"tf":1.0},"1445":{"tf":1.0},"310":{"tf":1.0},"902":{"tf":1.0}}},"1":{"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}},"2":{"df":2,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.4142135623730951}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"6":{"0":{"0":{"df":9,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"1307":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"1030":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1204":{"tf":1.0},"1248":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.4142135623730951},"581":{"tf":1.0},"700":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.0},"824":{"tf":1.0},"86":{"tf":1.0},"881":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1268":{"tf":1.0},"1271":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0}}},"4":{"df":1,"docs":{"465":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"987":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"1226":{"tf":1.0}}}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1273":{"tf":1.0},"1274":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"493":{"tf":1.0},"849":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"1":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"2":{"df":2,"docs":{"767":{"tf":1.0},"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}},"df":21,"docs":{"1171":{"tf":1.0},"1185":{"tf":1.0},"1205":{"tf":1.0},"1248":{"tf":1.0},"1287":{"tf":1.0},"1301":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"581":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":8,"docs":{"1305":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"625":{"tf":1.0}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":4,"docs":{"365":{"tf":1.0},"498":{"tf":1.0},"599":{"tf":1.0},"810":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":23,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.7320508075688772},"883":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"157":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"1185":{"tf":1.0},"1186":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"581":{"tf":1.0},"826":{"tf":1.0},"916":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1505":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1105":{"tf":1.0},"1528":{"tf":1.0},"250":{"tf":1.0},"352":{"tf":1.0},"584":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}},"k":{"df":1,"docs":{"911":{"tf":1.0}}}},"df":6,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.0},"255":{"tf":1.0},"501":{"tf":1.0},"900":{"tf":1.0}}},"4":{"df":3,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0}}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"7":{"0":{"0":{"df":5,"docs":{"1105":{"tf":1.0},"682":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"5":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"8":{"'":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"9":{"df":0,"docs":{},"f":{"b":{"9":{"d":{"8":{"8":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"1270":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1522":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1507":{"tf":1.0},"933":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1119":{"tf":1.0}}},"6":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1001":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1161":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1247":{"tf":1.0},"944":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1250":{"tf":1.0},"1251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1003":{"tf":1.4142135623730951},"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1333":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"374":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":3,"docs":{"1247":{"tf":1.0},"1248":{"tf":1.0},"31":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"1211":{"tf":1.4142135623730951},"1212":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1214":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1227":{"tf":1.0},"1234":{"tf":1.0},"1244":{"tf":1.0}}},"df":1,"docs":{"1145":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{"df":3,"docs":{"53":{"tf":1.0},"791":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"881":{"tf":1.7320508075688772},"925":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"981":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"937":{"tf":1.0},"977":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1102":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1149":{"tf":1.0},"1214":{"tf":1.0},"1290":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.4142135623730951},"823":{"tf":1.0},"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1490":{"tf":1.0}}}}}},"df":30,"docs":{"1061":{"tf":1.0},"1066":{"tf":1.0},"1092":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1174":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1477":{"tf":1.0},"1528":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.0},"352":{"tf":1.0},"423":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"584":{"tf":1.0},"610":{"tf":1.0},"656":{"tf":1.0},"92":{"tf":1.0},"942":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"810":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1070":{"tf":1.0},"1194":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":3,"docs":{"1154":{"tf":1.0},"151":{"tf":1.0},"992":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"766":{"tf":1.0}}}}}},"m":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"767":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":34,"docs":{"1071":{"tf":1.0},"1149":{"tf":1.0},"1158":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.0},"1403":{"tf":2.449489742783178},"1485":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"21":{"tf":1.0},"237":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.4142135623730951},"599":{"tf":1.0},"617":{"tf":1.0},"733":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"868":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1004":{"tf":1.0},"1012":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1476":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.0},"991":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1148":{"tf":1.0},"1194":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"789":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"d":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":47,"docs":{"106":{"tf":1.0},"1109":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1165":{"tf":1.0},"1180":{"tf":1.0},"1186":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1420":{"tf":1.0},"1480":{"tf":1.0},"1510":{"tf":1.0},"1526":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"473":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"553":{"tf":1.0},"580":{"tf":1.4142135623730951},"589":{"tf":1.0},"640":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"823":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0},"938":{"tf":1.0},"976":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1051":{"tf":1.0},"1083":{"tf":1.0},"1249":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1420":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"523":{"tf":1.0},"687":{"tf":1.0},"700":{"tf":1.0},"719":{"tf":1.0},"786":{"tf":1.0},"908":{"tf":1.0},"939":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0},"760":{"tf":2.23606797749979},"762":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"443":{"tf":1.0}}}}}}}}},"df":14,"docs":{"1166":{"tf":1.0},"1175":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"173":{"tf":1.0},"258":{"tf":1.0},"423":{"tf":1.0},"524":{"tf":1.0},"701":{"tf":1.0},"797":{"tf":1.0},"874":{"tf":1.0},"950":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1209":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"847":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"1118":{"tf":1.0},"320":{"tf":1.0},"4":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.0},"1069":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1002":{"tf":1.0},"1007":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}},"s":{"2":{"5":{"6":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1450":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1477":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1032":{"tf":1.0},"1254":{"tf":1.0},"1333":{"tf":1.0},"1427":{"tf":1.0},"178":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"918":{"tf":1.0},"934":{"tf":1.0},"944":{"tf":1.0},"973":{"tf":1.0}}}}}}},"df":2,"docs":{"1507":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":51,"docs":{"1006":{"tf":1.0},"1177":{"tf":1.0},"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1245":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"1423":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"454":{"tf":1.0},"518":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"695":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.4142135623730951},"850":{"tf":1.0},"86":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"981":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"616":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"382":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"642":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1385":{"tf":1.0},"654":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1363":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1362":{"tf":1.0},"420":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":4,"docs":{"1384":{"tf":1.0},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1088":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"581":{"tf":1.0},"696":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"921":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"587":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"653":{"tf":1.0},"723":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"558":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"846":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":2,"docs":{"269":{"tf":1.0},"288":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1361":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"523":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":14,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"545":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0},"419":{"tf":1.0},"519":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"794":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1517":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.7320508075688772},"143":{"tf":1.0},"241":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"347":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1213":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"1515":{"tf":1.0},"201":{"tf":1.0},"242":{"tf":2.23606797749979},"410":{"tf":1.0},"531":{"tf":1.0},"644":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1356":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1518":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.0},"738":{"tf":1.4142135623730951},"75":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"794":{"tf":1.4142135623730951},"822":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1148":{"tf":1.0},"1149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1047":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1140":{"tf":1.0},"1394":{"tf":1.4142135623730951},"681":{"tf":1.0},"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1140":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1399":{"tf":1.0},"518":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1302":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":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":{"545":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"641":{"tf":1.0},"701":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"648":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"558":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1021":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"637":{"tf":1.0},"703":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"412":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":3,"docs":{"407":{"tf":1.0},"524":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1362":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1148":{"tf":1.0},"1405":{"tf":1.0},"414":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"526":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1047":{"tf":1.0},"645":{"tf":1.0},"709":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"657":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"411":{"tf":1.0},"532":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1353":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"522":{"tf":1.0},"545":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"795":{"tf":1.0},"922":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"1375":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0}}}}}},"df":1,"docs":{"725":{"tf":1.0}},"u":{"df":1,"docs":{"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"558":{"tf":1.0},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"576":{"tf":1.0},"587":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"631":{"tf":1.0},"697":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"654":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"957":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"632":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"698":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"545":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1401":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"795":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1352":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":1,"docs":{"1401":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"419":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1369":{"tf":1.0},"349":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"520":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"420":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1356":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"527":{"tf":1.0},"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"142":{"tf":1.0},"1484":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"406":{"tf":1.0},"640":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1329":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"217":{"tf":1.0},"406":{"tf":1.0},"640":{"tf":1.0}}},":":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"1204":{"tf":1.0}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1332":{"tf":1.0},"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"606":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"=":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"287":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"769":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"604":{"tf":1.0},"606":{"tf":1.0},"616":{"tf":1.0},"769":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"708":{"tf":1.0}}}}},"i":{"d":{"df":14,"docs":{"1081":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1384":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"700":{"tf":1.4142135623730951},"949":{"tf":1.0},"957":{"tf":1.0},"999":{"tf":1.0}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"264":{"tf":1.0},"695":{"tf":1.0},"769":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"770":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.4142135623730951}},"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":1,"docs":{"382":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"76":{"tf":1.0},"770":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"76":{"tf":1.0},"770":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":566,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.0},"10":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1004":{"tf":1.0},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"1112":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.23606797749979},"1143":{"tf":1.4142135623730951},"1145":{"tf":2.449489742783178},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1166":{"tf":1.0},"117":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1175":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1194":{"tf":2.23606797749979},"1196":{"tf":1.0},"120":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1206":{"tf":2.6457513110645907},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.0},"1216":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.7320508075688772},"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1242":{"tf":1.7320508075688772},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1247":{"tf":2.6457513110645907},"1248":{"tf":2.6457513110645907},"1249":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1263":{"tf":1.0},"127":{"tf":2.449489742783178},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1277":{"tf":2.0},"128":{"tf":3.3166247903554},"129":{"tf":2.8284271247461903},"13":{"tf":1.4142135623730951},"130":{"tf":2.0},"1302":{"tf":1.0},"1318":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"1320":{"tf":1.0},"1321":{"tf":2.23606797749979},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1332":{"tf":2.8284271247461903},"1333":{"tf":3.3166247903554},"1334":{"tf":2.6457513110645907},"134":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"1390":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"1399":{"tf":3.4641016151377544},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":2.0},"1417":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"143":{"tf":2.0},"1430":{"tf":1.0},"1432":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"1460":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"147":{"tf":1.7320508075688772},"1476":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"1499":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":2.449489742783178},"1515":{"tf":1.7320508075688772},"1518":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"1530":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"172":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"223":{"tf":1.4142135623730951},"226":{"tf":2.6457513110645907},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"242":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"261":{"tf":2.6457513110645907},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.449489742783178},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":2.23606797749979},"327":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":2.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"35":{"tf":2.23606797749979},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":2.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":2.0},"436":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"478":{"tf":1.7320508075688772},"48":{"tf":1.0},"487":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"52":{"tf":1.0},"523":{"tf":2.23606797749979},"524":{"tf":1.0},"525":{"tf":1.0},"53":{"tf":3.0},"530":{"tf":1.7320508075688772},"531":{"tf":2.23606797749979},"532":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"54":{"tf":2.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":2.23606797749979},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"590":{"tf":1.0},"592":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.4142135623730951},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":2.449489742783178},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":2.6457513110645907},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.7320508075688772},"623":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.4142135623730951},"645":{"tf":2.0},"646":{"tf":1.0},"649":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"672":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.4142135623730951},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"700":{"tf":2.23606797749979},"701":{"tf":1.0},"702":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":2.23606797749979},"709":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":2.8284271247461903},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":2.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":2.23606797749979},"749":{"tf":2.0},"75":{"tf":1.4142135623730951},"751":{"tf":1.7320508075688772},"752":{"tf":1.7320508075688772},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.7320508075688772},"758":{"tf":1.4142135623730951},"76":{"tf":2.0},"761":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"769":{"tf":1.7320508075688772},"770":{"tf":1.0},"771":{"tf":2.0},"772":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":2.0},"79":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.1622776601683795},"82":{"tf":2.8284271247461903},"822":{"tf":1.0},"823":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":2.449489742783178},"831":{"tf":1.7320508075688772},"832":{"tf":1.4142135623730951},"833":{"tf":2.449489742783178},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.7320508075688772},"838":{"tf":1.0},"84":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.4142135623730951},"847":{"tf":2.6457513110645907},"848":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.4142135623730951},"863":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"879":{"tf":1.4142135623730951},"88":{"tf":4.47213595499958},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"896":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.4142135623730951},"913":{"tf":2.0},"915":{"tf":1.0},"92":{"tf":1.7320508075688772},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"953":{"tf":2.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.7320508075688772},"970":{"tf":1.0},"976":{"tf":2.449489742783178},"978":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"989":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":2.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}},"i":{"d":{"df":40,"docs":{"1045":{"tf":1.0},"1130":{"tf":1.0},"1186":{"tf":1.0},"1196":{"tf":1.0},"1226":{"tf":1.0},"1242":{"tf":1.0},"1245":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1361":{"tf":1.4142135623730951},"138":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1486":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"523":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"791":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.449489742783178},"913":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.4142135623730951},"990":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{":":{"'":{")":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"611":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"518":{"tf":1.0},"770":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0},"1399":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"615":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"990":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.0},"984":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"1143":{"tf":1.0},"1242":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"883":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1486":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1328":{"tf":2.0},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.0},"219":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":115,"docs":{"1":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1143":{"tf":2.449489742783178},"1144":{"tf":2.0},"1145":{"tf":1.7320508075688772},"118":{"tf":1.0},"1194":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1328":{"tf":2.6457513110645907},"1329":{"tf":3.605551275463989},"1330":{"tf":3.3166247903554},"1360":{"tf":1.0},"1361":{"tf":2.23606797749979},"1362":{"tf":2.0},"1363":{"tf":1.0},"138":{"tf":2.8284271247461903},"1383":{"tf":1.0},"1384":{"tf":2.23606797749979},"1385":{"tf":2.0},"1386":{"tf":1.0},"1398":{"tf":1.0},"1399":{"tf":2.0},"142":{"tf":2.6457513110645907},"1423":{"tf":3.1622776601683795},"145":{"tf":1.4142135623730951},"1483":{"tf":1.0},"1484":{"tf":2.23606797749979},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1487":{"tf":1.7320508075688772},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"256":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"420":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"523":{"tf":2.449489742783178},"524":{"tf":1.7320508075688772},"525":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"654":{"tf":1.7320508075688772},"700":{"tf":2.449489742783178},"701":{"tf":1.7320508075688772},"702":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":2.0},"786":{"tf":1.0},"799":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"852":{"tf":1.0},"858":{"tf":1.4142135623730951},"875":{"tf":1.0},"88":{"tf":3.872983346207417},"886":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"980":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"548":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1226":{"tf":1.0},"13":{"tf":1.0},"1332":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":2.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.4142135623730951},"663":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"938":{"tf":1.0},"976":{"tf":1.0}},"r":{"df":2,"docs":{"1060":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"1003":{"tf":1.0},"1250":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"1472":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":79,"docs":{"1010":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1028":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1038":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1044":{"tf":1.0},"1045":{"tf":1.0},"1047":{"tf":2.0},"1048":{"tf":1.0},"1050":{"tf":2.23606797749979},"1053":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1227":{"tf":1.0},"1230":{"tf":1.0},"1245":{"tf":1.0},"1254":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":2.449489742783178},"1472":{"tf":2.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":2.0},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"334":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"375":{"tf":1.0},"404":{"tf":1.0},"418":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"608":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":1.0},"980":{"tf":1.4142135623730951},"984":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.7320508075688772}}}}}}}}},"i":{"a":{"df":1,"docs":{"1343":{"tf":2.0}}},"c":{"df":1,"docs":{"1305":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"w":{"df":19,"docs":{"1054":{"tf":1.0},"1071":{"tf":1.0},"1108":{"tf":1.0},"1209":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"446":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"934":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"978":{"tf":1.4142135623730951},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1447":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1485":{"tf":2.0},"43":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}},"n":{"df":3,"docs":{"112":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1085":{"tf":1.0},"1151":{"tf":1.0},"1163":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1455":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"477":{"tf":1.0},"509":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"951":{"tf":1.0},"964":{"tf":1.0},"970":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1451":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"1111":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"1480":{"tf":1.0},"198":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.0},"519":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"182":{"tf":1.0},"35":{"tf":1.7320508075688772},"49":{"tf":1.0},"581":{"tf":1.0},"765":{"tf":1.0}}},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.0}}},"z":{"df":7,"docs":{"1256":{"tf":1.0},"156":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"241":{"tf":1.0},"412":{"tf":1.0},"531":{"tf":1.4142135623730951},"533":{"tf":1.0},"646":{"tf":1.0},"708":{"tf":1.4142135623730951},"710":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1194":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"528":{"tf":1.0},"705":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"414":{"tf":1.0},"648":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":65,"docs":{"1042":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1172":{"tf":2.0},"1179":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1276":{"tf":1.0},"1290":{"tf":1.0},"1355":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":2.23606797749979},"1402":{"tf":2.23606797749979},"1437":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1525":{"tf":1.0},"1526":{"tf":1.0},"257":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"428":{"tf":1.0},"452":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"486":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"594":{"tf":1.0},"602":{"tf":1.0},"617":{"tf":1.0},"619":{"tf":1.4142135623730951},"65":{"tf":1.0},"662":{"tf":1.4142135623730951},"685":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"748":{"tf":1.0},"810":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0},"91":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1276":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1276":{"tf":1.0},"486":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"434":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1149":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1355":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"1267":{"tf":1.0},"1526":{"tf":1.0},"483":{"tf":1.0},"493":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":4,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"507":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":5,"docs":{"1148":{"tf":1.0},"1355":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1281":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1526":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1526":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":2.0},"1287":{"tf":1.4142135623730951},"1288":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"479":{"tf":2.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"509":{"tf":2.0},"510":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":33,"docs":{"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"348":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"186":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1082":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1279":{"tf":1.0},"1358":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"186":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"1032":{"tf":1.0},"1086":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"257":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"548":{"tf":1.0},"576":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}},"df":11,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1482":{"tf":1.0},"192":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"501":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"1042":{"tf":1.0},"1137":{"tf":1.0},"1295":{"tf":1.0},"21":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1116":{"tf":1.0},"1194":{"tf":1.0},"204":{"tf":1.0}}}}},"v":{"df":12,"docs":{"11":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"288":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"617":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"115":{"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":10,"docs":{"365":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"599":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"287":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"109":{"tf":1.0},"1176":{"tf":1.0},"1210":{"tf":1.0},"1294":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"549":{"tf":1.0},"729":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"866":{"tf":1.0},"873":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1186":{"tf":1.0},"1345":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"676":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"956":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"886":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":1,"docs":{"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"s":{"3":{":":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1071":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1130":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"742":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"790":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1197":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1237":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"575":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1151":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1217":{"tf":1.0},"1392":{"tf":2.6457513110645907},"684":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"420":{"tf":1.0},"654":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"808":{"tf":1.0},"816":{"tf":1.7320508075688772},"823":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1336":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":59,"docs":{"1148":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1301":{"tf":2.23606797749979},"1305":{"tf":2.23606797749979},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.23606797749979},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1378":{"tf":2.23606797749979},"1382":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.6457513110645907},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0},"383":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"1148":{"tf":1.0},"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":47,"docs":{"1059":{"tf":1.0},"1067":{"tf":1.0},"1323":{"tf":2.8284271247461903},"134":{"tf":2.449489742783178},"135":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.449489742783178},"1421":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":2.449489742783178},"1432":{"tf":1.0},"1433":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.449489742783178},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"206":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"371":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":2.23606797749979},"522":{"tf":2.0},"605":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"65":{"tf":1.0},"696":{"tf":2.0},"699":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1326":{"tf":1.0},"194":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"395":{"tf":1.0},"629":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":8,"docs":{"1032":{"tf":1.0},"1254":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.4142135623730951},"973":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"440":{"tf":1.0},"946":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1194":{"tf":1.0},"1208":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0},"62":{"tf":1.0},"901":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":32,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1403":{"tf":2.6457513110645907},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"423":{"tf":1.0},"502":{"tf":1.0},"60":{"tf":1.0},"603":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"845":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.7320508075688772},"942":{"tf":1.0},"951":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"969":{"tf":2.0},"988":{"tf":1.0},"995":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":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":{"1403":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":35,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1206":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1442":{"tf":2.23606797749979},"1455":{"tf":1.0},"147":{"tf":1.0},"1474":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"503":{"tf":2.0},"6":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.7320508075688772},"669":{"tf":1.0},"679":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"816":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"944":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1194":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1486":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"783":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"899":{"tf":1.0},"995":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1109":{"tf":1.0}}}}}}}}},"df":1,"docs":{"181":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1295":{"tf":1.0},"1432":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.0},"495":{"tf":1.0},"73":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0}}}},"df":3,"docs":{"255":{"tf":1.0},"765":{"tf":1.0},"916":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":20,"docs":{"1055":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1087":{"tf":1.0},"1089":{"tf":1.0},"1092":{"tf":1.0},"1220":{"tf":1.0},"1451":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.4142135623730951},"381":{"tf":1.0},"427":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"847":{"tf":1.0},"916":{"tf":1.0}}}}},"df":1,"docs":{"1097":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1287":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":71,"docs":{"1148":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":2.449489742783178},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.3166247903554},"1305":{"tf":2.6457513110645907},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.6457513110645907},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1359":{"tf":2.23606797749979},"1361":{"tf":1.7320508075688772},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":2.23606797749979},"1369":{"tf":2.449489742783178},"1378":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1399":{"tf":3.7416573867739413},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.3166247903554},"1405":{"tf":2.23606797749979},"1515":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"458":{"tf":2.0},"459":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":2.6457513110645907},"477":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}},"r":{"df":3,"docs":{"981":{"tf":1.0},"989":{"tf":1.0},"991":{"tf":1.0}}}},"df":23,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.4142135623730951},"1065":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":2.449489742783178},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1512":{"tf":2.0},"1513":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":2.23606797749979},"255":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0},"893":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1066":{"tf":1.0},"1454":{"tf":1.0},"1512":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}}}}}},"s":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1452":{"tf":1.0},"1454":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.0},"64":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"1197":{"tf":1.0},"1422":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0},"805":{"tf":1.0},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"1054":{"tf":1.4142135623730951},"1055":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1057":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.449489742783178},"1489":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1511":{"tf":1.0},"1528":{"tf":1.0},"1531":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"536":{"tf":1.0},"564":{"tf":1.0},"722":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"901":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1011":{"tf":1.0},"1061":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1510":{"tf":1.0},"1520":{"tf":1.0},"171":{"tf":1.4142135623730951},"974":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1503":{"tf":1.0},"711":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1312":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1119":{"tf":1.0}}}}}},"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"760":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":30,"docs":{"1021":{"tf":1.0},"1045":{"tf":1.0},"1091":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"129":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"404":{"tf":1.0},"45":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"53":{"tf":1.4142135623730951},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":47,"docs":{"1013":{"tf":1.0},"1015":{"tf":1.0},"1029":{"tf":1.0},"1077":{"tf":1.0},"110":{"tf":1.0},"1108":{"tf":1.0},"1119":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1192":{"tf":1.0},"1196":{"tf":1.0},"1249":{"tf":1.0},"1261":{"tf":1.0},"1333":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"1482":{"tf":1.0},"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"244":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"607":{"tf":1.0},"615":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"739":{"tf":1.0},"751":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"925":{"tf":1.0},"943":{"tf":1.0},"960":{"tf":1.0},"980":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":46,"docs":{"107":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.0},"1324":{"tf":1.0},"1334":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"1381":{"tf":1.0},"1425":{"tf":1.0},"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"188":{"tf":1.0},"216":{"tf":1.0},"327":{"tf":1.0},"334":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"519":{"tf":1.0},"547":{"tf":1.0},"555":{"tf":1.0},"576":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"75":{"tf":1.0},"758":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":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":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1315":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1390":{"tf":1.7320508075688772},"206":{"tf":1.0},"237":{"tf":1.0},"311":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1033":{"tf":1.0}}}}}},"df":30,"docs":{"1145":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1206":{"tf":1.0},"1247":{"tf":1.7320508075688772},"1248":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1355":{"tf":2.6457513110645907},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.0},"1361":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1384":{"tf":1.0},"226":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"426":{"tf":2.0},"427":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.0},"883":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"899":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"173":{"tf":1.0},"21":{"tf":1.0},"439":{"tf":1.0},"54":{"tf":1.0}}}}},"df":1,"docs":{"804":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":36,"docs":{"1140":{"tf":1.0},"1161":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1292":{"tf":1.0},"1310":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.4142135623730951},"249":{"tf":1.0},"30":{"tf":1.0},"361":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"595":{"tf":1.0},"673":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"1310":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"856":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"804":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1215":{"tf":1.0},"1453":{"tf":1.0},"243":{"tf":1.0},"928":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1077":{"tf":1.0},"1295":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"831":{"tf":1.0},"863":{"tf":1.0}}}},"w":{"df":4,"docs":{"1295":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"1042":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1161":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1009":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1191":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1297":{"tf":1.0},"1311":{"tf":1.0},"1452":{"tf":2.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"433":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1306":{"tf":1.0},"250":{"tf":1.4142135623730951},"725":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1173":{"tf":1.0},"1417":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1502":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.4142135623730951},"934":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1083":{"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":1,"docs":{"1182":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1330":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1346":{"tf":1.0},"255":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"108":{"tf":1.0},"353":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951}}}}},"d":{"df":19,"docs":{"1194":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"321":{"tf":1.0},"327":{"tf":1.0},"54":{"tf":1.0},"548":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"753":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"978":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1305":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"879":{"tf":1.0},"883":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"1375":{"tf":1.0},"1404":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":23,"docs":{"1129":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"788":{"tf":1.0},"811":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1222":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"h":{"df":22,"docs":{"1007":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1036":{"tf":1.0},"1135":{"tf":1.0},"1145":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.4142135623730951},"125":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"15":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"451":{"tf":1.0},"530":{"tf":1.0},"707":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"88":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":12,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1154":{"tf":1.0},"779":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1080":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"473":{"tf":2.0},"818":{"tf":1.0},"940":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1035":{"tf":1.0},"35":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"837":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"1451":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1512":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1067":{"tf":1.4142135623730951},"1071":{"tf":1.4142135623730951},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"381":{"tf":1.0},"404":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"19":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":24,"docs":{"1":{"tf":1.0},"1078":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1296":{"tf":1.0},"1305":{"tf":1.0},"1409":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"453":{"tf":1.0},"481":{"tf":1.0},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"70":{"tf":1.0},"758":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":20,"docs":{"1069":{"tf":1.0},"1075":{"tf":1.0},"1136":{"tf":1.0},"1207":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"304":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.0},"587":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"1015":{"tf":1.7320508075688772},"1018":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1024":{"tf":1.0},"1080":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"277":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1101":{"tf":1.0},"1103":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"585":{"tf":1.0},"871":{"tf":1.0},"950":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"761":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1403":{"tf":1.0},"31":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":1,"docs":{"1379":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"474":{"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":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"1148":{"tf":1.0},"1174":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"361":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"517":{"tf":1.0},"595":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"694":{"tf":1.0},"726":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}}},"df":1,"docs":{"1356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"911":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"58":{"tf":1.0},"911":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"1083":{"tf":1.0},"1194":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1418":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}}}}}},"df":4,"docs":{"1213":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1244":{"tf":1.0},"760":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1106":{"tf":1.0},"249":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"258":{"tf":1.0},"292":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1154":{"tf":3.0},"1165":{"tf":2.449489742783178},"1296":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":25,"docs":{"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1108":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1295":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"1451":{"tf":1.0},"182":{"tf":1.0},"473":{"tf":2.0},"925":{"tf":1.0},"93":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":8,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"1339":{"tf":1.0},"1480":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"739":{"tf":1.4142135623730951},"792":{"tf":1.0},"836":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":3,"docs":{"51":{"tf":1.0},"730":{"tf":1.0},"792":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":31,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"104":{"tf":1.0},"1320":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":4,"docs":{"1095":{"tf":1.0},"552":{"tf":1.0},"586":{"tf":1.7320508075688772},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"261":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"930":{"tf":1.4142135623730951},"939":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"34":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"929":{"tf":2.0},"939":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1403":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1194":{"tf":1.0},"1212":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.0},"61":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"929":{"tf":1.0},"972":{"tf":1.0},"988":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"1011":{"tf":1.0},"1219":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1456":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1509":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"664":{"tf":1.0},"780":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"940":{"tf":1.0},"942":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1174":{"tf":1.0},"59":{"tf":1.0},"951":{"tf":1.0},"973":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1137":{"tf":1.0},"1221":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.0},"620":{"tf":1.0},"763":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1021":{"tf":1.0},"82":{"tf":1.4142135623730951},"925":{"tf":2.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1250":{"tf":1.0}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"1144":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":76,"docs":{"1109":{"tf":1.0},"1166":{"tf":1.0},"1200":{"tf":1.0},"1208":{"tf":1.0},"1260":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"142":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1494":{"tf":1.0},"1498":{"tf":1.0},"1528":{"tf":1.7320508075688772},"188":{"tf":1.0},"205":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"408":{"tf":1.4142135623730951},"420":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"603":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"642":{"tf":1.4142135623730951},"654":{"tf":1.0},"702":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"96":{"tf":1.0},"970":{"tf":1.0},"979":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1529":{"tf":1.0},"967":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1421":{"tf":1.0},"1433":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"871":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1105":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"682":{"tf":1.0},"908":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"960":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"24":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"i":{"/":{"c":{"d":{"df":3,"docs":{"1157":{"tf":1.0},"255":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":11,"docs":{"936":{"tf":1.7320508075688772},"937":{"tf":1.4142135623730951},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":2.0},"975":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.0}}}},"p":{"df":1,"docs":{"108":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":36,"docs":{"1152":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.0},"429":{"tf":1.0},"498":{"tf":1.0},"516":{"tf":1.4142135623730951},"541":{"tf":1.0},"588":{"tf":1.0},"593":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.4142135623730951},"619":{"tf":1.0},"693":{"tf":1.4142135623730951},"711":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"969":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"960":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1018":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"751":{"tf":1.0},"757":{"tf":1.0}},"i":{"df":3,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"753":{"tf":1.0}}}}}}},"u":{"d":{"df":5,"docs":{"831":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"1168":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"312":{"tf":1.0}}}}},"r":{"df":8,"docs":{"170":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"929":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1229":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1347":{"tf":1.7320508075688772},"139":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1497":{"tf":1.0},"1501":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.7320508075688772},"359":{"tf":1.0},"4":{"tf":1.4142135623730951},"433":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"907":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.4142135623730951},"427":{"tf":1.0},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"667":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":44,"docs":{"1149":{"tf":1.0},"1152":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1265":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1359":{"tf":2.6457513110645907},"1379":{"tf":1.0},"1382":{"tf":2.23606797749979},"1493":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"427":{"tf":2.6457513110645907},"429":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":2.6457513110645907},"447":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"667":{"tf":2.0},"670":{"tf":1.7320508075688772},"672":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":2.23606797749979},"719":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"446":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"554":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"u":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1064":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1089":{"tf":1.0},"1439":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1310":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.0}}}}},"df":33,"docs":{"1154":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1345":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.4142135623730951},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"196":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"320":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.0},"679":{"tf":1.0},"711":{"tf":1.0},"748":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.7320508075688772},"822":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}}},"df":1,"docs":{"858":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1076":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"88":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1304":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.0},"213":{"tf":1.0},"786":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"302":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1396":{"tf":1.0},"152":{"tf":1.0},"345":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"572":{"tf":1.0},"657":{"tf":1.0},"753":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"479":{"tf":1.0},"509":{"tf":1.0},"996":{"tf":2.0}}},"m":{"a":{"df":3,"docs":{"138":{"tf":1.0},"1436":{"tf":1.0},"1479":{"tf":1.0}},"n":{"d":{"df":43,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"1333":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1359":{"tf":1.0},"138":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1458":{"tf":1.0},"1501":{"tf":1.0},"1524":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"255":{"tf":1.0},"4":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"67":{"tf":1.0},"979":{"tf":1.0},"996":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":25,"docs":{"1084":{"tf":1.0},"1194":{"tf":2.0},"169":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"747":{"tf":1.0},"833":{"tf":1.0},"852":{"tf":2.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"860":{"tf":2.6457513110645907},"861":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.7320508075688772},"875":{"tf":1.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1317":{"tf":1.0},"140":{"tf":1.0},"1424":{"tf":1.0},"1428":{"tf":1.0},"1443":{"tf":1.0},"1502":{"tf":1.0},"1528":{"tf":1.0},"207":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"451":{"tf":1.0},"547":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0},"678":{"tf":1.0},"724":{"tf":1.0},"727":{"tf":1.0},"741":{"tf":1.0},"925":{"tf":1.0},"93":{"tf":1.0},"976":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1020":{"tf":1.0},"1042":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"422":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"663":{"tf":1.0},"88":{"tf":1.0},"910":{"tf":1.0},"927":{"tf":1.0},"955":{"tf":1.0},"964":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1328":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"753":{"tf":1.0}}}},"r":{"df":3,"docs":{"231":{"tf":1.0},"922":{"tf":1.0},"944":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1048":{"tf":1.0},"973":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"1023":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1292":{"tf":1.0},"1432":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1528":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"353":{"tf":1.4142135623730951},"451":{"tf":1.0},"585":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"711":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"856":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1077":{"tf":1.0},"1078":{"tf":1.0},"1087":{"tf":1.0},"1296":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":106,"docs":{"11":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1256":{"tf":1.0},"1268":{"tf":1.0},"1312":{"tf":2.0},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1347":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1370":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":2.0},"1400":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1487":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"370":{"tf":1.4142135623730951},"382":{"tf":1.0},"385":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"480":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"604":{"tf":1.4142135623730951},"616":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"820":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"83":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0},"902":{"tf":1.0},"970":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":12,"docs":{"1086":{"tf":1.0},"1089":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.0},"1297":{"tf":1.0},"17":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"593":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"1010":{"tf":1.0},"1026":{"tf":1.0},"1033":{"tf":1.0},"11":{"tf":1.0},"1166":{"tf":1.0},"1421":{"tf":1.4142135623730951},"188":{"tf":1.0},"37":{"tf":1.0},"62":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1079":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"51":{"tf":1.0},"729":{"tf":1.0},"733":{"tf":1.0},"740":{"tf":1.0},"753":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"1161":{"tf":1.0},"741":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"501":{"tf":1.0},"729":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"0":{"tf":1.0},"1173":{"tf":1.0},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"290":{"tf":1.0},"60":{"tf":1.0},"898":{"tf":1.0},"910":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.0},"1010":{"tf":1.0},"1052":{"tf":1.7320508075688772},"918":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":2.0},"996":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1036":{"tf":1.0},"1254":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"789":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"455":{"tf":1.0},"512":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"552":{"tf":1.7320508075688772},"579":{"tf":2.0},"586":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1119":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"54":{"tf":1.0},"757":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0}}}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1051":{"tf":1.0},"1129":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1047":{"tf":1.0},"139":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.4142135623730951},"661":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1140":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.7320508075688772},"595":{"tf":1.0},"611":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"112":{"tf":1.0},"1140":{"tf":2.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1419":{"tf":1.0},"142":{"tf":1.0},"1428":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1460":{"tf":1.0},"1467":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"150":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"378":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.7320508075688772},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"485":{"tf":1.0},"544":{"tf":1.0},"595":{"tf":1.0},"611":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.4142135623730951},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":2.0},"892":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":2.23606797749979},"925":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":47,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1301":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1495":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"378":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"518":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":204,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1056":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1065":{"tf":1.0},"1070":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1139":{"tf":1.0},"116":{"tf":1.0},"1168":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"120":{"tf":1.0},"1206":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1292":{"tf":1.0},"1296":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.0},"1341":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.4142135623730951},"139":{"tf":1.0},"1394":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1430":{"tf":1.0},"1434":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":2.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":2.23606797749979},"1450":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1453":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1460":{"tf":2.0},"1461":{"tf":1.7320508075688772},"1467":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1489":{"tf":1.0},"149":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"150":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.4142135623730951},"160":{"tf":1.0},"182":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"361":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"462":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"564":{"tf":1.0},"595":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"71":{"tf":1.0},"712":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"737":{"tf":1.0},"740":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"769":{"tf":1.0},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"829":{"tf":1.0},"833":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.0},"887":{"tf":1.4142135623730951},"889":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"969":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"1012":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1475":{"tf":1.0},"318":{"tf":1.0},"824":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1082":{"tf":1.0},"1287":{"tf":1.0},"1522":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1480":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1084":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1179":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":2.23606797749979},"318":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"678":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"30":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"954":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1051":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1194":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"37":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1033":{"tf":1.0},"1039":{"tf":1.0},"1049":{"tf":1.0},"1062":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1104":{"tf":1.0},"1172":{"tf":1.0},"1279":{"tf":1.0},"1455":{"tf":1.0},"247":{"tf":1.0},"320":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"942":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1109":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"874":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":3,"docs":{"1358":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"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":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.0},"327":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"419":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}}},"j":{"a":{"c":{"df":4,"docs":{"1282":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"546":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1127":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"384":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"`":{"a":{"d":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"518":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":7,"docs":{"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"408":{"tf":1.0},"420":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"525":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"418":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":3,"docs":{"1365":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":8,"docs":{"1351":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"349":{"tf":1.4142135623730951},"397":{"tf":1.0},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"327":{"tf":1.0},"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"461":{"tf":1.0},"465":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"525":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"h":{"a":{"df":1,"docs":{"535":{"tf":1.0}},"r":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1351":{"tf":1.0},"1362":{"tf":1.0},"403":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}}}},"df":3,"docs":{"391":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1362":{"tf":1.0},"1399":{"tf":1.0},"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"420":{"tf":1.7320508075688772},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"400":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"458":{"tf":1.0},"529":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"770":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"358":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1355":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}}},"t":{"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":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"376":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1218":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"1352":{"tf":2.0},"1363":{"tf":2.0},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"973":{"tf":1.0}}}}},"df":171,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1140":{"tf":2.449489742783178},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1273":{"tf":2.23606797749979},"1276":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.4641016151377544},"1304":{"tf":1.0},"1305":{"tf":3.1622776601683795},"1306":{"tf":2.6457513110645907},"1307":{"tf":2.23606797749979},"1310":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1315":{"tf":2.0},"1349":{"tf":1.0},"1351":{"tf":2.0},"1352":{"tf":2.0},"1353":{"tf":2.23606797749979},"1355":{"tf":2.449489742783178},"1356":{"tf":2.6457513110645907},"1358":{"tf":2.0},"1359":{"tf":2.6457513110645907},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":2.0},"1365":{"tf":3.7416573867739413},"1367":{"tf":1.7320508075688772},"1369":{"tf":3.7416573867739413},"1399":{"tf":4.0},"1401":{"tf":3.872983346207417},"1403":{"tf":4.898979485566356},"1405":{"tf":3.3166247903554},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1522":{"tf":3.4641016151377544},"1524":{"tf":2.23606797749979},"1526":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":2.0},"358":{"tf":2.0},"361":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":3.1622776601683795},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":2.6457513110645907},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"443":{"tf":2.449489742783178},"458":{"tf":2.449489742783178},"459":{"tf":2.23606797749979},"461":{"tf":1.7320508075688772},"463":{"tf":2.23606797749979},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":2.449489742783178},"477":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"507":{"tf":2.449489742783178},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"770":{"tf":1.7320508075688772},"772":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"9":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1121":{"tf":1.0},"51":{"tf":1.0},"746":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1152":{"tf":1.0},"1399":{"tf":1.0},"517":{"tf":1.0},"541":{"tf":1.0},"694":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"766":{"tf":1.4142135623730951}}}},"m":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1332":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"170":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"733":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.4142135623730951},"757":{"tf":1.0},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1186":{"tf":1.0},"1422":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"185":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"489":{"tf":1.0},"529":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"66":{"tf":1.0},"706":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"836":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"950":{"tf":1.7320508075688772},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"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":{"1270":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":121,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1091":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":2.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"1374":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"167":{"tf":2.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"238":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.4142135623730951},"349":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"383":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"426":{"tf":1.0},"442":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"601":{"tf":1.0},"605":{"tf":1.0},"614":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"725":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"780":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":2.0},"788":{"tf":2.0},"791":{"tf":1.7320508075688772},"792":{"tf":1.4142135623730951},"794":{"tf":2.0},"796":{"tf":2.0},"80":{"tf":1.7320508075688772},"831":{"tf":1.0},"836":{"tf":1.7320508075688772},"838":{"tf":2.0},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":3.0},"883":{"tf":1.0},"914":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"855":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":34,"docs":{"108":{"tf":1.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"228":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"700":{"tf":1.4142135623730951},"727":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":9,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"209":{"tf":1.0},"38":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"940":{"tf":1.0},"983":{"tf":1.0},"995":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1323":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"616":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"1130":{"tf":1.4142135623730951},"1143":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1330":{"tf":3.605551275463989},"1336":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.449489742783178},"1404":{"tf":1.0},"209":{"tf":2.23606797749979},"217":{"tf":1.0},"224":{"tf":1.4142135623730951},"276":{"tf":1.0},"406":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"728":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"1399":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"463":{"tf":1.0},"593":{"tf":1.0},"64":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"610":{"tf":1.0}}},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"1236":{"tf":1.0},"1256":{"tf":1.0},"47":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":2.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.0}}},"t":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1261":{"tf":1.0},"172":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"1528":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"682":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.7320508075688772},"819":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"1447":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.0},"329":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"455":{"tf":1.0},"512":{"tf":1.0},"515":{"tf":1.0},"557":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"692":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"777":{"tf":1.0},"807":{"tf":1.0},"912":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1467":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1495":{"tf":1.0},"1528":{"tf":1.4142135623730951},"248":{"tf":1.0},"451":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1142":{"tf":1.0},"1493":{"tf":1.0},"1528":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1171":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1070":{"tf":1.0},"1102":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1083":{"tf":1.0},"1505":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1155":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1154":{"tf":2.8284271247461903},"1155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1153":{"tf":1.0},"1154":{"tf":2.23606797749979},"1155":{"tf":1.7320508075688772},"1156":{"tf":2.0},"1158":{"tf":1.0}}}},"df":12,"docs":{"1137":{"tf":1.0},"1219":{"tf":1.0},"1221":{"tf":1.0},"1298":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.4142135623730951},"620":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1510":{"tf":1.0},"1520":{"tf":1.0},"1530":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"1161":{"tf":1.0},"299":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":292,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1043":{"tf":1.0},"1047":{"tf":1.0},"1052":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1094":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.0},"1112":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"1124":{"tf":1.0},"1135":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"116":{"tf":1.0},"1161":{"tf":1.0},"1165":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.7320508075688772},"120":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"124":{"tf":1.7320508075688772},"1242":{"tf":1.0},"127":{"tf":3.1622776601683795},"1278":{"tf":1.0},"1300":{"tf":2.23606797749979},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1310":{"tf":2.0},"1318":{"tf":2.0},"132":{"tf":2.0},"1320":{"tf":1.4142135623730951},"1323":{"tf":3.872983346207417},"1325":{"tf":1.7320508075688772},"1328":{"tf":2.449489742783178},"1330":{"tf":2.449489742783178},"1332":{"tf":2.8284271247461903},"1336":{"tf":1.7320508075688772},"1338":{"tf":1.0},"134":{"tf":3.1622776601683795},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1346":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":2.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":2.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.449489742783178},"1405":{"tf":1.0},"141":{"tf":1.7320508075688772},"1410":{"tf":1.0},"1419":{"tf":3.872983346207417},"142":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1425":{"tf":1.7320508075688772},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1467":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"148":{"tf":1.0},"1484":{"tf":1.4142135623730951},"1487":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":2.23606797749979},"1500":{"tf":1.4142135623730951},"151":{"tf":2.0},"1512":{"tf":1.0},"1515":{"tf":2.0},"1517":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"192":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"327":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.7320508075688772},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.7320508075688772},"587":{"tf":1.4142135623730951},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"61":{"tf":1.0},"622":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"652":{"tf":1.4142135623730951},"653":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"71":{"tf":1.4142135623730951},"719":{"tf":1.0},"72":{"tf":2.6457513110645907},"721":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":2.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"748":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.449489742783178},"771":{"tf":1.4142135623730951},"773":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"8":{"tf":2.0},"80":{"tf":2.0},"804":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":3.3166247903554},"881":{"tf":1.0},"882":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.4142135623730951},"921":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"845":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1361":{"tf":1.4142135623730951},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.0}}}}}},"df":6,"docs":{"332":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"515":{"tf":1.0},"536":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.7320508075688772}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1151":{"tf":1.0},"507":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":18,"docs":{"1179":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"431":{"tf":1.7320508075688772},"540":{"tf":1.0},"543":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":32,"docs":{"1043":{"tf":1.0},"1140":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"356":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"590":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"696":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"782":{"tf":1.0}}},"df":4,"docs":{"1390":{"tf":1.0},"28":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1072":{"tf":1.0},"1278":{"tf":1.0},"1355":{"tf":1.0},"1490":{"tf":1.4142135623730951},"339":{"tf":1.0},"491":{"tf":1.0},"566":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"29":{"tf":1.0},"47":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1042":{"tf":1.0},"1052":{"tf":1.0},"1194":{"tf":1.0},"1450":{"tf":1.0},"1515":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1099":{"tf":1.0},"1154":{"tf":1.0},"1404":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"1119":{"tf":1.0},"841":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":100,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1173":{"tf":1.0},"1176":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.0},"1212":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1237":{"tf":1.0},"1262":{"tf":1.0},"127":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1415":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1432":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1458":{"tf":1.0},"1463":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"341":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.4142135623730951},"568":{"tf":1.0},"617":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"724":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"792":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"984":{"tf":1.4142135623730951},"995":{"tf":1.0}},"i":{"df":5,"docs":{"1010":{"tf":1.0},"1029":{"tf":1.0},"1254":{"tf":1.0},"24":{"tf":1.4142135623730951},"984":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"1268":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"465":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"1302":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"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":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}},"df":46,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1003":{"tf":1.0},"1011":{"tf":1.0},"1115":{"tf":1.0},"1213":{"tf":1.0},"1220":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1298":{"tf":1.0},"1328":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1423":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"15":{"tf":1.0},"1510":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"219":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"407":{"tf":1.0},"524":{"tf":1.0},"57":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.4142135623730951},"606":{"tf":1.0},"641":{"tf":1.0},"701":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"808":{"tf":1.0},"827":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"996":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1017":{"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":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1212":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"822":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1302":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":81,"docs":{"1044":{"tf":1.4142135623730951},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":2.0},"1124":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1197":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":2.0},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"134":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1441":{"tf":1.0},"1456":{"tf":1.0},"1460":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":1.7320508075688772},"284":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"446":{"tf":1.0},"49":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"593":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.4142135623730951},"72":{"tf":1.0},"738":{"tf":2.0},"739":{"tf":1.0},"742":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"759":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.8284271247461903},"833":{"tf":1.0},"98":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"f":{"df":2,"docs":{"1095":{"tf":1.0},"1097":{"tf":1.0}}}}},"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"294":{"tf":1.0},"298":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"845":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"238":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1140":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":2.0},"1078":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1087":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1295":{"tf":1.7320508075688772},"1296":{"tf":1.4142135623730951},"1297":{"tf":2.0},"1298":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1316":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"16":{"tf":1.0},"64":{"tf":1.0},"779":{"tf":1.0},"871":{"tf":1.0}},"e":{"(":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"595":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":114,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1067":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1093":{"tf":1.0},"11":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":2.449489742783178},"1149":{"tf":1.0},"116":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.0},"1256":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1290":{"tf":1.0},"1298":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1422":{"tf":1.0},"1430":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"21":{"tf":1.0},"312":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"46":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"532":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"548":{"tf":1.0},"55":{"tf":1.4142135623730951},"575":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.7320508075688772},"648":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"709":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.0},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1304":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"df":31,"docs":{"1045":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"1339":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"739":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.7320508075688772},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"808":{"tf":1.4142135623730951},"816":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"648":{"tf":1.0},"705":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1399":{"tf":1.0},"1507":{"tf":1.0},"812":{"tf":1.0},"933":{"tf":1.0}}}},"df":23,"docs":{"132":{"tf":2.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1530":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"73":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"420":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.0},"856":{"tf":1.4142135623730951},"859":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":20,"docs":{"1191":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1293":{"tf":1.0},"1428":{"tf":1.0},"1439":{"tf":1.0},"1444":{"tf":1.0},"1496":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"311":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"66":{"tf":1.0},"679":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"935":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"1041":{"tf":1.0},"11":{"tf":1.4142135623730951},"1441":{"tf":1.0},"21":{"tf":1.0},"308":{"tf":1.0},"901":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"1164":{"tf":1.0},"1166":{"tf":1.0},"1422":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"669":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1505":{"tf":1.0},"434":{"tf":1.0},"489":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"256":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":64,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1304":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1355":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.7320508075688772},"1440":{"tf":1.0},"1441":{"tf":1.0},"1449":{"tf":2.449489742783178},"1452":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772},"298":{"tf":1.0},"338":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"418":{"tf":1.0},"473":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.4142135623730951},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"565":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.4142135623730951},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"72":{"tf":1.0},"742":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"996":{"tf":1.0}}}}}},"df":46,"docs":{"1103":{"tf":1.0},"1120":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.7320508075688772},"1392":{"tf":2.23606797749979},"1394":{"tf":1.7320508075688772},"1402":{"tf":2.23606797749979},"1404":{"tf":3.3166247903554},"576":{"tf":1.0},"588":{"tf":2.0},"617":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":2.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1108":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1384":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"774":{"tf":1.0},"80":{"tf":1.0},"800":{"tf":1.4142135623730951},"804":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.0},"829":{"tf":1.0},"887":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"1120":{"tf":1.0},"127":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1453":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"332":{"tf":1.0},"354":{"tf":1.0},"377":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"610":{"tf":1.0},"72":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.4142135623730951},"759":{"tf":1.0},"833":{"tf":1.0},"938":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"1094":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1515":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"151":{"tf":1.0},"859":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"33":{"tf":1.0},"815":{"tf":1.0},"856":{"tf":1.0},"859":{"tf":1.0},"883":{"tf":1.0}},"i":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"246":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"116":{"tf":1.0},"1194":{"tf":1.0},"915":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"1011":{"tf":1.0},"106":{"tf":1.0},"1061":{"tf":1.0},"107":{"tf":1.0},"1087":{"tf":1.0},"1094":{"tf":1.0},"115":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"248":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"292":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"682":{"tf":1.0},"911":{"tf":1.0},"942":{"tf":1.0},"969":{"tf":1.0},"972":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":18,"docs":{"1054":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1175":{"tf":1.0},"1211":{"tf":1.0},"1215":{"tf":1.0},"1284":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"680":{"tf":1.0},"682":{"tf":1.0},"767":{"tf":1.4142135623730951},"822":{"tf":1.0},"929":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1135":{"tf":1.0},"1449":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1509":{"tf":1.0},"545":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"950":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"1253":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.0},"925":{"tf":1.0}}}}},"s":{"c":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"1211":{"tf":1.0},"47":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":108,"docs":{"1000":{"tf":1.0},"1055":{"tf":1.0},"108":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1115":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"1310":{"tf":1.0},"132":{"tf":2.449489742783178},"1323":{"tf":1.0},"1332":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"138":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.7320508075688772},"288":{"tf":1.0},"292":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"532":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.0},"709":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":2.0},"752":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.449489742783178},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"80":{"tf":2.0},"803":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"847":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.7320508075688772},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":1.0},"946":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"0":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"357":{"tf":1.0},"591":{"tf":1.0},"63":{"tf":1.0},"852":{"tf":1.0},"910":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}}},"r":{"df":3,"docs":{"802":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":21,"docs":{"1437":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1440":{"tf":2.0},"1442":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"899":{"tf":2.449489742783178},"900":{"tf":2.449489742783178},"902":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1013":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1347":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1406":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"603":{"tf":1.0},"679":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"851":{"tf":1.0},"87":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"980":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"1336":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1163":{"tf":1.0},"1175":{"tf":1.0},"1263":{"tf":1.0},"1432":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"928":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1450":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"921":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1454":{"tf":1.0}}}}}},"df":5,"docs":{"115":{"tf":1.0},"1343":{"tf":1.0},"1441":{"tf":1.0},"348":{"tf":1.0},"930":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":28,"docs":{"1":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1089":{"tf":1.0},"1194":{"tf":1.0},"1343":{"tf":1.0},"1444":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"250":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0},"346":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"573":{"tf":1.0},"625":{"tf":1.0},"654":{"tf":1.4142135623730951},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"968":{"tf":1.0},"976":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"t":{"df":1,"docs":{"979":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":18,"docs":{"1376":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.0},"1394":{"tf":2.0},"1402":{"tf":1.0},"1404":{"tf":2.8284271247461903},"599":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"617":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"725":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"706":{"tf":1.0},"707":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"1194":{"tf":1.0},"976":{"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":{"1014":{"tf":1.0},"1119":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"129":{"tf":1.0},"1298":{"tf":1.0},"1333":{"tf":1.0},"1343":{"tf":1.0},"1467":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"220":{"tf":1.4142135623730951},"289":{"tf":1.0},"487":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1475":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1014":{"tf":1.0},"1028":{"tf":1.0},"24":{"tf":1.0},"760":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":27,"docs":{"1015":{"tf":1.4142135623730951},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1031":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.4142135623730951},"57":{"tf":1.0},"571":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":2,"docs":{"1340":{"tf":1.0},"585":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"302":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1091":{"tf":1.0},"1156":{"tf":1.0},"1297":{"tf":1.0},"185":{"tf":1.0},"239":{"tf":1.0},"494":{"tf":1.0},"676":{"tf":1.0},"684":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":67,"docs":{"1043":{"tf":1.0},"1059":{"tf":1.0},"113":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.7320508075688772},"124":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.7320508075688772},"1340":{"tf":1.0},"136":{"tf":1.7320508075688772},"1369":{"tf":1.0},"137":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.7320508075688772},"1426":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1462":{"tf":2.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1528":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"43":{"tf":1.0},"536":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"79":{"tf":1.0},"831":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"924":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"128":{"tf":1.0},"1439":{"tf":1.0},"242":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":4,"docs":{"221":{"tf":1.0},"228":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1099":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1164":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}},"i":{"df":5,"docs":{"1212":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"884":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":6,"docs":{"1062":{"tf":1.0},"1101":{"tf":1.0},"1489":{"tf":1.0},"371":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"125":{"tf":1.0},"1498":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"836":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1062":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1208":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1452":{"tf":1.0},"214":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"935":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"256":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":86,"docs":{"1002":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.7320508075688772},"1006":{"tf":1.0},"1007":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1075":{"tf":1.0},"1196":{"tf":1.0},"1214":{"tf":1.0},"1235":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.7320508075688772},"1261":{"tf":1.4142135623730951},"128":{"tf":3.4641016151377544},"129":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"1333":{"tf":3.3166247903554},"1334":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1475":{"tf":1.7320508075688772},"1476":{"tf":2.23606797749979},"1477":{"tf":2.0},"165":{"tf":2.0},"169":{"tf":1.0},"172":{"tf":1.0},"202":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.0},"234":{"tf":2.449489742783178},"235":{"tf":2.6457513110645907},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":3.3166247903554},"243":{"tf":3.4641016151377544},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":2.449489742783178},"256":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.7320508075688772},"773":{"tf":1.0},"896":{"tf":2.0},"908":{"tf":1.0},"909":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":2.0},"940":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"95":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"976":{"tf":3.0},"977":{"tf":1.0},"979":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"f":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"937":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":28,"docs":{"1227":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1474":{"tf":2.23606797749979},"165":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":2.23606797749979},"246":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.4142135623730951},"918":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1361":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"522":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1351":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1352":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1342":{"tf":1.0},"139":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"179":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"1":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"2":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"588":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1302":{"tf":2.0},"657":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1094":{"tf":1.0},"288":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0},"725":{"tf":1.0},"846":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1143":{"tf":1.4142135623730951},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"df":83,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":2.0},"1151":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":1.0},"210":{"tf":1.4142135623730951},"224":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"419":{"tf":1.0},"45":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"581":{"tf":1.0},"605":{"tf":1.4142135623730951},"616":{"tf":1.0},"634":{"tf":1.4142135623730951},"653":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"723":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"845":{"tf":3.0},"911":{"tf":1.0},"921":{"tf":1.0},"997":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"682":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":13,"docs":{"1209":{"tf":1.0},"1421":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"379":{"tf":1.0},"397":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"612":{"tf":1.0},"631":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"847":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"134":{"tf":2.449489742783178},"1345":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"141":{"tf":1.0},"1419":{"tf":2.23606797749979},"142":{"tf":2.0},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"88":{"tf":2.0}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":2.449489742783178},"605":{"tf":1.0},"612":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"641":{"tf":1.0},"642":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":470,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"1007":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1027":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1086":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":2.0},"1103":{"tf":1.0},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"111":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1115":{"tf":1.0},"113":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":2.23606797749979},"1142":{"tf":2.0},"1143":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"122":{"tf":1.0},"1228":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1240":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1256":{"tf":1.0},"1260":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":2.23606797749979},"1298":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1301":{"tf":2.6457513110645907},"1302":{"tf":2.6457513110645907},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1307":{"tf":1.0},"1312":{"tf":2.449489742783178},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1318":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1322":{"tf":1.0},"1323":{"tf":3.605551275463989},"1324":{"tf":3.3166247903554},"1325":{"tf":2.6457513110645907},"1326":{"tf":2.449489742783178},"1328":{"tf":2.0},"1329":{"tf":2.0},"133":{"tf":1.0},"1330":{"tf":3.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"134":{"tf":3.3166247903554},"1340":{"tf":2.23606797749979},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":2.6457513110645907},"1350":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1352":{"tf":2.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.0},"136":{"tf":3.1622776601683795},"1361":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.0},"1369":{"tf":2.6457513110645907},"137":{"tf":2.23606797749979},"1370":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.7320508075688772},"1375":{"tf":2.0},"1376":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"138":{"tf":2.0},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":2.449489742783178},"139":{"tf":1.0},"1390":{"tf":3.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.8284271247461903},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"1415":{"tf":1.0},"1418":{"tf":1.7320508075688772},"1419":{"tf":4.0},"142":{"tf":2.23606797749979},"1420":{"tf":3.0},"1421":{"tf":3.1622776601683795},"1422":{"tf":3.1622776601683795},"1423":{"tf":3.1622776601683795},"1425":{"tf":2.8284271247461903},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"145":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.0},"1466":{"tf":1.0},"1469":{"tf":2.0},"147":{"tf":1.0},"1470":{"tf":2.0},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"1481":{"tf":2.0},"1482":{"tf":1.4142135623730951},"1484":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"149":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.7320508075688772},"1515":{"tf":2.0},"1517":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":1.0},"156":{"tf":2.23606797749979},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":2.6457513110645907},"372":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":2.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"480":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":2.449489742783178},"523":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"558":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.7320508075688772},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"593":{"tf":1.0},"599":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"604":{"tf":2.449489742783178},"605":{"tf":2.6457513110645907},"606":{"tf":1.4142135623730951},"61":{"tf":1.0},"612":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":2.0},"645":{"tf":1.0},"646":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":2.0},"657":{"tf":1.4142135623730951},"66":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"696":{"tf":2.6457513110645907},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"699":{"tf":2.449489742783178},"700":{"tf":1.7320508075688772},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.7320508075688772},"71":{"tf":1.0},"710":{"tf":1.7320508075688772},"724":{"tf":1.0},"725":{"tf":1.4142135623730951},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"741":{"tf":1.4142135623730951},"744":{"tf":2.0},"747":{"tf":2.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"751":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":2.0},"76":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":2.0},"776":{"tf":1.0},"778":{"tf":1.7320508075688772},"779":{"tf":1.0},"780":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":2.0},"793":{"tf":1.0},"794":{"tf":2.449489742783178},"795":{"tf":1.0},"796":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":2.0},"80":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.7320508075688772},"831":{"tf":1.7320508075688772},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"84":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"847":{"tf":2.0},"849":{"tf":1.0},"850":{"tf":1.7320508075688772},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":3.3166247903554},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"875":{"tf":1.0},"88":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"92":{"tf":1.0},"921":{"tf":2.0},"922":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"970":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.4142135623730951}},"i":{"d":{"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"371":{"tf":1.0},"379":{"tf":1.0}},"}":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"522":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"87":{"tf":1.0}}}}}}}}},"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"787":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0},"1309":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"407":{"tf":1.0},"408":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"852":{"tf":1.0}},"e":{"df":3,"docs":{"1404":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1456":{"tf":1.0},"1475":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"230":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"1109":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1239":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1259":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.0},"1333":{"tf":2.6457513110645907},"143":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"374":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.0},"833":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"1051":{"tf":1.0},"1088":{"tf":1.0},"1287":{"tf":1.0},"1323":{"tf":1.0},"1490":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0},"908":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"141":{"tf":1.0},"1456":{"tf":1.0},"72":{"tf":1.0},"811":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"942":{"tf":1.0},"976":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1513":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"1325":{"tf":1.0},"1432":{"tf":1.0},"728":{"tf":1.0},"804":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"1474":{"tf":1.4142135623730951},"253":{"tf":1.0},"976":{"tf":1.0}},"s":{"df":1,"docs":{"985":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1336":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1399":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1161":{"tf":1.0},"1309":{"tf":1.0},"1476":{"tf":1.0},"249":{"tf":1.0},"769":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1122":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1507":{"tf":1.0},"303":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.4142135623730951},"527":{"tf":1.0},"602":{"tf":1.0},"608":{"tf":1.0},"704":{"tf":1.0},"836":{"tf":1.0},"870":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1046":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"b":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":48,"docs":{"1003":{"tf":1.0},"11":{"tf":1.0},"1144":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1189":{"tf":1.0},"1206":{"tf":1.0},"1246":{"tf":1.0},"1285":{"tf":1.0},"1310":{"tf":1.0},"1330":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"693":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"874":{"tf":1.0},"881":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"954":{"tf":1.4142135623730951},"968":{"tf":1.0},"97":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"1061":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"548":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1381":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"1148":{"tf":1.0},"1330":{"tf":2.6457513110645907},"1338":{"tf":2.0},"1339":{"tf":2.8284271247461903},"1340":{"tf":2.0},"1345":{"tf":2.6457513110645907},"1346":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.7320508075688772},"956":{"tf":1.0},"962":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}}}},"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":{"1076":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":87,"docs":{"1015":{"tf":1.4142135623730951},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":2.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.4142135623730951},"389":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.0},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1164":{"tf":1.0},"1169":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0}}}}},"df":22,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.4142135623730951},"135":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.8284271247461903},"1402":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1420":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"384":{"tf":1.7320508075688772},"554":{"tf":1.0},"618":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.449489742783178},"723":{"tf":2.449489742783178},"949":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"950":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1130":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1309":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1381":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"1112":{"tf":2.23606797749979},"1116":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1332":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"507":{"tf":2.0},"65":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"816":{"tf":1.0}}}}},"b":{"df":29,"docs":{"1323":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":2.0},"185":{"tf":2.0},"206":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.7320508075688772},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":2.0},"522":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"797":{"tf":1.0},"838":{"tf":1.7320508075688772},"850":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":5,"docs":{"1092":{"tf":1.0},"600":{"tf":1.4142135623730951},"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":5,"docs":{"1091":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":26,"docs":{"1091":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1306":{"tf":1.0},"1326":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1422":{"tf":2.23606797749979},"1425":{"tf":1.0},"1433":{"tf":1.0},"1476":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.0},"273":{"tf":1.0},"366":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"4":{"tf":1.0},"600":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.7320508075688772},"789":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1169":{"tf":1.0},"1200":{"tf":1.0},"261":{"tf":1.0},"451":{"tf":1.0},"517":{"tf":1.0},"694":{"tf":1.0},"911":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1199":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.0},"1263":{"tf":1.0},"1296":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"169":{"tf":1.0},"212":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"536":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"679":{"tf":1.4142135623730951},"728":{"tf":1.0},"874":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"90":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"984":{"tf":1.0},"989":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}},"o":{"d":{"df":22,"docs":{"1045":{"tf":1.0},"1091":{"tf":1.0},"129":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"186":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.0},"376":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"609":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1457":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"1051":{"tf":1.0},"1106":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1505":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.4142135623730951},"541":{"tf":1.0},"892":{"tf":1.4142135623730951},"911":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1448":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":13,"docs":{"1263":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"225":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"813":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1102":{"tf":1.0},"1106":{"tf":1.0},"1149":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1243":{"tf":1.0},"1285":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":2.0},"1445":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"486":{"tf":1.0},"65":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"810":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1197":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"47":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"151":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1175":{"tf":1.0},"423":{"tf":1.0},"876":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"1":{"tf":1.0},"1109":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1421":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1465":{"tf":1.0},"1493":{"tf":1.0},"15":{"tf":1.0},"1528":{"tf":1.7320508075688772},"227":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"511":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"79":{"tf":1.0},"882":{"tf":1.0},"910":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"1175":{"tf":1.0},"767":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"1323":{"tf":1.0},"1334":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1226":{"tf":1.0},"1403":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}}}}},"y":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"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":{"1403":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1131":{"tf":1.0},"742":{"tf":1.0},"746":{"tf":2.0},"753":{"tf":1.0},"754":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"746":{"tf":1.0}}}}}},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1449":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1212":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"1050":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1066":{"tf":1.0},"1079":{"tf":1.0},"1086":{"tf":1.0},"113":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1215":{"tf":1.0},"125":{"tf":1.0},"1296":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.4142135623730951},"1430":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"160":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"37":{"tf":1.0},"437":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.0},"660":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"935":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1323":{"tf":1.4142135623730951},"1325":{"tf":2.0},"1328":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1338":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1027":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"286":{"tf":1.0},"299":{"tf":1.0}}},"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"442":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"382":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":2.23606797749979}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1356":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":12,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.0},"419":{"tf":1.7320508075688772},"477":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":126,"docs":{"1127":{"tf":1.0},"1149":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":2.23606797749979},"1282":{"tf":1.4142135623730951},"1344":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":3.605551275463989},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":2.449489742783178},"14":{"tf":1.0},"1401":{"tf":3.1622776601683795},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1439":{"tf":1.4142135623730951},"144":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1490":{"tf":1.7320508075688772},"1491":{"tf":1.4142135623730951},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1528":{"tf":1.4142135623730951},"243":{"tf":1.0},"261":{"tf":1.0},"286":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"419":{"tf":2.0},"442":{"tf":1.0},"463":{"tf":1.4142135623730951},"473":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.23606797749979},"498":{"tf":2.23606797749979},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"546":{"tf":2.23606797749979},"555":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"585":{"tf":1.0},"593":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"653":{"tf":2.6457513110645907},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"758":{"tf":1.0},"899":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"941":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1345":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1349":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1194":{"tf":1.4142135623730951},"21":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"811":{"tf":1.4142135623730951}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"681":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":14,"docs":{"1109":{"tf":1.0},"1160":{"tf":1.0},"1212":{"tf":1.0},"1298":{"tf":1.0},"1429":{"tf":1.4142135623730951},"28":{"tf":1.0},"369":{"tf":1.0},"439":{"tf":1.0},"729":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"932":{"tf":1.0},"933":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":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":{"255":{"tf":1.0}},"u":{"df":1,"docs":{"732":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1035":{"tf":1.0},"1085":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":2.0},"874":{"tf":1.0}},"t":{"df":5,"docs":{"1192":{"tf":1.0},"1205":{"tf":1.0},"1405":{"tf":1.7320508075688772},"664":{"tf":1.0},"833":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"1115":{"tf":1.0},"122":{"tf":1.0},"1462":{"tf":1.0},"327":{"tf":1.0},"555":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1114":{"tf":1.0},"60":{"tf":1.0}}}},"v":{"df":1,"docs":{"984":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1080":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":114,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1084":{"tf":1.0},"1128":{"tf":1.0},"1185":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1248":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1337":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1371":{"tf":1.4142135623730951},"1396":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1406":{"tf":2.449489742783178},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1454":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"19":{"tf":1.4142135623730951},"226":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"356":{"tf":1.7320508075688772},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"590":{"tf":1.7320508075688772},"616":{"tf":1.0},"654":{"tf":1.0},"67":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.4142135623730951},"734":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"902":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"997":{"tf":1.0},"999":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"129":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1126":{"tf":1.4142135623730951},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1378":{"tf":2.449489742783178},"1390":{"tf":2.0},"1394":{"tf":3.4641016151377544},"1402":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"618":{"tf":1.7320508075688772},"653":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.0},"723":{"tf":2.23606797749979},"724":{"tf":1.4142135623730951},"798":{"tf":1.0},"949":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"1161":{"tf":1.0},"1185":{"tf":1.0},"1219":{"tf":1.0},"1310":{"tf":1.0},"1449":{"tf":1.0},"255":{"tf":1.0},"50":{"tf":1.0},"732":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1042":{"tf":1.0},"1082":{"tf":1.0},"1094":{"tf":1.0},"1135":{"tf":1.0},"116":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1209":{"tf":1.0},"127":{"tf":1.0},"1298":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1332":{"tf":1.0},"135":{"tf":1.0},"1404":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"334":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"605":{"tf":1.0},"634":{"tf":1.0},"664":{"tf":1.0},"699":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"876":{"tf":1.0},"894":{"tf":1.0},"92":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0},"976":{"tf":1.0},"984":{"tf":1.0}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1345":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":4,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1471":{"tf":1.0},"1482":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1000":{"tf":1.0},"1507":{"tf":1.0},"918":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":2.23606797749979}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"941":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1436":{"tf":1.0},"950":{"tf":1.0},"954":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1214":{"tf":1.0},"234":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"606":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"372":{"tf":1.0}}}},"df":37,"docs":{"1066":{"tf":1.7320508075688772},"1079":{"tf":2.0},"1095":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1215":{"tf":2.0},"1234":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1440":{"tf":2.449489742783178},"1454":{"tf":2.23606797749979},"1456":{"tf":1.0},"1466":{"tf":1.0},"1497":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1520":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"298":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"336":{"tf":2.0},"372":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"506":{"tf":1.4142135623730951},"563":{"tf":2.0},"606":{"tf":1.0},"660":{"tf":2.0},"903":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"s":{"df":2,"docs":{"1194":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"1264":{"tf":1.0},"1267":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"547":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1287":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.7320508075688772},"510":{"tf":1.0},"538":{"tf":1.0}}}}}}},"df":36,"docs":{"1148":{"tf":2.0},"1192":{"tf":2.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.7320508075688772},"486":{"tf":1.0},"497":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":2.0},"538":{"tf":1.4142135623730951},"547":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1108":{"tf":1.0},"1111":{"tf":1.0},"1124":{"tf":1.0},"1367":{"tf":1.0},"498":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"1244":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"412":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1092":{"tf":1.0},"1174":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1405":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"206":{"tf":1.0},"272":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"646":{"tf":1.0},"838":{"tf":1.0},"847":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1080":{"tf":1.0},"1185":{"tf":1.0},"1300":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1326":{"tf":2.449489742783178},"1356":{"tf":1.0},"137":{"tf":2.23606797749979},"1379":{"tf":1.0},"1422":{"tf":2.8284271247461903},"1425":{"tf":1.4142135623730951},"1433":{"tf":1.0},"156":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"273":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"529":{"tf":1.0},"58":{"tf":1.4142135623730951},"601":{"tf":1.0},"706":{"tf":1.0},"725":{"tf":1.0},"884":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1148":{"tf":1.0},"1381":{"tf":1.0},"666":{"tf":1.0},"684":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"675":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}}},"{":{"a":{"df":1,"docs":{"1381":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"699":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1517":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"661":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1330":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1079":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":5,"docs":{"1182":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":67,"docs":{"1006":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1469":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1530":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":2.0},"253":{"tf":1.0},"299":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"520":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"653":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"855":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"929":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":21,"docs":{"1062":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1334":{"tf":1.0},"1346":{"tf":1.0},"1429":{"tf":1.4142135623730951},"155":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"759":{"tf":1.0},"76":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"916":{"tf":1.0},"935":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1177":{"tf":1.0},"1505":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1197":{"tf":1.0},"21":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0}}},"s":{"df":43,"docs":{"1001":{"tf":1.0},"1122":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"1194":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"1315":{"tf":1.0},"1332":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1449":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"185":{"tf":1.0},"206":{"tf":1.0},"295":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.4142135623730951},"600":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.0},"816":{"tf":1.0},"897":{"tf":1.0},"902":{"tf":1.0},"946":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1149":{"tf":1.7320508075688772},"1264":{"tf":1.0},"1270":{"tf":2.0},"1372":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"1018":{"tf":1.0},"1042":{"tf":1.0},"1061":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1030":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"992":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"617":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"684":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1148":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1381":{"tf":2.0},"1402":{"tf":1.4142135623730951},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"617":{"tf":1.7320508075688772},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":2.0},"670":{"tf":1.0},"675":{"tf":1.7320508075688772},"684":{"tf":1.4142135623730951},"686":{"tf":2.0},"687":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"718":{"tf":2.0},"719":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":77,"docs":{"1140":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"135":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"138":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1404":{"tf":2.23606797749979},"141":{"tf":1.4142135623730951},"1419":{"tf":2.449489742783178},"142":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.4142135623730951},"1425":{"tf":2.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"661":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"1055":{"tf":1.0},"107":{"tf":2.6457513110645907},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"110":{"tf":1.0},"1118":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"290":{"tf":1.4142135623730951},"292":{"tf":2.0},"298":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"536":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.4142135623730951},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1336":{"tf":1.0},"765":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"1208":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"459":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":4,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"d":{"df":127,"docs":{"1045":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.0},"1126":{"tf":1.0},"1134":{"tf":1.0},"1136":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":2.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1450":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1471":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1515":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"334":{"tf":1.4142135623730951},"370":{"tf":1.0},"398":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"498":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"58":{"tf":1.4142135623730951},"604":{"tf":1.0},"632":{"tf":1.7320508075688772},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.0},"698":{"tf":2.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"773":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":2.449489742783178},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":2.0},"807":{"tf":1.7320508075688772},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"828":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.4142135623730951},"901":{"tf":1.0},"903":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"135":{"tf":1.0},"1420":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":198,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1090":{"tf":1.0},"1091":{"tf":1.7320508075688772},"1092":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"1112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.4142135623730951},"122":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"132":{"tf":2.23606797749979},"1323":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1336":{"tf":1.0},"1338":{"tf":2.0},"1339":{"tf":1.7320508075688772},"134":{"tf":3.0},"1340":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1345":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1420":{"tf":2.8284271247461903},"1421":{"tf":2.8284271247461903},"1422":{"tf":3.3166247903554},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":2.0},"1433":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.7320508075688772},"144":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1446":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1455":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1479":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"1528":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"317":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"478":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.7320508075688772},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"560":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.0},"584":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":2.0},"605":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"616":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.4142135623730951},"644":{"tf":1.0},"65":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.4142135623730951},"678":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"699":{"tf":1.0},"708":{"tf":1.7320508075688772},"712":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"747":{"tf":1.0},"772":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":2.23606797749979},"788":{"tf":2.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":2.0},"838":{"tf":1.7320508075688772},"841":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"850":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"925":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"962":{"tf":1.0},"969":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"519":{"tf":1.0},"536":{"tf":2.0},"614":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"722":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"911":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1365":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":24,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1097":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1105":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":1,"docs":{"319":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"815":{"tf":1.0},"826":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"1403":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1175":{"tf":1.0},"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1401":{"tf":1.0},"1460":{"tf":1.0},"1495":{"tf":1.0},"280":{"tf":1.0},"354":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"1046":{"tf":1.0},"1053":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1476":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"82":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"1001":{"tf":1.4142135623730951},"117":{"tf":1.0},"1320":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1410":{"tf":1.0},"142":{"tf":1.0},"1436":{"tf":1.0},"148":{"tf":1.0},"1484":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"23":{"tf":1.0},"349":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"576":{"tf":1.0},"676":{"tf":1.0},"72":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"987":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"x":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"1077":{"tf":1.0},"1087":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"292":{"tf":1.0},"762":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1264":{"tf":1.0},"1271":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1014":{"tf":1.0},"1054":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":9,"docs":{"1184":{"tf":1.0},"1247":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1441":{"tf":1.0},"291":{"tf":1.0},"456":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"997":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"df":18,"docs":{"1001":{"tf":1.4142135623730951},"1161":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.4142135623730951},"991":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1265":{"tf":1.0},"1333":{"tf":1.0},"139":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"545":{"tf":1.0},"729":{"tf":1.0},"867":{"tf":1.0},"901":{"tf":1.0},"936":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1145":{"tf":1.0},"312":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0}}}}},"v":{"df":1,"docs":{"1194":{"tf":1.0}}}},"g":{"df":2,"docs":{"552":{"tf":1.0},"586":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"869":{"tf":1.0}}},"t":{"df":53,"docs":{"1011":{"tf":1.0},"1044":{"tf":1.7320508075688772},"1112":{"tf":1.0},"1116":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1166":{"tf":1.0},"129":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1421":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1471":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1528":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"400":{"tf":1.0},"495":{"tf":1.0},"522":{"tf":1.0},"58":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"634":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"731":{"tf":1.0},"745":{"tf":2.23606797749979},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"987":{"tf":1.4142135623730951}}}},"df":3,"docs":{"879":{"tf":1.0},"881":{"tf":1.0},"988":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":38,"docs":{"116":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":2.23606797749979},"1403":{"tf":1.0},"1404":{"tf":1.7320508075688772},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1495":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"351":{"tf":1.4142135623730951},"366":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"465":{"tf":1.0},"583":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"618":{"tf":1.4142135623730951},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"837":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"152":{"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":{"1441":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":10,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.4142135623730951},"13":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"454":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"848":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"934":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"758":{"tf":1.0},"879":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1103":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"1161":{"tf":1.0},"918":{"tf":1.0},"976":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"2":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1522":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1361":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":48,"docs":{"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1058":{"tf":1.0},"1089":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1461":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1115":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}},"l":{"df":29,"docs":{"109":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1214":{"tf":1.0},"1251":{"tf":1.0},"1296":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1436":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"4":{"tf":1.0},"544":{"tf":1.0},"603":{"tf":1.0},"612":{"tf":1.0},"776":{"tf":1.0},"861":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":6,"docs":{"1144":{"tf":1.0},"152":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"753":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":63,"docs":{"1164":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1278":{"tf":1.0},"1288":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0},"259":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"370":{"tf":1.0},"416":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"534":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":1.0},"650":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1103":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"=":{"1":{"0":{"0":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1138":{"tf":1.0},"146":{"tf":1.0},"386":{"tf":1.0},"40":{"tf":1.0},"620":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1014":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1254":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"960":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.4142135623730951},"1165":{"tf":2.6457513110645907},"1166":{"tf":1.7320508075688772}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"1215":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":4,"docs":{"1243":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":4,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":74,"docs":{"1004":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1020":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"11":{"tf":1.0},"1154":{"tf":1.0},"1158":{"tf":1.4142135623730951},"119":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1235":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1429":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1505":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"780":{"tf":1.0},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"851":{"tf":1.0},"884":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.4142135623730951},"926":{"tf":1.0},"934":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"1069":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1384":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1305":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"b":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1305":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1003":{"tf":1.0},"1161":{"tf":1.0},"119":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0},"547":{"tf":1.0},"727":{"tf":1.0},"909":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"262":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1300":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1158":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"1158":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}},"n":{"df":2,"docs":{"1423":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"1102":{"tf":1.0},"1160":{"tf":1.0},"1281":{"tf":1.0},"1378":{"tf":1.0},"1408":{"tf":1.0},"1428":{"tf":1.0},"368":{"tf":1.0},"497":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"733":{"tf":1.0},"766":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0}}}},"df":6,"docs":{"450":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"978":{"tf":1.0}},"e":{"df":2,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0}}},"o":{"d":{"df":3,"docs":{"1312":{"tf":1.0},"884":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1050":{"tf":1.0},"1177":{"tf":1.0},"424":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"477":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"732":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1330":{"tf":1.0},"583":{"tf":1.0},"979":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1117":{"tf":1.0},"1277":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"1278":{"tf":1.0},"21":{"tf":1.0},"491":{"tf":1.0},"914":{"tf":1.0},"954":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"df":19,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"1112":{"tf":1.0},"1211":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"909":{"tf":1.4142135623730951},"92":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"985":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"1208":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":68,"docs":{"1112":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"332":{"tf":1.0},"335":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"738":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"770":{"tf":1.0},"794":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.0},"96":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":22,"docs":{"1148":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"331":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":17,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"357":{"tf":1.0},"916":{"tf":1.0}}}}}}}},"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"373":{"tf":1.0},"937":{"tf":1.7320508075688772},"939":{"tf":2.23606797749979},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"373":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"911":{"tf":1.0},"930":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1452":{"tf":1.0},"1455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"1055":{"tf":1.7320508075688772},"1073":{"tf":1.7320508075688772},"1074":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1214":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"739":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"38":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":46,"docs":{"1011":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1200":{"tf":1.0},"1268":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1344":{"tf":1.0},"1346":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.7320508075688772},"14":{"tf":1.0},"1401":{"tf":1.0},"228":{"tf":1.0},"286":{"tf":1.0},"359":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"546":{"tf":1.4142135623730951},"593":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"723":{"tf":1.4142135623730951},"949":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1267":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"507":{"tf":1.0},"833":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1048":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1145":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1003":{"tf":1.0}}},"2":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"557":{"tf":1.0},"651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":84,"docs":{"1001":{"tf":1.7320508075688772},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.0},"1067":{"tf":1.0},"1092":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1333":{"tf":1.0},"1403":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1429":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"332":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"417":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"520":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":2.449489742783178},"544":{"tf":1.0},"557":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"614":{"tf":1.4142135623730951},"631":{"tf":1.0},"651":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"697":{"tf":1.0},"708":{"tf":1.0},"739":{"tf":1.4142135623730951},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"776":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":2.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.4142135623730951},"996":{"tf":1.0},"997":{"tf":3.1622776601683795}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"332":{"tf":1.0},"417":{"tf":1.0},"420":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"417":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"1260":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"1194":{"tf":1.0},"248":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"831":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"729":{"tf":1.0},"740":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":47,"docs":{"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1136":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":2.0},"1442":{"tf":2.23606797749979},"1445":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":2.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"729":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"744":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.4142135623730951},"832":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"899":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.4142135623730951},"369":{"tf":1.0},"507":{"tf":1.0},"603":{"tf":1.0},"760":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1401":{"tf":1.0},"1402":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":25,"docs":{"1148":{"tf":1.0},"1237":{"tf":1.0},"1248":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"197":{"tf":1.0},"268":{"tf":1.0},"349":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"519":{"tf":1.0},"576":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"884":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":15,"docs":{"105":{"tf":1.0},"1162":{"tf":1.0},"119":{"tf":2.6457513110645907},"1411":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"739":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"1220":{"tf":1.0},"1278":{"tf":1.0},"259":{"tf":1.4142135623730951},"292":{"tf":1.0},"491":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1161":{"tf":1.0},"1276":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1442":{"tf":1.0},"180":{"tf":1.7320508075688772},"370":{"tf":1.0},"45":{"tf":1.4142135623730951},"486":{"tf":1.0},"604":{"tf":1.0},"679":{"tf":1.0},"794":{"tf":1.4142135623730951},"798":{"tf":1.0},"845":{"tf":1.0},"884":{"tf":1.0},"921":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"535":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"729":{"tf":1.0}},"i":{"df":3,"docs":{"1124":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":14,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1089":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1336":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"959":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"322":{"tf":1.0},"549":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.0},"725":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"991":{"tf":1.4142135623730951}},"i":{"df":14,"docs":{"1006":{"tf":1.0},"1314":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"62":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"882":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1162":{"tf":1.0},"261":{"tf":1.0},"857":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"995":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"1209":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"237":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1307":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.7320508075688772},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1154":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.0}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"667":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":0,"docs":{},"s":{":":{"9":{"0":{"9":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":41,"docs":{"1020":{"tf":1.0},"110":{"tf":1.0},"1149":{"tf":1.0},"1203":{"tf":1.0},"1262":{"tf":1.0},"1268":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1284":{"tf":1.0},"1294":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1493":{"tf":1.0},"1525":{"tf":1.0},"311":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.7320508075688772},"481":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"537":{"tf":1.0},"547":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.0},"734":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"955":{"tf":1.0},"964":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":2,"docs":{"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"104":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"830":{"tf":1.0},"832":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"853":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"180":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"775":{"tf":1.0},"778":{"tf":1.0},"791":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1139":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1437":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"197":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"801":{"tf":1.0},"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"803":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"872":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"941":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"1227":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"370":{"tf":1.4142135623730951},"51":{"tf":1.0},"604":{"tf":1.4142135623730951},"66":{"tf":1.0},"746":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":2.23606797749979},"754":{"tf":1.7320508075688772},"761":{"tf":1.0},"766":{"tf":1.4142135623730951},"767":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1015":{"tf":1.0},"1034":{"tf":1.4142135623730951},"152":{"tf":1.0},"157":{"tf":1.0},"345":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"761":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"197":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"142":{"tf":1.0},"1484":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1047":{"tf":1.0},"1515":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"1188":{"tf":1.0},"1189":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"979":{"tf":1.0}}}}}}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":127,"docs":{"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1230":{"tf":1.0},"1241":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":2.0},"1302":{"tf":2.0},"1306":{"tf":2.23606797749979},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1405":{"tf":2.0},"142":{"tf":1.0},"1436":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1522":{"tf":1.7320508075688772},"174":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"49":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"587":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"612":{"tf":1.0},"649":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"700":{"tf":1.0},"707":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"832":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"884":{"tf":1.0},"894":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.4142135623730951},"989":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"1013":{"tf":1.0},"1175":{"tf":1.0},"1189":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.0},"1227":{"tf":1.0},"1231":{"tf":1.0},"1258":{"tf":1.0},"1285":{"tf":1.0},"1333":{"tf":1.0},"1415":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.4142135623730951},"918":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"977":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1441":{"tf":1.0},"760":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0}},"i":{"df":21,"docs":{"1111":{"tf":1.0},"1441":{"tf":1.0},"155":{"tf":1.0},"232":{"tf":1.0},"262":{"tf":1.0},"41":{"tf":1.0},"445":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":2.0},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.7320508075688772},"831":{"tf":1.0},"879":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"987":{"tf":1.0}}}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1300":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1300":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951}}}}}}},"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1063":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1082":{"tf":1.0},"128":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1426":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1082":{"tf":1.0},"61":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.4142135623730951},"914":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"918":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":37,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"1103":{"tf":1.0},"1158":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1204":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"446":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"910":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0},"981":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"1194":{"tf":1.0},"930":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":188,"docs":{"10":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.7320508075688772},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1103":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1140":{"tf":3.3166247903554},"1142":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1179":{"tf":2.0},"1180":{"tf":2.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":2.0},"1199":{"tf":1.0},"1205":{"tf":1.0},"1217":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"1270":{"tf":2.23606797749979},"1271":{"tf":1.7320508075688772},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":2.0},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.23606797749979},"1379":{"tf":1.7320508075688772},"1381":{"tf":2.0},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.4142135623730951},"1388":{"tf":2.23606797749979},"1390":{"tf":2.0},"1392":{"tf":2.449489742783178},"1394":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1401":{"tf":2.6457513110645907},"1402":{"tf":2.6457513110645907},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.23606797749979},"1405":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.7320508075688772},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"483":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"515":{"tf":1.0},"527":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"592":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"622":{"tf":1.0},"625":{"tf":1.4142135623730951},"638":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.7320508075688772},"666":{"tf":2.449489742783178},"667":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"681":{"tf":1.4142135623730951},"684":{"tf":2.449489742783178},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"692":{"tf":1.4142135623730951},"704":{"tf":1.0},"712":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"79":{"tf":1.7320508075688772},"794":{"tf":1.7320508075688772},"82":{"tf":1.0},"822":{"tf":1.4142135623730951},"83":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"925":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":3,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.23606797749979}},"i":{"d":{"df":1,"docs":{"1010":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"100":{"tf":1.0},"1006":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1114":{"tf":1.0},"1137":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"125":{"tf":1.0},"1255":{"tf":1.0},"1295":{"tf":1.0},"1324":{"tf":1.0},"1490":{"tf":1.0},"1522":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.4142135623730951},"544":{"tf":1.0},"620":{"tf":1.0},"634":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"792":{"tf":1.4142135623730951},"813":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"932":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":18,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"1340":{"tf":1.0},"1493":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"760":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1200":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1200":{"tf":1.0},"1482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1027":{"tf":1.0},"1515":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":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":{"192":{"tf":1.0},"303":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":3,"docs":{"1404":{"tf":1.4142135623730951},"79":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1163":{"tf":1.0},"199":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"857":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1080":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1300":{"tf":2.6457513110645907},"1304":{"tf":2.0},"1306":{"tf":1.4142135623730951},"1308":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"182":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":4,"docs":{"152":{"tf":1.0},"51":{"tf":1.0},"753":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1022":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"595":{"tf":1.0},"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"361":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"595":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"df":21,"docs":{"1324":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"442":{"tf":1.0},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"884":{"tf":1.0},"899":{"tf":1.4142135623730951},"902":{"tf":1.0},"966":{"tf":1.0},"979":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"1381":{"tf":1.0},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"363":{"tf":1.0},"47":{"tf":1.0},"597":{"tf":1.0},"66":{"tf":1.0},"733":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":2.0},"761":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"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":7,"docs":{"1042":{"tf":1.0},"1054":{"tf":1.0},"1075":{"tf":1.0},"1298":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1109":{"tf":1.0},"1123":{"tf":1.0},"308":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"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":2,"docs":{"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}}}},"df":21,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"1165":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"149":{"tf":1.0},"580":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":74,"docs":{"1107":{"tf":1.0},"111":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1180":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1349":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"149":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"54":{"tf":1.0},"580":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"71":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1162":{"tf":1.0},"1166":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1432":{"tf":1.0},"210":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0},"72":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1082":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"989":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.4142135623730951},"606":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":56,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.7320508075688772},"1154":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"1223":{"tf":1.7320508075688772},"1349":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1409":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"554":{"tf":1.7320508075688772},"555":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"6":{"tf":1.0},"682":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"70":{"tf":2.0},"727":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"n":{"c":{"df":16,"docs":{"332":{"tf":1.0},"388":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"558":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"686":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"718":{"tf":1.0},"726":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":13,"docs":{"1292":{"tf":1.0},"134":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1449":{"tf":1.0},"179":{"tf":1.0},"234":{"tf":1.0},"253":{"tf":1.0},"545":{"tf":1.0},"711":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"763":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"319":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"1180":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1306":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"742":{"tf":1.0},"901":{"tf":1.0}},"r":{"df":117,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1042":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"108":{"tf":1.0},"1137":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1173":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1316":{"tf":1.0},"1357":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1523":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"44":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.7320508075688772},"503":{"tf":1.0},"512":{"tf":1.4142135623730951},"520":{"tf":1.0},"547":{"tf":1.4142135623730951},"548":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"590":{"tf":1.0},"598":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"617":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"664":{"tf":1.4142135623730951},"673":{"tf":1.0},"674":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"697":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"86":{"tf":1.0},"871":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"914":{"tf":1.0},"931":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1102":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1194":{"tf":1.0},"780":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1144":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"1225":{"tf":1.0},"1263":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"423":{"tf":1.0},"663":{"tf":1.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1177":{"tf":1.0},"439":{"tf":1.0},"470":{"tf":1.0},"669":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1183":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}}}},"df":2,"docs":{"732":{"tf":1.0},"88":{"tf":1.0}},"f":{"a":{"c":{"df":11,"docs":{"118":{"tf":1.0},"1407":{"tf":1.0},"357":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"4":{"tf":1.0},"516":{"tf":1.0},"591":{"tf":1.0},"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"510":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"1268":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"287":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"688":{"tf":1.0},"726":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"231":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1026":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"446":{"tf":1.0},"728":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1282":{"tf":1.0},"477":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1127":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"1127":{"tf":1.0},"1148":{"tf":1.0},"1169":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1307":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1355":{"tf":1.0},"1375":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1461":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.4142135623730951},"1479":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1494":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"380":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"507":{"tf":1.0},"595":{"tf":1.0},"613":{"tf":1.0},"724":{"tf":1.0},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":7,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1111":{"tf":1.7320508075688772},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1323":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1323":{"tf":2.23606797749979},"1324":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1346":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1111":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1131":{"tf":1.0}}}},"p":{"df":3,"docs":{"1288":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"708":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"644":{"tf":1.0}}}}}},"df":27,"docs":{"1142":{"tf":2.449489742783178},"1302":{"tf":2.0},"1375":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":2.0},"1404":{"tf":1.4142135623730951},"1517":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.4142135623730951},"653":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.4142135623730951},"795":{"tf":1.0},"87":{"tf":1.4142135623730951},"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"319":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}},"l":{"df":5,"docs":{"1139":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1404":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"531":{"tf":1.0},"772":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":15,"docs":{"1164":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1528":{"tf":1.0},"19":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"451":{"tf":1.4142135623730951},"509":{"tf":1.0},"582":{"tf":1.0},"586":{"tf":1.0},"679":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"976":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}},"df":22,"docs":{"1301":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1403":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":3,"docs":{"357":{"tf":1.0},"471":{"tf":1.0},"591":{"tf":1.0}}},"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":28,"docs":{"1112":{"tf":2.23606797749979},"1121":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":2.449489742783178},"870":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"874":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}}},"r":{"df":5,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.7320508075688772},"23":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}}}},"j":{"a":{"c":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"<":{"4":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":568,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"103":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"106":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1065":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":2.449489742783178},"1071":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"11":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"111":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"113":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"117":{"tf":1.0},"1173":{"tf":1.0},"1175":{"tf":2.0},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"118":{"tf":1.0},"1180":{"tf":2.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":2.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":2.6457513110645907},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.4142135623730951},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.7320508075688772},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.0},"1248":{"tf":1.4142135623730951},"125":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"1270":{"tf":2.0},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"128":{"tf":2.449489742783178},"1281":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"129":{"tf":2.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1312":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"1320":{"tf":2.23606797749979},"1321":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":2.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1333":{"tf":2.8284271247461903},"1334":{"tf":2.449489742783178},"1336":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":3.1622776601683795},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1349":{"tf":1.0},"135":{"tf":1.7320508075688772},"1355":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"136":{"tf":2.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"137":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"138":{"tf":1.7320508075688772},"1381":{"tf":2.6457513110645907},"1382":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"14":{"tf":1.0},"1401":{"tf":2.449489742783178},"1402":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":2.23606797749979},"1407":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"1410":{"tf":2.0},"1411":{"tf":1.7320508075688772},"1413":{"tf":1.7320508075688772},"1415":{"tf":1.7320508075688772},"1417":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1419":{"tf":3.0},"142":{"tf":2.0},"1420":{"tf":2.449489742783178},"1421":{"tf":2.23606797749979},"1422":{"tf":2.0},"1423":{"tf":2.6457513110645907},"1425":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"146":{"tf":1.0},"1460":{"tf":2.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1484":{"tf":1.0},"149":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"150":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.0},"151":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":2.23606797749979},"1513":{"tf":1.4142135623730951},"1515":{"tf":1.0},"152":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1529":{"tf":2.23606797749979},"1530":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"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.4142135623730951},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.7320508075688772},"336":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":2.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":2.23606797749979},"585":{"tf":1.4142135623730951},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"63":{"tf":1.0},"648":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":2.6457513110645907},"667":{"tf":2.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.0},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"71":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"72":{"tf":2.0},"725":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":2.0},"800":{"tf":1.0},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.7320508075688772},"850":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"887":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.7320508075688772},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.7320508075688772},"981":{"tf":1.0},"986":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":2.0}},"s":{"'":{"df":1,"docs":{"1447":{"tf":1.0}}},".":{"a":{"2":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.0},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"443":{"tf":1.0},"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1510":{"tf":1.0},"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"113":{"tf":1.0},"1140":{"tf":1.0},"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1320":{"tf":1.0},"1355":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"160":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"361":{"tf":1.4142135623730951},"389":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"560":{"tf":1.0},"564":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.4142135623730951},"623":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"907":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"731":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"609":{"tf":1.0},"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"376":{"tf":1.0},"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"651":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1264":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"10":{"tf":1.0},"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1149":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1404":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"618":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1273":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"545":{"tf":1.0},"712":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1301":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":18,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1437":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"616":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"618":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"599":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"592":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"713":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"670":{"tf":1.0},"676":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1290":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"467":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"1145":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1139":{"tf":1.0},"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"714":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"714":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"669":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"670":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"716":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"716":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1313":{"tf":1.0},"1315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1301":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"364":{"tf":1.0},"382":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"70":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"963":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"a":{"2":{"a":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1084":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"575":{"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":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":2.23606797749979},"684":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1430":{"tf":1.0}}}}},"i":{"d":{"=":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1003":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":19,"docs":{"1047":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1204":{"tf":1.0},"1419":{"tf":1.0},"1515":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"r":{"df":5,"docs":{"336":{"tf":1.0},"557":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":45,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":2.0},"1047":{"tf":1.4142135623730951},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1461":{"tf":1.0},"1515":{"tf":1.4142135623730951},"160":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"1520":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"$":{"(":{"d":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1329":{"tf":1.0},"142":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1460":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"682":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"1430":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"*":{"*":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1063":{"tf":1.0},"1510":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"1530":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1063":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1430":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":42,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1106":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"562":{"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":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"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":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"r":{"d":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":41,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1105":{"tf":1.0},"113":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1497":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":44,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":2.0},"1454":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"336":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"946":{"tf":1.0},"965":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":2.0},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1310":{"tf":2.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1452":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1454":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"965":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1248":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1239":{"tf":1.4142135623730951},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":34,"docs":{"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"562":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"557":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1342":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1214":{"tf":1.0},"1436":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1436":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"995":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":44,"docs":{"1043":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"161":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.4142135623730951}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1520":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"1520":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1507":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1199":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"684":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"963":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"903":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1466":{"tf":1.0},"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"1448":{"tf":1.0},"1455":{"tf":1.0},"332":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"1507":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1310":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1237":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1081":{"tf":1.0},"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.0},"897":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1240":{"tf":1.4142135623730951},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}}}}}},"a":{"2":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1217":{"tf":1.0},"1218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":54,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"332":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"593":{"tf":1.0},"619":{"tf":1.4142135623730951},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"694":{"tf":1.4142135623730951},"711":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"151":{"tf":1.0},"167":{"tf":1.0},"244":{"tf":1.4142135623730951},"757":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"976":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"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":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":17,"docs":{"1332":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"741":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1143":{"tf":1.0},"1484":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"785":{"tf":1.4142135623730951},"858":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1486":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"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":2,"docs":{"217":{"tf":1.0},"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1046":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"785":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"779":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"885":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"854":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1084":{"tf":1.0},"854":{"tf":1.0},"859":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"856":{"tf":1.0},"857":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1305":{"tf":1.0},"262":{"tf":1.7320508075688772},"329":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":1,"docs":{"1305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1309":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"615":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1367":{"tf":2.6457513110645907},"1394":{"tf":2.449489742783178},"329":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":32,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.0},"538":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"1091":{"tf":1.0},"186":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"445":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":50,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1314":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.4142135623730951},"244":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"468":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"537":{"tf":1.0},"539":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"539":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"1382":{"tf":1.0},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1203":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}}},"df":9,"docs":{"1148":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1382":{"tf":1.0},"667":{"tf":1.0},"670":{"tf":1.7320508075688772},"678":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":14,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"330":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.7320508075688772},"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1180":{"tf":1.0},"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"1192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"798":{"tf":1.4142135623730951},"816":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1183":{"tf":1.0},"1371":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"861":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"536":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"741":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":13,"docs":{"1046":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1196":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":32,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1186":{"tf":1.0},"1196":{"tf":1.0},"1374":{"tf":1.0},"1392":{"tf":1.0},"1470":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"521":{"tf":1.0},"632":{"tf":1.0},"698":{"tf":1.0},"729":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"934":{"tf":1.0},"990":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"808":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"819":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"49":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"809":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"808":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"804":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"818":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"866":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"865":{"tf":1.0},"867":{"tf":1.0},"872":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"865":{"tf":1.0},"872":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":5,"docs":{"1182":{"tf":1.0},"429":{"tf":1.7320508075688772},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"541":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"498":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"938":{"tf":1.4142135623730951},"940":{"tf":1.0},"976":{"tf":2.0},"979":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":41,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1217":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.0},"836":{"tf":1.0},"861":{"tf":1.0},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1439":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"761":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1140":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1369":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1404":{"tf":1.0},"154":{"tf":1.0},"766":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"1480":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":7,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0},"1151":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1302":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1142":{"tf":1.0},"1171":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"634":{"tf":1.0},"635":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1088":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"696":{"tf":1.0},"797":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"709":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"695":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"769":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"588":{"tf":1.0},"656":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"518":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"770":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1361":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"522":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"408":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1151":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"349":{"tf":1.0},"519":{"tf":1.7320508075688772},"522":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}}},"y":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1399":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1312":{"tf":1.0},"1369":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1353":{"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":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"400":{"tf":1.0},"401":{"tf":1.0}}},"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":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":12,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"df":165,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"1021":{"tf":1.0},"1057":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1080":{"tf":1.0},"1094":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1231":{"tf":1.0},"127":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1302":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1340":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.23606797749979},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.0},"1479":{"tf":2.0},"16":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"528":{"tf":1.0},"532":{"tf":1.0},"536":{"tf":1.4142135623730951},"562":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"606":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"64":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"669":{"tf":1.4142135623730951},"695":{"tf":1.0},"696":{"tf":1.7320508075688772},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"725":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"828":{"tf":1.0},"842":{"tf":1.0},"851":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"921":{"tf":1.0},"94":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"581":{"tf":2.23606797749979},"590":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1219":{"tf":1.0},"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"816":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":3,"docs":{"1015":{"tf":2.0},"1030":{"tf":1.7320508075688772},"1036":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1526":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.4142135623730951},"204":{"tf":1.0},"433":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"_":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":3,"docs":{"1217":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":264,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":2.0},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.7320508075688772},"1004":{"tf":1.4142135623730951},"1006":{"tf":2.0},"1007":{"tf":2.0},"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1018":{"tf":1.7320508075688772},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.0},"1043":{"tf":2.0},"1044":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1085":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1177":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":2.6457513110645907},"1219":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1253":{"tf":2.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"127":{"tf":2.449489742783178},"1285":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1369":{"tf":1.0},"139":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.0},"1410":{"tf":1.0},"1432":{"tf":1.0},"1436":{"tf":2.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1464":{"tf":2.449489742783178},"1465":{"tf":2.449489742783178},"1466":{"tf":1.7320508075688772},"1467":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"1493":{"tf":1.0},"150":{"tf":1.4142135623730951},"1505":{"tf":2.0},"151":{"tf":1.0},"1512":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1528":{"tf":2.23606797749979},"1530":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":2.0},"42":{"tf":1.4142135623730951},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"45":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"478":{"tf":1.7320508075688772},"522":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"536":{"tf":2.449489742783178},"544":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":3.0},"608":{"tf":1.0},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"634":{"tf":1.0},"638":{"tf":1.0},"657":{"tf":1.7320508075688772},"681":{"tf":2.0},"682":{"tf":1.0},"699":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.4142135623730951},"71":{"tf":1.0},"710":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"722":{"tf":1.7320508075688772},"724":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"816":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"847":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.7320508075688772},"892":{"tf":2.449489742783178},"896":{"tf":1.0},"90":{"tf":1.4142135623730951},"908":{"tf":2.0},"91":{"tf":1.0},"911":{"tf":2.23606797749979},"913":{"tf":2.23606797749979},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":2.449489742783178},"925":{"tf":2.23606797749979},"926":{"tf":2.23606797749979},"939":{"tf":2.0},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.0},"950":{"tf":2.23606797749979},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":2.449489742783178},"97":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"981":{"tf":2.449489742783178},"982":{"tf":1.0},"983":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.0},"988":{"tf":2.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":2.23606797749979},"992":{"tf":1.7320508075688772},"993":{"tf":1.0},"994":{"tf":2.23606797749979},"995":{"tf":1.7320508075688772},"996":{"tf":3.0},"997":{"tf":2.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1505":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"368":{"tf":1.4142135623730951},"43":{"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":1,"docs":{"1307":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1085":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":1,"docs":{"1106":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":8,"docs":{"1213":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0},"911":{"tf":1.0},"992":{"tf":1.0}}}}}},"o":{"a":{"df":7,"docs":{"1264":{"tf":1.0},"1268":{"tf":2.0},"454":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":2.6457513110645907},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1175":{"tf":1.0},"21":{"tf":1.0}}}},"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"831":{"tf":1.0},"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1181":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.0},"1310":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1068":{"tf":1.0},"1169":{"tf":1.0},"1426":{"tf":1.4142135623730951},"206":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"818":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":6,"docs":{"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.0},"185":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1039":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"1001":{"tf":1.0},"762":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1070":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"1194":{"tf":1.0},"1477":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"934":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1084":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1482":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1015":{"tf":1.0},"1029":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1051":{"tf":1.0},"1175":{"tf":1.0},"871":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":1,"docs":{"1154":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":1,"docs":{"1276":{"tf":1.0}}}},"d":{"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"1015":{"tf":1.0},"1026":{"tf":1.0},"1041":{"tf":1.0},"159":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1042":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"1130":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1194":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1021":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"458":{"tf":1.0},"925":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1033":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"19":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":45,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1103":{"tf":1.0},"1208":{"tf":1.0},"1276":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"204":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"357":{"tf":1.0},"500":{"tf":1.0},"545":{"tf":1.0},"591":{"tf":1.0},"676":{"tf":1.0},"711":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"780":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0},"899":{"tf":1.7320508075688772},"902":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"959":{"tf":1.0},"966":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1194":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"1017":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0},"257":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.0},"4":{"tf":1.7320508075688772},"548":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"841":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"759":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"1425":{"tf":1.0},"214":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"368":{"tf":1.0},"43":{"tf":1.0},"602":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1062":{"tf":1.0},"1083":{"tf":1.7320508075688772},"109":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"248":{"tf":1.0},"501":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":12,"docs":{"1154":{"tf":1.4142135623730951},"118":{"tf":1.0},"1403":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"607":{"tf":1.0},"67":{"tf":1.0},"762":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"742":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":12,"docs":{"1298":{"tf":1.0},"192":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.7320508075688772},"93":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1479":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"578":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"322":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1388":{"tf":1.0},"613":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"1209":{"tf":1.0},"1255":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1423":{"tf":1.0},"1436":{"tf":1.0},"1486":{"tf":1.7320508075688772},"270":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"583":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"732":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.4142135623730951},"870":{"tf":1.0},"873":{"tf":3.0},"874":{"tf":1.0},"886":{"tf":1.0},"916":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1292":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1038":{"tf":1.0},"129":{"tf":1.0},"234":{"tf":1.0},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"789":{"tf":1.0},"790":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1154":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":104,"docs":{"1047":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1436":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"378":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"410":{"tf":1.0},"419":{"tf":1.0},"43":{"tf":2.0},"431":{"tf":1.0},"458":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.4142135623730951},"576":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"622":{"tf":1.4142135623730951},"644":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.7320508075688772},"708":{"tf":1.0},"712":{"tf":1.0},"724":{"tf":1.0},"75":{"tf":1.0},"769":{"tf":1.0},"772":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"904":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1436":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1333":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"734":{"tf":1.0},"788":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"458":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.0}}}}}}},"t":{"df":15,"docs":{"1095":{"tf":1.0},"1131":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1452":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"762":{"tf":1.0},"775":{"tf":1.0},"788":{"tf":1.0},"801":{"tf":1.0},"830":{"tf":1.0},"841":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":4,"docs":{"1046":{"tf":1.0},"1487":{"tf":1.0},"726":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"284":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":53,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1191":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1205":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1293":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":3.605551275463989},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":2.449489742783178},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.23606797749979},"36":{"tf":1.0},"4":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"502":{"tf":1.4142135623730951},"679":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":2.0},"902":{"tf":1.0},"908":{"tf":1.0},"942":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"1199":{"tf":1.0},"1293":{"tf":1.0},"679":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1205":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"28":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"250":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"1001":{"tf":1.0},"1233":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"991":{"tf":1.0},"997":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"1077":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1256":{"tf":1.0},"130":{"tf":2.23606797749979},"1333":{"tf":1.4142135623730951},"143":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"939":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1312":{"tf":1.0}}},"t":{"df":1,"docs":{"1452":{"tf":1.0}}}},"w":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"976":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1452":{"tf":1.0},"6":{"tf":1.0},"827":{"tf":1.0}}}}},"o":{"df":4,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1006":{"tf":1.0},"62":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"762":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1356":{"tf":1.0},"1359":{"tf":1.0},"420":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1382":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"474":{"tf":1.0},"576":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"667":{"tf":1.0},"761":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1314":{"tf":1.0},"1325":{"tf":1.0},"1503":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.0},"42":{"tf":1.0},"516":{"tf":1.0},"59":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"798":{"tf":1.0},"947":{"tf":1.0},"983":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1181":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"548":{"tf":1.0},"882":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1471":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1055":{"tf":1.0},"1073":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":2.0},"1209":{"tf":1.0},"1335":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"1441":{"tf":1.0},"146":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"447":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"654":{"tf":1.0},"658":{"tf":1.0},"681":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"816":{"tf":1.4142135623730951},"91":{"tf":1.0},"923":{"tf":1.0},"947":{"tf":1.4142135623730951},"981":{"tf":1.0},"985":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1026":{"tf":1.0},"985":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"918":{"tf":1.0}},"i":{"df":4,"docs":{"1162":{"tf":1.0},"308":{"tf":1.0},"746":{"tf":1.0},"985":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1095":{"tf":1.0},"112":{"tf":1.0},"1161":{"tf":1.0},"1456":{"tf":1.0},"150":{"tf":1.0},"238":{"tf":1.0},"36":{"tf":1.4142135623730951},"463":{"tf":2.0},"676":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":3,"docs":{"1399":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"1006":{"tf":1.0},"1214":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1251":{"tf":1.0},"1260":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1528":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.0},"939":{"tf":1.7320508075688772},"950":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"974":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1175":{"tf":1.0},"1286":{"tf":1.0},"982":{"tf":1.0}}}}}},"x":{"df":6,"docs":{"1036":{"tf":1.0},"1084":{"tf":1.0},"308":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1116":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1507":{"tf":1.0},"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1512":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"666":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}}}},"df":96,"docs":{"1020":{"tf":1.0},"1042":{"tf":1.0},"108":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.4142135623730951},"1173":{"tf":1.7320508075688772},"1174":{"tf":1.4142135623730951},"1175":{"tf":2.449489742783178},"1176":{"tf":1.7320508075688772},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1210":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1294":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":2.0},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1402":{"tf":2.0},"1406":{"tf":1.4142135623730951},"1523":{"tf":1.0},"1524":{"tf":1.0},"2":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"442":{"tf":1.7320508075688772},"443":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"593":{"tf":1.0},"6":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"664":{"tf":1.7320508075688772},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"673":{"tf":1.4142135623730951},"679":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.0},"847":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"851":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"916":{"tf":1.0},"955":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1401":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951}}}}}}}}}},"df":3,"docs":{"1340":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"144":{"tf":1.0},"837":{"tf":1.0},"855":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1114":{"tf":1.0},"170":{"tf":1.0}}}}},"t":{"df":2,"docs":{"182":{"tf":1.0},"780":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"733":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"869":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"62":{"tf":1.0},"766":{"tf":1.0},"941":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"113":{"tf":1.0},"1209":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.7320508075688772},"285":{"tf":1.0},"340":{"tf":1.4142135623730951},"536":{"tf":1.0},"567":{"tf":1.4142135623730951},"722":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":2.0},"845":{"tf":1.7320508075688772},"848":{"tf":2.0},"973":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"831":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"833":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"848":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"1219":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":91,"docs":{"1020":{"tf":1.0},"1021":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1177":{"tf":2.23606797749979},"1184":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1212":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1278":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"1457":{"tf":1.0},"197":{"tf":2.0},"358":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"592":{"tf":1.0},"613":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"65":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"774":{"tf":1.0},"862":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":2.449489742783178},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"93":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":2.0},"995":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":15,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1122":{"tf":1.0},"1403":{"tf":2.0},"1420":{"tf":1.0},"1433":{"tf":1.0},"174":{"tf":1.0},"382":{"tf":1.4142135623730951},"47":{"tf":1.0},"495":{"tf":1.0},"616":{"tf":1.4142135623730951},"739":{"tf":1.0},"792":{"tf":1.0},"845":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"739":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":31,"docs":{"1045":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1186":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1297":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"414":{"tf":1.0},"439":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"558":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":36,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1440":{"tf":3.1622776601683795},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"34":{"tf":1.0},"4":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"908":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1440":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"301":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"295":{"tf":1.0},"302":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"918":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":53,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1278":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1355":{"tf":1.0},"1381":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":2.0},"462":{"tf":1.0},"465":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"547":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"1047":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1084":{"tf":1.0},"1093":{"tf":1.0},"1095":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1502":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1505":{"tf":1.0},"1508":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1525":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"446":{"tf":1.0},"545":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"614":{"tf":1.0}}}}}},"df":5,"docs":{"1432":{"tf":1.0},"381":{"tf":1.0},"614":{"tf":1.0},"788":{"tf":1.0},"836":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"1358":{"tf":1.0},"381":{"tf":1.0},"442":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1084":{"tf":1.0},"934":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"264":{"tf":1.0},"664":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0},"889":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"1071":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1439":{"tf":1.0},"742":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.0},"1130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"18":{"tf":1.0},"357":{"tf":1.0},"501":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"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":{"916":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"1292":{"tf":1.0},"1429":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"254":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":21,"docs":{"1126":{"tf":1.4142135623730951},"115":{"tf":1.0},"1220":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1363":{"tf":1.0},"1374":{"tf":1.0},"1386":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"319":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"916":{"tf":1.0}}}},"x":{"df":2,"docs":{"1287":{"tf":1.0},"925":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1320":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":{"1151":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1151":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1137":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":4.0},"1152":{"tf":2.0},"506":{"tf":1.4142135623730951}},"j":{"a":{"c":{"df":1,"docs":{"506":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"1197":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.0},"1497":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"440":{"tf":1.0},"446":{"tf":1.0},"554":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0}},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1358":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":44,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"108":{"tf":1.0},"1082":{"tf":1.0},"1107":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":2.0},"1193":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1501":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"790":{"tf":1.0},"851":{"tf":1.0},"881":{"tf":1.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.0},"917":{"tf":1.0},"986":{"tf":1.0}}},"r":{"df":1,"docs":{"1030":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1255":{"tf":1.0},"2":{"tf":1.0},"227":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}},"i":{"df":25,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1260":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.0},"1469":{"tf":1.0},"1487":{"tf":1.4142135623730951},"166":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"532":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.4142135623730951},"634":{"tf":1.0},"699":{"tf":1.4142135623730951},"709":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"1264":{"tf":1.0},"1349":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"357":{"tf":1.0},"515":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"545":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.4142135623730951},"591":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"711":{"tf":1.0},"717":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":5,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}},"y":{"[":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1305":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"171":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"935":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"21":{"tf":1.0},"295":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"858":{"tf":1.0},"932":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1048":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":1.0},"1003":{"tf":1.0},"1050":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.4142135623730951},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1397":{"tf":1.0},"1404":{"tf":1.4142135623730951},"142":{"tf":1.0},"1423":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"593":{"tf":1.0},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"799":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"980":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1014":{"tf":1.0},"1054":{"tf":1.0},"1161":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1262":{"tf":1.0},"1277":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.0},"1390":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1423":{"tf":1.0},"1426":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"406":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"523":{"tf":1.0},"593":{"tf":1.0},"640":{"tf":1.0},"693":{"tf":1.0},"700":{"tf":1.0},"726":{"tf":1.4142135623730951},"992":{"tf":1.0}},"i":{"df":10,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":10,"docs":{"1216":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"845":{"tf":1.0},"873":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1340":{"tf":1.4142135623730951},"1520":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"669":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"676":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"1333":{"tf":2.23606797749979},"151":{"tf":1.0},"167":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"902":{"tf":1.0},"938":{"tf":1.0},"945":{"tf":1.0},"976":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":97,"docs":{"1112":{"tf":2.0},"1122":{"tf":1.0},"1127":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1158":{"tf":2.449489742783178},"1179":{"tf":1.0},"1186":{"tf":1.0},"1219":{"tf":1.0},"1227":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1399":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1475":{"tf":1.0},"1506":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"309":{"tf":1.0},"348":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"398":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":2.0},"51":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"645":{"tf":1.4142135623730951},"676":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"73":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"762":{"tf":2.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"956":{"tf":1.0},"999":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"1181":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1452":{"tf":1.0},"2":{"tf":1.0},"353":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":18,"docs":{"132":{"tf":2.0},"1325":{"tf":1.0},"1336":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.0},"138":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":2.0},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.4142135623730951},"226":{"tf":1.0},"579":{"tf":1.0},"73":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"101":{"tf":1.0},"1027":{"tf":1.0},"1070":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1285":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1456":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":1.0},"1524":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"602":{"tf":1.0},"69":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1061":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":1.0},"681":{"tf":1.4142135623730951},"911":{"tf":1.0},"927":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1085":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"61":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"987":{"tf":1.0}}}}},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1095":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1420":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1047":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"1515":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":155,"docs":{"1007":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.449489742783178},"1052":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1161":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1209":{"tf":1.0},"1218":{"tf":1.0},"124":{"tf":1.0},"1268":{"tf":1.0},"127":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1288":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1325":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1340":{"tf":2.0},"1349":{"tf":1.0},"135":{"tf":2.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1399":{"tf":3.0},"1401":{"tf":2.23606797749979},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":2.449489742783178},"1456":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1487":{"tf":1.0},"150":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":2.6457513110645907},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"271":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.0},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"622":{"tf":1.0},"635":{"tf":1.7320508075688772},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"709":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"794":{"tf":1.0},"81":{"tf":1.0},"847":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"926":{"tf":2.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":2.0},"995":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1000":{"tf":1.0},"1033":{"tf":1.0},"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"345":{"tf":1.0},"572":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"df":34,"docs":{"117":{"tf":1.0},"1261":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"491":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"827":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"57":{"tf":1.0},"985":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":5,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1088":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":54,"docs":{"1127":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":1.0},"1172":{"tf":1.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1268":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"327":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"770":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1158":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1359":{"tf":1.0},"1451":{"tf":1.0},"1524":{"tf":1.0},"327":{"tf":1.0},"348":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"732":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":18,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1228":{"tf":1.0},"1287":{"tf":1.0},"1298":{"tf":1.0},"1451":{"tf":1.0},"1526":{"tf":1.0},"242":{"tf":1.0},"446":{"tf":1.0},"456":{"tf":1.0},"486":{"tf":1.0},"510":{"tf":1.0},"82":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"976":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":45,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1169":{"tf":1.0},"1216":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1404":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.7320508075688772},"243":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"284":{"tf":2.23606797749979},"288":{"tf":2.8284271247461903},"295":{"tf":2.0},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"314":{"tf":2.0},"315":{"tf":1.4142135623730951},"597":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"79":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1080":{"tf":1.0},"669":{"tf":1.0},"911":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"371":{"tf":1.0},"394":{"tf":1.0},"519":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"581":{"tf":2.23606797749979},"590":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":18,"docs":{"1085":{"tf":1.0},"110":{"tf":1.0},"1129":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1505":{"tf":1.0},"1515":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"450":{"tf":1.0},"605":{"tf":1.0},"82":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0},"996":{"tf":1.0}}},"h":{"df":2,"docs":{"1082":{"tf":1.0},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1006":{"tf":1.0},"1011":{"tf":1.0},"1405":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1522":{"tf":1.0},"355":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"921":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"m":{"df":17,"docs":{"1156":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1510":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"5":{"tf":1.0},"514":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"935":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":33,"docs":{"1081":{"tf":2.449489742783178},"1088":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1306":{"tf":2.0},"1307":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"298":{"tf":1.0},"334":{"tf":1.0},"363":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"506":{"tf":1.4142135623730951},"519":{"tf":2.0},"75":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0},"999":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1180":{"tf":1.0},"1390":{"tf":1.0},"1441":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"790":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"767":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1120":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"28":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.4142135623730951},"511":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"608":{"tf":1.0},"64":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":2.0},"811":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"306":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":36,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":2.23606797749979},"294":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.4142135623730951},"320":{"tf":1.0},"4":{"tf":1.0},"887":{"tf":1.0},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1458":{"tf":1.0},"83":{"tf":1.0},"932":{"tf":1.0}}}}},"df":0,"docs":{}},"df":14,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":1.4142135623730951},"1346":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"179":{"tf":1.0},"208":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1083":{"tf":1.7320508075688772}}}}}}},"k":{"df":21,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0}}},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.23606797749979},"1135":{"tf":1.0},"1506":{"tf":1.0},"1515":{"tf":1.7320508075688772},"545":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"1082":{"tf":1.0},"1194":{"tf":1.0},"177":{"tf":1.0},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"942":{"tf":1.0}}},"df":18,"docs":{"1035":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"1342":{"tf":1.0},"1436":{"tf":1.0},"1448":{"tf":1.0},"359":{"tf":1.0},"43":{"tf":1.0},"593":{"tf":1.0},"71":{"tf":1.0},"809":{"tf":1.0},"855":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"984":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"661":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"'":{"df":2,"docs":{"1222":{"tf":1.0},"1243":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1228":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1223":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1225":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"1221":{"tf":1.7320508075688772},"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1258":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"1154":{"tf":1.4142135623730951},"1155":{"tf":1.0},"1174":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"1520":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"259":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.4142135623730951},"4":{"tf":1.0},"899":{"tf":1.0}}}}}}}}}}}},"r":{"df":71,"docs":{"1046":{"tf":1.0},"1082":{"tf":1.0},"1088":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1207":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1313":{"tf":1.0},"1322":{"tf":1.0},"1331":{"tf":1.0},"1350":{"tf":1.0},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1369":{"tf":1.0},"1373":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1401":{"tf":1.0},"1448":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1484":{"tf":1.0},"171":{"tf":1.0},"268":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"409":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"451":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"516":{"tf":1.0},"549":{"tf":1.0},"558":{"tf":1.4142135623730951},"589":{"tf":1.0},"591":{"tf":1.0},"595":{"tf":1.0},"615":{"tf":1.0},"620":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"767":{"tf":1.0},"799":{"tf":1.0},"847":{"tf":1.0},"851":{"tf":1.0},"911":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.4142135623730951},"981":{"tf":1.0},"983":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1048":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"940":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1100":{"tf":1.0},"1102":{"tf":1.0},"871":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"614":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"611":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":89,"docs":{"107":{"tf":1.4142135623730951},"1079":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1196":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1247":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1501":{"tf":1.0},"1515":{"tf":1.0},"1531":{"tf":1.4142135623730951},"179":{"tf":1.0},"244":{"tf":1.0},"271":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"43":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"519":{"tf":2.23606797749979},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":3.0},"595":{"tf":1.0},"600":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"605":{"tf":1.4142135623730951},"64":{"tf":1.0},"696":{"tf":2.23606797749979},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.7320508075688772},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"722":{"tf":1.0},"740":{"tf":1.0},"751":{"tf":1.0},"836":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"880":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":2.0},"918":{"tf":1.0},"922":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"538":{"tf":1.0},"539":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":3,"docs":{"1112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":22,"docs":{"1080":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"1286":{"tf":2.0},"1292":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1314":{"tf":1.0},"1436":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"479":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"61":{"tf":1.0},"747":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"152":{"tf":1.0},"37":{"tf":1.0},"753":{"tf":1.0},"767":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"751":{"tf":1.0}}}}}},"df":7,"docs":{"152":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"767":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}},"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}},"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":{"1394":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1353":{"tf":1.4142135623730951}}},"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":{"1367":{"tf":2.0}}}}}}}}},"df":41,"docs":{"1142":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1433":{"tf":1.0},"1469":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.4142135623730951},"527":{"tf":1.0},"605":{"tf":1.4142135623730951},"614":{"tf":1.0},"634":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"798":{"tf":1.0},"819":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.4142135623730951},"850":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"[":{"'":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1072":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1072":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1072":{"tf":1.0},"1094":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"79":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1276":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"292":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1227":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"802":{"tf":1.0},"93":{"tf":1.0}}}}},"df":7,"docs":{"1452":{"tf":1.0},"1477":{"tf":1.0},"1520":{"tf":1.0},"356":{"tf":1.0},"590":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":9,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"393":{"tf":1.0},"627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1338":{"tf":1.4142135623730951},"1390":{"tf":1.0}}}}},"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":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1385":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":43,"docs":{"1154":{"tf":1.0},"1219":{"tf":1.0},"1250":{"tf":1.0},"129":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1346":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.0},"1428":{"tf":1.0},"1433":{"tf":1.0},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1497":{"tf":1.0},"179":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"449":{"tf":1.0},"627":{"tf":1.4142135623730951},"628":{"tf":1.0},"629":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"453":{"tf":1.0},"914":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"903":{"tf":1.0}}}}},"df":9,"docs":{"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.4142135623730951},"277":{"tf":1.0},"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"1017":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1109":{"tf":1.0},"1136":{"tf":1.0},"120":{"tf":1.0},"1222":{"tf":1.0},"1263":{"tf":1.0},"1398":{"tf":1.0},"1435":{"tf":1.0},"231":{"tf":1.0},"291":{"tf":1.0},"454":{"tf":1.0},"482":{"tf":1.0},"664":{"tf":1.0},"751":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"995":{"tf":1.0}}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":2,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0}}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1219":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"18":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.4142135623730951},"332":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.4142135623730951},"6":{"tf":1.0},"690":{"tf":1.0},"725":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"347":{"tf":1.0},"348":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1022":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1407":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1077":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1376":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1052":{"tf":1.0},"1206":{"tf":1.0},"1225":{"tf":1.0},"149":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1160":{"tf":1.0},"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"m":{"df":12,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1306":{"tf":1.0},"439":{"tf":1.0},"467":{"tf":1.0},"528":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"713":{"tf":1.0},"82":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":68,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"648":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1039":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1212":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"809":{"tf":1.0},"818":{"tf":1.0},"871":{"tf":1.0},"901":{"tf":1.0},"976":{"tf":1.0}}}}},"s":{"df":30,"docs":{"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1197":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1419":{"tf":1.0},"1465":{"tf":1.0},"1479":{"tf":1.0},"372":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"522":{"tf":1.0},"588":{"tf":1.7320508075688772},"606":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.0},"699":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"656":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"656":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"1144":{"tf":1.4142135623730951},"370":{"tf":1.0},"604":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"214":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"749":{"tf":1.0}}}}},"df":36,"docs":{"1130":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1305":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"855":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"980":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1333":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1144":{"tf":1.0},"1148":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1219":{"tf":1.0},"1339":{"tf":2.0},"370":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"849":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":2,"docs":{"1197":{"tf":1.0},"446":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"1145":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1253":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":2.0},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":2.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":3.605551275463989},"963":{"tf":1.4142135623730951},"969":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"1000":{"tf":1.0},"1256":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"_":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"104":{"tf":1.0},"1092":{"tf":1.0},"1114":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1154":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1219":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"1288":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1365":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.23606797749979},"1421":{"tf":2.0},"1422":{"tf":2.23606797749979},"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1495":{"tf":1.0},"1522":{"tf":1.0},"1528":{"tf":1.0},"280":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"378":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.7320508075688772},"462":{"tf":1.0},"485":{"tf":1.0},"502":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"522":{"tf":1.0},"528":{"tf":1.0},"531":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.4142135623730951},"626":{"tf":1.0},"629":{"tf":1.0},"648":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"740":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.0},"890":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"911":{"tf":2.6457513110645907},"916":{"tf":1.7320508075688772},"950":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":32,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.0},"1129":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1182":{"tf":1.0},"1275":{"tf":1.0},"1294":{"tf":1.0},"13":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"23":{"tf":1.0},"422":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.0},"547":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"856":{"tf":1.0},"91":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"a":{"df":1,"docs":{"1378":{"tf":1.0}}},"b":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":57,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":2.0},"1268":{"tf":1.7320508075688772},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"424":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"461":{"tf":2.8284271247461903},"463":{"tf":1.0},"465":{"tf":2.6457513110645907},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"495":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":2.23606797749979},"530":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":2.23606797749979},"707":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1399":{"tf":1.0},"382":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1119":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":4,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"985":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1323":{"tf":1.0},"156":{"tf":1.0},"859":{"tf":1.0}}}},"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"506":{"tf":1.0},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1006":{"tf":1.0}}}},"m":{"df":4,"docs":{"1044":{"tf":2.8284271247461903},"1465":{"tf":1.0},"376":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772}}},"n":{"d":{"df":12,"docs":{"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1329":{"tf":1.0},"1362":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"855":{"tf":1.4142135623730951},"868":{"tf":1.0},"872":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"901":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"1404":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":16,"docs":{"1041":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1100":{"tf":1.0},"1214":{"tf":1.0},"1381":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"871":{"tf":1.0},"925":{"tf":1.0},"948":{"tf":1.0},"996":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.0},"1035":{"tf":1.0},"1315":{"tf":1.0},"1403":{"tf":1.4142135623730951},"169":{"tf":1.0},"856":{"tf":1.0},"951":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1194":{"tf":1.7320508075688772},"181":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1071":{"tf":1.0},"1105":{"tf":1.0},"116":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1528":{"tf":1.0},"352":{"tf":2.0},"55":{"tf":1.0},"584":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1054":{"tf":1.0},"1088":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"43":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"1301":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"814":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"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":{"22":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1116":{"tf":1.0},"157":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"759":{"tf":1.0},"760":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":1,"docs":{"760":{"tf":1.4142135623730951}}},"p":{"df":18,"docs":{"10":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"581":{"tf":1.0},"583":{"tf":1.7320508075688772},"585":{"tf":2.23606797749979},"6":{"tf":1.0},"682":{"tf":1.0},"691":{"tf":1.0},"78":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1333":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}},"i":{"df":3,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1177":{"tf":1.0},"1197":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"511":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1402":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"$":{"1":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":18,"docs":{"1011":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"974":{"tf":1.0},"996":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"109":{"tf":1.7320508075688772},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1221":{"tf":1.0},"1437":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"36":{"tf":1.0},"93":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"807":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.4142135623730951},"580":{"tf":2.449489742783178}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1062":{"tf":1.0},"1161":{"tf":1.0},"478":{"tf":1.0},"798":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"1071":{"tf":1.0},"1106":{"tf":1.0},"1490":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"911":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1522":{"tf":1.0}}},"y":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1301":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1426":{"tf":1.0},"366":{"tf":1.0},"600":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"473":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"913":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1006":{"tf":1.0},"1419":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"760":{"tf":1.0},"762":{"tf":1.0}}}},"df":36,"docs":{"1012":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"1038":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.0},"1268":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"474":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.0},"572":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"b":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0},"1310":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1164":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1015":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1254":{"tf":1.0},"1472":{"tf":1.0},"345":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"82":{"tf":1.7320508075688772},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"1015":{"tf":1.0},"1028":{"tf":1.0},"1031":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.4142135623730951},"57":{"tf":1.0},"571":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":18,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"925":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1011":{"tf":1.0},"1174":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0},"833":{"tf":1.0},"934":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"833":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"236":{"tf":1.0},"666":{"tf":1.0},"911":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"946":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":10,"docs":{"1077":{"tf":1.0},"1080":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1312":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"911":{"tf":1.0},"981":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"884":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"1144":{"tf":1.0},"1161":{"tf":1.0},"1255":{"tf":1.0},"227":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"373":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":15,"docs":{"1003":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"981":{"tf":1.0},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1306":{"tf":1.0},"1522":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1154":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"912":{"tf":1.0},"936":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"581":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"581":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1381":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"555":{"tf":1.0},"644":{"tf":1.0},"695":{"tf":1.0}},"r":{"df":2,"docs":{"642":{"tf":1.0},"654":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"576":{"tf":1.0},"631":{"tf":1.0},"653":{"tf":1.0},"656":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"651":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"555":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"649":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"637":{"tf":1.0},"656":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0}}}}}},"df":3,"docs":{"625":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"706":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"595":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.0},"769":{"tf":1.4142135623730951},"82":{"tf":1.0},"949":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"595":{"tf":1.0},"618":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1374":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"598":{"tf":1.0},"667":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"618":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1376":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0}}}},"o":{"df":1,"docs":{"618":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"599":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1021":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0}}}}}},"df":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1126":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}},"s":{"df":1,"docs":{"1374":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"723":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"576":{"tf":1.0},"87":{"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":{"555":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"653":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"653":{"tf":1.0}}}}}}}},"df":2,"docs":{"1375":{"tf":1.4142135623730951},"1386":{"tf":2.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"609":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1154":{"tf":1.0},"120":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"138":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"1440":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"916":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"987":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"1166":{"tf":1.0},"1336":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"759":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":47,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1106":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1253":{"tf":1.0},"1320":{"tf":1.0},"1448":{"tf":1.0},"1464":{"tf":1.7320508075688772},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1528":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"280":{"tf":1.4142135623730951},"31":{"tf":1.0},"418":{"tf":1.4142135623730951},"526":{"tf":1.0},"536":{"tf":1.7320508075688772},"58":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"722":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1206":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"913":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1022":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1530":{"tf":1.0},"974":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":41,"docs":{"11":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1149":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1378":{"tf":1.0},"1389":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"177":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.4142135623730951},"359":{"tf":1.0},"43":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"593":{"tf":1.0},"675":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"920":{"tf":1.0},"981":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1390":{"tf":1.0},"311":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1343":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0}},"u":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1170":{"tf":1.0},"176":{"tf":1.0},"837":{"tf":1.0},"856":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":42,"docs":{"1068":{"tf":1.0},"1086":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1205":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1396":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.4142135623730951},"49":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"91":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.4142135623730951},"930":{"tf":1.0},"935":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"759":{"tf":1.0},"871":{"tf":1.0}}},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"732":{"tf":1.0},"94":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"257":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.4142135623730951},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"82":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"804":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1202":{"tf":1.0},"1285":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":2.449489742783178},"1365":{"tf":1.0},"1388":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.4142135623730951},"321":{"tf":1.0},"347":{"tf":1.4142135623730951},"391":{"tf":1.0},"548":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0},"625":{"tf":1.0},"766":{"tf":1.0},"814":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"845":{"tf":1.0},"848":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"900":{"tf":1.7320508075688772},"902":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"543":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"82":{"tf":1.0},"856":{"tf":1.0},"925":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":12,"docs":{"1014":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1403":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"456":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"915":{"tf":1.0},"960":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1011":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.7320508075688772},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1455":{"tf":1.4142135623730951},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1149":{"tf":1.0},"1499":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":29,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.7320508075688772},"1119":{"tf":1.7320508075688772},"1120":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1122":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1162":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1170":{"tf":1.0},"41":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"827":{"tf":1.7320508075688772},"883":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1162":{"tf":1.0},"1163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1008":{"tf":1.0},"1032":{"tf":1.0},"1042":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1378":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"169":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"760":{"tf":1.0},"918":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":26,"docs":{"108":{"tf":2.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"93":{"tf":1.4142135623730951},"936":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"995":{"tf":1.4142135623730951}},"n":{"df":10,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.0},"1237":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"837":{"tf":1.0},"850":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1051":{"tf":1.0},"1073":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1173":{"tf":1.0},"118":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1333":{"tf":2.0},"1336":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1400":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1466":{"tf":1.0},"147":{"tf":1.0},"1476":{"tf":1.0},"225":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"357":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"482":{"tf":1.0},"50":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.4142135623730951},"861":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"952":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1176":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1197":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"542":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"951":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":24,"docs":{"1015":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"343":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"262":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1213":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}}}}}},"_":{"a":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":13,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1518":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"_":{"b":{"6":{"4":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"638":{"tf":1.0},"646":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"948":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"611":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"277":{"tf":1.0},"616":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}}}}}},"df":87,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1212":{"tf":1.0},"1228":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1276":{"tf":1.4142135623730951},"130":{"tf":1.0},"1320":{"tf":1.0},"1333":{"tf":1.0},"1436":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"486":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"84":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"896":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.7320508075688772},"915":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"939":{"tf":1.7320508075688772},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"404":{"tf":1.0},"412":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":7,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"608":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":19,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"375":{"tf":1.0},"45":{"tf":1.0},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"911":{"tf":1.0},"913":{"tf":1.0},"950":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"378":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":17,"docs":{"1222":{"tf":1.0},"1235":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1476":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1015":{"tf":1.0},"1041":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1158":{"tf":1.0}}}},"t":{"df":3,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0},"1292":{"tf":1.0}}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"587":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1392":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1148":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1149":{"tf":1.0},"1155":{"tf":1.0},"1392":{"tf":1.4142135623730951},"684":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"3":{".":{"1":{"1":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"10":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1155":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1274":{"tf":1.0},"1293":{"tf":1.0},"1302":{"tf":1.0},"1371":{"tf":1.4142135623730951},"1395":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"548":{"tf":2.0},"549":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"6":{"tf":1.0},"610":{"tf":1.0},"620":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0},"690":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}}},"q":{"1":{"df":17,"docs":{"1403":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"616":{"tf":1.0},"640":{"tf":1.0},"785":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1112":{"tf":2.0},"1116":{"tf":1.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":32,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1032":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.7320508075688772},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"572":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"984":{"tf":1.0},"996":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"1507":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1010":{"tf":1.0},"226":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"843":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1309":{"tf":1.0},"35":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"871":{"tf":1.0},"944":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1143":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":16,"docs":{"1242":{"tf":1.0},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"856":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":22,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.0},"122":{"tf":1.0},"1318":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"83":{"tf":1.0},"889":{"tf":1.0},"909":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1479":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1160":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1168":{"tf":1.0}}},"s":{"df":18,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0},"1394":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"(":{"1":{"0":{"df":1,"docs":{"726":{"tf":1.0}}},"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":10,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"379":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.4142135623730951},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}},"df":10,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"682":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1276":{"tf":1.0},"41":{"tf":1.0},"486":{"tf":1.0},"751":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1227":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"1094":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1194":{"tf":1.0},"125":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1340":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1422":{"tf":1.0},"1498":{"tf":1.0},"1529":{"tf":1.0},"192":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.0},"369":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"603":{"tf":1.0},"660":{"tf":1.0},"667":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":9,"docs":{"1396":{"tf":1.0},"14":{"tf":1.4142135623730951},"19":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"454":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"673":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"1042":{"tf":1.0},"1211":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"506":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1403":{"tf":1.0},"856":{"tf":1.0},"934":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"1152":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1286":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"440":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"525":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"702":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1083":{"tf":1.0},"916":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"208":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"599":{"tf":1.0},"616":{"tf":1.4142135623730951},"879":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"103":{"tf":1.0},"1035":{"tf":1.0},"1041":{"tf":1.0},"1089":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.0},"1295":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"241":{"tf":1.0},"342":{"tf":1.0},"437":{"tf":1.0},"545":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"922":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":44,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.4142135623730951},"1004":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1235":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1251":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.23606797749979},"1476":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"292":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0},"732":{"tf":1.0},"763":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"932":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":2.0},"977":{"tf":1.0},"979":{"tf":1.0},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1096":{"tf":1.0},"1099":{"tf":1.0},"974":{"tf":1.4142135623730951},"983":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}},"s":{"df":5,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1369":{"tf":1.0},"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1307":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}}}},"df":50,"docs":{"1052":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1355":{"tf":2.449489742783178},"1401":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1471":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"166":{"tf":1.0},"192":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"434":{"tf":2.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"538":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"847":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"883":{"tf":1.0},"916":{"tf":1.4142135623730951}},"f":{"df":13,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":54,"docs":{"1092":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1347":{"tf":1.7320508075688772},"1370":{"tf":1.0},"1395":{"tf":1.0},"1407":{"tf":1.4142135623730951},"1426":{"tf":1.0},"1434":{"tf":1.0},"1457":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"262":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"366":{"tf":1.0},"385":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"589":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"619":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"685":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"860":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"881":{"tf":1.0},"885":{"tf":1.0},"977":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1419":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1292":{"tf":1.0},"1491":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1465":{"tf":1.0},"1467":{"tf":1.0},"254":{"tf":1.0},"976":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1099":{"tf":1.0},"1102":{"tf":1.0},"1154":{"tf":1.0},"1437":{"tf":1.0},"1452":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1179":{"tf":1.0},"1208":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1405":{"tf":1.4142135623730951},"373":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"816":{"tf":1.0},"93":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1474":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"783":{"tf":2.0},"976":{"tf":1.0}}}},"df":16,"docs":{"1208":{"tf":1.4142135623730951},"1230":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"533":{"tf":1.0},"646":{"tf":1.0},"710":{"tf":1.0},"783":{"tf":1.4142135623730951},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"96":{"tf":1.0},"977":{"tf":1.0}},"i":{"df":3,"docs":{"1075":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1010":{"tf":1.0},"1097":{"tf":1.0},"169":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"951":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"351":{"tf":1.0},"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":16,"docs":{"1171":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1507":{"tf":1.0},"221":{"tf":1.0},"458":{"tf":1.4142135623730951},"505":{"tf":1.0},"782":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"929":{"tf":1.0},"930":{"tf":1.0},"932":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"954":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"1117":{"tf":1.0},"1298":{"tf":1.0},"748":{"tf":1.0},"869":{"tf":1.0},"885":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1194":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"947":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}},"df":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"871":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1007":{"tf":1.0},"1047":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"166":{"tf":1.0},"874":{"tf":1.0},"911":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"1214":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0}}},"v":{"df":7,"docs":{"1094":{"tf":1.0},"1403":{"tf":1.0},"1470":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"451":{"tf":1.0},"874":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"805":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":8,"docs":{"1310":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1507":{"tf":1.0},"237":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":3,"docs":{"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":1.7320508075688772}}},"df":1,"docs":{"884":{"tf":1.0}}}},"o":{"df":1,"docs":{"93":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"635":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1339":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":22,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1206":{"tf":1.0},"1339":{"tf":3.4641016151377544},"182":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"519":{"tf":1.4142135623730951},"696":{"tf":1.0},"797":{"tf":1.4142135623730951},"833":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.4142135623730951},"849":{"tf":1.0},"859":{"tf":1.4142135623730951},"916":{"tf":1.0},"921":{"tf":1.0},"94":{"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":3,"docs":{"554":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"1213":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"1194":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"749":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"456":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1278":{"tf":1.7320508075688772},"1281":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.0},"509":{"tf":1.0},"538":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"503":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"1148":{"tf":1.0},"1192":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1355":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"538":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"1020":{"tf":1.0},"1146":{"tf":1.0},"1262":{"tf":1.0},"1265":{"tf":1.0},"413":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"647":{"tf":1.0},"676":{"tf":1.0},"955":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":70,"docs":{"1146":{"tf":1.4142135623730951},"1148":{"tf":2.0},"1149":{"tf":1.0},"1185":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1206":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":2.23606797749979},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":2.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.7320508075688772},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":2.23606797749979},"1405":{"tf":1.0},"1441":{"tf":1.0},"1474":{"tf":1.0},"1493":{"tf":2.0},"151":{"tf":1.0},"19":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.4142135623730951},"420":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.0},"507":{"tf":1.0},"528":{"tf":1.7320508075688772},"617":{"tf":1.0},"648":{"tf":1.4142135623730951},"654":{"tf":1.0},"663":{"tf":1.0},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.7320508075688772},"713":{"tf":1.0},"714":{"tf":1.0},"804":{"tf":1.0},"956":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"383":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":163,"docs":{"100":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1055":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.4142135623730951},"11":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"115":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1208":{"tf":1.0},"1213":{"tf":1.0},"1222":{"tf":1.0},"1242":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":2.449489742783178},"1304":{"tf":1.7320508075688772},"132":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1333":{"tf":1.4142135623730951},"1334":{"tf":2.23606797749979},"1336":{"tf":1.0},"135":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1420":{"tf":1.0},"1423":{"tf":1.0},"143":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1452":{"tf":2.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1466":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1480":{"tf":1.7320508075688772},"1490":{"tf":1.0},"1515":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":2.23606797749979},"245":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.4142135623730951},"31":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"342":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.0},"446":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"549":{"tf":1.0},"569":{"tf":1.0},"588":{"tf":1.0},"603":{"tf":1.0},"615":{"tf":1.0},"62":{"tf":1.0},"640":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.0},"766":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"82":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.0},"890":{"tf":1.0},"896":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.7320508075688772},"94":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"946":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"977":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"1522":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"df":1,"docs":{"503":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"682":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":2,"docs":{"1355":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1292":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}}}},"df":25,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"461":{"tf":1.4142135623730951},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.0},"511":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1278":{"tf":1.0},"1355":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"1267":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"497":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"312":{"tf":1.7320508075688772},"506":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1254":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1212":{"tf":1.0},"1220":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.4142135623730951},"991":{"tf":1.0}}}},"v":{"df":5,"docs":{"1145":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"1071":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"442":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.7320508075688772},"803":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"237":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"139":{"tf":1.0},"1441":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":67,"docs":{"1010":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1474":{"tf":1.0},"1494":{"tf":2.0},"221":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.0},"415":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"511":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"782":{"tf":1.4142135623730951},"944":{"tf":1.0},"954":{"tf":1.0},"957":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1149":{"tf":1.0},"1379":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.4142135623730951},"953":{"tf":1.0}}}}}}}}}},"t":{"df":8,"docs":{"1106":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"65":{"tf":1.0},"810":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":2.0},"1530":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1105":{"tf":1.0},"1253":{"tf":1.0},"51":{"tf":1.0},"908":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"364":{"tf":1.0},"384":{"tf":1.0},"598":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"957":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"706":{"tf":1.0},"716":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"468":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1301":{"tf":1.0},"1310":{"tf":1.0},"1314":{"tf":1.0}},"s":{"[":{"0":{"df":1,"docs":{"1301":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"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":2,"docs":{"367":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"384":{"tf":1.4142135623730951},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}},"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"649":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1314":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1355":{"tf":2.449489742783178},"1358":{"tf":2.449489742783178},"1365":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1381":{"tf":2.23606797749979},"1388":{"tf":1.0},"1390":{"tf":2.449489742783178},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"182":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"603":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"649":{"tf":1.4142135623730951},"667":{"tf":1.7320508075688772},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"687":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"916":{"tf":1.7320508075688772},"925":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"991":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1390":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"1080":{"tf":1.0},"1214":{"tf":1.0},"1313":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":163,"docs":{"1103":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1301":{"tf":2.449489742783178},"1302":{"tf":2.449489742783178},"1305":{"tf":2.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1381":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":2.449489742783178},"1403":{"tf":2.449489742783178},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1436":{"tf":1.0},"262":{"tf":2.0},"286":{"tf":1.0},"31":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"576":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"617":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.0},"916":{"tf":1.0},"950":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1120":{"tf":1.0},"1278":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1336":{"tf":2.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"214":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"33":{"tf":1.0},"420":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"765":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.4142135623730951},"88":{"tf":2.8284271247461903},"92":{"tf":1.0},"951":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":7,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1052":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"983":{"tf":1.0},"996":{"tf":1.4142135623730951}}}}}},"f":{"c":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":1,"docs":{"351":{"tf":1.0}},"p":{"df":3,"docs":{"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"389":{"tf":1.0},"404":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1346":{"tf":1.0},"1520":{"tf":1.0},"351":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1346":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"1130":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"1145":{"tf":1.0},"248":{"tf":1.0},"911":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1439":{"tf":1.0},"169":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"59":{"tf":1.0},"681":{"tf":1.4142135623730951},"918":{"tf":1.0},"926":{"tf":1.4142135623730951},"969":{"tf":1.0},"981":{"tf":1.4142135623730951},"982":{"tf":1.0},"984":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":1.0},"989":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"996":{"tf":2.23606797749979},"997":{"tf":2.0},"999":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1267":{"tf":1.0},"1276":{"tf":2.0},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1401":{"tf":1.0},"1526":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"302":{"tf":1.0},"311":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"491":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"500":{"tf":2.449489742783178}}}}}},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0}}}},"p":{"c":{"df":11,"docs":{"1177":{"tf":1.0},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"669":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"a":{"df":31,"docs":{"1015":{"tf":1.7320508075688772},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1227":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1491":{"tf":1.0},"728":{"tf":1.0},"743":{"tf":1.0},"827":{"tf":1.0},"978":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}}},"df":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":{"1399":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1078":{"tf":1.0},"1084":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1200":{"tf":1.0},"1243":{"tf":1.0},"1258":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1462":{"tf":1.0},"1476":{"tf":1.0},"18":{"tf":1.0},"239":{"tf":1.0},"327":{"tf":1.0},"369":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"473":{"tf":1.0},"555":{"tf":1.0},"603":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.7320508075688772},"871":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0},"116":{"tf":1.0},"1215":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"724":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":41,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1084":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1160":{"tf":1.4142135623730951},"1162":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.0},"1213":{"tf":1.0},"1216":{"tf":1.0},"1219":{"tf":1.0},"1347":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"257":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.4142135623730951},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"841":{"tf":1.4142135623730951},"844":{"tf":1.0},"845":{"tf":1.0},"860":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"91":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"115":{"tf":1.0}}}}}}}},"s":{"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0}}}}},"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1094":{"tf":1.7320508075688772},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.0},"1102":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1512":{"tf":2.0},"1513":{"tf":1.4142135623730951},"285":{"tf":1.0},"339":{"tf":1.7320508075688772},"536":{"tf":1.0},"566":{"tf":1.7320508075688772},"64":{"tf":1.0},"722":{"tf":1.0},"893":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1108":{"tf":1.0},"287":{"tf":1.0},"726":{"tf":1.7320508075688772},"911":{"tf":1.0},"950":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1161":{"tf":1.4142135623730951},"287":{"tf":1.0},"726":{"tf":1.0},"911":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1330":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"1024":{"tf":1.0},"1080":{"tf":1.0},"1265":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"227":{"tf":1.0},"368":{"tf":1.0},"516":{"tf":1.0},"543":{"tf":1.0},"693":{"tf":1.0},"726":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"954":{"tf":1.0},"978":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.8284271247461903},"1445":{"tf":1.0},"1529":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"308":{"tf":2.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"319":{"tf":1.0},"791":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"1063":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1323":{"tf":2.0},"134":{"tf":2.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.0},"179":{"tf":1.7320508075688772},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"371":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"1089":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1452":{"tf":1.0},"1502":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"985":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"741":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1480":{"tf":1.0},"189":{"tf":1.0},"803":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":158,"docs":{"1081":{"tf":1.0},"1108":{"tf":1.7320508075688772},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.7320508075688772},"1113":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":2.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":2.0},"1139":{"tf":1.0},"1166":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1209":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":2.449489742783178},"1422":{"tf":1.7320508075688772},"1427":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1480":{"tf":2.0},"151":{"tf":1.0},"1522":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"278":{"tf":1.7320508075688772},"287":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"389":{"tf":1.0},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"560":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"66":{"tf":1.0},"672":{"tf":1.0},"696":{"tf":1.4142135623730951},"721":{"tf":1.0},"728":{"tf":1.7320508075688772},"729":{"tf":2.23606797749979},"730":{"tf":1.0},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"735":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":2.0},"739":{"tf":1.0},"740":{"tf":1.7320508075688772},"741":{"tf":1.7320508075688772},"742":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"747":{"tf":3.0},"748":{"tf":1.7320508075688772},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"759":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"773":{"tf":1.7320508075688772},"774":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.7320508075688772},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.0},"803":{"tf":2.23606797749979},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.0},"828":{"tf":2.0},"829":{"tf":1.4142135623730951},"830":{"tf":1.0},"832":{"tf":2.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.7320508075688772},"863":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.7320508075688772},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"883":{"tf":1.0},"886":{"tf":1.7320508075688772},"888":{"tf":1.0},"889":{"tf":1.0},"895":{"tf":1.4142135623730951},"902":{"tf":1.0},"909":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1324":{"tf":1.0},"278":{"tf":1.0},"519":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"178":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1134":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1017":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"548":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1337":{"tf":1.0},"1456":{"tf":1.0},"348":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0},"82":{"tf":1.0},"925":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"1176":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":12,"docs":{"1302":{"tf":3.4641016151377544},"1323":{"tf":1.0},"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"663":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":2.0},"776":{"tf":1.0},"789":{"tf":1.0},"836":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1084":{"tf":1.0},"129":{"tf":1.0},"1329":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.23606797749979},"901":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1423":{"tf":1.0},"1510":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":131,"docs":{"1":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1018":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1032":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1085":{"tf":1.0},"11":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.4142135623730951},"113":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1179":{"tf":1.0},"1193":{"tf":1.0},"1205":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1283":{"tf":1.0},"1288":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1401":{"tf":1.0},"1455":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1520":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"320":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.7320508075688772},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"536":{"tf":1.0},"56":{"tf":1.4142135623730951},"569":{"tf":1.0},"570":{"tf":1.0},"59":{"tf":1.0},"603":{"tf":1.7320508075688772},"664":{"tf":1.0},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"748":{"tf":1.4142135623730951},"758":{"tf":1.0},"760":{"tf":1.0},"816":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"897":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"91":{"tf":1.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.0},"924":{"tf":1.0},"927":{"tf":1.0},"930":{"tf":1.0},"936":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"969":{"tf":1.0},"971":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":49,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"1107":{"tf":1.0},"1136":{"tf":1.0},"1172":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1316":{"tf":1.0},"1347":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"1406":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.0},"547":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"67":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"763":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0}},"k":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"1029":{"tf":1.0},"1040":{"tf":1.0},"1089":{"tf":1.0},"1225":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"206":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"921":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"588":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1404":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1388":{"tf":2.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1001":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"1161":{"tf":1.7320508075688772},"147":{"tf":1.0},"185":{"tf":1.0},"277":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"950":{"tf":1.0},"977":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":2.449489742783178},"1398":{"tf":1.0},"1399":{"tf":3.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1144":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1274":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":19,"docs":{"1248":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1292":{"tf":1.0},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"31":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"456":{"tf":1.0},"879":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1228":{"tf":1.0},"1313":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"921":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}}}}}},"t":{"df":7,"docs":{"1192":{"tf":1.0},"1439":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"664":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1101":{"tf":1.0},"112":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1148":{"tf":1.0},"1168":{"tf":1.0},"1202":{"tf":1.0},"1285":{"tf":1.0},"138":{"tf":1.0},"1436":{"tf":1.0},"1453":{"tf":1.0},"185":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"968":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"860":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1216":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"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":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}}},"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1200":{"tf":1.0},"439":{"tf":1.0},"705":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1243":{"tf":1.0},"1248":{"tf":1.0},"1259":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1179":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1524":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1524":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"473":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"a":{"d":{"d":{"df":3,"docs":{"1179":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1148":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":106,"docs":{"1060":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1179":{"tf":2.0},"1180":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":2.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1262":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1265":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.449489742783178},"1401":{"tf":2.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"248":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":2.449489742783178},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"442":{"tf":2.8284271247461903},"443":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"547":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"617":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":2.0},"682":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.23606797749979},"687":{"tf":1.0},"718":{"tf":2.23606797749979},"719":{"tf":1.0},"82":{"tf":1.0},"851":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"473":{"tf":1.0},"495":{"tf":1.0}}}}}}},"i":{"c":{"df":54,"docs":{"1076":{"tf":1.0},"1143":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"147":{"tf":1.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"523":{"tf":1.0},"55":{"tf":1.4142135623730951},"616":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"733":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.7320508075688772},"759":{"tf":2.0},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"785":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1401":{"tf":2.0},"816":{"tf":1.7320508075688772}},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":58,"docs":{"1056":{"tf":1.0},"1072":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1159":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"1247":{"tf":1.0},"1258":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1315":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1410":{"tf":1.0},"1413":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"182":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"336":{"tf":1.0},"465":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"682":{"tf":1.0},"756":{"tf":1.0},"773":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.4142135623730951},"88":{"tf":1.0},"887":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":39,"docs":{"1061":{"tf":1.0},"1078":{"tf":1.0},"1107":{"tf":1.0},"1139":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1222":{"tf":1.0},"1224":{"tf":1.0},"1225":{"tf":1.0},"1261":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1349":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1372":{"tf":1.0},"1392":{"tf":1.0},"1395":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1476":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"328":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":12,"docs":{"1045":{"tf":1.0},"1245":{"tf":1.0},"1421":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"913":{"tf":1.0},"925":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"1046":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.0},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1213":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1228":{"tf":1.0}}}},"df":0,"docs":{}},"df":28,"docs":{"1075":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1145":{"tf":2.23606797749979},"1518":{"tf":1.4142135623730951},"161":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"214":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.0},"798":{"tf":1.0},"852":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"580":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1296":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"925":{"tf":1.0}}}},"w":{"df":8,"docs":{"101":{"tf":1.0},"1230":{"tf":1.0},"1323":{"tf":1.0},"1428":{"tf":1.0},"223":{"tf":1.0},"771":{"tf":1.0},"907":{"tf":1.0},"963":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"454":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"991":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"df":2,"docs":{"1151":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1346":{"tf":1.4142135623730951},"309":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":220,"docs":{"1":{"tf":1.0},"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1006":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1045":{"tf":2.0},"1047":{"tf":1.0},"1051":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1142":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1166":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1177":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":2.0},"1196":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1248":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1375":{"tf":1.7320508075688772},"138":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1423":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.7320508075688772},"1485":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.449489742783178},"523":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"53":{"tf":2.0},"531":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.7320508075688772},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.0},"598":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"640":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"654":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":2.449489742783178},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"708":{"tf":1.0},"710":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"782":{"tf":3.0},"783":{"tf":1.7320508075688772},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.0},"823":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":2.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.7320508075688772},"950":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.7320508075688772},"991":{"tf":1.7320508075688772},"994":{"tf":1.0},"995":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":1,"docs":{"698":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1306":{"tf":1.0},"1315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"404":{"tf":1.0},"527":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":328,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1000":{"tf":1.0},"1007":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1042":{"tf":1.0},"1048":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1144":{"tf":1.7320508075688772},"1146":{"tf":2.23606797749979},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1173":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1194":{"tf":3.1622776601683795},"1195":{"tf":1.0},"1206":{"tf":2.0},"1209":{"tf":2.23606797749979},"1210":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.7320508075688772},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":2.8284271247461903},"1330":{"tf":2.449489742783178},"1332":{"tf":1.0},"1338":{"tf":2.449489742783178},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.0},"1369":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1390":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979},"1402":{"tf":1.0},"1405":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"142":{"tf":2.0},"1421":{"tf":1.0},"1423":{"tf":2.0},"1436":{"tf":1.0},"146":{"tf":1.0},"1469":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.0},"1500":{"tf":1.0},"1503":{"tf":1.0},"1515":{"tf":2.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"445":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.23606797749979},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":2.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"530":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.7320508075688772},"605":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.4142135623730951},"616":{"tf":2.23606797749979},"617":{"tf":1.4142135623730951},"620":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.7320508075688772},"638":{"tf":1.0},"641":{"tf":1.4142135623730951},"642":{"tf":1.0},"646":{"tf":1.4142135623730951},"647":{"tf":1.0},"648":{"tf":1.4142135623730951},"649":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.7320508075688772},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"710":{"tf":1.7320508075688772},"713":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.7320508075688772},"747":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":2.0},"77":{"tf":1.0},"782":{"tf":1.7320508075688772},"81":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.0},"833":{"tf":1.0},"837":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.7320508075688772},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":2.449489742783178},"882":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.0},"921":{"tf":2.23606797749979},"926":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"997":{"tf":1.4142135623730951}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"592":{"tf":1.0},"599":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1330":{"tf":2.23606797749979},"1362":{"tf":1.0},"1385":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"365":{"tf":1.0},"383":{"tf":1.0},"599":{"tf":1.0},"617":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"646":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1385":{"tf":1.0},"641":{"tf":1.0},"654":{"tf":1.0},"701":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"617":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":15,"docs":{"1248":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"656":{"tf":1.0},"846":{"tf":1.0}},"u":{"df":6,"docs":{"601":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"632":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"654":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"412":{"tf":1.0}}}}}}}}},"r":{"df":6,"docs":{"1362":{"tf":1.4142135623730951},"1399":{"tf":1.7320508075688772},"407":{"tf":1.0},"420":{"tf":1.0},"524":{"tf":1.0},"88":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"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":2,"docs":{"1361":{"tf":1.4142135623730951},"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1517":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951}},"u":{"df":15,"docs":{"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"612":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1148":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.0},"528":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"469":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"420":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":5,"docs":{"1255":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1384":{"tf":1.0},"406":{"tf":1.0},"525":{"tf":1.0},"617":{"tf":1.0},"640":{"tf":1.0},"702":{"tf":1.0},"786":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1436":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"1039":{"tf":1.0},"1148":{"tf":1.0},"1182":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":14,"docs":{"1045":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1507":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"913":{"tf":1.0},"990":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1151":{"tf":1.0},"1176":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"545":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1185":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1082":{"tf":1.0},"1214":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"1061":{"tf":1.0},"1145":{"tf":1.0},"1336":{"tf":1.0},"1351":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"327":{"tf":1.0},"37":{"tf":1.0},"555":{"tf":1.0},"581":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"383":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"1060":{"tf":1.0},"1062":{"tf":1.0},"1089":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"184":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"593":{"tf":1.0},"856":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"711":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}},"x":{"df":1,"docs":{"847":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"1015":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"934":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1209":{"tf":1.0},"1256":{"tf":1.4142135623730951},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.4142135623730951},"835":{"tf":1.0},"842":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":4,"docs":{"130":{"tf":1.0},"1334":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":2,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"682":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1039":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1426":{"tf":1.4142135623730951},"342":{"tf":1.0},"569":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"818":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1041":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1112":{"tf":1.4142135623730951},"154":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"985":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"767":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":36,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"767":{"tf":1.0},"976":{"tf":2.449489742783178}}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"845":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":1,"docs":{"308":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"3":{"0":{"df":4,"docs":{"1084":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"269":{"tf":1.0},"273":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1305":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"884":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"104":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1436":{"tf":1.7320508075688772},"182":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"70":{"tf":1.0},"809":{"tf":1.0},"972":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1062":{"tf":1.0},"1426":{"tf":1.0},"1489":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"901":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"df":2,"docs":{"309":{"tf":2.0},"319":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"1423":{"tf":1.0},"151":{"tf":1.0},"196":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":55,"docs":{"0":{"tf":1.0},"1001":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"119":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.0},"1309":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"1452":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"757":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":23,"docs":{"1323":{"tf":1.0},"138":{"tf":1.0},"1419":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1442":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"188":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"740":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"976":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"872":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"348":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"576":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"1101":{"tf":1.0}}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"1106":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1203":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"541":{"tf":1.0},"664":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"249":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":5,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1441":{"tf":1.0},"930":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"852":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"1022":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.7320508075688772},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"858":{"tf":1.0},"911":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"884":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":43,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.0},"122":{"tf":1.0},"1319":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"293":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"483":{"tf":1.0},"507":{"tf":1.0},"547":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"727":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"808":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"83":{"tf":1.0},"855":{"tf":1.0},"884":{"tf":1.0},"889":{"tf":1.0},"909":{"tf":1.4142135623730951},"976":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1378":{"tf":1.4142135623730951},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1209":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":36,"docs":{"1011":{"tf":1.0},"1144":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":3.0},"1230":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.0},"43":{"tf":1.0},"516":{"tf":1.0},"603":{"tf":1.0},"693":{"tf":1.0},"732":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"808":{"tf":1.0},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.7320508075688772},"829":{"tf":2.0},"831":{"tf":2.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.4142135623730951},"847":{"tf":2.6457513110645907},"850":{"tf":1.0},"916":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"317":{"tf":1.0}}}}}}},"u":{"df":61,"docs":{"1000":{"tf":1.4142135623730951},"1006":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1214":{"tf":1.0},"1230":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":2.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":2.0},"1399":{"tf":2.23606797749979},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"408":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.7320508075688772},"603":{"tf":1.0},"642":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"849":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"940":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1145":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.4142135623730951},"525":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1362":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1098":{"tf":1.0}}}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1143":{"tf":1.0},"702":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}},"y":{"df":2,"docs":{"950":{"tf":1.0},"97":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"1161":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":7,"docs":{"1191":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"298":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.4142135623730951},"1524":{"tf":1.0},"427":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":11,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"450":{"tf":1.4142135623730951},"541":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1154":{"tf":1.0},"1191":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1444":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"761":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":32,"docs":{"111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1158":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"1261":{"tf":1.0},"1330":{"tf":2.6457513110645907},"145":{"tf":1.0},"1510":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"994":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1012":{"tf":1.0},"1144":{"tf":1.0},"1506":{"tf":1.0},"223":{"tf":1.0},"997":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{".":{".":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":1,"docs":{"1306":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1452":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":70,"docs":{"1054":{"tf":1.4142135623730951},"1055":{"tf":1.7320508075688772},"1056":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1064":{"tf":1.4142135623730951},"1069":{"tf":1.0},"1070":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"110":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1295":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1320":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":2.449489742783178},"1452":{"tf":2.23606797749979},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"1481":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":2.0},"1491":{"tf":1.4142135623730951},"1511":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"161":{"tf":1.0},"261":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.8284271247461903},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"418":{"tf":1.0},"519":{"tf":1.0},"536":{"tf":2.0},"564":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"696":{"tf":1.0},"722":{"tf":1.7320508075688772},"85":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.7320508075688772},"916":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":60,"docs":{"1057":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1209":{"tf":1.0},"1222":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":1.0},"1253":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.7320508075688772},"1312":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"334":{"tf":1.4142135623730951},"366":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"600":{"tf":1.0},"64":{"tf":1.0},"681":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"84":{"tf":1.0},"846":{"tf":1.0},"850":{"tf":1.0},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0},"947":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.4142135623730951}}}}},"r":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1390":{"tf":1.4142135623730951},"1394":{"tf":2.0},"1402":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1080":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1296":{"tf":1.0},"1308":{"tf":1.0},"833":{"tf":1.0}}}}}}},"df":51,"docs":{"1001":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.23606797749979},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"1390":{"tf":1.7320508075688772},"1394":{"tf":2.23606797749979},"1402":{"tf":2.0},"1404":{"tf":3.4641016151377544},"587":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":2.0},"614":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"695":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"699":{"tf":1.7320508075688772},"700":{"tf":2.23606797749979},"701":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"703":{"tf":1.4142135623730951},"704":{"tf":1.7320508075688772},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"725":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1182":{"tf":1.0},"1439":{"tf":1.0},"37":{"tf":1.0},"450":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"357":{"tf":1.0},"591":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"1144":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"165":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.7320508075688772},"897":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":124,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1115":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":2.8284271247461903},"1119":{"tf":1.4142135623730951},"1120":{"tf":2.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":2.0},"1129":{"tf":2.449489742783178},"1130":{"tf":2.8284271247461903},"1131":{"tf":2.0},"1134":{"tf":1.0},"1227":{"tf":2.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1304":{"tf":2.0},"1401":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1471":{"tf":1.0},"262":{"tf":1.7320508075688772},"270":{"tf":1.0},"332":{"tf":1.7320508075688772},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"378":{"tf":2.0},"379":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"494":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":2.23606797749979},"523":{"tf":2.6457513110645907},"524":{"tf":2.0},"525":{"tf":2.23606797749979},"526":{"tf":1.7320508075688772},"527":{"tf":2.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"535":{"tf":2.23606797749979},"536":{"tf":3.4641016151377544},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"562":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"651":{"tf":1.4142135623730951},"652":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"722":{"tf":2.6457513110645907},"742":{"tf":1.7320508075688772},"753":{"tf":1.0},"756":{"tf":2.8284271247461903},"757":{"tf":1.4142135623730951},"759":{"tf":3.1622776601683795},"762":{"tf":3.3166247903554},"778":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":3.0},"786":{"tf":1.4142135623730951},"788":{"tf":2.0},"790":{"tf":1.0},"808":{"tf":2.23606797749979},"811":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":2.8284271247461903},"854":{"tf":1.0},"856":{"tf":2.449489742783178},"865":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1215":{"tf":1.0},"169":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1161":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"287":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":53,"docs":{"1043":{"tf":1.0},"1045":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1111":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"1228":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1417":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1528":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"291":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"728":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"803":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"916":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1413":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1417":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"802":{"tf":1.0},"818":{"tf":1.0},"869":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"883":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1182":{"tf":1.0},"1191":{"tf":1.0},"433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1163":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"1149":{"tf":1.0},"1321":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"155":{"tf":1.0},"264":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"715":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"1324":{"tf":1.0},"1338":{"tf":1.0},"1346":{"tf":1.0},"1458":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"855":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1062":{"tf":1.0},"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1166":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"1154":{"tf":1.0},"1339":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1000":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.4142135623730951},"505":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"1002":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1054":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1078":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"1135":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1212":{"tf":1.0},"1264":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1428":{"tf":1.0},"1438":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":2.0},"297":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"544":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"587":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"725":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.4142135623730951},"82":{"tf":1.0},"871":{"tf":1.0},"898":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"954":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"981":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"108":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1010":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1042":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"1512":{"tf":1.0},"1513":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1479":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":52,"docs":{"1":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1062":{"tf":1.0},"1068":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"1160":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1211":{"tf":1.0},"1222":{"tf":1.0},"1298":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.7320508075688772},"422":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"758":{"tf":1.0},"816":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"726":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"726":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"997":{"tf":1.0}}},"1":{"df":1,"docs":{"997":{"tf":1.0}}},"2":{"df":1,"docs":{"997":{"tf":1.0}}},"3":{"df":1,"docs":{"997":{"tf":1.0}}},"4":{"df":1,"docs":{"997":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1081":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1310":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1121":{"tf":1.0},"1309":{"tf":1.0},"303":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"848":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}},"df":12,"docs":{"1142":{"tf":2.0},"1163":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1263":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1469":{"tf":1.0},"456":{"tf":1.0},"663":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"1095":{"tf":1.4142135623730951},"1097":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1213":{"tf":1.0},"759":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"654":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"873":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":91,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1256":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":3.4641016151377544},"1335":{"tf":1.0},"1336":{"tf":2.6457513110645907},"1416":{"tf":1.0},"1417":{"tf":2.0},"196":{"tf":2.0},"197":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"33":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"574":{"tf":1.0},"590":{"tf":1.0},"654":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.7320508075688772},"77":{"tf":2.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":2.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":2.0},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.7320508075688772},"81":{"tf":2.0},"813":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"862":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"871":{"tf":2.0},"872":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":2.0},"886":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":2,"docs":{"31":{"tf":2.0},"726":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1336":{"tf":1.0},"1403":{"tf":1.0},"1437":{"tf":1.0},"901":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"766":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1392":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":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":{"1140":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1369":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1174":{"tf":1.0},"1195":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1392":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}},"df":1,"docs":{"931":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1404":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":1,"docs":{"1404":{"tf":4.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"759":{"tf":1.0},"785":{"tf":1.0},"804":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"883":{"tf":1.0},"884":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"766":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"327":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1343":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"555":{"tf":1.4142135623730951}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"976":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"348":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1169":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1170":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1171":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"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":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1146":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1078":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":86,"docs":{"1012":{"tf":1.0},"1033":{"tf":1.0},"1060":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":1.0},"1137":{"tf":2.0},"1138":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":3.3166247903554},"1141":{"tf":1.0},"1142":{"tf":2.449489742783178},"1143":{"tf":2.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":2.23606797749979},"1149":{"tf":1.7320508075688772},"1151":{"tf":2.6457513110645907},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1156":{"tf":1.4142135623730951},"1158":{"tf":2.449489742783178},"1159":{"tf":1.4142135623730951},"1160":{"tf":1.7320508075688772},"1161":{"tf":3.0},"1162":{"tf":1.4142135623730951},"1163":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1166":{"tf":1.0},"1168":{"tf":2.0},"1169":{"tf":2.0},"1170":{"tf":1.0},"1171":{"tf":1.7320508075688772},"1172":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":2.449489742783178},"1391":{"tf":1.0},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1500":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"302":{"tf":1.0},"312":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"340":{"tf":1.0},"348":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"555":{"tf":1.7320508075688772},"567":{"tf":1.0},"574":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":2.0},"618":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.7320508075688772},"723":{"tf":1.0},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"979":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"588":{"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":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1392":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"836":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1148":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"505":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"1080":{"tf":1.4142135623730951},"1081":{"tf":2.23606797749979},"1148":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1279":{"tf":1.0},"1287":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1306":{"tf":2.449489742783178},"1310":{"tf":1.7320508075688772},"1358":{"tf":2.23606797749979},"1401":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"235":{"tf":1.0},"383":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"483":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"510":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"684":{"tf":1.0},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"789":{"tf":1.0},"956":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"845":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"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":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{".":{".":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":15,"docs":{"287":{"tf":1.7320508075688772},"47":{"tf":1.0},"726":{"tf":2.8284271247461903},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.7320508075688772},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":2.0},"883":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"726":{"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1014":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"1177":{"tf":1.0},"1212":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"424":{"tf":1.0},"59":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"898":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}}}}},"w":{"df":20,"docs":{"1281":{"tf":1.0},"1313":{"tf":1.0},"1356":{"tf":1.0},"1367":{"tf":2.0},"1399":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"546":{"tf":1.0},"618":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1102":{"tf":1.0},"758":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"1011":{"tf":1.0},"1042":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1087":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.0},"1215":{"tf":1.0},"129":{"tf":1.0},"1296":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1342":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1522":{"tf":1.0},"234":{"tf":1.0},"37":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"925":{"tf":1.0},"935":{"tf":1.0},"953":{"tf":1.0},"973":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"221":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1084":{"tf":1.0},"1200":{"tf":1.0},"1477":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":49,"docs":{"1097":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1245":{"tf":1.0},"1255":{"tf":1.0},"1288":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1522":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"744":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":2.23606797749979},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"z":{"df":1,"docs":{"1081":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":58,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1310":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":2.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1392":{"tf":2.0},"1394":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"276":{"tf":1.0},"288":{"tf":1.0},"349":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"797":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"88":{"tf":1.4142135623730951},"921":{"tf":1.0}}}}},"l":{"df":12,"docs":{"1051":{"tf":1.0},"1203":{"tf":1.0},"1284":{"tf":1.0},"681":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"850":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"867":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"995":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":2.0},"1445":{"tf":1.0},"816":{"tf":1.0},"899":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"934":{"tf":1.0},"935":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":50,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1165":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1182":{"tf":1.0},"1185":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.7320508075688772},"1236":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"17":{"tf":1.0},"246":{"tf":1.0},"359":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"4":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"433":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"446":{"tf":1.0},"586":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0},"684":{"tf":1.4142135623730951},"733":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"847":{"tf":1.7320508075688772},"848":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"439":{"tf":1.0},"676":{"tf":1.0},"713":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"320":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":30,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":3.4641016151377544},"1445":{"tf":1.0},"1509":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"299":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"307":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":32,"docs":{"1094":{"tf":1.0},"1263":{"tf":1.0},"1403":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.4142135623730951},"850":{"tf":1.0},"862":{"tf":1.0},"873":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"914":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1314":{"tf":1.0},"1403":{"tf":2.6457513110645907},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"423":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"942":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"t":{"df":2,"docs":{"1161":{"tf":1.0},"268":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"382":{"tf":1.7320508075688772},"616":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1102":{"tf":1.0},"365":{"tf":1.0},"599":{"tf":1.0},"65":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"1007":{"tf":1.0},"1010":{"tf":1.0},"1015":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1050":{"tf":1.0},"249":{"tf":1.0},"805":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"984":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"664":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1051":{"tf":1.0},"1152":{"tf":2.0},"1174":{"tf":1.0},"1176":{"tf":2.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1190":{"tf":1.0},"1203":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.4142135623730951},"681":{"tf":1.0},"964":{"tf":1.4142135623730951},"969":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":2.23606797749979}}}}}}},"df":1,"docs":{"1330":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"940":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":37,"docs":{"1126":{"tf":1.0},"1127":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"1477":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"667":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1310":{"tf":1.7320508075688772},"833":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"1163":{"tf":1.0}}}},"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":10,"docs":{"114":{"tf":1.0},"1220":{"tf":1.0},"1257":{"tf":1.0},"1291":{"tf":1.0},"1527":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0},"975":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":123,"docs":{"1088":{"tf":1.4142135623730951},"112":{"tf":1.0},"1121":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":2.23606797749979},"1151":{"tf":2.0},"1226":{"tf":1.0},"1248":{"tf":1.0},"127":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":3.0},"1323":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1378":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1437":{"tf":2.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1465":{"tf":1.0},"150":{"tf":1.0},"1500":{"tf":1.0},"1507":{"tf":1.0},"1509":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"295":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"354":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":2.449489742783178},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.4142135623730951},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"822":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"88":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":2.23606797749979},"945":{"tf":1.4142135623730951},"946":{"tf":1.7320508075688772},"965":{"tf":1.7320508075688772},"966":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1448":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1006":{"tf":1.0},"1052":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1436":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":2.0},"37":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0},"947":{"tf":1.7320508075688772},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0},"992":{"tf":1.4142135623730951},"998":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1001":{"tf":1.0},"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"919":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"546":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"723":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"354":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"129":{"tf":1.7320508075688772},"1307":{"tf":1.0},"1333":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"607":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":8,"docs":{"1036":{"tf":1.0},"1145":{"tf":2.23606797749979},"1180":{"tf":1.0},"1328":{"tf":1.0},"216":{"tf":1.0},"43":{"tf":1.0},"858":{"tf":1.0},"881":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1003":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":182,"docs":{"1015":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":2.0},"1112":{"tf":3.4641016151377544},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":3.1622776601683795},"1119":{"tf":1.7320508075688772},"1120":{"tf":2.23606797749979},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1124":{"tf":2.6457513110645907},"1129":{"tf":3.0},"1130":{"tf":3.3166247903554},"1131":{"tf":3.0},"1134":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1179":{"tf":1.0},"1227":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":2.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1304":{"tf":2.6457513110645907},"1305":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1365":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":3.0},"1403":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":2.23606797749979},"1440":{"tf":2.23606797749979},"1441":{"tf":1.7320508075688772},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"1526":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"348":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"587":{"tf":1.0},"606":{"tf":1.0},"610":{"tf":1.4142135623730951},"614":{"tf":1.0},"616":{"tf":1.0},"72":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.4142135623730951},"741":{"tf":1.7320508075688772},"742":{"tf":3.0},"744":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.0},"760":{"tf":1.4142135623730951},"762":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"774":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"790":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"838":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"877":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":2.23606797749979},"900":{"tf":2.23606797749979},"901":{"tf":1.0},"902":{"tf":1.4142135623730951},"954":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1489":{"tf":1.0},"151":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.0},"249":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1038":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1526":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1292":{"tf":1.0},"1358":{"tf":1.0},"1381":{"tf":1.0},"332":{"tf":2.23606797749979},"418":{"tf":2.23606797749979},"490":{"tf":1.0},"509":{"tf":1.0},"536":{"tf":2.23606797749979},"544":{"tf":1.0}}}}},"r":{"df":4,"docs":{"357":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1176":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"542":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1194":{"tf":1.4142135623730951},"1345":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"855":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":20,"docs":{"1111":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.4142135623730951},"778":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"968":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1522":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"1131":{"tf":1.0},"1137":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1452":{"tf":1.0},"505":{"tf":1.0},"684":{"tf":1.0},"733":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":2.0},"816":{"tf":1.7320508075688772},"818":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"588":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"1472":{"tf":1.7320508075688772},"202":{"tf":1.0},"249":{"tf":1.0},"473":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"939":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1290":{"tf":1.0},"1470":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0},"837":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1144":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1166":{"tf":1.0},"911":{"tf":1.0},"949":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1214":{"tf":1.0},"1220":{"tf":1.0},"937":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1011":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":82,"docs":{"1006":{"tf":1.0},"101":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1135":{"tf":1.0},"115":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1209":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":2.23606797749979},"1353":{"tf":1.7320508075688772},"1376":{"tf":1.7320508075688772},"1403":{"tf":2.449489742783178},"1420":{"tf":2.6457513110645907},"1425":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"209":{"tf":2.0},"249":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":2.449489742783178},"382":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"522":{"tf":2.0},"532":{"tf":1.7320508075688772},"55":{"tf":1.0},"585":{"tf":1.0},"59":{"tf":1.0},"604":{"tf":2.23606797749979},"605":{"tf":2.449489742783178},"61":{"tf":1.0},"616":{"tf":1.4142135623730951},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"645":{"tf":2.0},"657":{"tf":1.4142135623730951},"699":{"tf":2.0},"709":{"tf":1.7320508075688772},"780":{"tf":1.4142135623730951},"796":{"tf":2.23606797749979},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"874":{"tf":1.0},"926":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"987":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"616":{"tf":1.0},"709":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"u":{"df":2,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"382":{"tf":1.0},"532":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"411":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"400":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"522":{"tf":1.0}},"u":{"df":2,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1353":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1233":{"tf":1.0},"1258":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1410":{"tf":1.0},"143":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1505":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"68":{"tf":1.0},"773":{"tf":1.0},"976":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":6,"docs":{"1010":{"tf":1.0},"1505":{"tf":1.0},"1510":{"tf":1.0},"585":{"tf":1.0},"978":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1154":{"tf":1.0},"1158":{"tf":1.0},"1512":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":4,"docs":{"1358":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"836":{"tf":1.0}}},"l":{"df":12,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1491":{"tf":1.0},"262":{"tf":1.0},"46":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"744":{"tf":1.0},"759":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"761":{"tf":1.0},"767":{"tf":1.0}},"g":{"df":40,"docs":{"107":{"tf":1.0},"1161":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1256":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1501":{"tf":1.0},"287":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"500":{"tf":1.0},"547":{"tf":1.4142135623730951},"589":{"tf":1.0},"619":{"tf":1.4142135623730951},"620":{"tf":1.0},"67":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"758":{"tf":1.0},"759":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"d":{"df":7,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"810":{"tf":1.0},"812":{"tf":1.0}}},"df":266,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1145":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"1158":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":2.23606797749979},"1163":{"tf":1.0},"1168":{"tf":1.4142135623730951},"117":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1222":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1292":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1348":{"tf":1.0},"1371":{"tf":1.0},"139":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1421":{"tf":1.0},"1430":{"tf":1.0},"1436":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1453":{"tf":2.0},"1457":{"tf":1.0},"1472":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"359":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"433":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"510":{"tf":1.4142135623730951},"516":{"tf":1.0},"535":{"tf":1.0},"545":{"tf":4.123105625617661},"546":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"586":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"657":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"673":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"735":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.0},"790":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"82":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"93":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.23606797749979},"98":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0},"996":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":6,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"759":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"925":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":8,"docs":{"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1262":{"tf":1.0},"259":{"tf":1.0},"332":{"tf":1.0},"416":{"tf":1.0},"453":{"tf":1.0},"534":{"tf":1.0},"557":{"tf":1.0},"650":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"138":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"950":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"389":{"tf":1.0},"400":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":80,"docs":{"1130":{"tf":1.0},"1186":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1248":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"147":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"226":{"tf":1.0},"27":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"400":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"436":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903},"560":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.7320508075688772},"640":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":1.7320508075688772},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"756":{"tf":1.7320508075688772},"778":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.4142135623730951},"785":{"tf":2.0},"798":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":3.1622776601683795},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.4142135623730951},"84":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":2.0},"870":{"tf":1.0},"880":{"tf":1.7320508075688772},"883":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"913":{"tf":1.0},"941":{"tf":1.0},"950":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":6,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1372":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"0":{".":{"4":{".":{"0":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1376":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"1405":{"tf":1.0},"1482":{"tf":1.0},"740":{"tf":2.449489742783178},"798":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1325":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951}}}}}}},"df":5,"docs":{"1482":{"tf":1.0},"1520":{"tf":1.0},"798":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":2,"docs":{"798":{"tf":1.0},"988":{"tf":1.0}}},"4":{"df":4,"docs":{"46":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"987":{"tf":1.0}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":145,"docs":{"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1007":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1148":{"tf":1.0},"1166":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1214":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1263":{"tf":1.0},"1278":{"tf":2.0},"128":{"tf":2.23606797749979},"1290":{"tf":1.0},"130":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1352":{"tf":1.0},"1355":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1432":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1515":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.4142135623730951},"287":{"tf":1.0},"34":{"tf":1.0},"349":{"tf":1.0},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"491":{"tf":2.0},"498":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"626":{"tf":1.0},"631":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"654":{"tf":1.0},"66":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"743":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"778":{"tf":1.0},"827":{"tf":1.0},"842":{"tf":1.0},"87":{"tf":2.23606797749979},"896":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.0},"927":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":2.6457513110645907},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":53,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1055":{"tf":1.0},"1083":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1200":{"tf":1.0},"125":{"tf":1.0},"1297":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1369":{"tf":1.0},"1384":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1419":{"tf":1.0},"1441":{"tf":1.0},"1451":{"tf":1.0},"1475":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.4142135623730951},"528":{"tf":1.0},"599":{"tf":1.0},"604":{"tf":1.0},"687":{"tf":1.0},"705":{"tf":1.0},"719":{"tf":1.0},"739":{"tf":1.0},"746":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"892":{"tf":1.0},"893":{"tf":1.0},"897":{"tf":1.0},"976":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1446":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"902":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"899":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"900":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1446":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"0":{"df":1,"docs":{"1300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1449":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":40,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.7320508075688772},"1159":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1215":{"tf":1.0},"125":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.4142135623730951},"1430":{"tf":1.0},"1436":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1512":{"tf":1.0},"160":{"tf":1.0},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"660":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"963":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":1,"docs":{"1048":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"1054":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":14,"docs":{"1324":{"tf":1.0},"1325":{"tf":1.0},"1330":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"733":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"554":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"297":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":159,"docs":{"1006":{"tf":1.0},"1008":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1214":{"tf":1.7320508075688772},"1219":{"tf":1.0},"1222":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1249":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":2.0},"1330":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1339":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":2.0},"1421":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1469":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1507":{"tf":1.0},"1529":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.4142135623730951},"206":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"520":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.0},"697":{"tf":1.0},"725":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"788":{"tf":1.0},"816":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.4142135623730951},"938":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.7320508075688772},"942":{"tf":1.0},"943":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.7320508075688772},"979":{"tf":1.0},"980":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"997":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1365":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.4142135623730951},"598":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}},"df":283,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1007":{"tf":1.0},"101":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":1.0},"1146":{"tf":1.0},"1149":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1227":{"tf":1.0},"1232":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1240":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"128":{"tf":3.0},"1282":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1324":{"tf":2.8284271247461903},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":2.6457513110645907},"1339":{"tf":1.4142135623730951},"1340":{"tf":2.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"1365":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1421":{"tf":3.0},"1425":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"146":{"tf":1.0},"1460":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1503":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1526":{"tf":1.0},"1528":{"tf":2.0},"1529":{"tf":2.449489742783178},"1530":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":2.6457513110645907},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":2.0},"277":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"39":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":2.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":2.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"527":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"555":{"tf":1.4142135623730951},"576":{"tf":1.0},"58":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"613":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"649":{"tf":1.7320508075688772},"654":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"698":{"tf":1.7320508075688772},"704":{"tf":1.0},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"708":{"tf":2.23606797749979},"714":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":1.4142135623730951},"725":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":2.23606797749979},"795":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.4142135623730951},"833":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.4142135623730951},"87":{"tf":3.1622776601683795},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"937":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"940":{"tf":1.0},"941":{"tf":2.23606797749979},"942":{"tf":1.7320508075688772},"944":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":2.8284271247461903},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"676":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"367":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"1":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"617":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1436":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1151":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1352":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1185":{"tf":1.0},"1265":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"1151":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"456":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":6,"docs":{"1103":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1522":{"tf":2.0}}},"df":0,"docs":{}}},"df":148,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":2.23606797749979},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1098":{"tf":1.7320508075688772},"11":{"tf":1.0},"1114":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.7320508075688772},"115":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1206":{"tf":1.0},"1255":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1365":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1388":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":1.0},"1409":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1482":{"tf":2.23606797749979},"1502":{"tf":1.0},"1503":{"tf":2.0},"1515":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"199":{"tf":3.0},"2":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"322":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"46":{"tf":2.0},"522":{"tf":1.0},"536":{"tf":1.0},"549":{"tf":1.0},"583":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"61":{"tf":1.7320508075688772},"634":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0},"722":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.7320508075688772},"744":{"tf":1.7320508075688772},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"776":{"tf":1.7320508075688772},"779":{"tf":2.23606797749979},"782":{"tf":1.0},"783":{"tf":1.0},"798":{"tf":2.0},"816":{"tf":1.7320508075688772},"836":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"874":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"908":{"tf":1.0},"914":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"942":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":2.0},"988":{"tf":1.7320508075688772},"989":{"tf":1.4142135623730951},"991":{"tf":1.7320508075688772},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":25,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"160":{"tf":1.0},"192":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"482":{"tf":1.0},"72":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"871":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"911":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"922":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0},"95":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1155":{"tf":1.0},"771":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"554":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1086":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1068":{"tf":1.0}}}}}},"p":{"c":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"185":{"tf":1.0},"43":{"tf":1.0},"978":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"911":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"976":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1515":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"1194":{"tf":1.0},"1439":{"tf":1.0},"1506":{"tf":1.0},"243":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"892":{"tf":1.0},"899":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1087":{"tf":1.0},"1451":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1340":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1340":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1340":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.7320508075688772},"171":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"1":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"294":{"tf":1.0},"43":{"tf":1.0}}}},"df":10,"docs":{"1140":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951},"661":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1042":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1406":{"tf":1.0},"1451":{"tf":1.4142135623730951},"321":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"964":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1405":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1405":{"tf":3.4641016151377544}},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"1212":{"tf":1.0},"1213":{"tf":2.23606797749979},"1217":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.4142135623730951},"383":{"tf":1.0},"608":{"tf":1.4142135623730951},"617":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1437":{"tf":1.0},"1454":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"941":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"17":{"tf":1.0},"223":{"tf":1.0},"759":{"tf":1.0},"788":{"tf":1.0},"831":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"863":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"232":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"93":{"tf":1.0},"960":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"586":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0}},"m":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"855":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1209":{"tf":1.0},"1399":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.4142135623730951},"831":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"1088":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1194":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0},"127":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.0},"1484":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"394":{"tf":1.0},"43":{"tf":1.0},"506":{"tf":1.0},"519":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0},"984":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1286":{"tf":1.0},"242":{"tf":1.0},"479":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":64,"docs":{"1080":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1182":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1426":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1506":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"327":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"405":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"555":{"tf":1.0},"617":{"tf":1.0},"639":{"tf":1.0},"655":{"tf":1.0},"664":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.4142135623730951},"808":{"tf":2.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"857":{"tf":1.0},"87":{"tf":1.0},"885":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"932":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":32,"docs":{"1115":{"tf":1.0},"1144":{"tf":1.0},"1248":{"tf":1.0},"13":{"tf":1.0},"1317":{"tf":1.0},"1327":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1397":{"tf":1.0},"140":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"359":{"tf":1.0},"548":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"773":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.0},"821":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"841":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":7,"docs":{"1021":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.0},"519":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1524":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"528":{"tf":1.0},"541":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"705":{"tf":1.0},"718":{"tf":1.4142135623730951},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"1183":{"tf":1.7320508075688772},"669":{"tf":1.0},"670":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"317":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":15,"docs":{"116":{"tf":1.0},"1422":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1489":{"tf":1.4142135623730951},"226":{"tf":1.0},"302":{"tf":1.0},"536":{"tf":1.0},"661":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}},"r":{"df":3,"docs":{"1206":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1286":{"tf":1.0},"1292":{"tf":1.0},"1465":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"941":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"322":{"tf":1.0},"549":{"tf":1.0}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1122":{"tf":1.0},"1169":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"822":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"z":{"df":0,"docs":{},"f":{"df":1,"docs":{"1095":{"tf":1.0}}}}},"y":{"%":{"df":0,"docs":{},"m":{"%":{"d":{")":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1097":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"325":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"1175":{"tf":2.23606797749979},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"181":{"tf":2.8284271247461903},"756":{"tf":2.6457513110645907},"757":{"tf":1.4142135623730951},"759":{"tf":1.7320508075688772},"778":{"tf":1.7320508075688772},"779":{"tf":2.0},"782":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"811":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1456":{"tf":1.0}}}},"r":{"df":4,"docs":{"17":{"tf":1.0},"228":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"760":{"tf":1.0}}}},"o":{"d":{"df":6,"docs":{"1179":{"tf":1.0},"1349":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1300":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"976":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"3":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1441":{"tf":1.0}}},"5":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":1,"docs":{"1441":{"tf":1.0}}},"1":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.4142135623730951}}}},"df":5,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1437":{"tf":1.0},"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"1504":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":8,"docs":{"1112":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":2,"docs":{"157":{"tf":1.0},"761":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1003":{"tf":1.0},"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"298":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"654":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"859":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"779":{"tf":1.0}}}},"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":6,"docs":{"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}},"3":{"df":3,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"859":{"tf":1.4142135623730951}}},"6":{"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1432":{"tf":1.0},"728":{"tf":1.0}}},"df":27,"docs":{"1084":{"tf":1.4142135623730951},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1129":{"tf":1.0},"1307":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1362":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"382":{"tf":1.0},"588":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"897":{"tf":1.0},"901":{"tf":1.0},"933":{"tf":1.0},"977":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"779":{"tf":1.0}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":9,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":15,"docs":{"1134":{"tf":1.0},"1179":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.0},"1401":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"845":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1441":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0}}},"3":{"df":2,"docs":{"1015":{"tf":1.4142135623730951},"1030":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1329":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":2,"docs":{"1169":{"tf":1.0},"1403":{"tf":1.4142135623730951}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}},"1":{"df":1,"docs":{"767":{"tf":1.0}}},"df":5,"docs":{"1116":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"198":{"tf":1.0},"501":{"tf":1.0}}},"df":16,"docs":{"1048":{"tf":1.0},"1390":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"501":{"tf":1.4142135623730951},"519":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"812":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"k":{"df":1,"docs":{"1253":{"tf":1.0}}}},"df":15,"docs":{"1071":{"tf":1.0},"1079":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1441":{"tf":1.7320508075688772},"308":{"tf":1.0},"315":{"tf":1.0},"443":{"tf":1.0},"68":{"tf":1.0},"916":{"tf":1.0}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1024":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"196":{"tf":1.0},"365":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"599":{"tf":1.0},"654":{"tf":1.0},"761":{"tf":1.0},"881":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0}}},"d":{"3":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1079":{"tf":1.0},"1215":{"tf":1.4142135623730951},"916":{"tf":1.0}}},"4":{"df":1,"docs":{"1087":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0}}},"df":3,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0}}},"df":5,"docs":{"1003":{"tf":1.0},"1336":{"tf":1.0},"298":{"tf":1.0},"501":{"tf":1.4142135623730951},"859":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":15,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.0},"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"783":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"785":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"767":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"351":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"1071":{"tf":1.0}}},"8":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":76,"docs":{"1048":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1072":{"tf":1.0},"1079":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.0},"1168":{"tf":1.4142135623730951},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1248":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1301":{"tf":2.23606797749979},"1302":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1312":{"tf":2.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1392":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1512":{"tf":1.0},"1522":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"303":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"700":{"tf":1.0},"742":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"814":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"913":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"953":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0}}},"5":{"df":3,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"1149":{"tf":1.0},"1271":{"tf":1.0},"1379":{"tf":1.0},"458":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"1071":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":37,"docs":{"100":{"tf":1.0},"1045":{"tf":1.0},"115":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1403":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"176":{"tf":1.0},"180":{"tf":2.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":4,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1048":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.0}}},"df":2,"docs":{"443":{"tf":1.0},"53":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{"c":{"d":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"d":{"3":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1003":{"tf":1.0},"1015":{"tf":1.0},"1024":{"tf":1.0},"1046":{"tf":1.0},"1228":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.4142135623730951},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1346":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":62,"docs":{"1048":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1170":{"tf":1.0},"1185":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1248":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"1437":{"tf":1.0},"144":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"357":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"591":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"762":{"tf":1.0},"785":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"881":{"tf":1.0},"914":{"tf":1.4142135623730951},"925":{"tf":1.0},"95":{"tf":1.7320508075688772},"953":{"tf":1.0},"963":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0}}},"3":{".":{"1":{"0":{"df":2,"docs":{"549":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":8,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.0},"458":{"tf":1.0}}},"df":5,"docs":{"1079":{"tf":1.0},"1399":{"tf":1.0},"1445":{"tf":1.0},"310":{"tf":1.0},"902":{"tf":1.0}}},"1":{"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}},"2":{"df":2,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.4142135623730951}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"6":{"0":{"0":{"df":9,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"1307":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"1030":{"tf":1.0},"1170":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1345":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.4142135623730951},"581":{"tf":1.0},"700":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.0},"824":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"881":{"tf":1.0},"915":{"tf":1.4142135623730951},"953":{"tf":1.0},"96":{"tf":1.7320508075688772},"964":{"tf":1.4142135623730951}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1268":{"tf":1.0},"1271":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0}}},"4":{"df":1,"docs":{"465":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"987":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"1226":{"tf":1.0}}}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1273":{"tf":1.0},"1274":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"493":{"tf":1.0},"849":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"1":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"2":{"df":2,"docs":{"767":{"tf":1.0},"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}},"df":21,"docs":{"1171":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1345":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"581":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":8,"docs":{"1305":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"625":{"tf":1.0}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":4,"docs":{"365":{"tf":1.0},"498":{"tf":1.0},"599":{"tf":1.0},"810":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.7320508075688772}}},"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":23,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.7320508075688772},"883":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"157":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"1185":{"tf":1.0},"1186":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"581":{"tf":1.0},"826":{"tf":1.4142135623730951},"916":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"966":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1505":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1105":{"tf":1.0},"1528":{"tf":1.0},"250":{"tf":1.0},"352":{"tf":1.0},"584":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}},"k":{"df":1,"docs":{"911":{"tf":1.0}}}},"df":6,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.0},"255":{"tf":1.0},"501":{"tf":1.0},"900":{"tf":1.0}}},"4":{"df":3,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0}}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"7":{"0":{"0":{"df":5,"docs":{"1105":{"tf":1.0},"682":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"5":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"8":{"'":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"9":{"df":0,"docs":{},"f":{"b":{"9":{"d":{"8":{"8":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"1270":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1522":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1507":{"tf":1.0},"933":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1119":{"tf":1.0}}},"6":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1001":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1161":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1247":{"tf":1.0},"944":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1250":{"tf":1.0},"1251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1003":{"tf":1.4142135623730951},"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1333":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"374":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":3,"docs":{"1247":{"tf":1.0},"1248":{"tf":1.0},"31":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":13,"docs":{"1211":{"tf":2.0},"1212":{"tf":2.0},"1213":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1234":{"tf":1.0},"1244":{"tf":1.0}}},"df":1,"docs":{"1145":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{"df":3,"docs":{"53":{"tf":1.0},"791":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"881":{"tf":1.7320508075688772},"925":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"981":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"937":{"tf":1.0},"977":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1102":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1149":{"tf":1.0},"1214":{"tf":1.0},"1290":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.4142135623730951},"823":{"tf":1.0},"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1490":{"tf":1.0}}}}}},"df":30,"docs":{"1061":{"tf":1.0},"1066":{"tf":1.0},"1092":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1174":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1477":{"tf":1.0},"1528":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.0},"352":{"tf":1.0},"423":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"584":{"tf":1.0},"610":{"tf":1.0},"656":{"tf":1.0},"92":{"tf":1.0},"942":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"810":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}}},"r":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1070":{"tf":1.0},"1194":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":3,"docs":{"1154":{"tf":1.0},"151":{"tf":1.0},"992":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"766":{"tf":1.0}}}}}},"m":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"767":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":34,"docs":{"1071":{"tf":1.0},"1149":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.0},"1403":{"tf":2.449489742783178},"1485":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"237":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.4142135623730951},"599":{"tf":1.0},"617":{"tf":1.0},"733":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.7320508075688772},"811":{"tf":1.7320508075688772},"868":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1004":{"tf":1.0},"1012":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1476":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.0},"991":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1148":{"tf":1.0},"1194":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"789":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"d":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":47,"docs":{"106":{"tf":1.0},"1109":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1165":{"tf":1.0},"1180":{"tf":1.0},"1186":{"tf":1.0},"1212":{"tf":1.7320508075688772},"1310":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1420":{"tf":1.0},"1480":{"tf":1.0},"1510":{"tf":1.0},"1526":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"473":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"553":{"tf":1.0},"580":{"tf":1.4142135623730951},"589":{"tf":1.0},"640":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"823":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0},"938":{"tf":1.0},"976":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1051":{"tf":1.0},"1083":{"tf":1.0},"1249":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1420":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"523":{"tf":1.0},"687":{"tf":1.0},"700":{"tf":1.0},"719":{"tf":1.0},"786":{"tf":1.0},"908":{"tf":1.0},"939":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0},"760":{"tf":2.23606797749979},"762":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"443":{"tf":1.0}}}}}}}}},"df":14,"docs":{"1166":{"tf":1.0},"1175":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1522":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"173":{"tf":1.0},"258":{"tf":1.4142135623730951},"423":{"tf":1.0},"524":{"tf":1.0},"701":{"tf":1.0},"797":{"tf":1.4142135623730951},"874":{"tf":1.0},"950":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1209":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"847":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"1118":{"tf":1.4142135623730951},"320":{"tf":1.0},"4":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.4142135623730951},"1069":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1002":{"tf":1.0},"1007":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}},"s":{"2":{"5":{"6":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1450":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1477":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1032":{"tf":1.0},"1254":{"tf":1.0},"1333":{"tf":1.0},"1427":{"tf":1.0},"178":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"918":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"944":{"tf":1.0},"973":{"tf":1.0}}}}}}},"df":2,"docs":{"1507":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":51,"docs":{"1006":{"tf":1.0},"1177":{"tf":1.0},"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1245":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"1423":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"454":{"tf":1.0},"518":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"695":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.4142135623730951},"850":{"tf":1.0},"86":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"981":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"616":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"382":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"642":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1385":{"tf":1.0},"654":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1363":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1362":{"tf":1.0},"420":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":4,"docs":{"1384":{"tf":1.0},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1088":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"581":{"tf":1.0},"696":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"921":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"587":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"653":{"tf":1.0},"723":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"558":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"846":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":2,"docs":{"269":{"tf":1.0},"288":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1361":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"523":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":14,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"545":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0},"419":{"tf":1.0},"519":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"794":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1517":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.7320508075688772},"143":{"tf":1.0},"241":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"347":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1213":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"1515":{"tf":1.0},"201":{"tf":1.0},"242":{"tf":2.23606797749979},"410":{"tf":1.0},"531":{"tf":1.0},"644":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1356":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1518":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.0},"738":{"tf":1.4142135623730951},"75":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"794":{"tf":1.4142135623730951},"822":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1148":{"tf":1.0},"1149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1047":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1140":{"tf":1.0},"1394":{"tf":1.4142135623730951},"681":{"tf":1.0},"695":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1140":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1399":{"tf":1.0},"518":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1302":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":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":{"545":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"641":{"tf":1.0},"701":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"648":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"558":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1021":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"637":{"tf":1.0},"703":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"412":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":3,"docs":{"407":{"tf":1.0},"524":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1362":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1148":{"tf":1.0},"1405":{"tf":1.0},"414":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"526":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1047":{"tf":1.0},"645":{"tf":1.0},"709":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"657":{"tf":1.0},"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"411":{"tf":1.0},"532":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1353":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"522":{"tf":1.0},"545":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"tf":1.4142135623730951}}}}}}}}}}},"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"795":{"tf":1.0},"922":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"1375":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0}}}}}},"df":1,"docs":{"725":{"tf":1.0}},"u":{"df":1,"docs":{"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"558":{"tf":1.0},"697":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"576":{"tf":1.0},"587":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"631":{"tf":1.0},"697":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"654":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"957":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"632":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"698":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"545":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1401":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"795":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1352":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":1,"docs":{"1401":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"419":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1369":{"tf":1.0},"349":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"520":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"420":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1356":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"527":{"tf":1.0},"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"142":{"tf":1.0},"1484":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"406":{"tf":1.0},"640":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1329":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"217":{"tf":1.0},"406":{"tf":1.0},"640":{"tf":1.0}}},":":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"1204":{"tf":1.0}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1332":{"tf":1.0},"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"606":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"=":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"287":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"769":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"604":{"tf":1.0},"606":{"tf":1.0},"616":{"tf":1.0},"769":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"708":{"tf":1.0}}}}},"i":{"d":{"df":14,"docs":{"1081":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1384":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"700":{"tf":1.7320508075688772},"949":{"tf":1.0},"957":{"tf":1.0},"999":{"tf":1.0}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"264":{"tf":1.0},"695":{"tf":1.0},"769":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"770":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.4142135623730951}},"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":1,"docs":{"382":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"76":{"tf":1.0},"770":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"76":{"tf":1.0},"770":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":586,"docs":{"0":{"tf":2.0},"1":{"tf":2.0},"10":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1004":{"tf":1.0},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"1112":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.23606797749979},"1143":{"tf":1.4142135623730951},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":2.0},"1166":{"tf":1.0},"117":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1175":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1194":{"tf":2.23606797749979},"1196":{"tf":1.0},"120":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1206":{"tf":2.8284271247461903},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":3.1622776601683795},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.0},"1216":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.7320508075688772},"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1234":{"tf":2.0},"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1242":{"tf":1.7320508075688772},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.7320508075688772},"1247":{"tf":2.6457513110645907},"1248":{"tf":2.6457513110645907},"1249":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"126":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1263":{"tf":1.0},"127":{"tf":2.6457513110645907},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"128":{"tf":3.4641016151377544},"129":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"130":{"tf":2.23606797749979},"1302":{"tf":1.0},"1318":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"1320":{"tf":1.0},"1321":{"tf":2.23606797749979},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1332":{"tf":3.0},"1333":{"tf":3.3166247903554},"1334":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"1390":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"1399":{"tf":3.4641016151377544},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.4142135623730951},"1415":{"tf":2.23606797749979},"1417":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"142":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"1430":{"tf":1.0},"1432":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"1460":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"147":{"tf":2.23606797749979},"1476":{"tf":1.0},"148":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"1499":{"tf":2.0},"150":{"tf":1.7320508075688772},"151":{"tf":2.8284271247461903},"1515":{"tf":1.7320508075688772},"1518":{"tf":2.0},"152":{"tf":2.0},"1529":{"tf":1.4142135623730951},"153":{"tf":2.0},"1530":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":2.6457513110645907},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":2.0},"223":{"tf":1.4142135623730951},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.449489742783178},"242":{"tf":2.8284271247461903},"244":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"261":{"tf":2.8284271247461903},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"27":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":2.23606797749979},"327":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":2.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"35":{"tf":2.449489742783178},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"410":{"tf":1.7320508075688772},"411":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":2.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":2.0},"436":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"478":{"tf":2.0},"48":{"tf":1.0},"487":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"52":{"tf":1.0},"523":{"tf":2.23606797749979},"524":{"tf":1.0},"525":{"tf":1.0},"53":{"tf":3.0},"530":{"tf":1.7320508075688772},"531":{"tf":2.23606797749979},"532":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"54":{"tf":2.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":2.23606797749979},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"590":{"tf":1.0},"592":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.4142135623730951},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":2.449489742783178},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":2.6457513110645907},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":2.0},"623":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":2.23606797749979},"646":{"tf":1.4142135623730951},"649":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"672":{"tf":1.0},"673":{"tf":2.449489742783178},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.4142135623730951},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"700":{"tf":2.23606797749979},"701":{"tf":1.0},"702":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":2.23606797749979},"709":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":3.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":2.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":2.23606797749979},"749":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"750":{"tf":1.0},"751":{"tf":2.0},"752":{"tf":2.0},"753":{"tf":2.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.7320508075688772},"756":{"tf":2.0},"757":{"tf":2.23606797749979},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"76":{"tf":2.23606797749979},"760":{"tf":1.0},"761":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"765":{"tf":2.0},"766":{"tf":2.0},"767":{"tf":2.0},"768":{"tf":1.7320508075688772},"769":{"tf":2.0},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":2.6457513110645907},"773":{"tf":1.7320508075688772},"774":{"tf":1.0},"778":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":2.0},"79":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.1622776601683795},"82":{"tf":3.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"828":{"tf":1.4142135623730951},"829":{"tf":2.8284271247461903},"830":{"tf":1.0},"831":{"tf":2.0},"832":{"tf":1.7320508075688772},"833":{"tf":2.6457513110645907},"834":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":2.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"84":{"tf":2.0},"840":{"tf":1.7320508075688772},"841":{"tf":1.4142135623730951},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":2.0},"846":{"tf":1.0},"847":{"tf":2.8284271247461903},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.7320508075688772},"863":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"879":{"tf":1.4142135623730951},"88":{"tf":4.58257569495584},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.7320508075688772},"896":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.4142135623730951},"913":{"tf":2.0},"915":{"tf":1.0},"92":{"tf":1.7320508075688772},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":2.0},"949":{"tf":2.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"953":{"tf":2.0},"956":{"tf":1.0},"96":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":2.0},"970":{"tf":1.0},"976":{"tf":2.449489742783178},"978":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":2.0},"983":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"989":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":2.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}},"i":{"d":{"df":40,"docs":{"1045":{"tf":1.0},"1130":{"tf":1.0},"1186":{"tf":1.0},"1196":{"tf":1.0},"1226":{"tf":1.0},"1242":{"tf":1.0},"1245":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1361":{"tf":1.4142135623730951},"138":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1486":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"791":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.449489742783178},"913":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.4142135623730951},"990":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{":":{"'":{")":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.0},"611":{"tf":1.7320508075688772}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"518":{"tf":1.0},"770":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0},"1399":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"615":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"990":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.4142135623730951},"984":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"1143":{"tf":1.0},"1242":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"883":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1486":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1328":{"tf":2.0},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.0},"219":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"702":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":116,"docs":{"1":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1143":{"tf":2.6457513110645907},"1144":{"tf":2.23606797749979},"1145":{"tf":2.0},"118":{"tf":1.0},"1194":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.8284271247461903},"1329":{"tf":3.7416573867739413},"1330":{"tf":3.4641016151377544},"1360":{"tf":1.4142135623730951},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":1.4142135623730951},"138":{"tf":3.0},"1383":{"tf":1.4142135623730951},"1384":{"tf":2.449489742783178},"1385":{"tf":2.23606797749979},"1386":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.0},"142":{"tf":2.8284271247461903},"1423":{"tf":3.3166247903554},"145":{"tf":1.4142135623730951},"1483":{"tf":1.4142135623730951},"1484":{"tf":2.449489742783178},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1487":{"tf":2.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":2.0},"214":{"tf":2.449489742783178},"215":{"tf":1.7320508075688772},"216":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"225":{"tf":2.0},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"256":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"523":{"tf":2.449489742783178},"524":{"tf":1.7320508075688772},"525":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":2.23606797749979},"55":{"tf":2.449489742783178},"639":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"641":{"tf":2.0},"642":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":2.449489742783178},"701":{"tf":1.7320508075688772},"702":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":2.23606797749979},"786":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"852":{"tf":1.0},"858":{"tf":1.7320508075688772},"875":{"tf":1.0},"88":{"tf":3.872983346207417},"886":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"952":{"tf":1.7320508075688772},"953":{"tf":1.7320508075688772},"954":{"tf":1.7320508075688772},"970":{"tf":1.0},"980":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.7320508075688772},"524":{"tf":1.7320508075688772},"525":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"548":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1226":{"tf":1.0},"13":{"tf":1.0},"1332":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":2.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.4142135623730951},"663":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"76":{"tf":1.0},"765":{"tf":1.7320508075688772},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"938":{"tf":1.0},"976":{"tf":1.0}},"r":{"df":2,"docs":{"1060":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"1003":{"tf":1.0},"1250":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"1472":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":101,"docs":{"1010":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":2.0},"1015":{"tf":2.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1040":{"tf":1.7320508075688772},"1041":{"tf":1.4142135623730951},"1042":{"tf":1.0},"1043":{"tf":1.7320508075688772},"1044":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1047":{"tf":2.449489742783178},"1048":{"tf":1.4142135623730951},"1049":{"tf":1.0},"1050":{"tf":2.6457513110645907},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1227":{"tf":1.0},"1230":{"tf":1.0},"1245":{"tf":1.0},"1254":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":2.6457513110645907},"1472":{"tf":2.23606797749979},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.0},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"159":{"tf":2.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"334":{"tf":1.0},"341":{"tf":1.4142135623730951},"345":{"tf":1.0},"375":{"tf":1.0},"404":{"tf":1.0},"418":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"572":{"tf":1.0},"608":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.4142135623730951},"959":{"tf":1.7320508075688772},"960":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"984":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.7320508075688772}}}}}}}}},"i":{"a":{"df":1,"docs":{"1343":{"tf":2.0}}},"c":{"df":1,"docs":{"1305":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"w":{"df":19,"docs":{"1054":{"tf":1.0},"1071":{"tf":1.0},"1108":{"tf":1.0},"1209":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"446":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"934":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"978":{"tf":1.4142135623730951},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1447":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1485":{"tf":2.23606797749979},"43":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}},"n":{"df":3,"docs":{"112":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1085":{"tf":1.0},"1151":{"tf":1.0},"1163":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1455":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"477":{"tf":1.0},"509":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"951":{"tf":1.0},"964":{"tf":1.0},"970":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1451":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"1111":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"1480":{"tf":1.0},"198":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.0},"519":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"182":{"tf":1.0},"35":{"tf":2.0},"49":{"tf":1.0},"581":{"tf":1.0},"765":{"tf":1.0}}},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.0}}},"z":{"df":7,"docs":{"1256":{"tf":1.0},"156":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"412":{"tf":1.0},"531":{"tf":1.4142135623730951},"533":{"tf":1.0},"646":{"tf":1.0},"708":{"tf":1.4142135623730951},"710":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1194":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"528":{"tf":1.0},"705":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"414":{"tf":1.0},"648":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":213,"docs":{"1042":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"1172":{"tf":2.0},"1179":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1276":{"tf":1.0},"1290":{"tf":1.0},"1355":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":2.23606797749979},"1402":{"tf":2.23606797749979},"1437":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":2.0},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"486":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":2.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"592":{"tf":1.0},"593":{"tf":2.0},"594":{"tf":1.7320508075688772},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.7320508075688772},"65":{"tf":1.0},"662":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"690":{"tf":2.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"810":{"tf":1.0},"844":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1276":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1276":{"tf":1.0},"486":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"434":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1149":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1355":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"1267":{"tf":1.0},"1526":{"tf":1.0},"483":{"tf":1.0},"493":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":4,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"507":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":5,"docs":{"1148":{"tf":1.0},"1355":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1281":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1526":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1526":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":2.0},"1287":{"tf":1.4142135623730951},"1288":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"479":{"tf":2.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"509":{"tf":2.0},"510":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":33,"docs":{"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"348":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"186":{"tf":1.0},"317":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1082":{"tf":1.4142135623730951},"892":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1279":{"tf":1.0},"1358":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"186":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"1032":{"tf":1.0},"1086":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"257":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.4142135623730951},"548":{"tf":1.0},"576":{"tf":1.4142135623730951},"593":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}},"df":11,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1482":{"tf":1.0},"192":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"501":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"1042":{"tf":1.0},"1137":{"tf":1.0},"1295":{"tf":1.0},"21":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1116":{"tf":1.4142135623730951},"1194":{"tf":1.0},"204":{"tf":1.0}}}}},"v":{"df":12,"docs":{"11":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"288":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"617":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"115":{"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":10,"docs":{"365":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"599":{"tf":1.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"287":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"109":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1294":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"549":{"tf":1.0},"729":{"tf":1.4142135623730951},"828":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"866":{"tf":1.0},"873":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1186":{"tf":1.0},"1345":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"676":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"956":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"886":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":1,"docs":{"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"s":{"3":{":":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1071":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.7320508075688772},"1130":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"742":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"790":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1197":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1237":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"575":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1151":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1217":{"tf":1.0},"1392":{"tf":2.6457513110645907},"684":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"420":{"tf":1.0},"654":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"808":{"tf":1.0},"816":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1336":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":59,"docs":{"1148":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1301":{"tf":2.23606797749979},"1305":{"tf":2.23606797749979},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.23606797749979},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1378":{"tf":2.23606797749979},"1382":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.6457513110645907},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0},"383":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"1148":{"tf":1.0},"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":47,"docs":{"1059":{"tf":1.0},"1067":{"tf":1.0},"1323":{"tf":2.8284271247461903},"134":{"tf":2.449489742783178},"135":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.449489742783178},"1421":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":2.6457513110645907},"1432":{"tf":1.0},"1433":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"206":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"371":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"395":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"461":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":2.449489742783178},"522":{"tf":2.23606797749979},"605":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"629":{"tf":1.7320508075688772},"635":{"tf":1.7320508075688772},"65":{"tf":1.0},"696":{"tf":2.0},"699":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.7320508075688772},"797":{"tf":1.7320508075688772},"880":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1326":{"tf":1.0},"194":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"395":{"tf":1.0},"629":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":8,"docs":{"1032":{"tf":1.0},"1254":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.7320508075688772},"973":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"440":{"tf":1.0},"946":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1194":{"tf":1.0},"1208":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0},"62":{"tf":1.0},"901":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}}}}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":32,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1288":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1403":{"tf":2.8284271247461903},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"423":{"tf":1.0},"502":{"tf":1.0},"60":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"845":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":2.23606797749979},"942":{"tf":1.0},"951":{"tf":1.4142135623730951},"966":{"tf":1.7320508075688772},"969":{"tf":2.0},"988":{"tf":1.0},"995":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":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":{"1403":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":35,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1206":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1442":{"tf":2.449489742783178},"1455":{"tf":1.0},"147":{"tf":1.0},"1474":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"503":{"tf":2.23606797749979},"6":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.7320508075688772},"669":{"tf":1.0},"679":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"816":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"944":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1194":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1486":{"tf":1.4142135623730951},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"783":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"899":{"tf":1.0},"995":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1109":{"tf":1.0}}}}}}}}},"df":1,"docs":{"181":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1295":{"tf":1.0},"1432":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.0},"495":{"tf":1.0},"73":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0}}}},"df":3,"docs":{"255":{"tf":1.0},"765":{"tf":1.0},"916":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":20,"docs":{"1055":{"tf":1.4142135623730951},"1068":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1092":{"tf":1.0},"1220":{"tf":1.0},"1451":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.7320508075688772},"381":{"tf":1.0},"427":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"847":{"tf":1.0},"916":{"tf":1.0}}}}},"df":1,"docs":{"1097":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1287":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":71,"docs":{"1148":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":2.449489742783178},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.3166247903554},"1305":{"tf":2.6457513110645907},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.6457513110645907},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1359":{"tf":2.23606797749979},"1361":{"tf":1.7320508075688772},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":2.23606797749979},"1369":{"tf":2.449489742783178},"1378":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1399":{"tf":3.7416573867739413},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.3166247903554},"1405":{"tf":2.23606797749979},"1515":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"458":{"tf":2.0},"459":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":2.6457513110645907},"477":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}},"r":{"df":3,"docs":{"981":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0}}}},"df":23,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":2.0},"1065":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":2.449489742783178},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.7320508075688772},"1512":{"tf":2.23606797749979},"1513":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"255":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0},"893":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1066":{"tf":1.0},"1454":{"tf":1.0},"1512":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}}}}}},"s":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1452":{"tf":1.0},"1454":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"64":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"1197":{"tf":1.0},"1422":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0},"805":{"tf":1.0},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":83,"docs":{"1054":{"tf":2.0},"1055":{"tf":2.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1079":{"tf":1.0},"108":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1090":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"113":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.7320508075688772},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.6457513110645907},"1489":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1528":{"tf":1.0},"1531":{"tf":1.0},"285":{"tf":1.7320508075688772},"289":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"536":{"tf":1.0},"564":{"tf":1.4142135623730951},"722":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"901":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1011":{"tf":1.0},"1061":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.7320508075688772},"1098":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1510":{"tf":1.0},"1520":{"tf":1.0},"171":{"tf":1.4142135623730951},"974":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1503":{"tf":1.0},"711":{"tf":1.0},"940":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1312":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1119":{"tf":1.0}}}}}},"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"760":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":30,"docs":{"1021":{"tf":1.0},"1045":{"tf":1.0},"1091":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"129":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"404":{"tf":1.0},"45":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"53":{"tf":1.4142135623730951},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":71,"docs":{"1013":{"tf":1.0},"1015":{"tf":1.0},"1029":{"tf":1.0},"1077":{"tf":1.0},"110":{"tf":1.0},"1108":{"tf":1.0},"1119":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1192":{"tf":1.0},"1196":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1482":{"tf":1.0},"16":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"607":{"tf":1.0},"615":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"739":{"tf":1.0},"751":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"925":{"tf":1.0},"943":{"tf":1.4142135623730951},"960":{"tf":1.0},"980":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":121,"docs":{"107":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1334":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1373":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"327":{"tf":1.0},"334":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"519":{"tf":1.0},"547":{"tf":1.0},"555":{"tf":1.0},"576":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.7320508075688772},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"696":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"75":{"tf":1.4142135623730951},"758":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":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":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1315":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1338":{"tf":2.0},"1389":{"tf":1.4142135623730951},"1390":{"tf":2.0},"206":{"tf":1.0},"237":{"tf":1.0},"311":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1033":{"tf":1.0}}}}}},"df":30,"docs":{"1145":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1206":{"tf":1.0},"1247":{"tf":1.7320508075688772},"1248":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1355":{"tf":2.6457513110645907},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.0},"1361":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1384":{"tf":1.0},"226":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"426":{"tf":2.0},"427":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.0},"883":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"899":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"173":{"tf":1.0},"21":{"tf":1.0},"439":{"tf":1.0},"54":{"tf":1.0}}}}},"df":1,"docs":{"804":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":36,"docs":{"1140":{"tf":1.0},"1161":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1292":{"tf":1.0},"1310":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.4142135623730951},"249":{"tf":1.0},"30":{"tf":1.0},"361":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"595":{"tf":1.0},"673":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"1310":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"856":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"804":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1215":{"tf":1.0},"1453":{"tf":1.4142135623730951},"243":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1077":{"tf":1.0},"1295":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"831":{"tf":1.0},"863":{"tf":1.0}}}},"w":{"df":4,"docs":{"1295":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"1042":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1161":{"tf":1.0},"36":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1009":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1283":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1452":{"tf":2.0},"168":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"433":{"tf":1.0},"681":{"tf":1.4142135623730951},"69":{"tf":1.0},"908":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"961":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1306":{"tf":1.0},"250":{"tf":1.4142135623730951},"725":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1173":{"tf":1.0},"1417":{"tf":1.0},"1456":{"tf":1.7320508075688772},"1502":{"tf":1.0},"1516":{"tf":1.4142135623730951},"1518":{"tf":1.4142135623730951},"156":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.4142135623730951},"934":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1083":{"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":1,"docs":{"1182":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1330":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1346":{"tf":1.0},"255":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"108":{"tf":1.0},"353":{"tf":1.7320508075688772},"585":{"tf":1.7320508075688772}}}}},"d":{"df":19,"docs":{"1194":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1384":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"321":{"tf":1.0},"327":{"tf":1.0},"54":{"tf":1.0},"548":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"753":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"978":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1305":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"879":{"tf":1.0},"883":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"1375":{"tf":1.0},"1404":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":23,"docs":{"1129":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"788":{"tf":1.0},"811":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1222":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"h":{"df":22,"docs":{"1007":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1036":{"tf":1.0},"1135":{"tf":1.0},"1145":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.4142135623730951},"125":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"15":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"451":{"tf":1.0},"530":{"tf":1.0},"707":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"88":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":12,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1154":{"tf":1.0},"779":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1080":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"473":{"tf":2.0},"818":{"tf":1.0},"940":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1035":{"tf":1.0},"35":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"837":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"1451":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1512":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1067":{"tf":1.7320508075688772},"1071":{"tf":1.4142135623730951},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"381":{"tf":1.0},"404":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"19":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":24,"docs":{"1":{"tf":1.0},"1078":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":2.0},"1262":{"tf":1.0},"1296":{"tf":1.0},"1305":{"tf":1.0},"1409":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"453":{"tf":1.0},"481":{"tf":1.0},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"70":{"tf":1.0},"758":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":20,"docs":{"1069":{"tf":1.0},"1075":{"tf":1.0},"1136":{"tf":1.0},"1207":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"304":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"5":{"tf":1.0},"587":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"1015":{"tf":1.7320508075688772},"1018":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1024":{"tf":1.0},"1080":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"277":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1214":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"585":{"tf":1.0},"871":{"tf":1.0},"950":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"761":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1403":{"tf":1.0},"31":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":1,"docs":{"1379":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"474":{"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":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"1148":{"tf":1.0},"1174":{"tf":1.0},"1185":{"tf":1.7320508075688772},"1195":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"361":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"517":{"tf":1.0},"595":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"694":{"tf":1.0},"726":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}}},"df":1,"docs":{"1356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"911":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"58":{"tf":1.0},"911":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"1083":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1418":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"1213":{"tf":1.0},"1234":{"tf":2.0},"1244":{"tf":1.0},"760":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1106":{"tf":1.0},"249":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"258":{"tf":1.0},"292":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1154":{"tf":3.0},"1165":{"tf":2.6457513110645907},"1296":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":30,"docs":{"1016":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1026":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1038":{"tf":1.4142135623730951},"1042":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"1451":{"tf":1.0},"182":{"tf":1.0},"473":{"tf":2.0},"925":{"tf":1.0},"93":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":8,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"1339":{"tf":1.0},"1480":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"739":{"tf":1.4142135623730951},"792":{"tf":1.0},"836":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":3,"docs":{"51":{"tf":1.0},"730":{"tf":1.4142135623730951},"792":{"tf":2.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":31,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"104":{"tf":1.0},"1320":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":4,"docs":{"1095":{"tf":1.0},"552":{"tf":1.0},"586":{"tf":1.7320508075688772},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"261":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"930":{"tf":1.4142135623730951},"939":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"34":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.7320508075688772},"928":{"tf":1.7320508075688772},"929":{"tf":2.0},"939":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1403":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1194":{"tf":1.0},"1212":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.0},"61":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"929":{"tf":1.0},"972":{"tf":1.4142135623730951},"988":{"tf":2.0}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"1011":{"tf":1.0},"1219":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1456":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1509":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"664":{"tf":1.0},"780":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"940":{"tf":1.0},"942":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1174":{"tf":1.0},"59":{"tf":1.0},"951":{"tf":1.0},"973":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1137":{"tf":1.0},"1221":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.0},"620":{"tf":1.0},"763":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1021":{"tf":1.0},"82":{"tf":1.4142135623730951},"925":{"tf":2.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1250":{"tf":1.0}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"1144":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":76,"docs":{"1109":{"tf":1.0},"1166":{"tf":1.0},"1200":{"tf":1.0},"1208":{"tf":1.0},"1260":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1378":{"tf":1.0},"138":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"142":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1494":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"188":{"tf":1.0},"205":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"408":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"603":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"642":{"tf":1.7320508075688772},"654":{"tf":1.0},"702":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"96":{"tf":1.0},"970":{"tf":1.0},"979":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1421":{"tf":1.0},"1433":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"871":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1105":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"682":{"tf":1.0},"908":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"960":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"24":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"i":{"/":{"c":{"d":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":11,"docs":{"936":{"tf":2.0},"937":{"tf":1.7320508075688772},"938":{"tf":1.4142135623730951},"939":{"tf":2.0},"941":{"tf":2.0},"942":{"tf":2.0},"975":{"tf":1.4142135623730951},"976":{"tf":2.23606797749979},"977":{"tf":1.7320508075688772},"978":{"tf":1.4142135623730951},"979":{"tf":1.0}}}},"p":{"df":1,"docs":{"108":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":36,"docs":{"1152":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.0},"429":{"tf":1.0},"498":{"tf":1.0},"516":{"tf":1.7320508075688772},"541":{"tf":1.0},"588":{"tf":1.0},"593":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.4142135623730951},"619":{"tf":1.0},"693":{"tf":1.7320508075688772},"711":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"969":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"960":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1018":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"751":{"tf":1.0},"757":{"tf":1.0}},"i":{"df":3,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"753":{"tf":1.0}}}}}}},"u":{"d":{"df":5,"docs":{"831":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"1168":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}}},"r":{"df":8,"docs":{"170":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"929":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":117,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"1182":{"tf":1.0},"119":{"tf":1.0},"1191":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.4142135623730951},"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},"1317":{"tf":2.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.0},"143":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1501":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.7320508075688772},"359":{"tf":1.0},"4":{"tf":1.7320508075688772},"433":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"925":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.4142135623730951},"427":{"tf":1.0},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"667":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":44,"docs":{"1149":{"tf":1.0},"1152":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1189":{"tf":2.0},"1202":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1265":{"tf":1.0},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1359":{"tf":2.8284271247461903},"1379":{"tf":1.4142135623730951},"1382":{"tf":2.449489742783178},"1493":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"427":{"tf":2.8284271247461903},"429":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":2.8284271247461903},"447":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"478":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"667":{"tf":2.23606797749979},"670":{"tf":1.7320508075688772},"672":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":2.23606797749979},"719":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"446":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"934":{"tf":1.4142135623730951},"935":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"554":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"u":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1064":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1439":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1310":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.0}}}}},"df":76,"docs":{"1154":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"1457":{"tf":2.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"320":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.0},"679":{"tf":1.0},"711":{"tf":1.0},"748":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.7320508075688772},"822":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}}},"df":1,"docs":{"858":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1076":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"88":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1304":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.0},"213":{"tf":1.0},"786":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"302":{"tf":1.7320508075688772},"311":{"tf":2.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1396":{"tf":1.0},"152":{"tf":1.0},"345":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"572":{"tf":1.0},"657":{"tf":1.0},"753":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"479":{"tf":1.0},"509":{"tf":1.0},"996":{"tf":2.0}}},"m":{"a":{"df":3,"docs":{"138":{"tf":1.0},"1436":{"tf":1.0},"1479":{"tf":1.0}},"n":{"d":{"df":60,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"1229":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1250":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1359":{"tf":1.0},"138":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1407":{"tf":2.23606797749979},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.7320508075688772},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.7320508075688772},"1415":{"tf":1.0},"1416":{"tf":1.7320508075688772},"1417":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":2.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1458":{"tf":1.0},"1501":{"tf":1.0},"1524":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"255":{"tf":1.0},"4":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"67":{"tf":1.0},"979":{"tf":1.4142135623730951},"996":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":26,"docs":{"1084":{"tf":1.0},"1194":{"tf":2.0},"169":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"747":{"tf":1.0},"833":{"tf":1.0},"852":{"tf":2.449489742783178},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.7320508075688772},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"858":{"tf":1.7320508075688772},"859":{"tf":1.4142135623730951},"860":{"tf":2.8284271247461903},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.7320508075688772},"875":{"tf":1.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1200":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1317":{"tf":1.0},"140":{"tf":1.4142135623730951},"1424":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1502":{"tf":1.0},"1528":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"303":{"tf":1.0},"350":{"tf":1.4142135623730951},"357":{"tf":1.0},"451":{"tf":1.4142135623730951},"547":{"tf":1.0},"582":{"tf":1.4142135623730951},"591":{"tf":1.0},"678":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"727":{"tf":1.0},"741":{"tf":1.0},"925":{"tf":1.0},"93":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":28,"docs":{"0":{"tf":2.0},"1020":{"tf":1.0},"1042":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"422":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"663":{"tf":1.0},"88":{"tf":1.0},"910":{"tf":1.0},"927":{"tf":1.0},"955":{"tf":1.0},"964":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1328":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"753":{"tf":1.0}}}},"r":{"df":3,"docs":{"231":{"tf":1.0},"922":{"tf":1.0},"944":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1048":{"tf":1.4142135623730951},"973":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"1023":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1292":{"tf":1.0},"1432":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.7320508075688772},"1528":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"25":{"tf":1.0},"353":{"tf":1.7320508075688772},"451":{"tf":1.0},"585":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"711":{"tf":1.0},"940":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"856":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1296":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":106,"docs":{"11":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1256":{"tf":1.0},"1268":{"tf":1.0},"1312":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"1347":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1370":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":2.0},"1400":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1458":{"tf":1.0},"1487":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"370":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"441":{"tf":1.4142135623730951},"452":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"480":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"604":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"619":{"tf":1.0},"62":{"tf":1.0},"654":{"tf":1.4142135623730951},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"765":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"820":{"tf":1.0},"825":{"tf":1.4142135623730951},"826":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"83":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0},"902":{"tf":1.4142135623730951},"970":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":12,"docs":{"1086":{"tf":1.0},"1089":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.0},"1297":{"tf":1.0},"17":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"593":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"1010":{"tf":1.0},"1026":{"tf":1.0},"1033":{"tf":1.0},"11":{"tf":1.0},"1166":{"tf":1.0},"1421":{"tf":1.4142135623730951},"188":{"tf":1.0},"37":{"tf":1.0},"62":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"985":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1079":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"51":{"tf":1.4142135623730951},"729":{"tf":1.0},"733":{"tf":1.4142135623730951},"740":{"tf":1.0},"753":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"1161":{"tf":1.0},"741":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"501":{"tf":1.4142135623730951},"729":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"0":{"tf":1.0},"1173":{"tf":1.0},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"290":{"tf":1.0},"60":{"tf":1.0},"898":{"tf":1.0},"910":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.0},"1010":{"tf":1.0},"1052":{"tf":2.0},"918":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":2.23606797749979},"996":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1036":{"tf":1.0},"1254":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"789":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":35,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"552":{"tf":2.0},"579":{"tf":2.23606797749979},"586":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1119":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1384":{"tf":1.0},"54":{"tf":1.0},"757":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0}}}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1051":{"tf":1.0},"1129":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1047":{"tf":1.0},"139":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.4142135623730951},"661":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1140":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.7320508075688772},"595":{"tf":1.0},"611":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"112":{"tf":1.0},"1140":{"tf":2.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1413":{"tf":2.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1428":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1460":{"tf":1.0},"1467":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"150":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"378":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"485":{"tf":1.0},"544":{"tf":1.0},"595":{"tf":1.0},"611":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.4142135623730951},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":2.0},"892":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":2.23606797749979},"925":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":47,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1301":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1495":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"378":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"518":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":219,"docs":{"1019":{"tf":1.4142135623730951},"1025":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1056":{"tf":1.7320508075688772},"1058":{"tf":1.4142135623730951},"1065":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1074":{"tf":1.4142135623730951},"1079":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1139":{"tf":1.0},"116":{"tf":1.0},"1168":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1189":{"tf":1.4142135623730951},"120":{"tf":1.0},"1206":{"tf":1.0},"1215":{"tf":1.4142135623730951},"122":{"tf":1.0},"1220":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1227":{"tf":1.4142135623730951},"1228":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"1277":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1296":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.4142135623730951},"139":{"tf":1.0},"1394":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1430":{"tf":1.0},"1434":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1437":{"tf":1.7320508075688772},"1438":{"tf":2.23606797749979},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1441":{"tf":2.449489742783178},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.7320508075688772},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.7320508075688772},"1447":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":2.23606797749979},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1460":{"tf":2.23606797749979},"1461":{"tf":2.0},"1467":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1489":{"tf":1.0},"149":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"150":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"182":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"337":{"tf":1.0},"361":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"447":{"tf":1.0},"462":{"tf":1.4142135623730951},"478":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"561":{"tf":1.7320508075688772},"562":{"tf":1.7320508075688772},"563":{"tf":1.0},"564":{"tf":1.0},"595":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"71":{"tf":1.0},"712":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.7320508075688772},"737":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"769":{"tf":1.0},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"829":{"tf":1.0},"833":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"887":{"tf":2.0},"888":{"tf":1.0},"889":{"tf":1.4142135623730951},"890":{"tf":1.0},"891":{"tf":1.7320508075688772},"892":{"tf":1.7320508075688772},"893":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"898":{"tf":1.7320508075688772},"899":{"tf":1.7320508075688772},"900":{"tf":1.7320508075688772},"901":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"904":{"tf":1.7320508075688772},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"969":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"1012":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1475":{"tf":1.0},"318":{"tf":1.0},"824":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1082":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1522":{"tf":1.0},"510":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1480":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1084":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1179":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":2.449489742783178},"318":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"678":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"30":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"954":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1051":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1194":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"37":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1005":{"tf":1.4142135623730951},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.4142135623730951},"1039":{"tf":1.4142135623730951},"1049":{"tf":1.4142135623730951},"1062":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1087":{"tf":1.4142135623730951},"1104":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"320":{"tf":1.0},"444":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"971":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1109":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"874":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":3,"docs":{"1358":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"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":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.0},"327":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"419":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}}},"j":{"a":{"c":{"df":4,"docs":{"1282":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"546":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1127":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"384":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"`":{"a":{"d":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"518":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":7,"docs":{"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"408":{"tf":1.0},"420":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"525":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"418":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":3,"docs":{"1365":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":8,"docs":{"1351":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"349":{"tf":1.4142135623730951},"397":{"tf":1.0},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"327":{"tf":1.0},"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"461":{"tf":1.0},"465":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"525":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"h":{"a":{"df":1,"docs":{"535":{"tf":1.0}},"r":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1351":{"tf":1.0},"1362":{"tf":1.0},"403":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}}}},"df":3,"docs":{"391":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1362":{"tf":1.0},"1399":{"tf":1.0},"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"420":{"tf":1.7320508075688772},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"400":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"458":{"tf":1.0},"529":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"770":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"358":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1355":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}}},"t":{"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":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"376":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1218":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"1352":{"tf":2.0},"1363":{"tf":2.0},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"973":{"tf":1.0}}}}},"df":171,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1140":{"tf":2.449489742783178},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1273":{"tf":2.23606797749979},"1276":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.4641016151377544},"1304":{"tf":1.0},"1305":{"tf":3.1622776601683795},"1306":{"tf":2.6457513110645907},"1307":{"tf":2.23606797749979},"1310":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1315":{"tf":2.0},"1349":{"tf":1.0},"1351":{"tf":2.0},"1352":{"tf":2.0},"1353":{"tf":2.23606797749979},"1355":{"tf":2.449489742783178},"1356":{"tf":2.6457513110645907},"1358":{"tf":2.0},"1359":{"tf":2.6457513110645907},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":2.0},"1365":{"tf":3.7416573867739413},"1367":{"tf":1.7320508075688772},"1369":{"tf":3.7416573867739413},"1399":{"tf":4.0},"1401":{"tf":3.872983346207417},"1403":{"tf":4.898979485566356},"1405":{"tf":3.3166247903554},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1522":{"tf":3.4641016151377544},"1524":{"tf":2.23606797749979},"1526":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":2.0},"358":{"tf":2.0},"361":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":3.1622776601683795},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":2.6457513110645907},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"443":{"tf":2.449489742783178},"458":{"tf":2.449489742783178},"459":{"tf":2.23606797749979},"461":{"tf":1.7320508075688772},"463":{"tf":2.23606797749979},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":2.449489742783178},"477":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"507":{"tf":2.449489742783178},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"770":{"tf":1.7320508075688772},"772":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"9":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1121":{"tf":1.4142135623730951},"51":{"tf":1.0},"746":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1152":{"tf":1.0},"1399":{"tf":1.0},"517":{"tf":1.4142135623730951},"541":{"tf":1.0},"694":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"766":{"tf":1.4142135623730951}}}},"m":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1332":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.7320508075688772},"170":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"733":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.7320508075688772},"757":{"tf":1.0},"761":{"tf":1.7320508075688772},"762":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1186":{"tf":1.0},"1422":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"185":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"489":{"tf":1.0},"529":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"66":{"tf":1.0},"706":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"836":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"950":{"tf":1.7320508075688772},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"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":{"1270":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":121,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1091":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":2.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":2.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"135":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"1374":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"167":{"tf":2.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"238":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.7320508075688772},"349":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"383":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"426":{"tf":1.0},"442":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.7320508075688772},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"601":{"tf":1.0},"605":{"tf":1.0},"614":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"725":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"780":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":2.0},"788":{"tf":2.0},"791":{"tf":1.7320508075688772},"792":{"tf":1.4142135623730951},"794":{"tf":2.0},"796":{"tf":2.0},"80":{"tf":1.7320508075688772},"831":{"tf":1.0},"836":{"tf":1.7320508075688772},"838":{"tf":2.0},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":3.0},"883":{"tf":1.0},"914":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"855":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":70,"docs":{"108":{"tf":1.0},"1173":{"tf":2.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.7320508075688772},"228":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":2.0},"53":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"700":{"tf":1.4142135623730951},"727":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":9,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"209":{"tf":1.0},"38":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"940":{"tf":1.0},"983":{"tf":1.0},"995":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1323":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"616":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"1130":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1213":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1330":{"tf":3.605551275463989},"1336":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.449489742783178},"1404":{"tf":1.0},"209":{"tf":2.23606797749979},"217":{"tf":1.0},"224":{"tf":1.4142135623730951},"276":{"tf":1.0},"406":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"728":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"1399":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"463":{"tf":1.0},"593":{"tf":1.0},"64":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"610":{"tf":1.0}}},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":22,"docs":{"1236":{"tf":1.0},"1256":{"tf":1.0},"47":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":2.449489742783178},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.7320508075688772},"883":{"tf":1.0},"884":{"tf":1.7320508075688772},"885":{"tf":1.7320508075688772},"886":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1261":{"tf":1.0},"172":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"1528":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"682":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.7320508075688772},"819":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":53,"docs":{"1447":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"292":{"tf":1.0},"329":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"692":{"tf":1.4142135623730951},"739":{"tf":1.0},"756":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"p":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1467":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1495":{"tf":1.0},"1528":{"tf":1.4142135623730951},"248":{"tf":1.0},"451":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1142":{"tf":1.0},"1493":{"tf":1.0},"1528":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1171":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1070":{"tf":1.0},"1102":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1083":{"tf":1.0},"1505":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1155":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1154":{"tf":2.8284271247461903},"1155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1153":{"tf":1.4142135623730951},"1154":{"tf":2.449489742783178},"1155":{"tf":2.0},"1156":{"tf":2.23606797749979},"1158":{"tf":1.0}}}},"df":12,"docs":{"1137":{"tf":1.0},"1219":{"tf":1.0},"1221":{"tf":1.0},"1298":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.4142135623730951},"620":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1510":{"tf":1.0},"1520":{"tf":1.0},"1530":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"1161":{"tf":1.0},"299":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":323,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1043":{"tf":1.0},"1047":{"tf":1.0},"1052":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1094":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"1124":{"tf":1.0},"1135":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"116":{"tf":1.0},"1161":{"tf":1.0},"1165":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.7320508075688772},"120":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"124":{"tf":2.0},"1242":{"tf":1.0},"127":{"tf":3.3166247903554},"1278":{"tf":1.0},"1300":{"tf":2.23606797749979},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1310":{"tf":2.0},"1318":{"tf":2.0},"132":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1323":{"tf":4.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":2.6457513110645907},"1330":{"tf":2.449489742783178},"1332":{"tf":3.0},"1336":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":3.3166247903554},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1346":{"tf":1.0},"1351":{"tf":2.0},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":2.23606797749979},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":2.0},"1378":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":2.23606797749979},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.449489742783178},"1405":{"tf":1.0},"141":{"tf":2.0},"1410":{"tf":1.0},"1419":{"tf":4.0},"142":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1425":{"tf":1.7320508075688772},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1467":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"148":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1487":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":2.449489742783178},"1500":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"1512":{"tf":1.0},"1515":{"tf":2.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1529":{"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.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"192":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"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":2.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"327":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.4142135623730951},"41":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.7320508075688772},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.7320508075688772},"587":{"tf":1.4142135623730951},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"61":{"tf":1.0},"622":{"tf":1.7320508075688772},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"640":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"71":{"tf":1.4142135623730951},"719":{"tf":1.0},"72":{"tf":2.8284271247461903},"721":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":2.23606797749979},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772},"748":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"768":{"tf":1.4142135623730951},"769":{"tf":1.0},"77":{"tf":2.6457513110645907},"771":{"tf":1.4142135623730951},"773":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.7320508075688772},"8":{"tf":2.0},"80":{"tf":2.23606797749979},"804":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":3.3166247903554},"881":{"tf":1.0},"882":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.4142135623730951},"921":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"845":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1361":{"tf":1.4142135623730951},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"332":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"515":{"tf":1.0},"536":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.7320508075688772}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1151":{"tf":1.0},"507":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":18,"docs":{"1179":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":2.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"431":{"tf":2.0},"540":{"tf":1.0},"543":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":32,"docs":{"1043":{"tf":1.0},"1140":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"356":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"590":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.4142135623730951},"696":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.0},"924":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"782":{"tf":1.0}}},"df":4,"docs":{"1390":{"tf":1.4142135623730951},"28":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1072":{"tf":1.0},"1278":{"tf":1.0},"1355":{"tf":1.0},"1490":{"tf":1.4142135623730951},"339":{"tf":1.0},"491":{"tf":1.0},"566":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"29":{"tf":1.0},"47":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1042":{"tf":1.0},"1052":{"tf":1.0},"1194":{"tf":1.0},"1450":{"tf":1.0},"1515":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1099":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1404":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"857":{"tf":1.4142135623730951},"860":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}}}}},"u":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"1119":{"tf":1.0},"841":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":138,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":2.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"1049":{"tf":1.0},"1050":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1173":{"tf":1.0},"1176":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.0},"1212":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1237":{"tf":1.0},"1262":{"tf":1.0},"127":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1415":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1432":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1458":{"tf":1.0},"1463":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1531":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"341":{"tf":1.4142135623730951},"41":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"617":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"724":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.4142135623730951},"782":{"tf":1.0},"792":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"984":{"tf":1.7320508075688772},"995":{"tf":1.0}},"i":{"df":5,"docs":{"1010":{"tf":1.0},"1029":{"tf":1.0},"1254":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"984":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"1268":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"465":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"1302":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"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":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}},"df":46,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1003":{"tf":1.0},"1011":{"tf":1.0},"1115":{"tf":1.0},"1213":{"tf":1.0},"1220":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1298":{"tf":1.0},"1328":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1423":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"15":{"tf":1.0},"1510":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"219":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"407":{"tf":1.0},"524":{"tf":1.0},"57":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.4142135623730951},"606":{"tf":1.0},"641":{"tf":1.0},"701":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"808":{"tf":1.0},"827":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"996":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1017":{"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":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1212":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"822":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1302":{"tf":1.0},"696":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":102,"docs":{"1044":{"tf":1.4142135623730951},"1108":{"tf":2.0},"1109":{"tf":1.4142135623730951},"1110":{"tf":1.7320508075688772},"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1197":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":2.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":2.0},"1324":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"134":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1441":{"tf":1.0},"1456":{"tf":1.0},"1460":{"tf":1.0},"151":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"205":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":2.0},"284":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"392":{"tf":2.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"446":{"tf":1.0},"49":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"593":{"tf":1.0},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.4142135623730951},"72":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"742":{"tf":1.7320508075688772},"748":{"tf":1.4142135623730951},"759":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.8284271247461903},"833":{"tf":1.0},"98":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"f":{"df":2,"docs":{"1095":{"tf":1.0},"1097":{"tf":1.0}}}}},"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"294":{"tf":1.0},"298":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"845":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"238":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1140":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":36,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":2.449489742783178},"1078":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1087":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1295":{"tf":2.23606797749979},"1296":{"tf":1.7320508075688772},"1297":{"tf":2.449489742783178},"1298":{"tf":2.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1522":{"tf":2.0},"16":{"tf":1.0},"64":{"tf":1.0},"779":{"tf":1.0},"871":{"tf":1.0}},"e":{"(":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"595":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":114,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1067":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1093":{"tf":1.4142135623730951},"11":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":2.449489742783178},"1149":{"tf":1.0},"116":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.0},"1256":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1290":{"tf":1.0},"1298":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1422":{"tf":1.0},"1430":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"21":{"tf":1.0},"312":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"46":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"532":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"548":{"tf":1.0},"55":{"tf":1.4142135623730951},"575":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.7320508075688772},"638":{"tf":2.0},"648":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"709":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.0},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1304":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"df":31,"docs":{"1045":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"1339":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"739":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.7320508075688772},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"808":{"tf":1.4142135623730951},"816":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"648":{"tf":1.0},"705":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1399":{"tf":1.0},"1507":{"tf":1.0},"812":{"tf":1.0},"933":{"tf":1.0}}}},"df":23,"docs":{"132":{"tf":2.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1530":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"73":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"420":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.0},"856":{"tf":1.4142135623730951},"859":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":20,"docs":{"1191":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"1293":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1439":{"tf":1.0},"1444":{"tf":1.0},"1496":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"311":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"66":{"tf":1.0},"679":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"935":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"1041":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1441":{"tf":1.0},"21":{"tf":1.0},"308":{"tf":1.0},"901":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"1164":{"tf":1.0},"1166":{"tf":1.0},"1422":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"669":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1505":{"tf":1.0},"434":{"tf":1.0},"489":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"256":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":64,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1304":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1355":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.7320508075688772},"1440":{"tf":1.0},"1441":{"tf":1.0},"1449":{"tf":2.449489742783178},"1452":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.0},"294":{"tf":2.0},"298":{"tf":1.0},"338":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"418":{"tf":1.0},"473":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.4142135623730951},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"565":{"tf":1.4142135623730951},"595":{"tf":1.0},"600":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.4142135623730951},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"72":{"tf":1.0},"742":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"996":{"tf":1.0}}}}}},"df":46,"docs":{"1103":{"tf":1.0},"1120":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.7320508075688772},"1392":{"tf":2.23606797749979},"1394":{"tf":1.7320508075688772},"1402":{"tf":2.23606797749979},"1404":{"tf":3.3166247903554},"576":{"tf":1.0},"588":{"tf":2.0},"617":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":2.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1108":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1384":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"774":{"tf":1.0},"80":{"tf":1.0},"800":{"tf":1.4142135623730951},"804":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.0},"829":{"tf":1.0},"887":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"1120":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1453":{"tf":1.0},"151":{"tf":1.7320508075688772},"155":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"332":{"tf":1.0},"354":{"tf":1.0},"377":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"610":{"tf":1.4142135623730951},"72":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.4142135623730951},"759":{"tf":1.0},"833":{"tf":1.0},"938":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"1094":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1515":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"151":{"tf":1.0},"859":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"33":{"tf":1.0},"815":{"tf":1.0},"856":{"tf":1.0},"859":{"tf":1.0},"883":{"tf":1.0}},"i":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"246":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"116":{"tf":1.0},"1194":{"tf":1.0},"915":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"1011":{"tf":1.0},"106":{"tf":1.0},"1061":{"tf":1.0},"107":{"tf":1.0},"1087":{"tf":1.0},"1094":{"tf":1.0},"115":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"248":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"292":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"682":{"tf":1.0},"911":{"tf":1.0},"942":{"tf":1.0},"969":{"tf":1.0},"972":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":18,"docs":{"1054":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1175":{"tf":1.0},"1211":{"tf":1.0},"1215":{"tf":1.0},"1284":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"822":{"tf":1.0},"929":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1135":{"tf":1.0},"1449":{"tf":1.0},"1506":{"tf":1.7320508075688772},"1509":{"tf":1.0},"545":{"tf":2.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"950":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"1253":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.0},"925":{"tf":1.0}}}}},"s":{"c":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"1211":{"tf":1.0},"47":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":108,"docs":{"1000":{"tf":1.0},"1055":{"tf":1.0},"108":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1115":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"1310":{"tf":1.0},"132":{"tf":2.449489742783178},"1323":{"tf":1.0},"1332":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"138":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.7320508075688772},"288":{"tf":1.0},"292":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"532":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.0},"709":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":2.0},"752":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.449489742783178},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"80":{"tf":2.0},"803":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"847":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.7320508075688772},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":1.0},"946":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"0":{"tf":1.0},"13":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1304":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"357":{"tf":1.0},"591":{"tf":1.0},"63":{"tf":1.0},"852":{"tf":1.0},"910":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}}},"r":{"df":3,"docs":{"802":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":21,"docs":{"1437":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1440":{"tf":2.0},"1442":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"899":{"tf":2.449489742783178},"900":{"tf":2.449489742783178},"902":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1013":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1347":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1406":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"603":{"tf":1.0},"679":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"851":{"tf":1.0},"87":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"980":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"1336":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1163":{"tf":1.0},"1175":{"tf":1.0},"1263":{"tf":1.0},"1432":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"928":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1450":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"921":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1454":{"tf":1.0}}}}}},"df":5,"docs":{"115":{"tf":1.0},"1343":{"tf":1.0},"1441":{"tf":1.0},"348":{"tf":1.0},"930":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":28,"docs":{"1":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1089":{"tf":1.0},"1194":{"tf":1.0},"1343":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"250":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"391":{"tf":1.0},"420":{"tf":1.4142135623730951},"554":{"tf":1.7320508075688772},"573":{"tf":1.4142135623730951},"625":{"tf":1.0},"654":{"tf":1.4142135623730951},"758":{"tf":1.0},"928":{"tf":1.7320508075688772},"930":{"tf":1.0},"968":{"tf":1.4142135623730951},"976":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"t":{"df":1,"docs":{"979":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":18,"docs":{"1376":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.0},"1394":{"tf":2.0},"1402":{"tf":1.0},"1404":{"tf":2.8284271247461903},"599":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"617":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"725":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"706":{"tf":1.0},"707":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"1194":{"tf":1.0},"976":{"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":{"1014":{"tf":1.0},"1119":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"129":{"tf":1.0},"1298":{"tf":1.0},"1333":{"tf":1.0},"1343":{"tf":1.0},"1467":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.7320508075688772},"289":{"tf":1.0},"487":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1475":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1014":{"tf":1.0},"1028":{"tf":1.0},"24":{"tf":1.0},"760":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":27,"docs":{"1015":{"tf":1.4142135623730951},"1028":{"tf":2.0},"1029":{"tf":1.0},"1031":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.7320508075688772},"57":{"tf":1.0},"571":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":2,"docs":{"1340":{"tf":1.0},"585":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"302":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1091":{"tf":1.0},"1156":{"tf":1.0},"1297":{"tf":1.0},"185":{"tf":1.0},"239":{"tf":1.0},"494":{"tf":1.0},"676":{"tf":1.0},"684":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":67,"docs":{"1043":{"tf":1.0},"1059":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":2.0},"124":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.7320508075688772},"1340":{"tf":1.0},"136":{"tf":1.7320508075688772},"1369":{"tf":1.0},"137":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.7320508075688772},"1426":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1462":{"tf":2.23606797749979},"1464":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1528":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"210":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"43":{"tf":1.0},"536":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"79":{"tf":1.0},"831":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"924":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"128":{"tf":1.0},"1439":{"tf":1.0},"242":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":4,"docs":{"221":{"tf":1.0},"228":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1099":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1164":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}},"i":{"df":5,"docs":{"1212":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.4142135623730951},"374":{"tf":1.0},"607":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"884":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":6,"docs":{"1062":{"tf":1.0},"1101":{"tf":1.0},"1489":{"tf":1.0},"371":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"125":{"tf":1.0},"1498":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"836":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1062":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1208":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1452":{"tf":1.0},"214":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"935":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"256":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":90,"docs":{"1002":{"tf":1.7320508075688772},"1003":{"tf":1.4142135623730951},"1004":{"tf":2.0},"1006":{"tf":1.0},"1007":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1075":{"tf":1.0},"1196":{"tf":1.0},"1214":{"tf":1.0},"1235":{"tf":2.0},"1247":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1250":{"tf":2.0},"1251":{"tf":2.0},"1261":{"tf":1.4142135623730951},"128":{"tf":3.4641016151377544},"129":{"tf":2.8284271247461903},"130":{"tf":1.4142135623730951},"1333":{"tf":3.4641016151377544},"1334":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1473":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":2.449489742783178},"1477":{"tf":2.23606797749979},"165":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":1.0},"202":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":2.8284271247461903},"235":{"tf":2.8284271247461903},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"242":{"tf":3.605551275463989},"243":{"tf":3.7416573867739413},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.6457513110645907},"256":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":2.0},"773":{"tf":1.0},"896":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":2.0},"940":{"tf":1.0},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"95":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"976":{"tf":3.0},"977":{"tf":1.0},"979":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"f":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"937":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":28,"docs":{"1227":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1474":{"tf":2.449489742783178},"165":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":2.449489742783178},"246":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":2.23606797749979},"763":{"tf":1.0},"896":{"tf":1.4142135623730951},"918":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1361":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"522":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1351":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1352":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1342":{"tf":1.0},"139":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"179":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"1":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"2":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"588":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1302":{"tf":2.0},"657":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1094":{"tf":1.0},"288":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0},"725":{"tf":1.0},"846":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1143":{"tf":1.4142135623730951},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"df":83,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":2.0},"1151":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":1.0},"210":{"tf":1.4142135623730951},"224":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"419":{"tf":1.0},"45":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"581":{"tf":1.0},"605":{"tf":1.4142135623730951},"616":{"tf":1.0},"634":{"tf":1.4142135623730951},"653":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"723":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"845":{"tf":3.0},"911":{"tf":1.0},"921":{"tf":1.0},"997":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"682":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":13,"docs":{"1209":{"tf":1.0},"1421":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"379":{"tf":1.0},"397":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"612":{"tf":1.0},"631":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"847":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"134":{"tf":2.449489742783178},"1345":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"141":{"tf":1.0},"1419":{"tf":2.23606797749979},"142":{"tf":2.0},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"88":{"tf":2.0}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":2.449489742783178},"605":{"tf":1.0},"612":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"641":{"tf":1.0},"642":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":486,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"1007":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1027":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1086":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":2.0},"1103":{"tf":1.0},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"111":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"113":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":2.23606797749979},"1142":{"tf":2.23606797749979},"1143":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"122":{"tf":1.0},"1228":{"tf":1.0},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.7320508075688772},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1240":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1256":{"tf":1.0},"1260":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":2.23606797749979},"1298":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1301":{"tf":2.6457513110645907},"1302":{"tf":2.6457513110645907},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1307":{"tf":1.0},"1312":{"tf":2.6457513110645907},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1318":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1323":{"tf":3.7416573867739413},"1324":{"tf":3.4641016151377544},"1325":{"tf":2.8284271247461903},"1326":{"tf":2.449489742783178},"1328":{"tf":2.0},"1329":{"tf":2.0},"133":{"tf":1.4142135623730951},"1330":{"tf":3.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.7320508075688772},"1339":{"tf":1.4142135623730951},"134":{"tf":3.4641016151377544},"1340":{"tf":2.449489742783178},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":2.8284271247461903},"1350":{"tf":1.4142135623730951},"1351":{"tf":2.0},"1352":{"tf":2.23606797749979},"1353":{"tf":2.0},"1355":{"tf":1.0},"136":{"tf":3.3166247903554},"1361":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":1.0},"1369":{"tf":2.6457513110645907},"137":{"tf":2.23606797749979},"1370":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1374":{"tf":2.0},"1375":{"tf":2.23606797749979},"1376":{"tf":2.0},"1378":{"tf":1.4142135623730951},"138":{"tf":2.0},"1384":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":2.449489742783178},"139":{"tf":1.0},"1390":{"tf":3.1622776601683795},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1403":{"tf":3.0},"1404":{"tf":3.605551275463989},"1405":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"1415":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":4.123105625617661},"142":{"tf":2.23606797749979},"1420":{"tf":3.1622776601683795},"1421":{"tf":3.3166247903554},"1422":{"tf":3.3166247903554},"1423":{"tf":3.1622776601683795},"1425":{"tf":3.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"145":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.0},"1466":{"tf":1.0},"1469":{"tf":2.0},"147":{"tf":1.0},"1470":{"tf":2.0},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"1481":{"tf":2.23606797749979},"1482":{"tf":1.4142135623730951},"1484":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"149":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.7320508075688772},"1515":{"tf":2.0},"1517":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":1.0},"156":{"tf":2.23606797749979},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.7320508075688772},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.449489742783178},"210":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"276":{"tf":2.23606797749979},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":2.0},"287":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":2.6457513110645907},"372":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"452":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"480":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":2.449489742783178},"523":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"558":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.7320508075688772},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"593":{"tf":1.0},"599":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"604":{"tf":2.449489742783178},"605":{"tf":2.6457513110645907},"606":{"tf":1.4142135623730951},"61":{"tf":1.0},"612":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":2.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"634":{"tf":2.23606797749979},"645":{"tf":1.0},"646":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.4142135623730951},"656":{"tf":2.23606797749979},"657":{"tf":1.7320508075688772},"66":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"696":{"tf":2.6457513110645907},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"699":{"tf":2.449489742783178},"700":{"tf":1.7320508075688772},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.7320508075688772},"71":{"tf":1.0},"710":{"tf":1.7320508075688772},"724":{"tf":1.0},"725":{"tf":1.4142135623730951},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"741":{"tf":1.4142135623730951},"744":{"tf":2.0},"747":{"tf":2.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"751":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":2.0},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.4142135623730951},"780":{"tf":2.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"791":{"tf":2.23606797749979},"792":{"tf":1.0},"793":{"tf":1.7320508075688772},"794":{"tf":2.8284271247461903},"795":{"tf":1.7320508075688772},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"798":{"tf":1.4142135623730951},"799":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.7320508075688772},"831":{"tf":1.7320508075688772},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"84":{"tf":1.0},"843":{"tf":1.7320508075688772},"845":{"tf":1.4142135623730951},"847":{"tf":2.0},"849":{"tf":1.4142135623730951},"850":{"tf":1.7320508075688772},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":3.3166247903554},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"875":{"tf":1.0},"88":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":2.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"92":{"tf":1.0},"921":{"tf":2.23606797749979},"922":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"970":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.4142135623730951}},"i":{"d":{"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"371":{"tf":1.0},"379":{"tf":1.0}},"}":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"522":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"87":{"tf":1.0}}}}}}}}},"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"787":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0},"1309":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"407":{"tf":1.0},"408":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"852":{"tf":1.0}},"e":{"df":3,"docs":{"1404":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1456":{"tf":1.0},"1475":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"230":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"1109":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1239":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1259":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.0},"1333":{"tf":2.6457513110645907},"143":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"374":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.0},"833":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"1051":{"tf":1.0},"1088":{"tf":1.0},"1287":{"tf":1.0},"1323":{"tf":1.0},"1490":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0},"908":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"141":{"tf":1.0},"1456":{"tf":1.0},"72":{"tf":1.0},"811":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"942":{"tf":1.0},"976":{"tf":1.4142135623730951},"978":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1513":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"1325":{"tf":1.0},"1432":{"tf":1.0},"728":{"tf":1.0},"804":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"1474":{"tf":1.4142135623730951},"253":{"tf":1.0},"976":{"tf":1.0}},"s":{"df":1,"docs":{"985":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1336":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1399":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1161":{"tf":1.0},"1309":{"tf":1.0},"1476":{"tf":1.0},"249":{"tf":1.0},"769":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1122":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1507":{"tf":1.0},"303":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.4142135623730951},"527":{"tf":1.0},"602":{"tf":1.0},"608":{"tf":1.0},"704":{"tf":1.0},"836":{"tf":1.0},"870":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1046":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"b":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":48,"docs":{"1003":{"tf":1.0},"11":{"tf":1.0},"1144":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1189":{"tf":1.0},"1206":{"tf":1.0},"1246":{"tf":1.0},"1285":{"tf":1.0},"1310":{"tf":1.0},"1330":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"693":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"874":{"tf":1.0},"881":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"954":{"tf":1.4142135623730951},"968":{"tf":1.0},"97":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"1061":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"548":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1381":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"1148":{"tf":1.0},"1330":{"tf":2.6457513110645907},"1338":{"tf":2.0},"1339":{"tf":2.8284271247461903},"1340":{"tf":2.0},"1345":{"tf":2.6457513110645907},"1346":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.7320508075688772},"956":{"tf":1.0},"962":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}}}},"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":{"1076":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":87,"docs":{"1015":{"tf":1.4142135623730951},"1016":{"tf":2.0},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":2.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.7320508075688772},"389":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"569":{"tf":1.7320508075688772},"57":{"tf":1.0},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0}}}}},"df":22,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.4142135623730951},"135":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.8284271247461903},"1402":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1420":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"384":{"tf":1.7320508075688772},"554":{"tf":1.0},"618":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.449489742783178},"723":{"tf":2.449489742783178},"949":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"950":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1130":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1309":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1381":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"1112":{"tf":2.23606797749979},"1116":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1332":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"507":{"tf":2.0},"65":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"816":{"tf":1.0}}}}},"b":{"df":29,"docs":{"1323":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":2.0},"185":{"tf":2.23606797749979},"206":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.0},"366":{"tf":2.23606797749979},"371":{"tf":2.0},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":2.23606797749979},"522":{"tf":2.0},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"797":{"tf":1.0},"838":{"tf":1.7320508075688772},"850":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":5,"docs":{"1092":{"tf":1.0},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":5,"docs":{"1091":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":26,"docs":{"1091":{"tf":1.7320508075688772},"1092":{"tf":1.0},"1306":{"tf":1.0},"1326":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1422":{"tf":2.23606797749979},"1425":{"tf":1.0},"1433":{"tf":1.0},"1476":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.4142135623730951},"273":{"tf":1.0},"366":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"4":{"tf":1.0},"600":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.7320508075688772},"789":{"tf":2.0},"790":{"tf":1.7320508075688772},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1169":{"tf":1.0},"1200":{"tf":1.0},"261":{"tf":1.0},"451":{"tf":1.0},"517":{"tf":1.0},"694":{"tf":1.0},"911":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.0},"1263":{"tf":1.0},"1296":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"169":{"tf":1.0},"212":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"304":{"tf":1.0},"306":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"536":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"679":{"tf":1.4142135623730951},"728":{"tf":1.0},"874":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"90":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"984":{"tf":1.0},"989":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}},"o":{"d":{"df":22,"docs":{"1045":{"tf":1.0},"1091":{"tf":1.0},"129":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"186":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.0},"376":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"609":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1457":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"1051":{"tf":1.0},"1106":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1505":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1528":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.4142135623730951},"541":{"tf":1.0},"892":{"tf":1.4142135623730951},"911":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1448":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":13,"docs":{"1263":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"225":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"813":{"tf":1.0},"815":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1102":{"tf":1.0},"1106":{"tf":1.0},"1149":{"tf":1.7320508075688772},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":2.0},"1445":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"486":{"tf":1.0},"65":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"810":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1197":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"47":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.7320508075688772},"942":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"151":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1175":{"tf":1.0},"423":{"tf":1.0},"876":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"1":{"tf":1.0},"1109":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1421":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1465":{"tf":1.0},"1493":{"tf":1.0},"15":{"tf":1.0},"1528":{"tf":1.7320508075688772},"227":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"511":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"79":{"tf":1.0},"882":{"tf":1.0},"910":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"1175":{"tf":1.0},"767":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"1323":{"tf":1.0},"1334":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1226":{"tf":1.0},"1403":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}}}}},"y":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"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":{"1403":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1131":{"tf":1.0},"742":{"tf":1.0},"746":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"746":{"tf":1.0}}}}}},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1449":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1212":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"1050":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1086":{"tf":1.0},"113":{"tf":1.7320508075688772},"1159":{"tf":1.7320508075688772},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1215":{"tf":1.0},"125":{"tf":1.0},"1296":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1342":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"1430":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1512":{"tf":1.0},"160":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"37":{"tf":1.0},"437":{"tf":1.4142135623730951},"554":{"tf":1.0},"563":{"tf":1.7320508075688772},"566":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.0},"660":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"935":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1323":{"tf":1.4142135623730951},"1325":{"tf":2.0},"1328":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1338":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1027":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"286":{"tf":1.0},"299":{"tf":1.0}}},"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"442":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"382":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":2.23606797749979}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1356":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":12,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.0},"419":{"tf":1.7320508075688772},"477":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":132,"docs":{"1127":{"tf":1.0},"1149":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"1171":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.449489742783178},"1282":{"tf":1.7320508075688772},"1344":{"tf":1.4142135623730951},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1367":{"tf":3.7416573867739413},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1394":{"tf":2.6457513110645907},"14":{"tf":1.0},"1401":{"tf":3.1622776601683795},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1439":{"tf":1.4142135623730951},"144":{"tf":1.0},"1457":{"tf":2.0},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.7320508075688772},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1463":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1467":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1469":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1473":{"tf":1.7320508075688772},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.7320508075688772},"1479":{"tf":1.7320508075688772},"1480":{"tf":1.4142135623730951},"1481":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1483":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.7320508075688772},"1489":{"tf":2.23606797749979},"1490":{"tf":2.23606797749979},"1491":{"tf":2.0},"1492":{"tf":1.7320508075688772},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":2.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1528":{"tf":1.4142135623730951},"243":{"tf":1.0},"261":{"tf":1.0},"286":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"419":{"tf":2.23606797749979},"442":{"tf":1.0},"463":{"tf":1.4142135623730951},"473":{"tf":1.0},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":2.449489742783178},"498":{"tf":2.449489742783178},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"546":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"584":{"tf":1.7320508075688772},"585":{"tf":1.0},"593":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":2.8284271247461903},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"723":{"tf":2.0},"758":{"tf":1.0},"899":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"941":{"tf":1.7320508075688772},"950":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1345":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1349":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1194":{"tf":1.4142135623730951},"21":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"811":{"tf":1.4142135623730951}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"681":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":14,"docs":{"1109":{"tf":1.0},"1160":{"tf":1.0},"1212":{"tf":1.0},"1298":{"tf":1.0},"1429":{"tf":1.4142135623730951},"28":{"tf":1.0},"369":{"tf":1.0},"439":{"tf":1.0},"729":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"932":{"tf":1.0},"933":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":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":{"255":{"tf":1.0}},"u":{"df":1,"docs":{"732":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1035":{"tf":1.0},"1085":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":2.0},"874":{"tf":1.0}},"t":{"df":5,"docs":{"1192":{"tf":1.4142135623730951},"1205":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"664":{"tf":1.0},"833":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"1115":{"tf":1.4142135623730951},"122":{"tf":1.0},"1462":{"tf":1.0},"327":{"tf":1.0},"555":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1114":{"tf":1.0},"60":{"tf":1.0}}}},"v":{"df":1,"docs":{"984":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1080":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":196,"docs":{"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1128":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1206":{"tf":1.7320508075688772},"1216":{"tf":1.4142135623730951},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":2.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":2.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":2.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":2.6457513110645907},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1454":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"356":{"tf":2.0},"382":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"46":{"tf":1.0},"472":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"590":{"tf":2.0},"616":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"67":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.4142135623730951},"734":{"tf":1.0},"764":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":1.4142135623730951},"833":{"tf":1.0},"839":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"129":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1126":{"tf":1.4142135623730951},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1378":{"tf":2.449489742783178},"1390":{"tf":2.0},"1394":{"tf":3.4641016151377544},"1402":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"615":{"tf":1.7320508075688772},"618":{"tf":1.7320508075688772},"653":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.0},"723":{"tf":2.23606797749979},"724":{"tf":1.7320508075688772},"798":{"tf":1.0},"949":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"1161":{"tf":1.0},"1185":{"tf":1.0},"1219":{"tf":1.0},"1310":{"tf":1.0},"1449":{"tf":1.0},"255":{"tf":1.0},"50":{"tf":1.0},"732":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1042":{"tf":1.0},"1082":{"tf":1.0},"1094":{"tf":1.0},"1135":{"tf":1.0},"116":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1209":{"tf":1.0},"127":{"tf":1.0},"1298":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1332":{"tf":1.0},"135":{"tf":1.0},"1404":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"334":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"605":{"tf":1.0},"634":{"tf":1.4142135623730951},"664":{"tf":1.0},"699":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"876":{"tf":1.0},"894":{"tf":1.0},"92":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0},"976":{"tf":1.0},"984":{"tf":1.0}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1345":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":4,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":1.0},"1471":{"tf":1.0},"1482":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1000":{"tf":1.0},"1507":{"tf":1.0},"918":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":2.449489742783178}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"941":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1436":{"tf":1.0},"950":{"tf":1.0},"954":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1214":{"tf":1.0},"234":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"606":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"372":{"tf":1.4142135623730951}}}},"df":37,"docs":{"1066":{"tf":1.7320508075688772},"1079":{"tf":2.0},"1095":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1215":{"tf":2.0},"1234":{"tf":2.0},"1296":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1440":{"tf":2.449489742783178},"1454":{"tf":2.23606797749979},"1456":{"tf":1.0},"1466":{"tf":1.0},"1497":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1520":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"298":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.4142135623730951},"336":{"tf":2.0},"372":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"506":{"tf":1.4142135623730951},"563":{"tf":2.0},"606":{"tf":1.0},"660":{"tf":2.0},"903":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"s":{"df":2,"docs":{"1194":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"1264":{"tf":1.0},"1267":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"547":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1287":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.7320508075688772},"510":{"tf":1.0},"538":{"tf":1.0}}}}}}},"df":61,"docs":{"1148":{"tf":2.0},"1192":{"tf":2.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.449489742783178},"1401":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"348":{"tf":1.0},"355":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":2.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.23606797749979},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"538":{"tf":1.4142135623730951},"547":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1108":{"tf":1.0},"1111":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1367":{"tf":1.0},"498":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"1244":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"412":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1092":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1405":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"206":{"tf":1.0},"272":{"tf":1.0},"412":{"tf":1.4142135623730951},"423":{"tf":1.0},"646":{"tf":1.4142135623730951},"838":{"tf":1.0},"847":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1080":{"tf":1.0},"1185":{"tf":1.0},"1300":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1326":{"tf":2.6457513110645907},"1356":{"tf":1.0},"137":{"tf":2.449489742783178},"1379":{"tf":1.0},"1422":{"tf":3.0},"1425":{"tf":1.4142135623730951},"1433":{"tf":1.0},"156":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178},"273":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"529":{"tf":1.0},"58":{"tf":1.4142135623730951},"601":{"tf":1.0},"706":{"tf":1.0},"725":{"tf":1.0},"884":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1148":{"tf":1.0},"1381":{"tf":1.0},"666":{"tf":1.0},"684":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"675":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}}},"{":{"a":{"df":1,"docs":{"1381":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"699":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1517":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"661":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1330":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1079":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":5,"docs":{"1182":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":67,"docs":{"1006":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1282":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1469":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.7320508075688772},"1494":{"tf":1.7320508075688772},"1530":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":2.0},"253":{"tf":1.4142135623730951},"299":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"520":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"653":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"855":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"929":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":21,"docs":{"1062":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1334":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"155":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"759":{"tf":1.0},"76":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"916":{"tf":1.0},"935":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1177":{"tf":1.0},"1505":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1197":{"tf":1.0},"21":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0}}},"s":{"df":43,"docs":{"1001":{"tf":1.0},"1122":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"1194":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"1315":{"tf":1.0},"1332":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1449":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"185":{"tf":1.0},"206":{"tf":1.0},"295":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.4142135623730951},"600":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.0},"816":{"tf":1.0},"897":{"tf":1.0},"902":{"tf":1.0},"946":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1149":{"tf":1.7320508075688772},"1264":{"tf":1.0},"1270":{"tf":2.23606797749979},"1372":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"1018":{"tf":1.0},"1042":{"tf":1.0},"1061":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1030":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"992":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"617":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"684":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1148":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1381":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"617":{"tf":1.7320508075688772},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":2.0},"670":{"tf":1.0},"675":{"tf":2.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.0},"687":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"718":{"tf":2.0},"719":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":77,"docs":{"1140":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"135":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"138":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1404":{"tf":2.23606797749979},"141":{"tf":1.4142135623730951},"1419":{"tf":2.449489742783178},"142":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.4142135623730951},"1425":{"tf":2.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"661":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"1055":{"tf":1.0},"107":{"tf":2.8284271247461903},"1075":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"1087":{"tf":1.0},"110":{"tf":1.0},"1118":{"tf":1.4142135623730951},"113":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"259":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"292":{"tf":2.23606797749979},"298":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"536":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.4142135623730951},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1336":{"tf":1.0},"765":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"1208":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1259":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"459":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":4,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"d":{"df":127,"docs":{"1045":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1122":{"tf":1.0},"1126":{"tf":1.0},"1134":{"tf":1.4142135623730951},"1136":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":2.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":2.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1450":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1471":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1515":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"334":{"tf":1.4142135623730951},"370":{"tf":1.0},"398":{"tf":2.0},"406":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"498":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"58":{"tf":1.4142135623730951},"604":{"tf":1.0},"632":{"tf":2.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.0},"698":{"tf":2.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951},"744":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.7320508075688772},"759":{"tf":1.7320508075688772},"762":{"tf":1.7320508075688772},"765":{"tf":1.0},"773":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"782":{"tf":2.449489742783178},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"786":{"tf":1.7320508075688772},"788":{"tf":1.7320508075688772},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"792":{"tf":2.23606797749979},"807":{"tf":2.0},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.7320508075688772},"816":{"tf":1.7320508075688772},"828":{"tf":1.0},"835":{"tf":1.7320508075688772},"836":{"tf":1.7320508075688772},"854":{"tf":1.7320508075688772},"856":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.7320508075688772},"868":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.7320508075688772},"901":{"tf":1.0},"903":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"135":{"tf":1.0},"1420":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":198,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1091":{"tf":2.0},"1092":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.0},"1112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.4142135623730951},"122":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"132":{"tf":2.23606797749979},"1323":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1336":{"tf":1.0},"1338":{"tf":2.0},"1339":{"tf":1.7320508075688772},"134":{"tf":3.0},"1340":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1345":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1365":{"tf":2.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1420":{"tf":2.8284271247461903},"1421":{"tf":2.8284271247461903},"1422":{"tf":3.3166247903554},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":2.23606797749979},"1433":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.7320508075688772},"144":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1446":{"tf":2.0},"1449":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1455":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1479":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"1528":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"317":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"352":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"478":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.7320508075688772},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"584":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":2.0},"605":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"616":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.4142135623730951},"627":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.4142135623730951},"644":{"tf":1.0},"65":{"tf":1.0},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"678":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"699":{"tf":1.0},"708":{"tf":1.7320508075688772},"712":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.7320508075688772},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.4142135623730951},"747":{"tf":1.0},"772":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":2.449489742783178},"788":{"tf":2.23606797749979},"829":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":2.0},"838":{"tf":2.0},"841":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.4142135623730951},"850":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"925":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"962":{"tf":1.0},"969":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"519":{"tf":1.0},"536":{"tf":2.0},"614":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"722":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"911":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1365":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":24,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1063":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1105":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1522":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":1,"docs":{"319":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"815":{"tf":1.0},"826":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"1403":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1175":{"tf":1.0},"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1401":{"tf":1.0},"1460":{"tf":1.0},"1495":{"tf":1.0},"280":{"tf":1.0},"354":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"1046":{"tf":1.0},"1053":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1476":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.7320508075688772},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"82":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"1001":{"tf":1.4142135623730951},"117":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1410":{"tf":1.0},"142":{"tf":1.0},"1436":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"23":{"tf":1.4142135623730951},"349":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"576":{"tf":1.0},"676":{"tf":1.0},"72":{"tf":1.4142135623730951},"744":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"987":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"x":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1160":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"1077":{"tf":1.0},"1087":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"271":{"tf":1.0},"292":{"tf":1.4142135623730951},"762":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1264":{"tf":1.0},"1271":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1014":{"tf":1.0},"1054":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":9,"docs":{"1184":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1265":{"tf":1.7320508075688772},"1441":{"tf":1.0},"291":{"tf":1.0},"456":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"997":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"df":18,"docs":{"1001":{"tf":1.4142135623730951},"1161":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.4142135623730951},"991":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1265":{"tf":1.0},"1333":{"tf":1.0},"139":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"545":{"tf":1.0},"729":{"tf":1.0},"867":{"tf":1.0},"901":{"tf":1.0},"936":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1145":{"tf":1.0},"312":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0}}}}},"v":{"df":1,"docs":{"1194":{"tf":1.0}}}},"g":{"df":2,"docs":{"552":{"tf":1.0},"586":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"869":{"tf":1.0}}},"t":{"df":53,"docs":{"1011":{"tf":1.0},"1044":{"tf":2.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1166":{"tf":1.0},"129":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1421":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1465":{"tf":2.0},"1471":{"tf":1.7320508075688772},"1510":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1528":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"400":{"tf":1.0},"495":{"tf":1.4142135623730951},"522":{"tf":1.0},"58":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"634":{"tf":1.0},"657":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"699":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"731":{"tf":1.0},"745":{"tf":2.449489742783178},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"987":{"tf":1.7320508075688772}}}},"df":3,"docs":{"879":{"tf":1.0},"881":{"tf":1.0},"988":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":38,"docs":{"116":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":2.23606797749979},"1403":{"tf":1.0},"1404":{"tf":1.7320508075688772},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1475":{"tf":1.4142135623730951},"1481":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1495":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"366":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"465":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"618":{"tf":1.4142135623730951},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"837":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"152":{"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":{"1441":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":10,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.7320508075688772},"13":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"454":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"848":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"934":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"758":{"tf":1.0},"879":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1103":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"1161":{"tf":1.0},"918":{"tf":1.0},"976":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"2":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1522":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1361":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":48,"docs":{"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1089":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1461":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1115":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}},"l":{"df":29,"docs":{"109":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1214":{"tf":1.0},"1251":{"tf":1.0},"1296":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1436":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"4":{"tf":1.0},"544":{"tf":1.0},"603":{"tf":1.0},"612":{"tf":1.0},"776":{"tf":1.0},"861":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":6,"docs":{"1144":{"tf":1.0},"152":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"753":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":63,"docs":{"1164":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1278":{"tf":1.0},"1288":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0},"259":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"370":{"tf":1.0},"416":{"tf":1.4142135623730951},"420":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"534":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":1.0},"650":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.7320508075688772},"711":{"tf":1.7320508075688772},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1103":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"=":{"1":{"0":{"0":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1138":{"tf":1.4142135623730951},"146":{"tf":1.0},"386":{"tf":1.0},"40":{"tf":1.0},"620":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1014":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1254":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"960":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.7320508075688772},"1165":{"tf":2.8284271247461903},"1166":{"tf":2.0}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"1215":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":4,"docs":{"1243":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":4,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":74,"docs":{"1004":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1020":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.7320508075688772},"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"11":{"tf":1.0},"1154":{"tf":1.0},"1158":{"tf":1.4142135623730951},"119":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1235":{"tf":1.7320508075688772},"1250":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1429":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1505":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"780":{"tf":1.0},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"851":{"tf":1.0},"884":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"934":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"1069":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1384":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1305":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"b":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1305":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1003":{"tf":1.0},"1161":{"tf":1.0},"119":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.4142135623730951},"1319":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"547":{"tf":1.0},"727":{"tf":1.0},"909":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"262":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1300":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1158":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"1158":{"tf":1.4142135623730951},"19":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}},"n":{"df":2,"docs":{"1423":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"1102":{"tf":1.0},"1160":{"tf":1.0},"1281":{"tf":1.0},"1378":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"368":{"tf":1.0},"497":{"tf":1.7320508075688772},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"733":{"tf":1.0},"766":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0}}}},"df":6,"docs":{"450":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"978":{"tf":1.0}},"e":{"df":2,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0}}},"o":{"d":{"df":3,"docs":{"1312":{"tf":1.0},"884":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1050":{"tf":1.0},"1177":{"tf":1.0},"424":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"477":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"732":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1330":{"tf":1.0},"583":{"tf":1.0},"979":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1277":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"1278":{"tf":1.0},"21":{"tf":1.0},"491":{"tf":1.0},"914":{"tf":1.0},"954":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"df":48,"docs":{"1040":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.7320508075688772},"773":{"tf":1.0},"799":{"tf":1.0},"909":{"tf":1.4142135623730951},"92":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"985":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"1208":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":68,"docs":{"1112":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1290":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"335":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"505":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"738":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"770":{"tf":1.0},"794":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.0},"96":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":22,"docs":{"1148":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"331":{"tf":1.7320508075688772},"461":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":17,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"357":{"tf":1.0},"916":{"tf":1.0}}}}}}}},"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"373":{"tf":1.0},"937":{"tf":1.7320508075688772},"939":{"tf":2.23606797749979},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"373":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"911":{"tf":1.0},"930":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1452":{"tf":1.0},"1455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"1055":{"tf":1.7320508075688772},"1073":{"tf":2.23606797749979},"1074":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1214":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"739":{"tf":1.7320508075688772},"792":{"tf":1.7320508075688772},"893":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"38":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":46,"docs":{"1011":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1268":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.4142135623730951},"1344":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1366":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1394":{"tf":2.0},"14":{"tf":1.0},"1401":{"tf":1.0},"228":{"tf":1.0},"286":{"tf":1.4142135623730951},"359":{"tf":1.0},"384":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"434":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":2.0},"482":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"546":{"tf":1.7320508075688772},"593":{"tf":1.0},"618":{"tf":1.4142135623730951},"653":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"949":{"tf":1.0},"963":{"tf":1.4142135623730951},"973":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1267":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.7320508075688772},"498":{"tf":1.0},"507":{"tf":1.0},"833":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1048":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1003":{"tf":1.0}}},"2":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"557":{"tf":1.0},"651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":84,"docs":{"1001":{"tf":1.7320508075688772},"1046":{"tf":2.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1092":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1333":{"tf":1.0},"1403":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1429":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"236":{"tf":1.0},"24":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"332":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"417":{"tf":2.449489742783178},"420":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"520":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":2.449489742783178},"544":{"tf":1.0},"557":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"614":{"tf":1.4142135623730951},"631":{"tf":1.0},"651":{"tf":2.0},"654":{"tf":1.4142135623730951},"697":{"tf":1.0},"708":{"tf":1.0},"739":{"tf":1.4142135623730951},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"776":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":2.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.4142135623730951},"996":{"tf":1.0},"997":{"tf":3.1622776601683795}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"332":{"tf":1.0},"417":{"tf":1.0},"420":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"417":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"1260":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"1194":{"tf":1.0},"248":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"831":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"729":{"tf":1.0},"740":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":47,"docs":{"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1136":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":2.0},"1442":{"tf":2.449489742783178},"1445":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":2.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"729":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"744":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.7320508075688772},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.7320508075688772},"832":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"899":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.4142135623730951},"369":{"tf":1.0},"507":{"tf":1.0},"603":{"tf":1.0},"760":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1401":{"tf":1.0},"1402":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":25,"docs":{"1148":{"tf":1.0},"1237":{"tf":1.0},"1248":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"197":{"tf":1.0},"268":{"tf":1.0},"349":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"519":{"tf":1.0},"576":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"884":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":15,"docs":{"105":{"tf":1.0},"1162":{"tf":1.0},"119":{"tf":2.8284271247461903},"1411":{"tf":2.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"739":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"1220":{"tf":1.0},"1278":{"tf":1.0},"259":{"tf":1.4142135623730951},"292":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1161":{"tf":1.0},"1276":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1442":{"tf":1.0},"180":{"tf":1.7320508075688772},"370":{"tf":1.0},"45":{"tf":1.4142135623730951},"486":{"tf":1.0},"604":{"tf":1.0},"679":{"tf":1.0},"794":{"tf":1.4142135623730951},"798":{"tf":1.0},"845":{"tf":1.0},"884":{"tf":1.0},"921":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"535":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"729":{"tf":1.0}},"i":{"df":3,"docs":{"1124":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":14,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1089":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1336":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"959":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"322":{"tf":1.0},"549":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.4142135623730951},"725":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"991":{"tf":1.4142135623730951}},"i":{"df":14,"docs":{"1006":{"tf":1.0},"1314":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1403":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"62":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.4142135623730951},"882":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.7320508075688772}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1162":{"tf":1.0},"261":{"tf":1.0},"857":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"995":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"1209":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"237":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1307":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.7320508075688772},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1154":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"667":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":0,"docs":{},"s":{":":{"9":{"0":{"9":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":65,"docs":{"1020":{"tf":1.0},"110":{"tf":1.0},"1149":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1268":{"tf":1.0},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1284":{"tf":1.0},"1294":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1356":{"tf":1.7320508075688772},"1370":{"tf":1.4142135623730951},"1377":{"tf":1.4142135623730951},"1379":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1493":{"tf":1.0},"1525":{"tf":1.4142135623730951},"311":{"tf":1.0},"331":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"453":{"tf":2.23606797749979},"454":{"tf":1.7320508075688772},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":2.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.0},"734":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"955":{"tf":1.0},"964":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":2,"docs":{"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"104":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"830":{"tf":1.0},"832":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"853":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"180":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"775":{"tf":1.0},"778":{"tf":1.0},"791":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1139":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1437":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"197":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"801":{"tf":1.0},"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"803":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"872":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"941":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"1227":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"157":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"370":{"tf":1.4142135623730951},"51":{"tf":1.0},"604":{"tf":1.4142135623730951},"66":{"tf":1.0},"746":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":2.23606797749979},"754":{"tf":1.7320508075688772},"761":{"tf":1.0},"766":{"tf":1.7320508075688772},"767":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1015":{"tf":1.0},"1034":{"tf":1.7320508075688772},"152":{"tf":1.0},"157":{"tf":1.0},"345":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951},"572":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"761":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"197":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"142":{"tf":1.0},"1484":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1047":{"tf":1.0},"1515":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"1188":{"tf":1.0},"1189":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"979":{"tf":1.0}}}}}}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":127,"docs":{"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1230":{"tf":1.0},"1241":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":2.0},"1302":{"tf":2.0},"1306":{"tf":2.23606797749979},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1405":{"tf":2.0},"142":{"tf":1.0},"1436":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1522":{"tf":1.7320508075688772},"174":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"49":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"592":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"612":{"tf":1.0},"649":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"700":{"tf":1.0},"707":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"832":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"884":{"tf":1.0},"894":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.4142135623730951},"989":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"1013":{"tf":1.0},"1175":{"tf":1.0},"1189":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1214":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1227":{"tf":1.0},"1231":{"tf":1.0},"1258":{"tf":1.0},"1285":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1415":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"90":{"tf":1.0},"913":{"tf":1.7320508075688772},"918":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.4142135623730951},"977":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1441":{"tf":1.0},"760":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.4142135623730951}},"i":{"df":21,"docs":{"1111":{"tf":1.0},"1441":{"tf":1.0},"155":{"tf":1.0},"232":{"tf":1.0},"262":{"tf":1.0},"41":{"tf":1.0},"445":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":2.0},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.7320508075688772},"831":{"tf":1.0},"879":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"987":{"tf":1.0}}}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1300":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1300":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951}}}}}}},"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1063":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1082":{"tf":1.0},"128":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1426":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1082":{"tf":1.0},"61":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.7320508075688772},"914":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"918":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":37,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"1103":{"tf":1.0},"1158":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"446":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"910":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0},"981":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"1194":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":188,"docs":{"10":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.7320508075688772},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1103":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1140":{"tf":3.3166247903554},"1142":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1179":{"tf":2.0},"1180":{"tf":2.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":2.0},"1199":{"tf":1.0},"1205":{"tf":1.0},"1217":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"1270":{"tf":2.23606797749979},"1271":{"tf":1.7320508075688772},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":2.0},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.23606797749979},"1379":{"tf":1.7320508075688772},"1381":{"tf":2.0},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.4142135623730951},"1388":{"tf":2.23606797749979},"1390":{"tf":2.0},"1392":{"tf":2.449489742783178},"1394":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1401":{"tf":2.6457513110645907},"1402":{"tf":2.6457513110645907},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.23606797749979},"1405":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.7320508075688772},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"483":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"515":{"tf":1.0},"527":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"592":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"622":{"tf":1.0},"625":{"tf":1.4142135623730951},"638":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.7320508075688772},"666":{"tf":2.449489742783178},"667":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"681":{"tf":1.4142135623730951},"684":{"tf":2.449489742783178},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"692":{"tf":1.4142135623730951},"704":{"tf":1.0},"712":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"79":{"tf":1.7320508075688772},"794":{"tf":1.7320508075688772},"82":{"tf":1.0},"822":{"tf":1.4142135623730951},"83":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"925":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":3,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.23606797749979}},"i":{"d":{"df":1,"docs":{"1010":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"100":{"tf":1.0},"1006":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1114":{"tf":1.0},"1137":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"125":{"tf":1.0},"1255":{"tf":1.0},"1295":{"tf":1.0},"1324":{"tf":1.0},"1490":{"tf":1.0},"1522":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.4142135623730951},"544":{"tf":1.0},"620":{"tf":1.0},"634":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"792":{"tf":1.4142135623730951},"813":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"932":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":18,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"1340":{"tf":1.0},"1493":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"760":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1200":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1200":{"tf":1.0},"1482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1027":{"tf":1.0},"1515":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":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":{"192":{"tf":1.0},"303":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":3,"docs":{"1404":{"tf":1.4142135623730951},"79":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1163":{"tf":1.0},"199":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"857":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1080":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1300":{"tf":2.6457513110645907},"1304":{"tf":2.0},"1306":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"182":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":4,"docs":{"152":{"tf":1.0},"51":{"tf":1.0},"753":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1022":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"595":{"tf":1.0},"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"361":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"595":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"df":21,"docs":{"1324":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"442":{"tf":1.0},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"884":{"tf":1.0},"899":{"tf":1.4142135623730951},"902":{"tf":1.0},"966":{"tf":1.0},"979":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"1381":{"tf":1.0},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"363":{"tf":1.0},"47":{"tf":1.0},"597":{"tf":1.0},"66":{"tf":1.0},"733":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":2.0},"761":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"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":7,"docs":{"1042":{"tf":1.0},"1054":{"tf":1.0},"1075":{"tf":1.0},"1298":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1109":{"tf":1.0},"1123":{"tf":1.4142135623730951},"308":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"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":2,"docs":{"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}}}},"df":21,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"1165":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"149":{"tf":1.0},"580":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":74,"docs":{"1107":{"tf":1.0},"111":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1180":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1225":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1349":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"149":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"54":{"tf":1.0},"580":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1162":{"tf":1.0},"1166":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1432":{"tf":1.4142135623730951},"210":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0},"72":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1082":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"989":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.4142135623730951},"606":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":125,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.0},"1165":{"tf":1.4142135623730951},"117":{"tf":1.0},"1223":{"tf":2.0},"1349":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1409":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.7320508075688772},"547":{"tf":1.0},"548":{"tf":1.7320508075688772},"549":{"tf":1.0},"550":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":2.23606797749979},"555":{"tf":1.7320508075688772},"556":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.7320508075688772},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"581":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.7320508075688772},"584":{"tf":1.0},"585":{"tf":1.7320508075688772},"586":{"tf":1.7320508075688772},"587":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":1.0},"6":{"tf":1.0},"682":{"tf":1.4142135623730951},"691":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"727":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":2.0}}},"n":{"c":{"df":16,"docs":{"332":{"tf":1.0},"388":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"558":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"686":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"718":{"tf":1.0},"726":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":13,"docs":{"1292":{"tf":1.0},"134":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1449":{"tf":1.0},"179":{"tf":1.0},"234":{"tf":1.0},"253":{"tf":1.0},"545":{"tf":1.0},"711":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"763":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"319":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"1180":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1306":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"742":{"tf":1.0},"901":{"tf":1.0}},"r":{"df":174,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1042":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"108":{"tf":1.0},"1137":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1396":{"tf":2.0},"1397":{"tf":1.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.7320508075688772},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1523":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"520":{"tf":1.0},"547":{"tf":1.4142135623730951},"548":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"590":{"tf":1.0},"598":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"664":{"tf":1.7320508075688772},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"697":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"86":{"tf":1.0},"871":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"914":{"tf":1.4142135623730951},"931":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1102":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1194":{"tf":1.0},"780":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1144":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"1225":{"tf":1.0},"1263":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"423":{"tf":1.0},"663":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1177":{"tf":1.0},"439":{"tf":1.0},"470":{"tf":1.0},"669":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1183":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}}}},"df":2,"docs":{"732":{"tf":1.0},"88":{"tf":1.0}},"f":{"a":{"c":{"df":11,"docs":{"118":{"tf":1.0},"1407":{"tf":1.0},"357":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"4":{"tf":1.0},"516":{"tf":1.0},"591":{"tf":1.0},"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"510":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"1268":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"287":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"688":{"tf":1.0},"726":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"231":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1026":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1211":{"tf":2.0},"1212":{"tf":1.0},"1213":{"tf":1.7320508075688772},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"446":{"tf":1.0},"728":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"856":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"0":{"tf":1.0},"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},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1282":{"tf":1.0},"477":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1127":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"1127":{"tf":1.0},"1148":{"tf":1.0},"1169":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1307":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1355":{"tf":1.0},"1375":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1461":{"tf":1.7320508075688772},"1465":{"tf":1.7320508075688772},"1471":{"tf":1.7320508075688772},"1479":{"tf":2.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"380":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"507":{"tf":1.0},"595":{"tf":1.0},"613":{"tf":1.0},"724":{"tf":1.0},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":7,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1111":{"tf":1.7320508075688772},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1323":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1323":{"tf":2.23606797749979},"1324":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1346":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1111":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}},"p":{"df":3,"docs":{"1288":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"708":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"644":{"tf":1.0}}}}}},"df":27,"docs":{"1142":{"tf":2.449489742783178},"1302":{"tf":2.0},"1375":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":2.0},"1404":{"tf":1.4142135623730951},"1517":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.4142135623730951},"653":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.4142135623730951},"795":{"tf":1.0},"87":{"tf":1.4142135623730951},"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"319":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}},"l":{"df":5,"docs":{"1139":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1168":{"tf":1.4142135623730951},"1404":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"531":{"tf":1.0},"772":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":15,"docs":{"1164":{"tf":1.0},"1200":{"tf":2.0},"1292":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"19":{"tf":1.0},"350":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"509":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"679":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}},"df":22,"docs":{"1301":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1403":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":3,"docs":{"357":{"tf":1.0},"471":{"tf":1.0},"591":{"tf":1.0}}},"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":28,"docs":{"1112":{"tf":2.23606797749979},"1121":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":2.6457513110645907},"870":{"tf":1.7320508075688772},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"874":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}}},"r":{"df":5,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.7320508075688772},"23":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}}}},"j":{"a":{"c":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"<":{"4":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":577,"docs":{"0":{"tf":2.0},"1":{"tf":2.0},"10":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"103":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"106":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1065":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":2.449489742783178},"1071":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"11":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"111":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"113":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1166":{"tf":1.7320508075688772},"117":{"tf":1.0},"1173":{"tf":1.0},"1175":{"tf":2.23606797749979},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"118":{"tf":1.0},"1180":{"tf":2.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":2.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1212":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1214":{"tf":1.4142135623730951},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.7320508075688772},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.0},"1248":{"tf":1.4142135623730951},"125":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1258":{"tf":2.0},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"1270":{"tf":2.0},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"128":{"tf":2.449489742783178},"1281":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"129":{"tf":2.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1312":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"1320":{"tf":2.23606797749979},"1321":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":2.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1333":{"tf":2.8284271247461903},"1334":{"tf":2.449489742783178},"1336":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":3.1622776601683795},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1349":{"tf":1.0},"135":{"tf":1.7320508075688772},"1355":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"136":{"tf":2.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"137":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"138":{"tf":1.7320508075688772},"1381":{"tf":2.8284271247461903},"1382":{"tf":2.23606797749979},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"14":{"tf":1.0},"1401":{"tf":2.449489742783178},"1402":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":2.23606797749979},"1407":{"tf":1.0},"1409":{"tf":2.0},"141":{"tf":1.7320508075688772},"1410":{"tf":2.23606797749979},"1411":{"tf":2.0},"1413":{"tf":2.0},"1415":{"tf":2.0},"1417":{"tf":2.0},"1418":{"tf":1.0},"1419":{"tf":3.1622776601683795},"142":{"tf":2.0},"1420":{"tf":2.6457513110645907},"1421":{"tf":2.449489742783178},"1422":{"tf":2.23606797749979},"1423":{"tf":2.6457513110645907},"1425":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"146":{"tf":1.0},"1460":{"tf":2.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1484":{"tf":1.0},"149":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"150":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.0},"151":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":2.23606797749979},"1513":{"tf":1.4142135623730951},"1515":{"tf":1.0},"152":{"tf":1.0},"1524":{"tf":2.0},"1526":{"tf":2.0},"1529":{"tf":2.23606797749979},"1530":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"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.4142135623730951},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.7320508075688772},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.7320508075688772},"33":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":2.0},"426":{"tf":2.23606797749979},"427":{"tf":2.6457513110645907},"429":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":2.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":2.23606797749979},"585":{"tf":1.4142135623730951},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"63":{"tf":1.0},"648":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":2.8284271247461903},"667":{"tf":2.23606797749979},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"71":{"tf":1.7320508075688772},"712":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"72":{"tf":2.0},"725":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":2.0},"800":{"tf":1.0},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.7320508075688772},"850":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"887":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.7320508075688772},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.7320508075688772},"981":{"tf":1.0},"986":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":2.0}},"s":{"'":{"df":1,"docs":{"1447":{"tf":1.0}}},".":{"a":{"2":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.0},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"443":{"tf":1.0},"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1510":{"tf":1.0},"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"113":{"tf":1.0},"1140":{"tf":1.0},"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1320":{"tf":1.0},"1355":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"160":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"361":{"tf":1.4142135623730951},"389":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"560":{"tf":1.0},"564":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.4142135623730951},"623":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"907":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"731":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"609":{"tf":1.0},"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"376":{"tf":1.0},"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"651":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1264":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"10":{"tf":1.0},"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1149":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1404":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"618":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1273":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"545":{"tf":1.0},"712":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1301":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":18,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1437":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"616":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"618":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"599":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"592":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"713":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"670":{"tf":1.0},"676":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1290":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"474":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"467":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"1145":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1139":{"tf":1.0},"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"714":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"714":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"669":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"670":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"716":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1313":{"tf":1.0},"1315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1301":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"364":{"tf":1.0},"382":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"70":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"963":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"a":{"2":{"a":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1084":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"575":{"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":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":2.23606797749979},"684":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1430":{"tf":1.0}}}}},"i":{"d":{"=":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1003":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":19,"docs":{"1047":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1204":{"tf":1.0},"1419":{"tf":1.0},"1515":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"r":{"df":5,"docs":{"336":{"tf":1.0},"557":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":45,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":2.0},"1047":{"tf":1.4142135623730951},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1461":{"tf":1.0},"1515":{"tf":1.4142135623730951},"160":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"1520":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"$":{"(":{"d":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1329":{"tf":1.0},"142":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1460":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"682":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"1430":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"*":{"*":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1063":{"tf":1.0},"1510":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"1530":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1063":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1430":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":42,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1106":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"562":{"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":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"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":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"r":{"d":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":41,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1105":{"tf":1.0},"113":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1497":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":44,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":2.0},"1454":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"336":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"946":{"tf":1.0},"965":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":2.0},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1310":{"tf":2.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1452":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1454":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"965":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1248":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1239":{"tf":1.7320508075688772},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":34,"docs":{"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"562":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"557":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1342":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1214":{"tf":1.0},"1436":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1436":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"995":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":44,"docs":{"1043":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"161":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.4142135623730951}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1520":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"1520":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1507":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1199":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"684":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"963":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"903":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1466":{"tf":1.0},"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"1448":{"tf":1.0},"1455":{"tf":1.0},"332":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"1507":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1310":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1237":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1248":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1081":{"tf":1.0},"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.0},"897":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.7320508075688772}}},"y":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1240":{"tf":1.7320508075688772},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}}}}}},"a":{"2":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1217":{"tf":1.0},"1218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":54,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"332":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.7320508075688772},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.4142135623730951},"593":{"tf":1.0},"619":{"tf":1.4142135623730951},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"694":{"tf":1.4142135623730951},"711":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"151":{"tf":1.0},"167":{"tf":1.0},"244":{"tf":1.4142135623730951},"757":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"976":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"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":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":17,"docs":{"1332":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"741":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1143":{"tf":1.0},"1484":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"785":{"tf":1.4142135623730951},"858":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1486":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"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":2,"docs":{"217":{"tf":1.0},"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1046":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"785":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"779":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"885":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"854":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1084":{"tf":1.0},"854":{"tf":1.0},"859":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"856":{"tf":1.0},"857":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1305":{"tf":1.0},"262":{"tf":2.0},"329":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":1,"docs":{"1305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1309":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"615":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1367":{"tf":2.6457513110645907},"1394":{"tf":2.449489742783178},"329":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":32,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"1091":{"tf":1.0},"186":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"445":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":50,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1314":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.4142135623730951},"244":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"468":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"537":{"tf":1.0},"539":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"1382":{"tf":1.0},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1203":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"1148":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1382":{"tf":1.0},"667":{"tf":1.0},"670":{"tf":2.0},"678":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":14,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"330":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":2.0},"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1180":{"tf":1.0},"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"1192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"798":{"tf":1.4142135623730951},"816":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1183":{"tf":1.4142135623730951},"1371":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"861":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"536":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"741":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":13,"docs":{"1046":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1196":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":32,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1186":{"tf":1.0},"1196":{"tf":1.0},"1374":{"tf":1.0},"1392":{"tf":1.0},"1470":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"521":{"tf":1.0},"632":{"tf":1.0},"698":{"tf":1.0},"729":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"934":{"tf":1.0},"990":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"808":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"819":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"49":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"809":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"808":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"804":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"818":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"866":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"865":{"tf":1.0},"867":{"tf":1.0},"872":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"865":{"tf":1.0},"872":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":5,"docs":{"1182":{"tf":1.0},"429":{"tf":2.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"541":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"498":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"938":{"tf":1.4142135623730951},"940":{"tf":1.0},"976":{"tf":2.0},"979":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":41,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1217":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.0},"836":{"tf":1.0},"861":{"tf":1.0},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1439":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"761":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1140":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1404":{"tf":1.0},"154":{"tf":1.0},"766":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"1480":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":7,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0},"1151":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1302":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1142":{"tf":1.0},"1171":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"634":{"tf":1.0},"635":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1088":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"696":{"tf":1.0},"797":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"709":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"695":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"769":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"588":{"tf":1.0},"656":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"518":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"770":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1361":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"522":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"408":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1151":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"349":{"tf":1.0},"519":{"tf":1.7320508075688772},"522":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}}},"y":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1399":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1312":{"tf":1.0},"1369":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1353":{"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":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"400":{"tf":1.0},"401":{"tf":1.0}}},"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":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":12,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"df":182,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"1021":{"tf":1.0},"1057":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1080":{"tf":1.0},"1094":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1231":{"tf":1.0},"127":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1302":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1340":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.23606797749979},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.0},"1479":{"tf":2.23606797749979},"16":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"528":{"tf":1.0},"532":{"tf":1.0},"536":{"tf":1.4142135623730951},"562":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"606":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"64":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"669":{"tf":1.4142135623730951},"695":{"tf":1.0},"696":{"tf":1.7320508075688772},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"725":{"tf":1.0},"728":{"tf":2.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"828":{"tf":1.0},"842":{"tf":1.0},"851":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"921":{"tf":1.0},"94":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"581":{"tf":2.449489742783178},"590":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1219":{"tf":1.0},"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"816":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":3,"docs":{"1015":{"tf":2.0},"1030":{"tf":1.7320508075688772},"1036":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1526":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.4142135623730951},"204":{"tf":1.0},"433":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"_":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":3,"docs":{"1217":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":269,"docs":{"1000":{"tf":2.0},"1001":{"tf":2.449489742783178},"1002":{"tf":2.0},"1003":{"tf":2.0},"1004":{"tf":1.7320508075688772},"1005":{"tf":1.0},"1006":{"tf":2.449489742783178},"1007":{"tf":2.23606797749979},"1008":{"tf":2.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1011":{"tf":1.4142135623730951},"1012":{"tf":2.0},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.7320508075688772},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.0},"1043":{"tf":2.23606797749979},"1044":{"tf":2.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1052":{"tf":2.0},"1053":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1085":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1163":{"tf":2.0},"1177":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1204":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":2.6457513110645907},"1219":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1253":{"tf":2.23606797749979},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.0},"127":{"tf":2.449489742783178},"1285":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1369":{"tf":1.0},"139":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.0},"1410":{"tf":1.0},"1432":{"tf":1.0},"1436":{"tf":2.23606797749979},"1437":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1462":{"tf":2.0},"1464":{"tf":2.6457513110645907},"1465":{"tf":2.6457513110645907},"1466":{"tf":2.0},"1467":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"1493":{"tf":1.0},"150":{"tf":1.4142135623730951},"1505":{"tf":2.0},"151":{"tf":1.0},"1512":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1522":{"tf":1.0},"1528":{"tf":2.23606797749979},"1530":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":2.449489742783178},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":2.0},"42":{"tf":1.4142135623730951},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"478":{"tf":2.0},"522":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"536":{"tf":2.449489742783178},"544":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":3.1622776601683795},"608":{"tf":1.0},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"634":{"tf":1.0},"638":{"tf":1.0},"657":{"tf":2.0},"681":{"tf":2.0},"682":{"tf":1.0},"699":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.4142135623730951},"71":{"tf":1.0},"710":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"722":{"tf":1.7320508075688772},"724":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"816":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"847":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.7320508075688772},"892":{"tf":2.6457513110645907},"896":{"tf":1.0},"90":{"tf":1.7320508075688772},"908":{"tf":2.0},"91":{"tf":1.0},"911":{"tf":2.23606797749979},"913":{"tf":2.23606797749979},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.6457513110645907},"925":{"tf":2.449489742783178},"926":{"tf":2.449489742783178},"939":{"tf":2.0},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.0},"950":{"tf":2.23606797749979},"951":{"tf":1.0},"962":{"tf":1.7320508075688772},"968":{"tf":1.7320508075688772},"969":{"tf":2.449489742783178},"97":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"981":{"tf":2.8284271247461903},"982":{"tf":1.7320508075688772},"983":{"tf":2.449489742783178},"984":{"tf":1.4142135623730951},"985":{"tf":2.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":2.23606797749979},"989":{"tf":1.4142135623730951},"990":{"tf":1.4142135623730951},"991":{"tf":2.6457513110645907},"992":{"tf":2.23606797749979},"993":{"tf":1.7320508075688772},"994":{"tf":2.449489742783178},"995":{"tf":2.0},"996":{"tf":3.1622776601683795},"997":{"tf":2.23606797749979},"998":{"tf":1.4142135623730951},"999":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1505":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"368":{"tf":1.4142135623730951},"43":{"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":1,"docs":{"1307":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1085":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":1,"docs":{"1106":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":8,"docs":{"1213":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"375":{"tf":1.0},"608":{"tf":1.0},"911":{"tf":1.0},"992":{"tf":1.0}}}}}},"o":{"a":{"df":7,"docs":{"1264":{"tf":1.0},"1268":{"tf":2.23606797749979},"454":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":2.8284271247461903},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.7320508075688772},"719":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1175":{"tf":1.0},"21":{"tf":1.0}}}},"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"831":{"tf":1.0},"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1181":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1264":{"tf":1.0},"1310":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1068":{"tf":1.0},"1169":{"tf":1.0},"1426":{"tf":1.4142135623730951},"206":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"818":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":6,"docs":{"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.0},"185":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1039":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"1001":{"tf":1.0},"762":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1070":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"1194":{"tf":1.0},"1477":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"934":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1084":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1482":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1015":{"tf":1.0},"1029":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1051":{"tf":1.0},"1175":{"tf":1.0},"871":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":1,"docs":{"1154":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":1,"docs":{"1276":{"tf":1.0}}}},"d":{"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"1015":{"tf":1.0},"1026":{"tf":1.0},"1041":{"tf":1.0},"159":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1042":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"1130":{"tf":1.7320508075688772},"1175":{"tf":1.0},"1194":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1021":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"458":{"tf":1.0},"925":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1033":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"19":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":45,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1103":{"tf":1.0},"1208":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"204":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"357":{"tf":1.0},"500":{"tf":1.4142135623730951},"545":{"tf":1.0},"591":{"tf":1.0},"676":{"tf":1.0},"711":{"tf":1.4142135623730951},"744":{"tf":1.0},"756":{"tf":1.0},"780":{"tf":1.7320508075688772},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0},"899":{"tf":1.7320508075688772},"902":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"959":{"tf":1.0},"966":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.7320508075688772},"978":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1194":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":46,"docs":{"1017":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"4":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"841":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"759":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"1425":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"981":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"368":{"tf":1.0},"43":{"tf":1.0},"602":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1062":{"tf":1.0},"1083":{"tf":1.7320508075688772},"109":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"248":{"tf":1.0},"501":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":12,"docs":{"1154":{"tf":1.4142135623730951},"118":{"tf":1.0},"1403":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"607":{"tf":1.0},"67":{"tf":1.0},"762":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"742":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":12,"docs":{"1298":{"tf":1.0},"192":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.7320508075688772},"93":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1479":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"578":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"322":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1388":{"tf":1.0},"613":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1209":{"tf":1.0},"1255":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1423":{"tf":1.0},"1436":{"tf":1.0},"1486":{"tf":1.7320508075688772},"270":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"583":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"732":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":2.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":3.1622776601683795},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"886":{"tf":1.0},"916":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1292":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1038":{"tf":1.0},"129":{"tf":1.0},"234":{"tf":1.0},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"789":{"tf":1.0},"790":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1154":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":104,"docs":{"1047":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1436":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"378":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.7320508075688772},"410":{"tf":1.0},"419":{"tf":1.0},"43":{"tf":2.23606797749979},"431":{"tf":1.0},"458":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.7320508075688772},"576":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"622":{"tf":1.7320508075688772},"644":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.7320508075688772},"708":{"tf":1.0},"712":{"tf":1.0},"724":{"tf":1.0},"75":{"tf":1.0},"769":{"tf":1.0},"772":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"904":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1436":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1333":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"734":{"tf":1.0},"788":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"458":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.0}}}}}}},"t":{"df":15,"docs":{"1095":{"tf":1.0},"1131":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1452":{"tf":1.0},"734":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"762":{"tf":1.0},"775":{"tf":1.4142135623730951},"788":{"tf":1.0},"801":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"841":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.4142135623730951},"929":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":4,"docs":{"1046":{"tf":1.0},"1487":{"tf":1.4142135623730951},"726":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"284":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":53,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1191":{"tf":1.0},"1199":{"tf":1.7320508075688772},"1205":{"tf":2.0},"1288":{"tf":1.7320508075688772},"1293":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":3.7416573867739413},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":2.6457513110645907},"299":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"36":{"tf":1.0},"4":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.0},"502":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":2.23606797749979},"902":{"tf":1.0},"908":{"tf":1.0},"942":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.7320508075688772},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"1199":{"tf":1.0},"1293":{"tf":1.0},"679":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1205":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"28":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"250":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"1001":{"tf":1.4142135623730951},"1233":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.7320508075688772},"759":{"tf":1.4142135623730951},"991":{"tf":1.0},"997":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"1077":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1251":{"tf":1.7320508075688772},"1256":{"tf":1.0},"130":{"tf":2.449489742783178},"1333":{"tf":1.4142135623730951},"143":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"939":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1312":{"tf":1.0}}},"t":{"df":1,"docs":{"1452":{"tf":1.0}}}},"w":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"976":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1452":{"tf":1.0},"6":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}},"o":{"df":4,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1006":{"tf":1.0},"62":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"762":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1356":{"tf":1.0},"1359":{"tf":1.0},"420":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1382":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"474":{"tf":1.0},"576":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"667":{"tf":1.0},"761":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1314":{"tf":1.0},"1325":{"tf":1.0},"1503":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.0},"42":{"tf":1.0},"516":{"tf":1.0},"59":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"798":{"tf":1.0},"947":{"tf":1.0},"983":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1181":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"548":{"tf":1.0},"882":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1471":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1055":{"tf":1.0},"1073":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":2.0},"1209":{"tf":1.0},"1335":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"1441":{"tf":1.0},"146":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"447":{"tf":1.4142135623730951},"549":{"tf":1.0},"59":{"tf":1.4142135623730951},"590":{"tf":1.0},"61":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":1.4142135623730951},"681":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"816":{"tf":1.4142135623730951},"91":{"tf":1.0},"923":{"tf":1.4142135623730951},"947":{"tf":1.7320508075688772},"981":{"tf":1.0},"985":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1026":{"tf":1.0},"985":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"918":{"tf":1.0}},"i":{"df":4,"docs":{"1162":{"tf":1.0},"308":{"tf":1.0},"746":{"tf":1.0},"985":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1095":{"tf":1.0},"112":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1456":{"tf":1.0},"150":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.4142135623730951},"463":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":3,"docs":{"1399":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"1006":{"tf":1.0},"1214":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1251":{"tf":1.0},"1260":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1528":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.0},"939":{"tf":1.7320508075688772},"950":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"974":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1175":{"tf":1.0},"1286":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}}}}},"x":{"df":6,"docs":{"1036":{"tf":1.0},"1084":{"tf":1.0},"308":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1116":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1507":{"tf":1.0},"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1512":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"666":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}}}},"df":148,"docs":{"1020":{"tf":1.0},"1042":{"tf":1.0},"108":{"tf":1.0},"1148":{"tf":2.23606797749979},"1152":{"tf":1.7320508075688772},"1173":{"tf":2.23606797749979},"1174":{"tf":2.0},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.7320508075688772},"1207":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":2.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":2.23606797749979},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":2.0},"1402":{"tf":2.0},"1406":{"tf":1.4142135623730951},"1523":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"2":{"tf":1.0},"330":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"423":{"tf":2.449489742783178},"424":{"tf":2.0},"425":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":2.23606797749979},"428":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"593":{"tf":1.0},"6":{"tf":1.4142135623730951},"617":{"tf":1.7320508075688772},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"664":{"tf":2.0},"665":{"tf":1.0},"666":{"tf":2.23606797749979},"667":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"674":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"717":{"tf":1.4142135623730951},"719":{"tf":1.0},"727":{"tf":1.0},"847":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"916":{"tf":1.0},"955":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1401":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951}}}}}}}}}},"df":3,"docs":{"1340":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"144":{"tf":1.0},"837":{"tf":1.0},"855":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1114":{"tf":1.4142135623730951},"170":{"tf":1.0}}}}},"t":{"df":2,"docs":{"182":{"tf":1.0},"780":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"733":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.4142135623730951},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"869":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"62":{"tf":1.0},"766":{"tf":1.0},"941":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"1088":{"tf":1.4142135623730951},"1089":{"tf":1.0},"113":{"tf":1.0},"1209":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.7320508075688772},"285":{"tf":1.0},"340":{"tf":1.7320508075688772},"536":{"tf":1.0},"567":{"tf":1.7320508075688772},"722":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":2.23606797749979},"845":{"tf":1.7320508075688772},"848":{"tf":2.23606797749979},"973":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"831":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"833":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"848":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"1219":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":91,"docs":{"1020":{"tf":1.0},"1021":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1177":{"tf":2.23606797749979},"1184":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1212":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1278":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"1457":{"tf":1.0},"197":{"tf":2.23606797749979},"358":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":2.23606797749979},"440":{"tf":2.0},"442":{"tf":2.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"592":{"tf":1.0},"613":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"65":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"774":{"tf":1.0},"862":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":2.449489742783178},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"93":{"tf":1.0},"941":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":2.23606797749979},"995":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":15,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1122":{"tf":1.0},"1403":{"tf":2.0},"1420":{"tf":1.0},"1433":{"tf":1.0},"174":{"tf":1.0},"382":{"tf":1.4142135623730951},"47":{"tf":1.0},"495":{"tf":1.0},"616":{"tf":1.4142135623730951},"739":{"tf":1.0},"792":{"tf":1.0},"845":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"739":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":31,"docs":{"1045":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1186":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1297":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"262":{"tf":1.0},"276":{"tf":1.0},"414":{"tf":1.0},"439":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"558":{"tf":1.4142135623730951},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":36,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1440":{"tf":3.3166247903554},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":2.23606797749979},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":2.0},"34":{"tf":1.0},"4":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":2.0},"902":{"tf":1.0},"908":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1440":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"301":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"295":{"tf":1.0},"302":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"918":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1275":{"tf":1.4142135623730951},"1278":{"tf":1.4142135623730951},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1355":{"tf":1.0},"1381":{"tf":1.0},"1495":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.4142135623730951},"465":{"tf":2.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.23606797749979},"502":{"tf":2.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"512":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"547":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":40,"docs":{"1047":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1084":{"tf":1.0},"1093":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1456":{"tf":1.7320508075688772},"1502":{"tf":2.23606797749979},"1503":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.7320508075688772},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1509":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.7320508075688772},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1522":{"tf":1.4142135623730951},"1523":{"tf":1.7320508075688772},"1524":{"tf":1.0},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.0},"1527":{"tf":1.7320508075688772},"1528":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"446":{"tf":1.0},"545":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"614":{"tf":1.0}}}}}},"df":5,"docs":{"1432":{"tf":1.0},"381":{"tf":1.0},"614":{"tf":1.0},"788":{"tf":1.0},"836":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"1358":{"tf":1.0},"381":{"tf":1.0},"442":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1084":{"tf":1.0},"934":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"264":{"tf":1.4142135623730951},"664":{"tf":1.0},"840":{"tf":1.4142135623730951},"845":{"tf":1.0},"889":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"1071":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1439":{"tf":1.0},"742":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.0},"1130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"18":{"tf":1.0},"357":{"tf":1.0},"501":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"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":{"916":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"1292":{"tf":1.0},"1429":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1482":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"976":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":21,"docs":{"1126":{"tf":1.4142135623730951},"115":{"tf":1.0},"1220":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1363":{"tf":1.0},"1374":{"tf":1.0},"1386":{"tf":1.0},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"319":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"x":{"df":2,"docs":{"1287":{"tf":1.0},"925":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1320":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":{"1151":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1151":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1137":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":4.123105625617661},"1152":{"tf":2.23606797749979},"506":{"tf":1.7320508075688772}},"j":{"a":{"c":{"df":1,"docs":{"506":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"1197":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"1497":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"554":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0}},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1358":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":146,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"108":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1107":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":2.0},"1174":{"tf":2.23606797749979},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1501":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"790":{"tf":1.0},"851":{"tf":1.0},"881":{"tf":1.4142135623730951},"910":{"tf":2.0},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.7320508075688772},"918":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0}}},"r":{"df":1,"docs":{"1030":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1255":{"tf":1.0},"2":{"tf":1.0},"227":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}},"i":{"df":25,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1260":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.0},"1469":{"tf":1.0},"1487":{"tf":1.4142135623730951},"166":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"532":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.4142135623730951},"634":{"tf":1.0},"699":{"tf":1.4142135623730951},"709":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"1264":{"tf":1.0},"1349":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"348":{"tf":1.0},"351":{"tf":1.7320508075688772},"353":{"tf":1.0},"357":{"tf":1.0},"515":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"545":{"tf":1.0},"557":{"tf":1.4142135623730951},"583":{"tf":1.7320508075688772},"591":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"692":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":5,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}},"y":{"[":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1305":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"171":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"935":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"21":{"tf":1.0},"295":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"858":{"tf":1.0},"932":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1048":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":1.0},"1003":{"tf":1.4142135623730951},"1050":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.4142135623730951},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1261":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"1423":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"593":{"tf":1.0},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"799":{"tf":1.0},"858":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"980":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1014":{"tf":1.0},"1054":{"tf":1.0},"1161":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1262":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1423":{"tf":1.0},"1426":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"406":{"tf":1.0},"487":{"tf":1.4142135623730951},"501":{"tf":1.0},"516":{"tf":1.0},"523":{"tf":1.0},"593":{"tf":1.0},"640":{"tf":1.0},"693":{"tf":1.0},"700":{"tf":1.0},"726":{"tf":1.4142135623730951},"992":{"tf":1.0}},"i":{"df":10,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":10,"docs":{"1216":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"845":{"tf":1.0},"873":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1340":{"tf":1.4142135623730951},"1520":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"669":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"676":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"1333":{"tf":2.23606797749979},"151":{"tf":1.0},"167":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"902":{"tf":1.0},"938":{"tf":1.0},"945":{"tf":1.0},"976":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":97,"docs":{"1112":{"tf":2.0},"1122":{"tf":1.0},"1127":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1158":{"tf":2.449489742783178},"1179":{"tf":1.0},"1186":{"tf":1.0},"1219":{"tf":1.0},"1227":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1399":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1475":{"tf":1.0},"1506":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"309":{"tf":1.0},"348":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"398":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":2.0},"51":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"645":{"tf":1.4142135623730951},"676":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"73":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"762":{"tf":2.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"956":{"tf":1.0},"999":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"1181":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1452":{"tf":1.0},"2":{"tf":1.0},"353":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":18,"docs":{"132":{"tf":2.0},"1325":{"tf":1.0},"1336":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.0},"138":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":2.0},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.4142135623730951},"226":{"tf":1.0},"579":{"tf":1.0},"73":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"101":{"tf":1.0},"1027":{"tf":1.0},"1070":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1285":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1456":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":1.0},"1524":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"602":{"tf":1.0},"69":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1061":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1491":{"tf":1.0},"681":{"tf":1.4142135623730951},"911":{"tf":1.0},"927":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1085":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"61":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"987":{"tf":1.0}}}}},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1095":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1420":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1047":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"1515":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{}}},"df":155,"docs":{"1007":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.449489742783178},"1052":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1161":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1209":{"tf":1.0},"1218":{"tf":1.0},"124":{"tf":1.0},"1268":{"tf":1.0},"127":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1288":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1325":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1340":{"tf":2.23606797749979},"1349":{"tf":1.0},"135":{"tf":2.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1399":{"tf":3.0},"1401":{"tf":2.23606797749979},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":2.449489742783178},"1456":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1487":{"tf":1.0},"150":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":2.6457513110645907},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"271":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.0},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"622":{"tf":1.0},"635":{"tf":2.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"709":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"794":{"tf":1.0},"81":{"tf":1.0},"847":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"926":{"tf":2.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":2.0},"995":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1000":{"tf":1.0},"1033":{"tf":1.0},"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"345":{"tf":1.0},"572":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"df":34,"docs":{"117":{"tf":1.4142135623730951},"1261":{"tf":1.4142135623730951},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.0},"145":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"512":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"827":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"57":{"tf":1.0},"985":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":5,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1088":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":75,"docs":{"1127":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1172":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1182":{"tf":2.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1348":{"tf":2.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"321":{"tf":2.0},"322":{"tf":1.0},"327":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"5":{"tf":1.4142135623730951},"513":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1158":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1359":{"tf":1.0},"1451":{"tf":1.0},"1524":{"tf":1.0},"327":{"tf":1.0},"348":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"732":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":18,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1228":{"tf":1.0},"1287":{"tf":1.0},"1298":{"tf":1.0},"1451":{"tf":1.0},"1526":{"tf":1.0},"242":{"tf":1.0},"446":{"tf":1.0},"456":{"tf":1.0},"486":{"tf":1.0},"510":{"tf":1.0},"82":{"tf":1.4142135623730951},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.4142135623730951},"976":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":45,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1169":{"tf":1.0},"1216":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1404":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.7320508075688772},"243":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"284":{"tf":2.23606797749979},"288":{"tf":2.8284271247461903},"295":{"tf":2.0},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"314":{"tf":2.0},"315":{"tf":1.4142135623730951},"597":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"79":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1080":{"tf":1.0},"669":{"tf":1.0},"911":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"371":{"tf":1.0},"394":{"tf":1.0},"519":{"tf":2.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"581":{"tf":2.449489742783178},"590":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":18,"docs":{"1085":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"450":{"tf":1.4142135623730951},"605":{"tf":1.0},"82":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"h":{"df":2,"docs":{"1082":{"tf":1.0},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}},"i":{"df":3,"docs":{"1006":{"tf":1.0},"1011":{"tf":1.0},"1405":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1522":{"tf":1.0},"355":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"921":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"m":{"df":17,"docs":{"1156":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1510":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"5":{"tf":1.0},"514":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"935":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":33,"docs":{"1081":{"tf":2.449489742783178},"1088":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1306":{"tf":2.0},"1307":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"298":{"tf":1.0},"334":{"tf":1.0},"363":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"506":{"tf":1.4142135623730951},"519":{"tf":2.0},"75":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0},"999":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1180":{"tf":1.0},"1390":{"tf":1.0},"1441":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"790":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"767":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1120":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"28":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.4142135623730951},"511":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"608":{"tf":1.0},"64":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":2.0},"811":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"306":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":60,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":2.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"4":{"tf":1.0},"887":{"tf":1.0},"898":{"tf":1.7320508075688772},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1458":{"tf":1.0},"83":{"tf":1.0},"932":{"tf":1.0}}}}},"df":0,"docs":{}},"df":14,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":1.4142135623730951},"1346":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"179":{"tf":1.0},"208":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1083":{"tf":1.7320508075688772}}}}}}},"k":{"df":21,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0}}},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.23606797749979},"1135":{"tf":1.0},"1506":{"tf":1.0},"1515":{"tf":1.7320508075688772},"545":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"1082":{"tf":1.0},"1194":{"tf":1.0},"177":{"tf":1.0},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"942":{"tf":1.0}}},"df":18,"docs":{"1035":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"1342":{"tf":1.0},"1436":{"tf":1.0},"1448":{"tf":1.0},"359":{"tf":1.0},"43":{"tf":1.0},"593":{"tf":1.0},"71":{"tf":1.0},"809":{"tf":1.0},"855":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"984":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"661":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"'":{"df":2,"docs":{"1222":{"tf":1.0},"1243":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1228":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1223":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1225":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":43,"docs":{"1221":{"tf":2.23606797749979},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":3,"docs":{"1154":{"tf":1.4142135623730951},"1155":{"tf":1.0},"1174":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"1520":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"259":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.7320508075688772},"4":{"tf":1.0},"899":{"tf":1.0}}}}}}}}}}}},"r":{"df":71,"docs":{"1046":{"tf":1.0},"1082":{"tf":1.0},"1088":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1200":{"tf":1.0},"1207":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1313":{"tf":1.0},"1322":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1369":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1401":{"tf":1.0},"1448":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1484":{"tf":1.0},"171":{"tf":1.4142135623730951},"268":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"409":{"tf":1.4142135623730951},"42":{"tf":1.0},"423":{"tf":1.0},"451":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"516":{"tf":1.0},"549":{"tf":1.0},"558":{"tf":1.4142135623730951},"589":{"tf":1.0},"591":{"tf":1.0},"595":{"tf":1.0},"615":{"tf":1.0},"620":{"tf":1.0},"643":{"tf":1.4142135623730951},"673":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"767":{"tf":1.0},"799":{"tf":1.0},"847":{"tf":1.0},"851":{"tf":1.0},"911":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.4142135623730951},"981":{"tf":1.0},"983":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1048":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"940":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1100":{"tf":1.4142135623730951},"1102":{"tf":1.0},"871":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"614":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"611":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":89,"docs":{"107":{"tf":1.7320508075688772},"1079":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1196":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1247":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.7320508075688772},"1438":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1501":{"tf":1.0},"1515":{"tf":1.0},"1531":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"244":{"tf":1.0},"271":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"43":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"519":{"tf":2.23606797749979},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":3.0},"595":{"tf":1.0},"600":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"605":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.7320508075688772},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"751":{"tf":1.0},"836":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"866":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"901":{"tf":1.0},"916":{"tf":2.0},"918":{"tf":1.0},"922":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"538":{"tf":1.0},"539":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":3,"docs":{"1112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":22,"docs":{"1080":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"1286":{"tf":2.23606797749979},"1292":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1314":{"tf":1.0},"1436":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"479":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"61":{"tf":1.0},"747":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"152":{"tf":1.0},"37":{"tf":1.0},"753":{"tf":1.0},"767":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"751":{"tf":1.0}}}}}},"df":7,"docs":{"152":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"767":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}},"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}},"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":{"1394":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1353":{"tf":1.4142135623730951}}},"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":{"1367":{"tf":2.0}}}}}}}}},"df":41,"docs":{"1142":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1433":{"tf":1.0},"1469":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.4142135623730951},"527":{"tf":1.0},"605":{"tf":1.4142135623730951},"614":{"tf":1.0},"634":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"798":{"tf":1.0},"819":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.7320508075688772},"850":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"[":{"'":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1072":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1072":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1072":{"tf":1.0},"1094":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"79":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1276":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"292":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1227":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"802":{"tf":1.0},"93":{"tf":1.0}}}}},"df":7,"docs":{"1452":{"tf":1.0},"1477":{"tf":1.0},"1520":{"tf":1.0},"356":{"tf":1.0},"590":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":9,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"461":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"393":{"tf":1.0},"627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1338":{"tf":1.4142135623730951},"1390":{"tf":1.0}}}}},"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":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1385":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":43,"docs":{"1154":{"tf":1.0},"1219":{"tf":1.0},"1250":{"tf":1.0},"129":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1346":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.0},"1428":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.0},"449":{"tf":1.0},"627":{"tf":1.7320508075688772},"628":{"tf":1.0},"629":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"16":{"tf":1.0},"36":{"tf":1.4142135623730951},"453":{"tf":1.0},"914":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"903":{"tf":1.0}}}}},"df":9,"docs":{"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.4142135623730951},"277":{"tf":1.0},"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"1017":{"tf":1.4142135623730951},"1023":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1109":{"tf":1.4142135623730951},"1136":{"tf":1.0},"120":{"tf":1.4142135623730951},"1222":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"828":{"tf":1.0},"831":{"tf":1.4142135623730951},"851":{"tf":1.0},"909":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"995":{"tf":1.0}}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":2,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.4142135623730951}}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1219":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"18":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.7320508075688772},"332":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.7320508075688772},"6":{"tf":1.0},"690":{"tf":1.0},"725":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"972":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"347":{"tf":1.0},"348":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1022":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1407":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1077":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1376":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1052":{"tf":1.0},"1206":{"tf":1.0},"1225":{"tf":1.0},"149":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1160":{"tf":1.0},"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"m":{"df":12,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1306":{"tf":1.0},"439":{"tf":1.0},"467":{"tf":1.0},"528":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"713":{"tf":1.0},"82":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":68,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"648":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1039":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1212":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"809":{"tf":1.0},"818":{"tf":1.0},"871":{"tf":1.0},"901":{"tf":1.0},"976":{"tf":1.0}}}}},"s":{"df":30,"docs":{"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1197":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1419":{"tf":1.0},"1465":{"tf":1.0},"1479":{"tf":1.0},"372":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"522":{"tf":1.0},"588":{"tf":1.7320508075688772},"606":{"tf":1.0},"656":{"tf":2.0},"657":{"tf":1.0},"699":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"656":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"656":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"1144":{"tf":1.4142135623730951},"370":{"tf":1.0},"604":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"214":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"749":{"tf":1.0}}}}},"df":36,"docs":{"1130":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1305":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"855":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"980":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1333":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1144":{"tf":1.0},"1148":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1219":{"tf":1.0},"1339":{"tf":2.0},"370":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"849":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":2,"docs":{"1197":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"1145":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1253":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":2.23606797749979},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":2.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":3.605551275463989},"963":{"tf":1.7320508075688772},"969":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"1000":{"tf":1.0},"1256":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"_":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"104":{"tf":1.0},"1092":{"tf":1.0},"1114":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1154":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1219":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"1288":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1365":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.23606797749979},"1421":{"tf":2.0},"1422":{"tf":2.23606797749979},"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1495":{"tf":1.0},"1522":{"tf":1.0},"1528":{"tf":1.0},"280":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"378":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.7320508075688772},"462":{"tf":1.0},"485":{"tf":1.0},"502":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"522":{"tf":1.0},"528":{"tf":1.0},"531":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.4142135623730951},"626":{"tf":1.0},"629":{"tf":1.0},"648":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"740":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.0},"890":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"911":{"tf":2.6457513110645907},"916":{"tf":1.7320508075688772},"950":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":32,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1182":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1294":{"tf":1.0},"13":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1424":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"23":{"tf":1.0},"422":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.4142135623730951},"689":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"856":{"tf":1.0},"91":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"a":{"df":1,"docs":{"1378":{"tf":1.0}}},"b":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":57,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":2.0},"1268":{"tf":1.7320508075688772},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"424":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"461":{"tf":2.8284271247461903},"463":{"tf":1.0},"465":{"tf":2.6457513110645907},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"489":{"tf":2.0},"490":{"tf":1.7320508075688772},"495":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":2.23606797749979},"530":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":2.23606797749979},"707":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1399":{"tf":1.0},"382":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1119":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":4,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"985":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1323":{"tf":1.0},"156":{"tf":1.0},"859":{"tf":1.0}}}},"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"506":{"tf":1.0},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1006":{"tf":1.0}}}},"m":{"df":4,"docs":{"1044":{"tf":2.8284271247461903},"1465":{"tf":1.0},"376":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772}}},"n":{"d":{"df":12,"docs":{"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1329":{"tf":1.0},"1362":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"855":{"tf":1.4142135623730951},"868":{"tf":1.0},"872":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"901":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"1404":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"486":{"tf":1.4142135623730951},"501":{"tf":1.0},"901":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":16,"docs":{"1041":{"tf":1.0},"1048":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1381":{"tf":1.0},"206":{"tf":1.4142135623730951},"29":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"871":{"tf":1.0},"925":{"tf":1.0},"948":{"tf":1.0},"996":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1315":{"tf":1.0},"1403":{"tf":1.4142135623730951},"169":{"tf":1.0},"856":{"tf":1.0},"951":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1194":{"tf":1.7320508075688772},"181":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1071":{"tf":1.0},"1105":{"tf":1.0},"116":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1528":{"tf":1.0},"352":{"tf":2.23606797749979},"55":{"tf":1.0},"584":{"tf":2.23606797749979},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1054":{"tf":1.0},"1088":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"43":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"1301":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"814":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"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":{"22":{"tf":1.4142135623730951}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1116":{"tf":1.0},"157":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"759":{"tf":1.0},"760":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":1,"docs":{"760":{"tf":1.7320508075688772}}},"p":{"df":18,"docs":{"10":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"554":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"581":{"tf":1.0},"583":{"tf":1.7320508075688772},"585":{"tf":2.23606797749979},"6":{"tf":1.0},"682":{"tf":1.0},"691":{"tf":1.0},"78":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"590":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1333":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}},"i":{"df":3,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1177":{"tf":1.0},"1197":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"511":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1402":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"$":{"1":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":18,"docs":{"1011":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"974":{"tf":1.0},"996":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"109":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1221":{"tf":1.0},"1437":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"36":{"tf":1.0},"93":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"807":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.7320508075688772},"580":{"tf":2.6457513110645907}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1062":{"tf":1.0},"1161":{"tf":1.0},"478":{"tf":1.0},"798":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"1071":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1490":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"911":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"969":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1522":{"tf":1.0}}},"y":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1301":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1426":{"tf":1.0},"366":{"tf":1.0},"600":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"473":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"913":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1006":{"tf":1.0},"1419":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"760":{"tf":1.0},"762":{"tf":1.0}}}},"df":36,"docs":{"1012":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"1038":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.7320508075688772},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"41":{"tf":1.0},"434":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"474":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"b":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1310":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1164":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1015":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1037":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1254":{"tf":1.0},"1472":{"tf":1.0},"345":{"tf":1.7320508075688772},"572":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"82":{"tf":1.7320508075688772},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"1015":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.7320508075688772},"57":{"tf":1.0},"571":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":18,"docs":{"1009":{"tf":1.4142135623730951},"1113":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1283":{"tf":1.4142135623730951},"1311":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"168":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"961":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"925":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1011":{"tf":1.4142135623730951},"1174":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0},"833":{"tf":1.0},"934":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"833":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"236":{"tf":1.0},"666":{"tf":1.0},"911":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"946":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":10,"docs":{"1077":{"tf":1.0},"1080":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1312":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"911":{"tf":1.0},"981":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"884":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"1144":{"tf":1.0},"1161":{"tf":1.0},"1255":{"tf":1.0},"227":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"373":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":15,"docs":{"1003":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"981":{"tf":1.0},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1306":{"tf":1.0},"1522":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1154":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"912":{"tf":1.4142135623730951},"936":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"581":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"581":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1381":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"555":{"tf":1.0},"644":{"tf":1.0},"695":{"tf":1.0}},"r":{"df":2,"docs":{"642":{"tf":1.0},"654":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"576":{"tf":1.0},"631":{"tf":1.0},"653":{"tf":1.0},"656":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"651":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"555":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"649":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"637":{"tf":1.0},"656":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0}}}}}},"df":3,"docs":{"625":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"706":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"595":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.0},"769":{"tf":1.4142135623730951},"82":{"tf":1.0},"949":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"595":{"tf":1.0},"618":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1374":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"598":{"tf":1.0},"667":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"618":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1376":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0}}}},"o":{"df":1,"docs":{"618":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"599":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1021":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0}}}}}},"df":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1126":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}},"s":{"df":1,"docs":{"1374":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"723":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"576":{"tf":1.0},"87":{"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":{"555":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"653":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"653":{"tf":1.0}}}}}}}},"df":2,"docs":{"1375":{"tf":1.4142135623730951},"1386":{"tf":2.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"609":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1154":{"tf":1.0},"120":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"138":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"1440":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"916":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"987":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"1166":{"tf":1.4142135623730951},"1336":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"759":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":47,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1106":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1253":{"tf":1.0},"1320":{"tf":1.0},"1448":{"tf":1.0},"1464":{"tf":2.0},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1528":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"280":{"tf":1.4142135623730951},"31":{"tf":1.0},"418":{"tf":1.4142135623730951},"526":{"tf":1.0},"536":{"tf":1.7320508075688772},"58":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"722":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1206":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"913":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1022":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1530":{"tf":1.4142135623730951},"974":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":41,"docs":{"11":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1149":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"177":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.0},"34":{"tf":1.7320508075688772},"359":{"tf":1.0},"43":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"593":{"tf":1.0},"675":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"920":{"tf":1.4142135623730951},"981":{"tf":1.0},"991":{"tf":1.4142135623730951},"993":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1390":{"tf":1.0},"311":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1343":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0}},"u":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1170":{"tf":1.0},"176":{"tf":1.0},"837":{"tf":1.0},"856":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":42,"docs":{"1068":{"tf":1.0},"1086":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1205":{"tf":1.0},"1284":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1396":{"tf":1.0},"14":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.7320508075688772},"49":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.7320508075688772},"930":{"tf":1.0},"935":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"976":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"759":{"tf":1.0},"871":{"tf":1.0}}},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"732":{"tf":1.0},"94":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"257":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.7320508075688772},"652":{"tf":1.0},"661":{"tf":1.7320508075688772},"82":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"804":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1202":{"tf":1.0},"1285":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":2.449489742783178},"1365":{"tf":1.0},"1388":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.4142135623730951},"321":{"tf":1.0},"347":{"tf":1.7320508075688772},"391":{"tf":1.0},"548":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0},"625":{"tf":1.0},"766":{"tf":1.0},"814":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"845":{"tf":1.0},"848":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"900":{"tf":1.7320508075688772},"902":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"543":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"82":{"tf":1.0},"856":{"tf":1.0},"925":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":12,"docs":{"1014":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1403":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.0},"456":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"915":{"tf":1.0},"960":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1011":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.7320508075688772},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1455":{"tf":1.4142135623730951},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1149":{"tf":1.0},"1499":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":29,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.7320508075688772},"1119":{"tf":1.7320508075688772},"1120":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1122":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"41":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"792":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.4142135623730951},"832":{"tf":1.0},"834":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"827":{"tf":1.7320508075688772},"883":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1162":{"tf":1.0},"1163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1008":{"tf":1.0},"1032":{"tf":1.0},"1042":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1276":{"tf":2.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"169":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"760":{"tf":1.0},"918":{"tf":1.7320508075688772},"925":{"tf":1.4142135623730951},"93":{"tf":1.0},"934":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":62,"docs":{"108":{"tf":2.0},"1173":{"tf":2.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"93":{"tf":1.4142135623730951},"936":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951}},"n":{"df":10,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.0},"1237":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"837":{"tf":1.0},"850":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"i":{"d":{"df":81,"docs":{"1":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1051":{"tf":1.0},"1073":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1173":{"tf":1.0},"118":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1333":{"tf":2.0},"1336":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1400":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1466":{"tf":1.0},"147":{"tf":1.0},"1476":{"tf":1.0},"225":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":2.6457513110645907},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"357":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"482":{"tf":1.0},"50":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.4142135623730951},"861":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"952":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1176":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1197":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"542":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"951":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":24,"docs":{"1015":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1025":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"343":{"tf":1.7320508075688772},"57":{"tf":1.0},"570":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"262":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1213":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}}}}}},"_":{"a":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":13,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1518":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"_":{"b":{"6":{"4":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"638":{"tf":1.0},"646":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.7320508075688772},"710":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"948":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"611":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"277":{"tf":1.0},"616":{"tf":1.0},"704":{"tf":1.7320508075688772},"710":{"tf":1.7320508075688772},"991":{"tf":1.4142135623730951}}}}}},"df":87,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1212":{"tf":1.0},"1228":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1276":{"tf":1.4142135623730951},"130":{"tf":1.0},"1320":{"tf":1.0},"1333":{"tf":1.0},"1436":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"486":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"84":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"896":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.7320508075688772},"915":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"939":{"tf":1.7320508075688772},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"404":{"tf":1.0},"412":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":7,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.0},"527":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"608":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":19,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"375":{"tf":1.0},"45":{"tf":1.0},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"911":{"tf":1.0},"913":{"tf":1.0},"950":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"378":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":17,"docs":{"1222":{"tf":1.0},"1235":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1476":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"33":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1015":{"tf":1.0},"1041":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1158":{"tf":1.0}}}},"t":{"df":3,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0},"1292":{"tf":1.0}}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"587":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1392":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1148":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1149":{"tf":1.0},"1155":{"tf":1.0},"1392":{"tf":1.7320508075688772},"684":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"3":{".":{"1":{"1":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"10":{"tf":1.4142135623730951},"1126":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1183":{"tf":2.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":2.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"548":{"tf":2.23606797749979},"549":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"561":{"tf":1.4142135623730951},"576":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"6":{"tf":1.4142135623730951},"610":{"tf":1.0},"620":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0},"690":{"tf":1.0},"769":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"q":{"1":{"df":17,"docs":{"1403":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"616":{"tf":1.0},"640":{"tf":1.0},"785":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1112":{"tf":2.0},"1116":{"tf":1.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":32,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1032":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":2.0},"15":{"tf":1.0},"1515":{"tf":1.7320508075688772},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"984":{"tf":1.0},"996":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"1507":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1010":{"tf":1.0},"226":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"843":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1083":{"tf":2.23606797749979},"1084":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1309":{"tf":1.0},"35":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"871":{"tf":1.0},"944":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1143":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"1242":{"tf":1.0},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":2.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"856":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":45,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"18":{"tf":1.0},"293":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"593":{"tf":1.0},"665":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"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.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1479":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1160":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1168":{"tf":1.0}}},"s":{"df":18,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0},"1394":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"(":{"1":{"0":{"df":1,"docs":{"726":{"tf":1.0}}},"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":10,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"379":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.4142135623730951},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}},"df":10,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"682":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1276":{"tf":1.0},"41":{"tf":1.0},"486":{"tf":1.0},"751":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1227":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"1094":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1174":{"tf":1.0},"1194":{"tf":1.0},"125":{"tf":1.7320508075688772},"1270":{"tf":1.0},"1271":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1340":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1422":{"tf":1.0},"1498":{"tf":1.0},"1529":{"tf":1.0},"192":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.0},"369":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"603":{"tf":1.0},"660":{"tf":1.0},"667":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":9,"docs":{"1396":{"tf":1.0},"14":{"tf":1.7320508075688772},"19":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"454":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"673":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"1042":{"tf":1.0},"1211":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"506":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1403":{"tf":1.0},"856":{"tf":1.0},"934":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"1152":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1286":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"440":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"525":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"702":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1083":{"tf":1.0},"916":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"208":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"599":{"tf":1.0},"616":{"tf":1.4142135623730951},"879":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"103":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1041":{"tf":1.0},"1089":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1295":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"241":{"tf":1.0},"342":{"tf":1.4142135623730951},"437":{"tf":1.0},"545":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"922":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":44,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.7320508075688772},"1004":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1235":{"tf":2.0},"1247":{"tf":1.0},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.449489742783178},"1476":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"292":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"31":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0},"732":{"tf":1.0},"763":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"932":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":2.0},"977":{"tf":1.0},"979":{"tf":1.0},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1096":{"tf":1.4142135623730951},"1099":{"tf":1.0},"974":{"tf":1.7320508075688772},"983":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}},"s":{"df":5,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1369":{"tf":1.0},"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1307":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}}}},"df":50,"docs":{"1052":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1355":{"tf":2.449489742783178},"1401":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1471":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"166":{"tf":1.0},"192":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"434":{"tf":2.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"538":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"847":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"883":{"tf":1.0},"916":{"tf":1.4142135623730951}},"f":{"df":13,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":172,"docs":{"1092":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1347":{"tf":1.7320508075688772},"1370":{"tf":1.0},"1395":{"tf":1.0},"1407":{"tf":2.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.7320508075688772},"262":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.4142135623730951},"366":{"tf":1.0},"385":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"428":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.4142135623730951},"480":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.7320508075688772},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"594":{"tf":1.4142135623730951},"600":{"tf":1.0},"619":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"685":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"747":{"tf":1.4142135623730951},"748":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"838":{"tf":1.7320508075688772},"845":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.7320508075688772},"860":{"tf":1.0},"870":{"tf":1.7320508075688772},"873":{"tf":1.0},"881":{"tf":1.0},"885":{"tf":1.4142135623730951},"977":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1419":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1292":{"tf":1.0},"1491":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1465":{"tf":1.0},"1467":{"tf":1.0},"254":{"tf":1.0},"976":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1099":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1154":{"tf":1.0},"1437":{"tf":1.0},"1452":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1179":{"tf":1.0},"1208":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1405":{"tf":1.4142135623730951},"373":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"816":{"tf":1.0},"93":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"96":{"tf":2.0},"976":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1474":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"783":{"tf":2.0},"976":{"tf":1.0}}}},"df":16,"docs":{"1208":{"tf":1.7320508075688772},"1230":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"533":{"tf":1.0},"646":{"tf":1.0},"710":{"tf":1.0},"783":{"tf":1.7320508075688772},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"96":{"tf":1.0},"977":{"tf":1.0}},"i":{"df":3,"docs":{"1075":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1010":{"tf":1.0},"1097":{"tf":1.0},"169":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"951":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"351":{"tf":1.0},"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":16,"docs":{"1171":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1507":{"tf":1.0},"221":{"tf":1.0},"458":{"tf":1.4142135623730951},"505":{"tf":1.0},"782":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"929":{"tf":1.0},"930":{"tf":1.0},"932":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"954":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"1117":{"tf":1.4142135623730951},"1298":{"tf":1.0},"748":{"tf":1.0},"869":{"tf":1.0},"885":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1194":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"871":{"tf":1.0},"947":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}},"df":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"871":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1007":{"tf":1.0},"1047":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"166":{"tf":1.0},"874":{"tf":1.0},"911":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"1214":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0}}},"v":{"df":7,"docs":{"1094":{"tf":1.0},"1403":{"tf":1.0},"1470":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"451":{"tf":1.0},"874":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"805":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":8,"docs":{"1310":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1507":{"tf":1.0},"237":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":3,"docs":{"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":2.0}}},"df":1,"docs":{"884":{"tf":1.0}}}},"o":{"df":1,"docs":{"93":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"635":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1339":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":22,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1206":{"tf":1.0},"1339":{"tf":3.605551275463989},"182":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"519":{"tf":1.4142135623730951},"696":{"tf":1.0},"797":{"tf":1.4142135623730951},"833":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.4142135623730951},"849":{"tf":1.0},"859":{"tf":1.4142135623730951},"916":{"tf":1.0},"921":{"tf":1.0},"94":{"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":3,"docs":{"554":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"1213":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"1194":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"749":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"456":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1278":{"tf":1.7320508075688772},"1281":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.0},"509":{"tf":1.0},"538":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"503":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"1148":{"tf":1.0},"1192":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1355":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"538":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"1020":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1265":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"647":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":70,"docs":{"1146":{"tf":1.4142135623730951},"1148":{"tf":2.0},"1149":{"tf":1.0},"1185":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1206":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":2.23606797749979},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":2.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.7320508075688772},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":2.23606797749979},"1405":{"tf":1.0},"1441":{"tf":1.0},"1474":{"tf":1.0},"1493":{"tf":2.23606797749979},"151":{"tf":1.0},"19":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.7320508075688772},"420":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.0},"507":{"tf":1.0},"528":{"tf":1.7320508075688772},"617":{"tf":1.0},"648":{"tf":1.7320508075688772},"654":{"tf":1.0},"663":{"tf":1.0},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.7320508075688772},"713":{"tf":1.0},"714":{"tf":1.0},"804":{"tf":1.0},"956":{"tf":1.7320508075688772}},"i":{"d":{"df":2,"docs":{"383":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":163,"docs":{"100":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1055":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.4142135623730951},"11":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"115":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1208":{"tf":1.0},"1213":{"tf":1.0},"1222":{"tf":1.0},"1242":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":2.449489742783178},"1304":{"tf":1.7320508075688772},"132":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1333":{"tf":1.4142135623730951},"1334":{"tf":2.23606797749979},"1336":{"tf":1.0},"135":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1420":{"tf":1.0},"1423":{"tf":1.0},"143":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1448":{"tf":2.0},"1452":{"tf":2.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1466":{"tf":1.7320508075688772},"1476":{"tf":1.7320508075688772},"1480":{"tf":1.7320508075688772},"1490":{"tf":1.0},"1515":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":2.23606797749979},"245":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.4142135623730951},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"342":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.0},"446":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"569":{"tf":1.0},"588":{"tf":1.0},"603":{"tf":1.0},"615":{"tf":1.0},"62":{"tf":1.0},"640":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"744":{"tf":1.7320508075688772},"754":{"tf":1.7320508075688772},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.0},"766":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"82":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.7320508075688772},"94":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"946":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"977":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":2.0}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"1522":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"df":1,"docs":{"503":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"574":{"tf":1.0},"575":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":2,"docs":{"1355":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1292":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}}}},"df":25,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"461":{"tf":1.4142135623730951},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.0},"511":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1278":{"tf":1.0},"1355":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"1267":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"497":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"312":{"tf":2.0},"506":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1254":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1212":{"tf":1.0},"1220":{"tf":1.0},"1436":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}}}},"v":{"df":5,"docs":{"1145":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"1071":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"442":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.7320508075688772},"803":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"237":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"139":{"tf":1.0},"1441":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":67,"docs":{"1010":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1474":{"tf":1.0},"1494":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.0},"415":{"tf":1.7320508075688772},"451":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.4142135623730951},"494":{"tf":2.0},"495":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"511":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"649":{"tf":1.7320508075688772},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"782":{"tf":1.4142135623730951},"944":{"tf":1.0},"954":{"tf":1.0},"957":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1149":{"tf":1.0},"1379":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.4142135623730951},"953":{"tf":1.0}}}}}}}}}},"t":{"df":8,"docs":{"1106":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"65":{"tf":1.0},"810":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":2.0},"1530":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1105":{"tf":1.0},"1253":{"tf":1.0},"51":{"tf":1.0},"908":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"364":{"tf":1.0},"384":{"tf":1.0},"598":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"957":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"706":{"tf":1.0},"716":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"468":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1301":{"tf":1.0},"1310":{"tf":1.0},"1314":{"tf":1.0}},"s":{"[":{"0":{"df":1,"docs":{"1301":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"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":2,"docs":{"367":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"384":{"tf":1.4142135623730951},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}},"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"649":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1314":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1355":{"tf":2.449489742783178},"1358":{"tf":2.449489742783178},"1365":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1381":{"tf":2.23606797749979},"1388":{"tf":1.0},"1390":{"tf":2.449489742783178},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"182":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"603":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"649":{"tf":1.4142135623730951},"667":{"tf":1.7320508075688772},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"687":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"916":{"tf":1.7320508075688772},"925":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"991":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1390":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"1080":{"tf":1.0},"1214":{"tf":1.0},"1313":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":163,"docs":{"1103":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1301":{"tf":2.449489742783178},"1302":{"tf":2.449489742783178},"1305":{"tf":2.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1381":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":2.449489742783178},"1403":{"tf":2.449489742783178},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1436":{"tf":1.0},"262":{"tf":2.0},"286":{"tf":1.0},"31":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"576":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"617":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.0},"916":{"tf":1.0},"950":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1120":{"tf":1.4142135623730951},"1278":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1336":{"tf":2.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"214":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"33":{"tf":1.0},"420":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"765":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.4142135623730951},"88":{"tf":2.8284271247461903},"92":{"tf":1.0},"951":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":7,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1052":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"983":{"tf":1.0},"996":{"tf":1.4142135623730951}}}}}},"f":{"c":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":1,"docs":{"351":{"tf":1.0}},"p":{"df":3,"docs":{"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.7320508075688772},"389":{"tf":1.0},"404":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1346":{"tf":1.0},"1520":{"tf":1.0},"351":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1346":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"1130":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"1145":{"tf":1.0},"248":{"tf":1.0},"911":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":45,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1010":{"tf":2.0},"1011":{"tf":1.7320508075688772},"1012":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1204":{"tf":1.7320508075688772},"1439":{"tf":1.0},"169":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"59":{"tf":1.0},"681":{"tf":1.4142135623730951},"918":{"tf":1.0},"926":{"tf":1.7320508075688772},"969":{"tf":1.0},"981":{"tf":2.0},"982":{"tf":1.7320508075688772},"983":{"tf":1.0},"984":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0},"993":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"995":{"tf":1.4142135623730951},"996":{"tf":2.449489742783178},"997":{"tf":2.449489742783178},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1267":{"tf":1.0},"1276":{"tf":2.23606797749979},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1401":{"tf":1.0},"1526":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"302":{"tf":1.0},"311":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"491":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"500":{"tf":2.6457513110645907}}}}}},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0}}}},"p":{"c":{"df":11,"docs":{"1177":{"tf":1.0},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"669":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"a":{"df":31,"docs":{"1015":{"tf":1.7320508075688772},"1022":{"tf":1.7320508075688772},"1023":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1227":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1491":{"tf":1.0},"728":{"tf":1.0},"743":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}}},"df":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":{"1399":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1078":{"tf":1.0},"1084":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1200":{"tf":1.0},"1243":{"tf":1.0},"1258":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1462":{"tf":1.0},"1476":{"tf":1.0},"18":{"tf":1.0},"239":{"tf":1.0},"327":{"tf":1.0},"369":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"473":{"tf":1.0},"555":{"tf":1.0},"603":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.7320508075688772},"871":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0},"116":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"724":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":73,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"1084":{"tf":1.4142135623730951},"115":{"tf":1.0},"1154":{"tf":1.7320508075688772},"1160":{"tf":1.7320508075688772},"1162":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.0},"1213":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1347":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.7320508075688772},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"841":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.0},"860":{"tf":1.4142135623730951},"87":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.0},"884":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"115":{"tf":1.0}}}}}}}},"s":{"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0}}}}},"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.7320508075688772},"1072":{"tf":1.0},"1094":{"tf":2.0},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.0},"1102":{"tf":1.7320508075688772},"1106":{"tf":1.7320508075688772},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.7320508075688772},"1512":{"tf":2.23606797749979},"1513":{"tf":1.7320508075688772},"285":{"tf":1.0},"339":{"tf":2.0},"536":{"tf":1.0},"566":{"tf":2.0},"64":{"tf":1.0},"722":{"tf":1.0},"893":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1108":{"tf":1.0},"287":{"tf":1.0},"726":{"tf":1.7320508075688772},"911":{"tf":1.0},"950":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1161":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"911":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1330":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"1024":{"tf":1.0},"1080":{"tf":1.0},"1265":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"227":{"tf":1.0},"368":{"tf":1.0},"516":{"tf":1.0},"543":{"tf":1.0},"693":{"tf":1.0},"726":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"954":{"tf":1.0},"978":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.8284271247461903},"1445":{"tf":1.0},"1529":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"308":{"tf":2.23606797749979},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"319":{"tf":1.0},"791":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"1063":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1323":{"tf":2.0},"134":{"tf":2.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.0},"179":{"tf":1.7320508075688772},"264":{"tf":1.0},"273":{"tf":1.7320508075688772},"288":{"tf":1.0},"371":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"1089":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1452":{"tf":1.0},"1502":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.4142135623730951},"985":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"741":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1480":{"tf":1.0},"189":{"tf":1.0},"803":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":263,"docs":{"1081":{"tf":1.4142135623730951},"1108":{"tf":2.23606797749979},"1109":{"tf":1.4142135623730951},"1110":{"tf":1.7320508075688772},"1111":{"tf":1.7320508075688772},"1112":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1114":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.7320508075688772},"1124":{"tf":2.449489742783178},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.7320508075688772},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1132":{"tf":1.7320508075688772},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1136":{"tf":2.23606797749979},"1139":{"tf":1.0},"1166":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1209":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":2.449489742783178},"1422":{"tf":1.7320508075688772},"1427":{"tf":2.0},"1429":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1480":{"tf":2.23606797749979},"151":{"tf":1.0},"1522":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"278":{"tf":2.0},"287":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"389":{"tf":1.0},"392":{"tf":2.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"560":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"66":{"tf":1.0},"672":{"tf":1.0},"696":{"tf":1.4142135623730951},"721":{"tf":1.0},"728":{"tf":2.23606797749979},"729":{"tf":2.6457513110645907},"730":{"tf":1.7320508075688772},"731":{"tf":2.0},"732":{"tf":2.0},"733":{"tf":2.0},"734":{"tf":2.23606797749979},"735":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"737":{"tf":1.7320508075688772},"738":{"tf":2.449489742783178},"739":{"tf":1.4142135623730951},"740":{"tf":2.0},"741":{"tf":2.23606797749979},"742":{"tf":2.449489742783178},"743":{"tf":1.0},"744":{"tf":1.7320508075688772},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"747":{"tf":3.3166247903554},"748":{"tf":2.0},"749":{"tf":2.0},"750":{"tf":1.7320508075688772},"751":{"tf":1.0},"752":{"tf":2.8284271247461903},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.7320508075688772},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":2.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"788":{"tf":1.7320508075688772},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.7320508075688772},"800":{"tf":2.0},"801":{"tf":1.7320508075688772},"802":{"tf":1.0},"803":{"tf":2.6457513110645907},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.7320508075688772},"812":{"tf":2.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":2.23606797749979},"829":{"tf":2.0},"830":{"tf":1.7320508075688772},"831":{"tf":1.0},"832":{"tf":2.449489742783178},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":2.0},"843":{"tf":1.4142135623730951},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.7320508075688772},"852":{"tf":1.7320508075688772},"853":{"tf":1.7320508075688772},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":2.0},"863":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":2.0},"876":{"tf":2.23606797749979},"877":{"tf":1.7320508075688772},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":2.0},"888":{"tf":1.4142135623730951},"889":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.0},"909":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1324":{"tf":1.0},"278":{"tf":1.0},"519":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"178":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1134":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1017":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"548":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1337":{"tf":1.4142135623730951},"1456":{"tf":1.0},"348":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0},"82":{"tf":1.0},"925":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"1176":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":12,"docs":{"1302":{"tf":3.4641016151377544},"1323":{"tf":1.0},"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"663":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":2.23606797749979},"776":{"tf":1.0},"789":{"tf":1.0},"836":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1084":{"tf":1.0},"129":{"tf":1.0},"1329":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.23606797749979},"901":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1423":{"tf":1.0},"1510":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":171,"docs":{"1":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1018":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1032":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1053":{"tf":1.4142135623730951},"1085":{"tf":1.4142135623730951},"11":{"tf":1.0},"1104":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"113":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1179":{"tf":1.0},"1193":{"tf":1.4142135623730951},"1205":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1455":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1520":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"320":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.7320508075688772},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"446":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.4142135623730951},"486":{"tf":1.0},"536":{"tf":1.0},"56":{"tf":1.7320508075688772},"569":{"tf":1.0},"570":{"tf":1.0},"59":{"tf":1.0},"603":{"tf":1.7320508075688772},"664":{"tf":1.0},"681":{"tf":2.0},"682":{"tf":1.0},"748":{"tf":1.4142135623730951},"758":{"tf":1.0},"760":{"tf":1.0},"816":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.7320508075688772},"851":{"tf":1.0},"897":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"91":{"tf":1.0},"910":{"tf":2.0},"911":{"tf":1.7320508075688772},"912":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"942":{"tf":1.7320508075688772},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.7320508075688772},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.7320508075688772},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.7320508075688772},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"961":{"tf":1.7320508075688772},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"965":{"tf":1.0},"966":{"tf":1.4142135623730951},"967":{"tf":1.7320508075688772},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"971":{"tf":1.7320508075688772},"972":{"tf":1.0},"973":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"977":{"tf":1.4142135623730951},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.4142135623730951},"981":{"tf":1.0},"985":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":49,"docs":{"1013":{"tf":1.4142135623730951},"1053":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1347":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"196":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"603":{"tf":1.0},"619":{"tf":1.4142135623730951},"67":{"tf":1.0},"727":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"763":{"tf":1.0},"773":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"1029":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"206":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"921":{"tf":1.0},"960":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"588":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1404":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1388":{"tf":2.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1001":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"1161":{"tf":1.7320508075688772},"147":{"tf":1.0},"185":{"tf":1.0},"277":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"950":{"tf":1.0},"977":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":2.449489742783178},"1398":{"tf":1.0},"1399":{"tf":3.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1144":{"tf":1.4142135623730951},"776":{"tf":1.0},"789":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1274":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":19,"docs":{"1248":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1292":{"tf":1.0},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"31":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"456":{"tf":1.0},"879":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1228":{"tf":1.0},"1313":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"921":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}}}}}},"t":{"df":7,"docs":{"1192":{"tf":1.4142135623730951},"1439":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"664":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1101":{"tf":1.0},"112":{"tf":1.0},"1145":{"tf":2.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"138":{"tf":1.0},"1436":{"tf":1.0},"1453":{"tf":1.0},"185":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"968":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"860":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1216":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"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":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}}},"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1200":{"tf":1.0},"439":{"tf":1.0},"705":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1243":{"tf":1.0},"1248":{"tf":1.0},"1259":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1179":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1524":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1524":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"473":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"a":{"d":{"d":{"df":3,"docs":{"1179":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1148":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":147,"docs":{"1060":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1179":{"tf":2.0},"1180":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1188":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1192":{"tf":2.23606797749979},"1200":{"tf":1.0},"1202":{"tf":1.7320508075688772},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.7320508075688772},"1262":{"tf":2.0},"1263":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1281":{"tf":2.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":2.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":3.0},"1359":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1401":{"tf":2.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1524":{"tf":1.7320508075688772},"248":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":2.6457513110645907},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"442":{"tf":3.0},"443":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"547":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"617":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":2.0},"682":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.23606797749979},"687":{"tf":1.0},"718":{"tf":2.23606797749979},"719":{"tf":1.0},"82":{"tf":1.0},"851":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"473":{"tf":1.0},"495":{"tf":1.0}}}}}}},"i":{"c":{"df":54,"docs":{"1076":{"tf":1.0},"1143":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1404":{"tf":2.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"147":{"tf":1.0},"155":{"tf":2.6457513110645907},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"523":{"tf":1.0},"55":{"tf":1.4142135623730951},"616":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"733":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":2.0},"759":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"785":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1401":{"tf":2.0},"816":{"tf":1.7320508075688772}},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":58,"docs":{"1056":{"tf":1.0},"1072":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1159":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"1247":{"tf":1.0},"1258":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1315":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1410":{"tf":1.0},"1413":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"182":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"336":{"tf":1.0},"465":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"682":{"tf":1.0},"756":{"tf":1.0},"773":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.4142135623730951},"88":{"tf":1.0},"887":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":39,"docs":{"1061":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1107":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1222":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1261":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1476":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"573":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.4142135623730951},"763":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"851":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"328":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":12,"docs":{"1045":{"tf":1.0},"1245":{"tf":1.0},"1421":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"913":{"tf":1.0},"925":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"1046":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.0},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1213":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1228":{"tf":1.0}}}},"df":0,"docs":{}},"df":28,"docs":{"1075":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1145":{"tf":2.23606797749979},"1518":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"214":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.0},"798":{"tf":1.0},"852":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"580":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1296":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"925":{"tf":1.0}}}},"w":{"df":8,"docs":{"101":{"tf":1.0},"1230":{"tf":1.0},"1323":{"tf":1.0},"1428":{"tf":1.0},"223":{"tf":1.0},"771":{"tf":1.0},"907":{"tf":1.0},"963":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.4142135623730951},"454":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"991":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"df":2,"docs":{"1151":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1346":{"tf":1.4142135623730951},"309":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":220,"docs":{"1":{"tf":1.0},"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1006":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1045":{"tf":2.23606797749979},"1047":{"tf":1.0},"1051":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1142":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1166":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1177":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":2.0},"1196":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1248":{"tf":1.0},"1255":{"tf":1.7320508075688772},"1260":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1375":{"tf":1.7320508075688772},"138":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1423":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1471":{"tf":2.0},"1485":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"397":{"tf":1.7320508075688772},"398":{"tf":2.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.449489742783178},"523":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"53":{"tf":2.0},"531":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.7320508075688772},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"58":{"tf":1.7320508075688772},"588":{"tf":1.0},"598":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"631":{"tf":1.7320508075688772},"632":{"tf":2.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"640":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"654":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":2.449489742783178},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"708":{"tf":1.0},"710":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"782":{"tf":3.1622776601683795},"783":{"tf":1.7320508075688772},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.0},"823":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.7320508075688772},"932":{"tf":2.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.7320508075688772},"950":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.0},"991":{"tf":1.7320508075688772},"994":{"tf":1.0},"995":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"698":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1306":{"tf":1.0},"1315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"404":{"tf":1.0},"527":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":328,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1000":{"tf":1.0},"1007":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1042":{"tf":1.0},"1048":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1144":{"tf":1.7320508075688772},"1146":{"tf":2.449489742783178},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1173":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":2.0},"1194":{"tf":3.3166247903554},"1195":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1209":{"tf":2.23606797749979},"1210":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1231":{"tf":2.0},"1232":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.7320508075688772},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":3.0},"1330":{"tf":2.449489742783178},"1332":{"tf":1.0},"1338":{"tf":2.449489742783178},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.7320508075688772},"1352":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":2.0},"1363":{"tf":1.0},"1369":{"tf":1.0},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":2.0},"1386":{"tf":1.0},"1390":{"tf":1.0},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979},"1402":{"tf":1.0},"1405":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"1415":{"tf":1.0},"142":{"tf":2.0},"1421":{"tf":1.0},"1423":{"tf":2.0},"1436":{"tf":1.0},"146":{"tf":1.0},"1469":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.0},"1472":{"tf":2.0},"1485":{"tf":2.23606797749979},"1486":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1515":{"tf":2.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.0},"404":{"tf":1.0},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"445":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.23606797749979},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":2.23606797749979},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"530":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.7320508075688772},"605":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.4142135623730951},"616":{"tf":2.23606797749979},"617":{"tf":1.4142135623730951},"620":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"tf":2.0},"638":{"tf":1.0},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"646":{"tf":1.7320508075688772},"647":{"tf":1.4142135623730951},"648":{"tf":1.7320508075688772},"649":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":2.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"710":{"tf":1.7320508075688772},"713":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.7320508075688772},"732":{"tf":1.7320508075688772},"747":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":2.0},"77":{"tf":1.0},"782":{"tf":1.7320508075688772},"81":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.0},"833":{"tf":1.0},"837":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"846":{"tf":1.7320508075688772},"847":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":2.449489742783178},"882":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.0},"921":{"tf":2.449489742783178},"926":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.7320508075688772},"957":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"997":{"tf":1.4142135623730951}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"592":{"tf":1.0},"599":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1330":{"tf":2.23606797749979},"1362":{"tf":1.0},"1385":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"365":{"tf":1.0},"383":{"tf":1.0},"599":{"tf":1.0},"617":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"646":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1385":{"tf":1.0},"641":{"tf":1.0},"654":{"tf":1.0},"701":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"617":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":15,"docs":{"1248":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"656":{"tf":1.0},"846":{"tf":1.0}},"u":{"df":6,"docs":{"601":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"632":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"654":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"412":{"tf":1.0}}}}}}}}},"r":{"df":6,"docs":{"1362":{"tf":1.4142135623730951},"1399":{"tf":1.7320508075688772},"407":{"tf":1.0},"420":{"tf":1.0},"524":{"tf":1.0},"88":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"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":2,"docs":{"1361":{"tf":1.4142135623730951},"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1517":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951}},"u":{"df":15,"docs":{"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"612":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1148":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.0},"528":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"469":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"420":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":5,"docs":{"1255":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1384":{"tf":1.0},"406":{"tf":1.0},"525":{"tf":1.0},"617":{"tf":1.0},"640":{"tf":1.0},"702":{"tf":1.0},"786":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1436":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"1039":{"tf":1.0},"1148":{"tf":1.0},"1182":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":14,"docs":{"1045":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1507":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"913":{"tf":1.0},"990":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1151":{"tf":1.0},"1176":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"545":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1185":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1082":{"tf":1.0},"1214":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"1061":{"tf":1.0},"1145":{"tf":1.0},"1336":{"tf":1.0},"1351":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"327":{"tf":1.0},"37":{"tf":1.0},"555":{"tf":1.0},"581":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":58,"docs":{"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"591":{"tf":2.0},"592":{"tf":1.0},"593":{"tf":2.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"1060":{"tf":1.0},"1062":{"tf":1.0},"1089":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"184":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"593":{"tf":1.0},"856":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"711":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}},"x":{"df":1,"docs":{"847":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"1015":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"934":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1209":{"tf":1.0},"1256":{"tf":1.7320508075688772},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.4142135623730951},"835":{"tf":1.0},"842":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":4,"docs":{"130":{"tf":1.0},"1334":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":2,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"682":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1039":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1426":{"tf":1.4142135623730951},"342":{"tf":1.0},"569":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"818":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1041":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1112":{"tf":1.4142135623730951},"154":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"985":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"767":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":36,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"767":{"tf":1.0},"976":{"tf":2.6457513110645907}}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"845":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":1,"docs":{"308":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"3":{"0":{"df":4,"docs":{"1084":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"269":{"tf":1.0},"273":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1305":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"884":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1174":{"tf":1.0},"1436":{"tf":1.7320508075688772},"182":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"70":{"tf":1.0},"809":{"tf":1.0},"972":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1062":{"tf":1.0},"1426":{"tf":1.0},"1489":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"901":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"df":2,"docs":{"309":{"tf":2.23606797749979},"319":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"1423":{"tf":1.0},"151":{"tf":1.0},"196":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":55,"docs":{"0":{"tf":1.0},"1001":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"119":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.0},"1309":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"1452":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"170":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.4142135623730951},"410":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"632":{"tf":1.4142135623730951},"644":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"757":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":23,"docs":{"1323":{"tf":1.0},"138":{"tf":1.0},"1419":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1442":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"188":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"740":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"976":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"872":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.4142135623730951}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"348":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"576":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"1101":{"tf":1.0}}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"1106":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.4142135623730951},"541":{"tf":1.0},"664":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"249":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":5,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1441":{"tf":1.0},"930":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"852":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"1022":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"858":{"tf":1.0},"911":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"884":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":66,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1319":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"348":{"tf":1.0},"358":{"tf":1.4142135623730951},"38":{"tf":1.0},"425":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"483":{"tf":1.4142135623730951},"507":{"tf":1.0},"547":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"727":{"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},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"976":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1378":{"tf":1.4142135623730951},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1209":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":47,"docs":{"1011":{"tf":1.0},"1144":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":3.1622776601683795},"1230":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.0},"43":{"tf":1.0},"516":{"tf":1.0},"603":{"tf":1.0},"693":{"tf":1.0},"732":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":2.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.0},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":2.0},"829":{"tf":2.449489742783178},"830":{"tf":1.0},"831":{"tf":2.23606797749979},"832":{"tf":1.7320508075688772},"833":{"tf":1.7320508075688772},"834":{"tf":1.0},"835":{"tf":1.7320508075688772},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.7320508075688772},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":2.0},"846":{"tf":1.0},"847":{"tf":2.8284271247461903},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"916":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"317":{"tf":1.0}}}}}}},"u":{"df":61,"docs":{"1000":{"tf":1.7320508075688772},"1006":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1214":{"tf":1.0},"1230":{"tf":2.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":2.23606797749979},"1376":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":2.23606797749979},"1399":{"tf":2.23606797749979},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"222":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"408":{"tf":2.0},"420":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.7320508075688772},"603":{"tf":1.0},"642":{"tf":2.0},"654":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"849":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.7320508075688772},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"940":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1145":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.4142135623730951},"525":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1362":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1098":{"tf":1.0}}}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1143":{"tf":1.0},"702":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}},"y":{"df":2,"docs":{"950":{"tf":1.0},"97":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"1161":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":7,"docs":{"1191":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"298":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.4142135623730951},"1524":{"tf":1.0},"427":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":11,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"450":{"tf":1.7320508075688772},"541":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1154":{"tf":1.0},"1191":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1444":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"761":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":32,"docs":{"111":{"tf":1.0},"1112":{"tf":2.0},"1158":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"1261":{"tf":1.4142135623730951},"1330":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"994":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1012":{"tf":1.0},"1144":{"tf":1.0},"1506":{"tf":1.0},"223":{"tf":1.0},"997":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{".":{".":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":1,"docs":{"1306":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1452":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":107,"docs":{"1054":{"tf":2.0},"1055":{"tf":2.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":2.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1064":{"tf":2.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":2.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1079":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.7320508075688772},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.7320508075688772},"1089":{"tf":1.7320508075688772},"109":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"1295":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1320":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":2.6457513110645907},"1452":{"tf":2.23606797749979},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.0},"1481":{"tf":1.4142135623730951},"1488":{"tf":1.4142135623730951},"1489":{"tf":2.23606797749979},"1491":{"tf":1.4142135623730951},"1511":{"tf":1.4142135623730951},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"261":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":3.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"418":{"tf":1.0},"519":{"tf":1.0},"536":{"tf":2.0},"564":{"tf":1.7320508075688772},"566":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"696":{"tf":1.0},"722":{"tf":1.7320508075688772},"85":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":2.0},"916":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":60,"docs":{"1057":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1209":{"tf":1.0},"1222":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":1.0},"1253":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.7320508075688772},"1312":{"tf":2.0},"1315":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"334":{"tf":1.4142135623730951},"366":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"600":{"tf":1.0},"64":{"tf":1.0},"681":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"84":{"tf":1.0},"846":{"tf":1.0},"850":{"tf":1.0},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0},"947":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"950":{"tf":2.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.7320508075688772}}}}},"r":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1390":{"tf":1.4142135623730951},"1394":{"tf":2.0},"1402":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1080":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1296":{"tf":1.0},"1308":{"tf":1.4142135623730951},"833":{"tf":1.0}}}}}}},"df":51,"docs":{"1001":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.23606797749979},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"1390":{"tf":1.7320508075688772},"1394":{"tf":2.23606797749979},"1402":{"tf":2.0},"1404":{"tf":3.4641016151377544},"587":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":2.0},"614":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"695":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"699":{"tf":1.7320508075688772},"700":{"tf":2.23606797749979},"701":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"703":{"tf":1.4142135623730951},"704":{"tf":1.7320508075688772},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"725":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1182":{"tf":1.0},"1439":{"tf":1.0},"37":{"tf":1.0},"450":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"357":{"tf":1.0},"591":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"1144":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"165":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":2.0},"897":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":124,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1115":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":2.8284271247461903},"1119":{"tf":1.4142135623730951},"1120":{"tf":2.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":2.0},"1129":{"tf":2.449489742783178},"1130":{"tf":2.8284271247461903},"1131":{"tf":2.0},"1134":{"tf":1.0},"1227":{"tf":2.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1304":{"tf":2.0},"1401":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1471":{"tf":1.0},"262":{"tf":1.7320508075688772},"270":{"tf":1.0},"332":{"tf":1.7320508075688772},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"378":{"tf":2.0},"379":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.7320508075688772},"418":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"494":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":2.23606797749979},"523":{"tf":2.6457513110645907},"524":{"tf":2.0},"525":{"tf":2.23606797749979},"526":{"tf":1.7320508075688772},"527":{"tf":2.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"535":{"tf":2.23606797749979},"536":{"tf":3.4641016151377544},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"562":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"651":{"tf":1.7320508075688772},"652":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"722":{"tf":2.6457513110645907},"742":{"tf":1.7320508075688772},"753":{"tf":1.0},"756":{"tf":2.8284271247461903},"757":{"tf":1.4142135623730951},"759":{"tf":3.1622776601683795},"762":{"tf":3.3166247903554},"778":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":3.0},"786":{"tf":1.4142135623730951},"788":{"tf":2.0},"790":{"tf":1.0},"808":{"tf":2.23606797749979},"811":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":2.8284271247461903},"854":{"tf":1.0},"856":{"tf":2.449489742783178},"865":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1215":{"tf":1.0},"169":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1161":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"287":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":53,"docs":{"1043":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1417":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1528":{"tf":1.0},"167":{"tf":1.4142135623730951},"173":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"224":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"25":{"tf":1.0},"291":{"tf":1.0},"328":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"36":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"728":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.4142135623730951},"774":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"803":{"tf":1.4142135623730951},"828":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"916":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"990":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1413":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1417":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"802":{"tf":1.0},"818":{"tf":1.4142135623730951},"869":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"883":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1182":{"tf":1.0},"1191":{"tf":1.0},"433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1163":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"1149":{"tf":1.0},"1321":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"155":{"tf":1.0},"264":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"715":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"1324":{"tf":1.0},"1338":{"tf":1.0},"1346":{"tf":1.0},"1458":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"855":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1062":{"tf":1.0},"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1166":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"1154":{"tf":1.0},"1339":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1000":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.7320508075688772},"505":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"1002":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1054":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1078":{"tf":1.4142135623730951},"109":{"tf":2.6457513110645907},"1135":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1428":{"tf":1.0},"1438":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":2.0},"297":{"tf":1.0},"332":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"544":{"tf":1.4142135623730951},"569":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.0},"587":{"tf":1.4142135623730951},"589":{"tf":1.0},"6":{"tf":1.0},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"725":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.4142135623730951},"82":{"tf":1.0},"871":{"tf":1.0},"898":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"954":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":1.0},"981":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"108":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1010":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1042":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"1512":{"tf":1.0},"1513":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1479":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":52,"docs":{"1":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1062":{"tf":1.0},"1068":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"1160":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1222":{"tf":1.0},"1298":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1399":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"422":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"758":{"tf":1.0},"816":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"726":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"726":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"997":{"tf":1.0}}},"1":{"df":1,"docs":{"997":{"tf":1.0}}},"2":{"df":1,"docs":{"997":{"tf":1.0}}},"3":{"df":1,"docs":{"997":{"tf":1.0}}},"4":{"df":1,"docs":{"997":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1081":{"tf":1.7320508075688772},"1084":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1310":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1121":{"tf":1.0},"1309":{"tf":1.0},"303":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"848":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}},"df":12,"docs":{"1142":{"tf":2.0},"1163":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1263":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1469":{"tf":1.0},"456":{"tf":1.0},"663":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"1095":{"tf":1.4142135623730951},"1097":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.7320508075688772},"1213":{"tf":1.0},"759":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"654":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"873":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":103,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1256":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"1335":{"tf":1.4142135623730951},"1336":{"tf":2.8284271247461903},"1416":{"tf":1.4142135623730951},"1417":{"tf":2.23606797749979},"196":{"tf":2.23606797749979},"197":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"31":{"tf":2.0},"33":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"574":{"tf":1.0},"590":{"tf":1.0},"654":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":2.23606797749979},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":2.449489742783178},"801":{"tf":1.0},"802":{"tf":1.7320508075688772},"803":{"tf":1.7320508075688772},"804":{"tf":2.449489742783178},"805":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"808":{"tf":2.0},"809":{"tf":2.0},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"813":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.7320508075688772},"818":{"tf":2.23606797749979},"819":{"tf":2.0},"820":{"tf":2.0},"821":{"tf":1.7320508075688772},"822":{"tf":2.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"871":{"tf":2.0},"872":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":2.0},"886":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":2,"docs":{"31":{"tf":2.0},"726":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1336":{"tf":1.0},"1403":{"tf":1.0},"1437":{"tf":1.0},"901":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"766":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1392":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":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":{"1140":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1369":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1174":{"tf":1.0},"1195":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1392":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}},"df":1,"docs":{"931":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1404":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":1,"docs":{"1404":{"tf":4.123105625617661}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"759":{"tf":1.0},"785":{"tf":1.0},"804":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"883":{"tf":1.0},"884":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"766":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"327":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1343":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"555":{"tf":1.4142135623730951}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"976":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"348":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1169":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1170":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1171":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"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":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1146":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1078":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":91,"docs":{"1012":{"tf":1.0},"1033":{"tf":1.0},"1060":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":1.0},"1137":{"tf":2.449489742783178},"1138":{"tf":1.7320508075688772},"1139":{"tf":2.23606797749979},"1140":{"tf":3.605551275463989},"1141":{"tf":1.7320508075688772},"1142":{"tf":2.8284271247461903},"1143":{"tf":2.449489742783178},"1144":{"tf":1.4142135623730951},"1145":{"tf":1.7320508075688772},"1146":{"tf":2.0},"1147":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1150":{"tf":1.0},"1151":{"tf":2.8284271247461903},"1152":{"tf":1.7320508075688772},"1153":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.7320508075688772},"1157":{"tf":1.0},"1158":{"tf":2.6457513110645907},"1159":{"tf":2.0},"1160":{"tf":2.23606797749979},"1161":{"tf":3.1622776601683795},"1162":{"tf":2.0},"1163":{"tf":2.23606797749979},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.0},"1168":{"tf":2.449489742783178},"1169":{"tf":2.449489742783178},"1170":{"tf":1.7320508075688772},"1171":{"tf":2.23606797749979},"1172":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":1.7320508075688772},"1316":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1369":{"tf":2.6457513110645907},"1391":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1500":{"tf":2.0},"1529":{"tf":1.4142135623730951},"302":{"tf":1.0},"312":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"340":{"tf":1.4142135623730951},"348":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":2.449489742783178},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"555":{"tf":1.7320508075688772},"567":{"tf":1.4142135623730951},"574":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":2.23606797749979},"618":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":2.0},"723":{"tf":1.0},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"968":{"tf":1.0},"979":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"588":{"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":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1392":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"836":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1148":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"505":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"1080":{"tf":1.4142135623730951},"1081":{"tf":2.23606797749979},"1148":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1279":{"tf":1.0},"1287":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1306":{"tf":2.449489742783178},"1310":{"tf":2.0},"1358":{"tf":2.23606797749979},"1401":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"235":{"tf":1.0},"383":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"483":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"510":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"684":{"tf":1.0},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"789":{"tf":1.0},"956":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"845":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"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":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{".":{".":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":15,"docs":{"287":{"tf":2.0},"47":{"tf":1.0},"726":{"tf":3.0},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":2.0},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":2.0},"883":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"726":{"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1014":{"tf":1.0},"917":{"tf":1.4142135623730951},"918":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"1177":{"tf":1.0},"1212":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.4142135623730951},"302":{"tf":1.0},"311":{"tf":1.0},"424":{"tf":1.0},"59":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"898":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}}}}},"w":{"df":20,"docs":{"1281":{"tf":1.0},"1313":{"tf":1.0},"1356":{"tf":1.0},"1367":{"tf":2.0},"1399":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"546":{"tf":1.0},"618":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1102":{"tf":1.0},"758":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"1011":{"tf":1.0},"1042":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.0},"1215":{"tf":1.0},"129":{"tf":1.0},"1296":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1320":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1522":{"tf":1.0},"234":{"tf":1.0},"37":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"925":{"tf":1.0},"935":{"tf":1.0},"953":{"tf":1.0},"973":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"221":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1084":{"tf":1.0},"1200":{"tf":1.0},"1477":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":49,"docs":{"1097":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1245":{"tf":1.0},"1255":{"tf":1.0},"1288":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1522":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"744":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"931":{"tf":1.7320508075688772},"932":{"tf":2.23606797749979},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"z":{"df":1,"docs":{"1081":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":58,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1310":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":2.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1392":{"tf":2.0},"1394":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"276":{"tf":1.0},"288":{"tf":1.0},"349":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"797":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"88":{"tf":1.4142135623730951},"921":{"tf":1.0}}}}},"l":{"df":12,"docs":{"1051":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"681":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.7320508075688772},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"850":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":2.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.7320508075688772},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"867":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"995":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":2.0},"1445":{"tf":1.0},"816":{"tf":1.0},"899":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"934":{"tf":1.0},"935":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":50,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1182":{"tf":1.0},"1185":{"tf":2.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":1.7320508075688772},"1209":{"tf":2.0},"1236":{"tf":1.7320508075688772},"1358":{"tf":1.0},"1359":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"17":{"tf":1.0},"246":{"tf":1.0},"359":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"4":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"433":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"446":{"tf":1.0},"586":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0},"684":{"tf":1.7320508075688772},"733":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"847":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"439":{"tf":1.0},"676":{"tf":1.0},"713":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"320":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":30,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":3.605551275463989},"1445":{"tf":1.0},"1509":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":2.0},"898":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":2.23606797749979},"902":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"299":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"307":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":32,"docs":{"1094":{"tf":1.0},"1263":{"tf":1.0},"1403":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.7320508075688772},"850":{"tf":1.0},"862":{"tf":1.0},"873":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"914":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1314":{"tf":1.0},"1403":{"tf":2.8284271247461903},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"423":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"942":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"t":{"df":2,"docs":{"1161":{"tf":1.0},"268":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"382":{"tf":1.7320508075688772},"616":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1102":{"tf":1.0},"365":{"tf":1.0},"599":{"tf":1.0},"65":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"1007":{"tf":1.0},"1010":{"tf":1.0},"1015":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1050":{"tf":1.0},"249":{"tf":1.0},"805":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"984":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"664":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1051":{"tf":1.0},"1152":{"tf":2.23606797749979},"1174":{"tf":1.0},"1176":{"tf":2.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1190":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951},"681":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":2.23606797749979}}}}}}},"df":1,"docs":{"1330":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"940":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":37,"docs":{"1126":{"tf":1.0},"1127":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"1477":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"667":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1310":{"tf":1.7320508075688772},"833":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"1163":{"tf":1.0}}}},"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":10,"docs":{"114":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1257":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1527":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":123,"docs":{"1088":{"tf":1.4142135623730951},"112":{"tf":1.0},"1121":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":2.23606797749979},"1151":{"tf":2.0},"1226":{"tf":1.0},"1248":{"tf":1.0},"127":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":3.0},"1323":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1378":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1437":{"tf":2.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1465":{"tf":1.0},"150":{"tf":1.0},"1500":{"tf":1.0},"1507":{"tf":1.0},"1509":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"295":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"354":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":2.449489742783178},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.4142135623730951},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"822":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"88":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":2.23606797749979},"945":{"tf":1.4142135623730951},"946":{"tf":1.7320508075688772},"965":{"tf":1.7320508075688772},"966":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1448":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1006":{"tf":1.0},"1052":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1436":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"248":{"tf":2.23606797749979},"37":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.4142135623730951},"94":{"tf":1.0},"947":{"tf":2.0},"948":{"tf":2.0},"949":{"tf":1.7320508075688772},"950":{"tf":2.0},"951":{"tf":2.23606797749979},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0},"992":{"tf":1.4142135623730951},"998":{"tf":2.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1001":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"919":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"546":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"723":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"354":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"129":{"tf":1.7320508075688772},"1307":{"tf":1.0},"1333":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"374":{"tf":2.0},"607":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":8,"docs":{"1036":{"tf":1.0},"1145":{"tf":2.449489742783178},"1180":{"tf":1.0},"1328":{"tf":1.0},"216":{"tf":1.0},"43":{"tf":1.0},"858":{"tf":1.0},"881":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1003":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":182,"docs":{"1015":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":2.0},"1112":{"tf":3.4641016151377544},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":3.1622776601683795},"1119":{"tf":1.7320508075688772},"1120":{"tf":2.23606797749979},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1124":{"tf":2.6457513110645907},"1129":{"tf":3.0},"1130":{"tf":3.3166247903554},"1131":{"tf":3.0},"1134":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1179":{"tf":1.0},"1227":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":2.23606797749979},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1304":{"tf":2.6457513110645907},"1305":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1365":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":3.0},"1403":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":2.23606797749979},"1440":{"tf":2.23606797749979},"1441":{"tf":1.7320508075688772},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"152":{"tf":2.0},"1526":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"221":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"348":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.7320508075688772},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"606":{"tf":1.0},"610":{"tf":1.7320508075688772},"614":{"tf":1.0},"616":{"tf":1.0},"72":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.7320508075688772},"741":{"tf":1.7320508075688772},"742":{"tf":3.0},"744":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":2.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.0},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"774":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"790":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.7320508075688772},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"838":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"877":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":2.23606797749979},"900":{"tf":2.23606797749979},"901":{"tf":1.0},"902":{"tf":1.4142135623730951},"954":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.7320508075688772},"354":{"tf":1.7320508075688772},"544":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1489":{"tf":1.0},"151":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.0},"249":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1038":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1526":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1292":{"tf":1.0},"1358":{"tf":1.0},"1381":{"tf":1.0},"332":{"tf":2.23606797749979},"418":{"tf":2.23606797749979},"490":{"tf":1.0},"509":{"tf":1.0},"536":{"tf":2.23606797749979},"544":{"tf":1.0}}}}},"r":{"df":4,"docs":{"357":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1176":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"542":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1194":{"tf":1.4142135623730951},"1345":{"tf":1.4142135623730951},"18":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"855":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":20,"docs":{"1111":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.4142135623730951},"778":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"968":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1522":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"1131":{"tf":1.0},"1137":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1452":{"tf":1.0},"505":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"733":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":2.23606797749979},"816":{"tf":1.7320508075688772},"818":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"588":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"25":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"1472":{"tf":2.0},"202":{"tf":1.4142135623730951},"249":{"tf":1.0},"473":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"939":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1290":{"tf":1.0},"1470":{"tf":1.0},"494":{"tf":1.4142135623730951},"505":{"tf":1.0},"837":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1144":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1166":{"tf":1.0},"911":{"tf":1.0},"949":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1214":{"tf":1.0},"1220":{"tf":1.0},"937":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1011":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":82,"docs":{"1006":{"tf":1.0},"101":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1135":{"tf":1.0},"115":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1209":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1325":{"tf":2.449489742783178},"135":{"tf":2.449489742783178},"1353":{"tf":2.0},"1376":{"tf":2.0},"1403":{"tf":2.449489742783178},"1420":{"tf":2.8284271247461903},"1425":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.7320508075688772},"209":{"tf":2.0},"249":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"370":{"tf":2.23606797749979},"371":{"tf":2.449489742783178},"382":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"400":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"41":{"tf":1.0},"411":{"tf":2.23606797749979},"42":{"tf":1.0},"46":{"tf":1.0},"522":{"tf":2.0},"532":{"tf":1.7320508075688772},"55":{"tf":1.0},"585":{"tf":1.0},"59":{"tf":1.0},"604":{"tf":2.23606797749979},"605":{"tf":2.449489742783178},"61":{"tf":1.0},"616":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"645":{"tf":2.23606797749979},"657":{"tf":1.4142135623730951},"699":{"tf":2.0},"709":{"tf":1.7320508075688772},"780":{"tf":1.4142135623730951},"796":{"tf":2.449489742783178},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"874":{"tf":1.0},"926":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"987":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"616":{"tf":1.0},"709":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"u":{"df":2,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"382":{"tf":1.0},"532":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"411":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"400":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"522":{"tf":1.0}},"u":{"df":2,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1353":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"1001":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1233":{"tf":1.0},"1258":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1410":{"tf":1.0},"143":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1505":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"68":{"tf":1.0},"773":{"tf":1.0},"976":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":6,"docs":{"1010":{"tf":1.0},"1505":{"tf":1.0},"1510":{"tf":1.0},"585":{"tf":1.0},"978":{"tf":1.7320508075688772},"984":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1154":{"tf":1.0},"1158":{"tf":1.0},"1512":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":4,"docs":{"1358":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"836":{"tf":1.0}}},"l":{"df":12,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1491":{"tf":1.0},"262":{"tf":1.0},"46":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"744":{"tf":1.0},"759":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"761":{"tf":1.0},"767":{"tf":1.0}},"g":{"df":144,"docs":{"107":{"tf":1.0},"1161":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"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},"1256":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"1399":{"tf":1.0},"140":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"287":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"500":{"tf":1.0},"547":{"tf":1.4142135623730951},"589":{"tf":1.0},"619":{"tf":1.4142135623730951},"620":{"tf":1.7320508075688772},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"758":{"tf":1.0},"759":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"d":{"df":7,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"810":{"tf":1.0},"812":{"tf":1.0}}},"df":281,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1020":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1038":{"tf":1.4142135623730951},"1042":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"106":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1145":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"1158":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":2.23606797749979},"1163":{"tf":1.0},"1168":{"tf":1.4142135623730951},"117":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1203":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1222":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.7320508075688772},"129":{"tf":1.0},"1292":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1304":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1348":{"tf":1.0},"1371":{"tf":1.0},"139":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1421":{"tf":1.0},"1430":{"tf":1.0},"1436":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1453":{"tf":2.0},"1457":{"tf":1.0},"1472":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"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.4142135623730951},"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.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.0},"359":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"370":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"433":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"510":{"tf":1.4142135623730951},"516":{"tf":1.0},"535":{"tf":1.0},"545":{"tf":4.123105625617661},"546":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"581":{"tf":1.0},"586":{"tf":1.0},"593":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.0},"657":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"673":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"735":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.0},"790":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"82":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"93":{"tf":2.0},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772},"97":{"tf":2.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"991":{"tf":1.0},"996":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":6,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"759":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"925":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":8,"docs":{"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1262":{"tf":1.0},"259":{"tf":1.0},"332":{"tf":1.0},"416":{"tf":1.4142135623730951},"453":{"tf":1.0},"534":{"tf":1.4142135623730951},"557":{"tf":1.0},"650":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"138":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"950":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"389":{"tf":1.0},"400":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":80,"docs":{"1130":{"tf":1.0},"1186":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1248":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"147":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"226":{"tf":1.0},"27":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"400":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"436":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903},"560":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.7320508075688772},"640":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":1.7320508075688772},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"756":{"tf":1.7320508075688772},"778":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.4142135623730951},"785":{"tf":2.0},"798":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":3.1622776601683795},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.4142135623730951},"84":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":2.0},"870":{"tf":1.0},"880":{"tf":1.7320508075688772},"883":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"913":{"tf":1.0},"941":{"tf":1.0},"950":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":6,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1372":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"0":{".":{"4":{".":{"0":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"911":{"tf":1.4142135623730951},"950":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1376":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"1405":{"tf":1.0},"1482":{"tf":1.0},"740":{"tf":2.449489742783178},"798":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1325":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951}}}}}}},"df":5,"docs":{"1482":{"tf":1.0},"1520":{"tf":1.0},"798":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":2,"docs":{"798":{"tf":1.0},"988":{"tf":1.0}}},"4":{"df":4,"docs":{"46":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"987":{"tf":1.0}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":145,"docs":{"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1007":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1126":{"tf":1.7320508075688772},"1127":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1166":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1214":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1263":{"tf":1.0},"1278":{"tf":2.23606797749979},"128":{"tf":2.23606797749979},"1290":{"tf":1.0},"130":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1352":{"tf":1.0},"1355":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1427":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1432":{"tf":1.0},"1474":{"tf":1.7320508075688772},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1515":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"261":{"tf":1.0},"278":{"tf":1.7320508075688772},"287":{"tf":1.0},"34":{"tf":1.0},"349":{"tf":1.0},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"626":{"tf":1.0},"631":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"654":{"tf":1.0},"66":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"743":{"tf":1.4142135623730951},"745":{"tf":1.7320508075688772},"746":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"778":{"tf":1.0},"827":{"tf":1.0},"842":{"tf":1.0},"87":{"tf":2.23606797749979},"896":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.0},"927":{"tf":1.7320508075688772},"929":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":2.6457513110645907},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":53,"docs":{"1000":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1055":{"tf":1.0},"1083":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1200":{"tf":1.0},"125":{"tf":1.0},"1297":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1369":{"tf":1.0},"1384":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1419":{"tf":1.0},"1441":{"tf":1.0},"1451":{"tf":1.0},"1475":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.4142135623730951},"528":{"tf":1.0},"599":{"tf":1.0},"604":{"tf":1.0},"687":{"tf":1.0},"705":{"tf":1.0},"719":{"tf":1.0},"739":{"tf":1.0},"746":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"892":{"tf":1.0},"893":{"tf":1.0},"897":{"tf":1.0},"976":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1446":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"902":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"899":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"900":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1446":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"0":{"df":1,"docs":{"1300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1449":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":40,"docs":{"1066":{"tf":1.4142135623730951},"1079":{"tf":1.0},"113":{"tf":2.0},"1159":{"tf":1.4142135623730951},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1215":{"tf":1.0},"125":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"1430":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.7320508075688772},"1512":{"tf":1.0},"160":{"tf":1.0},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"437":{"tf":1.4142135623730951},"563":{"tf":1.7320508075688772},"566":{"tf":1.0},"660":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":2.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"963":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":1,"docs":{"1048":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"1054":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":14,"docs":{"1324":{"tf":1.0},"1325":{"tf":1.0},"1330":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"733":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"554":{"tf":1.4142135623730951},"578":{"tf":1.7320508075688772}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"1497":{"tf":1.7320508075688772},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"297":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":180,"docs":{"1006":{"tf":1.0},"1008":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1214":{"tf":2.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1321":{"tf":1.0},"1324":{"tf":2.0},"1330":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":2.0},"1421":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"1473":{"tf":1.4142135623730951},"1493":{"tf":1.7320508075688772},"1494":{"tf":1.7320508075688772},"1503":{"tf":1.0},"1507":{"tf":1.0},"1529":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.7320508075688772},"206":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"28":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"402":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"520":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.4142135623730951},"697":{"tf":1.0},"725":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.7320508075688772},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"788":{"tf":1.0},"816":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.4142135623730951},"849":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.7320508075688772},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.7320508075688772},"942":{"tf":1.0},"943":{"tf":1.7320508075688772},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"957":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.0},"970":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"976":{"tf":1.7320508075688772},"979":{"tf":1.0},"980":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"997":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1365":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.7320508075688772},"598":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.7320508075688772}}}}}}}}}}}}},"df":0,"docs":{}},"df":283,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1007":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"105":{"tf":1.4142135623730951},"11":{"tf":1.0},"1142":{"tf":1.0},"1146":{"tf":1.0},"1149":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1227":{"tf":1.0},"1232":{"tf":2.0},"1238":{"tf":1.0},"1240":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"128":{"tf":3.1622776601683795},"1282":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1324":{"tf":3.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":2.6457513110645907},"1339":{"tf":1.4142135623730951},"1340":{"tf":2.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"136":{"tf":2.8284271247461903},"1365":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.7320508075688772},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1421":{"tf":3.1622776601683795},"1425":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"143":{"tf":2.0},"1436":{"tf":1.7320508075688772},"146":{"tf":1.0},"1460":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":2.0},"1503":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1526":{"tf":1.0},"1528":{"tf":2.0},"1529":{"tf":2.449489742783178},"1530":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"242":{"tf":2.8284271247461903},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":2.23606797749979},"277":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.7320508075688772},"34":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.7320508075688772},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"404":{"tf":1.7320508075688772},"410":{"tf":2.0},"415":{"tf":2.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":2.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":2.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":2.0},"490":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"527":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"555":{"tf":1.7320508075688772},"576":{"tf":1.0},"58":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"613":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.7320508075688772},"632":{"tf":1.7320508075688772},"638":{"tf":1.7320508075688772},"644":{"tf":2.0},"649":{"tf":2.0},"654":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"698":{"tf":1.7320508075688772},"704":{"tf":1.0},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"708":{"tf":2.23606797749979},"714":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":1.4142135623730951},"725":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":2.449489742783178},"795":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.4142135623730951},"833":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.4142135623730951},"87":{"tf":3.3166247903554},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":2.0},"937":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"94":{"tf":2.0},"940":{"tf":1.0},"941":{"tf":2.23606797749979},"942":{"tf":1.7320508075688772},"944":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":2.8284271247461903},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"676":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"367":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"1":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"617":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1436":{"tf":1.0},"43":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1151":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1352":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1185":{"tf":1.0},"1265":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"1151":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"456":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":6,"docs":{"1103":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1522":{"tf":2.0}}},"df":0,"docs":{}}},"df":148,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":2.23606797749979},"1002":{"tf":1.7320508075688772},"1003":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"1047":{"tf":2.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1098":{"tf":1.7320508075688772},"11":{"tf":1.0},"1114":{"tf":1.0},"1132":{"tf":1.4142135623730951},"1133":{"tf":1.4142135623730951},"1134":{"tf":1.4142135623730951},"1135":{"tf":1.7320508075688772},"115":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1206":{"tf":1.0},"1255":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1314":{"tf":1.7320508075688772},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1365":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1388":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":1.0},"1409":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1482":{"tf":2.449489742783178},"1502":{"tf":1.0},"1503":{"tf":2.23606797749979},"1515":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"199":{"tf":3.1622776601683795},"2":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"322":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"46":{"tf":2.0},"522":{"tf":1.0},"536":{"tf":1.0},"549":{"tf":1.0},"583":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"61":{"tf":2.0},"634":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0},"722":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":2.0},"744":{"tf":1.7320508075688772},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"776":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":1.0},"783":{"tf":1.0},"798":{"tf":2.23606797749979},"816":{"tf":1.7320508075688772},"836":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"874":{"tf":2.0},"894":{"tf":1.0},"895":{"tf":1.7320508075688772},"908":{"tf":1.0},"914":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"942":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":2.23606797749979},"988":{"tf":2.0},"989":{"tf":1.7320508075688772},"991":{"tf":1.7320508075688772},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":25,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"160":{"tf":1.0},"192":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"482":{"tf":1.0},"72":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"871":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"911":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"922":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0},"95":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1155":{"tf":1.0},"771":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"554":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1086":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1068":{"tf":1.0}}}}}},"p":{"c":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"911":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"976":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1515":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"1194":{"tf":1.0},"1439":{"tf":1.0},"1506":{"tf":1.0},"243":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"892":{"tf":1.0},"899":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1087":{"tf":1.0},"1451":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1340":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1340":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1340":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":2.0},"171":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"1":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"294":{"tf":1.0},"43":{"tf":1.0}}}},"df":10,"docs":{"1140":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951},"661":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":43,"docs":{"1042":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1262":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1451":{"tf":1.4142135623730951},"321":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"964":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1405":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1405":{"tf":3.605551275463989}},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"1212":{"tf":1.0},"1213":{"tf":2.23606797749979},"1217":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.4142135623730951},"383":{"tf":1.0},"608":{"tf":1.4142135623730951},"617":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1437":{"tf":1.0},"1454":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"941":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"17":{"tf":1.0},"223":{"tf":1.0},"759":{"tf":1.0},"788":{"tf":1.0},"831":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"863":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"232":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"93":{"tf":1.0},"960":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"586":{"tf":1.7320508075688772},"911":{"tf":1.0},"934":{"tf":1.0}},"m":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"855":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1209":{"tf":1.0},"1399":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.4142135623730951},"831":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"1088":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1194":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0},"127":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.0},"1484":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"394":{"tf":1.4142135623730951},"43":{"tf":1.0},"506":{"tf":1.0},"519":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"628":{"tf":1.4142135623730951},"696":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0},"984":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1286":{"tf":1.0},"242":{"tf":1.0},"479":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":100,"docs":{"1080":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1506":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"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.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"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},"231":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"267":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"327":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"405":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"555":{"tf":1.0},"617":{"tf":1.0},"639":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"664":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.4142135623730951},"808":{"tf":2.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"828":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"857":{"tf":1.0},"87":{"tf":1.4142135623730951},"885":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"932":{"tf":1.4142135623730951},"940":{"tf":1.0},"944":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":32,"docs":{"1115":{"tf":1.0},"1144":{"tf":1.0},"1248":{"tf":1.4142135623730951},"13":{"tf":1.0},"1317":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1397":{"tf":1.0},"140":{"tf":1.4142135623730951},"1417":{"tf":1.0},"1427":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"359":{"tf":1.0},"548":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"773":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.0},"821":{"tf":1.4142135623730951},"833":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"841":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":7,"docs":{"1021":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.4142135623730951},"519":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1524":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"528":{"tf":1.0},"541":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"705":{"tf":1.0},"718":{"tf":1.4142135623730951},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"1183":{"tf":1.7320508075688772},"669":{"tf":1.0},"670":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"317":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":15,"docs":{"116":{"tf":1.0},"1422":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1489":{"tf":1.4142135623730951},"226":{"tf":1.0},"302":{"tf":1.0},"536":{"tf":1.0},"661":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}},"r":{"df":3,"docs":{"1206":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1286":{"tf":1.0},"1292":{"tf":1.0},"1465":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"941":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"322":{"tf":1.0},"549":{"tf":1.0}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1122":{"tf":1.0},"1169":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"822":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"z":{"df":0,"docs":{},"f":{"df":1,"docs":{"1095":{"tf":1.0}}}}},"y":{"%":{"df":0,"docs":{},"m":{"%":{"d":{")":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1097":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"325":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"1175":{"tf":2.23606797749979},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"181":{"tf":2.8284271247461903},"756":{"tf":2.6457513110645907},"757":{"tf":1.4142135623730951},"759":{"tf":1.7320508075688772},"778":{"tf":1.7320508075688772},"779":{"tf":2.0},"782":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"811":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1456":{"tf":1.0}}}},"r":{"df":4,"docs":{"17":{"tf":1.0},"228":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"760":{"tf":1.0}}}},"o":{"d":{"df":6,"docs":{"1179":{"tf":1.0},"1349":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1300":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"976":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.0}}},"2":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":9,"docs":{"1168":{"tf":1.0},"1202":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"822":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.0}}},"2":{"df":9,"docs":{"1169":{"tf":1.0},"1203":{"tf":1.0},"1285":{"tf":1.0},"1313":{"tf":1.0},"823":{"tf":1.0},"85":{"tf":1.0},"914":{"tf":1.0},"95":{"tf":1.0},"963":{"tf":1.0}}},"3":{"df":9,"docs":{"1170":{"tf":1.0},"1204":{"tf":1.0},"1286":{"tf":1.0},"1314":{"tf":1.0},"824":{"tf":1.0},"86":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.0},"964":{"tf":1.0}}},"4":{"df":7,"docs":{"1171":{"tf":1.0},"1205":{"tf":1.0},"1287":{"tf":1.0},"1315":{"tf":1.0},"825":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":3,"docs":{"826":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.0}}},"a":{"2":{"a":{"df":1,"docs":{"1211":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"489":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1158":{"tf":1.0},"156":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0}}}}}}},"d":{"d":{"df":1,"docs":{"1212":{"tf":1.0}}},"df":5,"docs":{"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"258":{"tf":1.0},"797":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1118":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.0},"1069":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"918":{"tf":1.0},"934":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"95":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"518":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":104,"docs":{"0":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.0},"1236":{"tf":1.0},"1246":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1397":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"1499":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"40":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"673":{"tf":1.0},"72":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"76":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"829":{"tf":1.0},"84":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"986":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"523":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"378":{"tf":1.0},"611":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.0},"984":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"142":{"tf":1.0},"1423":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1487":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"858":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"i":{"df":3,"docs":{"153":{"tf":1.0},"33":{"tf":1.0},"765":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":16,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1040":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"341":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1485":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"241":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":20,"docs":{"1084":{"tf":1.0},"1400":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"257":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"513":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"685":{"tf":1.0},"690":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"349":{"tf":1.0},"507":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1116":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"403":{"tf":1.0},"404":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1176":{"tf":1.0},"729":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"1121":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"823":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1426":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"193":{"tf":1.0},"269":{"tf":1.0},"371":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"635":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":1,"docs":{"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"df":6,"docs":{"1288":{"tf":1.0},"1403":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"916":{"tf":1.4142135623730951},"966":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1442":{"tf":1.0},"503":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1486":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1055":{"tf":1.0},"108":{"tf":1.0},"1451":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1287":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"989":{"tf":1.0}}}},"df":5,"docs":{"1064":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1296":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1456":{"tf":1.0},"1489":{"tf":1.0},"1511":{"tf":1.0},"285":{"tf":1.0},"337":{"tf":1.0},"564":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"1162":{"tf":1.0},"1249":{"tf":1.0},"1333":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"943":{"tf":1.0}}},"i":{"c":{"df":20,"docs":{"1111":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"1425":{"tf":1.0},"188":{"tf":1.0},"216":{"tf":1.0},"334":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0},"485":{"tf":1.0},"576":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1315":{"tf":1.0},"1338":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1453":{"tf":1.0},"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"62":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1456":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"353":{"tf":1.0},"585":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1255":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1287":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1296":{"tf":1.0},"304":{"tf":1.0}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1103":{"tf":1.0},"1307":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1185":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1083":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1165":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1169":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"730":{"tf":1.0},"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"972":{"tf":1.0},"988":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1509":{"tf":1.0},"209":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"973":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"1363":{"tf":1.0},"1386":{"tf":1.0},"1498":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"408":{"tf":1.0},"642":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1529":{"tf":1.0},"967":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":2,"docs":{"1157":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"516":{"tf":1.0},"693":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"1229":{"tf":1.0},"1317":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"4":{"tf":1.0},"70":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"907":{"tf":1.0},"996":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.0}}}},"df":17,"docs":{"1189":{"tf":1.0},"1202":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1282":{"tf":1.0},"1285":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"474":{"tf":1.0},"667":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"935":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1073":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1345":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1304":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":18,"docs":{"120":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1412":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"234":{"tf":1.0},"979":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"140":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"1528":{"tf":1.0},"207":{"tf":1.0},"350":{"tf":1.0},"451":{"tf":1.0},"582":{"tf":1.0},"678":{"tf":1.0},"724":{"tf":1.0},"976":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"19":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"1503":{"tf":1.0},"16":{"tf":1.0},"353":{"tf":1.0},"585":{"tf":1.0},"66":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1078":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"1144":{"tf":1.0},"1312":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1437":{"tf":1.0},"223":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"616":{"tf":1.0},"654":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"902":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"733":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"501":{"tf":1.0},"741":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1052":{"tf":1.0},"983":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"455":{"tf":1.0}}}}}},"d":{"a":{"df":2,"docs":{"552":{"tf":1.0},"579":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1119":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1413":{"tf":1.0},"436":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"542":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":94,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1277":{"tf":1.0},"1341":{"tf":1.0},"1343":{"tf":1.0},"1412":{"tf":1.0},"1434":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"1509":{"tf":1.0},"160":{"tf":1.0},"244":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"435":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"658":{"tf":1.0},"661":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"731":{"tf":1.0},"737":{"tf":1.0},"85":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1033":{"tf":1.0},"1039":{"tf":1.0},"1049":{"tf":1.0},"1062":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1104":{"tf":1.0},"1279":{"tf":1.0},"1455":{"tf":1.0},"247":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"942":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1121":{"tf":1.0},"746":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"517":{"tf":1.0},"694":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"157":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1279":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"194":{"tf":1.0},"33":{"tf":1.0},"476":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":4,"docs":{"1173":{"tf":1.0},"217":{"tf":1.0},"422":{"tf":1.0},"523":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1130":{"tf":1.0},"1213":{"tf":1.0},"1397":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"876":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"819":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"22":{"tf":1.0},"260":{"tf":1.0},"329":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"455":{"tf":1.0},"515":{"tf":1.0},"557":{"tf":1.0},"692":{"tf":1.0},"756":{"tf":1.0},"777":{"tf":1.0},"807":{"tf":1.0},"912":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":44,"docs":{"1110":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"134":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1374":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1419":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"175":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"388":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"418":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"640":{"tf":1.0},"652":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.0},"76":{"tf":1.0},"768":{"tf":1.0},"77":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"845":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}},"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":5,"docs":{"391":{"tf":1.0},"625":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1099":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"1014":{"tf":1.0},"1463":{"tf":1.0},"1514":{"tf":1.0},"158":{"tf":1.0},"341":{"tf":1.0},"56":{"tf":1.0},"568":{"tf":1.0},"781":{"tf":1.0},"913":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":2,"docs":{"1254":{"tf":1.0},"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":17,"docs":{"1108":{"tf":1.0},"1110":{"tf":1.0},"1124":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"392":{"tf":1.0},"495":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"1077":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1093":{"tf":1.0},"34":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"655":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"1293":{"tf":1.0},"1496":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"679":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"283":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.0},"565":{"tf":1.0},"928":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1120":{"tf":1.0},"151":{"tf":1.0},"377":{"tf":1.0},"610":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1506":{"tf":1.0},"545":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1444":{"tf":1.0},"314":{"tf":1.0},"346":{"tf":1.0},"554":{"tf":1.0},"573":{"tf":1.0},"928":{"tf":1.0},"968":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"979":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"220":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1028":{"tf":1.4142135623730951},"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1059":{"tf":1.0},"1228":{"tf":1.0},"1462":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1249":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"n":{"df":27,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1473":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"165":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.0},"763":{"tf":1.0},"896":{"tf":1.0},"943":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"1474":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":98,"docs":{"1115":{"tf":1.0},"1142":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"133":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.0},"135":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1364":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1387":{"tf":1.0},"1390":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1425":{"tf":1.0},"1478":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"774":{"tf":1.0},"780":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"80":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"978":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":4,"docs":{"1016":{"tf":1.4142135623730951},"1515":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":5,"docs":{"185":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"600":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1091":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"194":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1199":{"tf":1.0},"1497":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"815":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1149":{"tf":1.0},"1243":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"746":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1066":{"tf":1.0},"113":{"tf":1.0},"1159":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1430":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.0},"577":{"tf":1.0},"660":{"tf":1.0},"903":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":40,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1344":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1457":{"tf":1.0},"1459":{"tf":1.0},"1463":{"tf":1.0},"1468":{"tf":1.0},"1473":{"tf":1.0},"1478":{"tf":1.0},"1483":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1495":{"tf":1.0},"286":{"tf":1.0},"352":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"477":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"584":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"941":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1192":{"tf":1.0},"1205":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1115":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":46,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1084":{"tf":1.0},"1128":{"tf":1.0},"1185":{"tf":1.0},"1206":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1317":{"tf":1.0},"1337":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1437":{"tf":1.0},"1454":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"356":{"tf":1.0},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"590":{"tf":1.0},"616":{"tf":1.0},"654":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"902":{"tf":1.0},"997":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"615":{"tf":1.0},"724":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1524":{"tf":1.0},"1526":{"tf":1.0},"400":{"tf":1.0},"634":{"tf":1.0}}}},"t":{"df":4,"docs":{"1345":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":2,"docs":{"1234":{"tf":1.0},"318":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1267":{"tf":1.0}}}},"df":6,"docs":{"1354":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"1092":{"tf":1.0},"412":{"tf":1.0},"646":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1309":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"1422":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1259":{"tf":1.0},"1260":{"tf":1.0},"1469":{"tf":1.0},"1474":{"tf":1.0},"1480":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"253":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1381":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"108":{"tf":1.0},"1118":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1259":{"tf":1.0},"459":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"1117":{"tf":1.0},"1134":{"tf":1.0},"1309":{"tf":1.0},"181":{"tf":1.0},"398":{"tf":1.0},"46":{"tf":1.0},"632":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"777":{"tf":1.0},"781":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"1090":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1446":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"659":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":7,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1097":{"tf":1.0},"1101":{"tf":1.0},"1105":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"826":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1320":{"tf":1.0},"148":{"tf":1.0},"23":{"tf":1.0},"72":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1160":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"292":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1271":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"1184":{"tf":1.0},"1247":{"tf":1.0},"1265":{"tf":1.0},"456":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1044":{"tf":1.0},"1431":{"tf":1.0},"1465":{"tf":1.0},"1471":{"tf":1.0},"1519":{"tf":1.0},"235":{"tf":1.0},"495":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"721":{"tf":1.0},"745":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1462":{"tf":1.0},"1464":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1484":{"tf":1.0},"252":{"tf":1.0},"351":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"1057":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"416":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"650":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"1400":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"234":{"tf":1.0},"843":{"tf":1.0},"924":{"tf":1.0}}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"119":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1408":{"tf":1.0},"1428":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":2,"docs":{"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1117":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"954":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"1112":{"tf":1.0},"1502":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1182":{"tf":1.0},"329":{"tf":1.0},"5":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1073":{"tf":1.4142135623730951},"1207":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"l":{"df":24,"docs":{"1171":{"tf":1.0},"1280":{"tf":1.0},"1314":{"tf":1.0},"1344":{"tf":1.0},"1346":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"286":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"546":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"723":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"1046":{"tf":1.0},"227":{"tf":1.0},"417":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1442":{"tf":1.0},"181":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"1411":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"871":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.0},"725":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1314":{"tf":1.0},"199":{"tf":1.0},"798":{"tf":1.0},"998":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1149":{"tf":1.0},"1272":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.0},"1377":{"tf":1.0},"1379":{"tf":1.0},"1525":{"tf":1.0},"331":{"tf":1.0},"434":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"537":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1034":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1071":{"tf":1.0}}}},"d":{"df":2,"docs":{"1114":{"tf":1.0},"587":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1208":{"tf":1.0},"1225":{"tf":1.0},"1333":{"tf":1.0},"233":{"tf":1.0},"41":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"778":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1204":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"440":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1308":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1123":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"df":8,"docs":{"121":{"tf":1.0},"1225":{"tf":1.0},"1258":{"tf":1.0},"283":{"tf":1.0},"387":{"tf":1.0},"621":{"tf":1.0},"673":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"1223":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"514":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"691":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":26,"docs":{"1147":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.0},"1221":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1357":{"tf":1.0},"1380":{"tf":1.0},"1396":{"tf":1.0},"1447":{"tf":1.0},"1523":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"330":{"tf":1.0},"383":{"tf":1.0},"422":{"tf":1.0},"503":{"tf":1.0},"617":{"tf":1.0},"663":{"tf":1.0},"674":{"tf":1.0},"914":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1211":{"tf":1.0},"1213":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1461":{"tf":1.0},"1465":{"tf":1.0},"1471":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1131":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1168":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1528":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"582":{"tf":1.0},"586":{"tf":1.0},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}},"j":{"a":{"c":{"df":44,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0},"12":{"tf":1.0},"1212":{"tf":1.0},"1225":{"tf":1.0},"1258":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"436":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"506":{"tf":1.0},"6":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"71":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"714":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1239":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1237":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1240":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"516":{"tf":1.0},"558":{"tf":1.0},"693":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.0},"538":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"539":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}}},"df":1,"docs":{"670":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"1287":{"tf":1.0},"1479":{"tf":1.0},"176":{"tf":1.0},"510":{"tf":1.0},"728":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"581":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":43,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1006":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1163":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1253":{"tf":1.0},"1259":{"tf":1.0},"1285":{"tf":1.0},"1436":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"657":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0},"993":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1243":{"tf":1.0}}}}}},"o":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1181":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"1276":{"tf":1.0},"182":{"tf":1.0},"297":{"tf":1.0},"500":{"tf":1.0},"711":{"tf":1.0},"780":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"977":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"257":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"1425":{"tf":1.0},"214":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"855":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"863":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"265":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"561":{"tf":1.0},"622":{"tf":1.0},"659":{"tf":1.0},"904":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"734":{"tf":1.0},"750":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.0},"830":{"tf":1.0},"888":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"1487":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1199":{"tf":1.0},"1205":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1439":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"449":{"tf":1.0},"502":{"tf":1.0},"899":{"tf":1.0},"966":{"tf":1.0}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"241":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.0},"130":{"tf":1.0},"1477":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1335":{"tf":1.0},"447":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"658":{"tf":1.0},"923":{"tf":1.0},"947":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"112":{"tf":1.0},"150":{"tf":1.0},"463":{"tf":1.0},"676":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1286":{"tf":1.0},"982":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1148":{"tf":1.0},"1152":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1207":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1400":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.0},"383":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"540":{"tf":1.0},"617":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"684":{"tf":1.0},"717":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1088":{"tf":1.0},"340":{"tf":1.0},"567":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"820":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1184":{"tf":1.0},"1186":{"tf":1.0},"197":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"558":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1440":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1275":{"tf":1.0},"1278":{"tf":1.0},"1286":{"tf":1.0},"1495":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"484":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"1047":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":1.0},"1456":{"tf":1.0},"1502":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1508":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.0},"1523":{"tf":1.0},"1525":{"tf":1.0},"1527":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"264":{"tf":1.0},"840":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1467":{"tf":1.0},"1482":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":4,"docs":{"1460":{"tf":1.0},"1470":{"tf":1.0},"319":{"tf":1.0},"490":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"1150":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"506":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1197":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"446":{"tf":1.0}},"l":{"df":10,"docs":{"1082":{"tf":1.0},"1173":{"tf":1.0},"1193":{"tf":1.0},"1214":{"tf":1.0},"248":{"tf":1.0},"422":{"tf":1.0},"881":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"329":{"tf":1.0},"351":{"tf":1.0},"515":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"711":{"tf":1.0},"717":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"1003":{"tf":1.0},"1206":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1397":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"226":{"tf":1.0},"35":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1277":{"tf":1.0},"1343":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"487":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1203":{"tf":1.0}}}}}}},"w":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1340":{"tf":1.0},"1507":{"tf":1.0},"401":{"tf":1.0},"635":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"1261":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":17,"docs":{"1127":{"tf":1.0},"1156":{"tf":1.0},"1179":{"tf":1.0},"1182":{"tf":1.0},"1218":{"tf":1.0},"1266":{"tf":1.0},"1273":{"tf":1.0},"1301":{"tf":1.0},"1348":{"tf":1.0},"1401":{"tf":1.0},"1517":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"770":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"915":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"581":{"tf":1.0}}}}}},"df":5,"docs":{"1085":{"tf":1.0},"110":{"tf":1.0},"1505":{"tf":1.0},"450":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"324":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1438":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"898":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1221":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}}}}},"r":{"df":8,"docs":{"1142":{"tf":1.0},"1322":{"tf":1.0},"1331":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"171":{"tf":1.0},"409":{"tf":1.0},"643":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1100":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"107":{"tf":1.0},"1227":{"tf":1.0},"1428":{"tf":1.0},"179":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"64":{"tf":1.0},"722":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"880":{"tf":1.0},"891":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1286":{"tf":1.0},"479":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"439":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"1433":{"tf":1.0},"1497":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0},"393":{"tf":1.0},"627":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":19,"docs":{"1017":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1109":{"tf":1.0},"120":{"tf":1.0},"1222":{"tf":1.0},"1263":{"tf":1.0},"1398":{"tf":1.0},"1435":{"tf":1.0},"231":{"tf":1.0},"291":{"tf":1.0},"454":{"tf":1.0},"482":{"tf":1.0},"664":{"tf":1.0},"751":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"1246":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"328":{"tf":1.0},"556":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"509":{"tf":1.0},"656":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"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":2,"docs":{"1197":{"tf":1.0},"446":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1466":{"tf":1.0},"963":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1133":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"1122":{"tf":1.0},"1161":{"tf":1.0},"1275":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"499":{"tf":1.0},"674":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"489":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1048":{"tf":1.0},"1100":{"tf":1.0},"206":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1007":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"22":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}},"p":{"df":1,"docs":{"551":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"109":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.0},"580":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1071":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1012":{"tf":1.0},"1254":{"tf":1.0},"1515":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":3,"docs":{"1077":{"tf":1.0},"1296":{"tf":1.0},"1299":{"tf":1.0}}}}}}}}}}},"q":{"2":{"0":{"2":{"5":{"df":3,"docs":{"1034":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1028":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"1011":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1166":{"tf":1.0},"992":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1338":{"tf":1.0},"1389":{"tf":1.0},"210":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"920":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1284":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"315":{"tf":1.0},"680":{"tf":1.0},"908":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"562":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1122":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"755":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1253":{"tf":1.0},"1276":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1173":{"tf":1.0},"422":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}},"n":{"df":1,"docs":{"97":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1022":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.0},"710":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"704":{"tf":1.0},"710":{"tf":1.0}}}}}},"df":1,"docs":{"1259":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"527":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"843":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"10":{"tf":1.0},"1126":{"tf":1.0},"1155":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1217":{"tf":1.0},"1269":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1371":{"tf":1.0},"1402":{"tf":1.0},"1517":{"tf":1.0},"548":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"769":{"tf":1.0},"78":{"tf":1.0},"905":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"1254":{"tf":1.0},"1515":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1083":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":1,"docs":{"523":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"1178":{"tf":1.0},"122":{"tf":1.0},"1318":{"tf":1.0},"149":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"889":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"1160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1131":{"tf":1.0},"125":{"tf":1.0}},"i":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"103":{"tf":1.0},"1165":{"tf":1.0},"149":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":9,"docs":{"1003":{"tf":1.0},"1004":{"tf":1.0},"1129":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"1475":{"tf":1.0},"236":{"tf":1.0},"252":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1096":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1318":{"tf":1.0},"1407":{"tf":1.0},"1434":{"tf":1.0},"185":{"tf":1.0},"360":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"513":{"tf":1.0},"594":{"tf":1.0},"685":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0},"977":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":2,"docs":{"1208":{"tf":1.0},"783":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"809":{"tf":1.0},"817":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"934":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"1146":{"tf":1.0},"1265":{"tf":1.0},"413":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"647":{"tf":1.0},"676":{"tf":1.0},"955":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"1493":{"tf":1.0},"414":{"tf":1.0},"488":{"tf":1.0},"648":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":1.0},"1476":{"tf":1.0},"181":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"46":{"tf":1.0},"549":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.0},"890":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"575":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1436":{"tf":1.0},"991":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"1494":{"tf":1.0},"221":{"tf":1.0},"415":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"511":{"tf":1.0},"649":{"tf":1.0},"957":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1313":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1016":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"542":{"tf":1.0},"543":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1204":{"tf":1.0},"926":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"1276":{"tf":1.0},"237":{"tf":1.0},"486":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"s":{"a":{"df":3,"docs":{"1022":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"743":{"tf":1.0},"827":{"tf":1.0},"978":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"1215":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"1084":{"tf":1.0},"1154":{"tf":1.0},"1160":{"tf":1.0},"1216":{"tf":1.0},"257":{"tf":1.0},"4":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0}}}}}},"s":{"3":{"df":10,"docs":{"1064":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.0},"726":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"308":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"273":{"tf":1.0},"394":{"tf":1.0},"628":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1010":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":55,"docs":{"1081":{"tf":1.0},"1108":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":1.0},"1132":{"tf":1.0},"1300":{"tf":1.0},"1427":{"tf":1.0},"1480":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"888":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1337":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"1005":{"tf":1.0},"1008":{"tf":1.0},"1049":{"tf":1.0},"1085":{"tf":1.0},"1104":{"tf":1.0},"1170":{"tf":1.0},"1193":{"tf":1.0},"1205":{"tf":1.0},"1252":{"tf":1.0},"1283":{"tf":1.0},"1400":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"205":{"tf":1.0},"247":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"56":{"tf":1.0},"681":{"tf":1.0},"850":{"tf":1.0},"897":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"930":{"tf":1.0},"942":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"1107":{"tf":1.0},"1136":{"tf":1.0},"1172":{"tf":1.0},"1210":{"tf":1.0},"1294":{"tf":1.0},"1316":{"tf":1.0},"1347":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"1406":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"385":{"tf":1.0},"547":{"tf":1.0},"619":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"909":{"tf":1.0},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1192":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1145":{"tf":1.0},"1202":{"tf":1.0},"1285":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"473":{"tf":1.0}}}},"df":22,"docs":{"1188":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.0},"1207":{"tf":1.0},"1262":{"tf":1.0},"1281":{"tf":1.0},"1285":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1524":{"tf":1.0},"331":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"666":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"1404":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"1449":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"938":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":20,"docs":{"1078":{"tf":1.0},"1139":{"tf":1.0},"1224":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1349":{"tf":1.0},"1369":{"tf":1.0},"1372":{"tf":1.0},"1392":{"tf":1.0},"311":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"1518":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"1045":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"58":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"782":{"tf":1.0},"920":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"990":{"tf":1.0},"995":{"tf":1.0}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":47,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1231":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1362":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"641":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"656":{"tf":1.0},"676":{"tf":1.0},"73":{"tf":1.0},"824":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"921":{"tf":1.0},"956":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"379":{"tf":1.0},"612":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"357":{"tf":1.0},"359":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"1256":{"tf":1.0},"842":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"976":{"tf":1.0}}}},"v":{"df":1,"docs":{"21":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":8,"docs":{"1452":{"tf":1.0},"164":{"tf":1.0},"235":{"tf":1.0},"398":{"tf":1.0},"632":{"tf":1.0},"757":{"tf":1.0},"808":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"0":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"1178":{"tf":1.0},"122":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"814":{"tf":1.0},"824":{"tf":1.0},"889":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1209":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"833":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0}}},"u":{"df":9,"docs":{"1000":{"tf":1.0},"1230":{"tf":1.0},"1363":{"tf":1.0},"1386":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"408":{"tf":1.0},"642":{"tf":1.0},"855":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1112":{"tf":1.4142135623730951},"117":{"tf":1.0},"1261":{"tf":1.0},"145":{"tf":1.0},"1510":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"88":{"tf":1.0},"994":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"1054":{"tf":1.0},"1057":{"tf":1.0},"1064":{"tf":1.0},"1073":{"tf":1.0},"1077":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"1090":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1453":{"tf":1.0},"1456":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1511":{"tf":1.0},"1522":{"tf":1.0},"161":{"tf":1.0},"285":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"564":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1312":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"947":{"tf":1.0},"950":{"tf":1.0},"998":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1135":{"tf":1.0},"1308":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"417":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":24,"docs":{"1045":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1111":{"tf":1.0},"1186":{"tf":1.0},"1228":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1290":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"1002":{"tf":1.0},"1015":{"tf":1.0},"109":{"tf":1.0},"1181":{"tf":1.0},"1264":{"tf":1.0},"19":{"tf":1.0},"332":{"tf":1.0},"544":{"tf":1.0},"57":{"tf":1.0},"587":{"tf":1.0},"959":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"1206":{"tf":1.0},"1397":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"338":{"tf":1.0},"565":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1081":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":28,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"196":{"tf":1.0},"225":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1153":{"tf":1.0},"1159":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1391":{"tf":1.0},"1500":{"tf":1.0},"340":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"567":{"tf":1.0},"588":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1310":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"287":{"tf":1.0},"726":{"tf":1.0},"881":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"917":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1078":{"tf":1.0},"1320":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1477":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"931":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.0}}}},"l":{"df":3,"docs":{"1203":{"tf":1.0},"1284":{"tf":1.0},"927":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"863":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":9,"docs":{"1165":{"tf":1.0},"1185":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"1400":{"tf":1.0},"684":{"tf":1.0},"847":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"1441":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.0}}},"k":{"df":2,"docs":{"209":{"tf":1.0},"837":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1403":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"995":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"1152":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"964":{"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":10,"docs":{"114":{"tf":1.0},"1220":{"tf":1.0},"1257":{"tf":1.0},"1291":{"tf":1.0},"1527":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0},"975":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"24":{"tf":1.0},"248":{"tf":1.0},"919":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0},"998":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":15,"docs":{"1279":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"260":{"tf":1.0},"377":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"587":{"tf":1.0},"610":{"tf":1.0},"725":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"833":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.0},"354":{"tf":1.0},"544":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1345":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1141":{"tf":1.0},"505":{"tf":1.0},"684":{"tf":1.0},"812":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"1472":{"tf":1.0},"202":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1420":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"271":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"796":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"1001":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"978":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"118":{"tf":1.0},"1256":{"tf":1.0},"386":{"tf":1.0},"458":{"tf":1.0},"620":{"tf":1.0}}}},"df":37,"docs":{"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.0},"1114":{"tf":1.0},"1116":{"tf":1.0},"1203":{"tf":1.0},"1284":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"212":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"593":{"tf":1.0},"735":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"416":{"tf":1.0},"534":{"tf":1.0},"650":{"tf":1.0}}}}}},"v":{"0":{".":{"6":{".":{"0":{"df":2,"docs":{"82":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"1116":{"tf":1.0},"1119":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1278":{"tf":1.0},"1427":{"tf":1.0},"1474":{"tf":1.0},"1480":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"278":{"tf":1.0},"491":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"1000":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1066":{"tf":1.0},"113":{"tf":1.0},"1159":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1430":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"903":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"789":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1497":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":31,"docs":{"1214":{"tf":1.0},"1246":{"tf":1.0},"1260":{"tf":1.0},"1315":{"tf":1.0},"1334":{"tf":1.0},"1339":{"tf":1.0},"1469":{"tf":1.0},"1473":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1529":{"tf":1.0},"165":{"tf":1.0},"188":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"402":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"636":{"tf":1.0},"763":{"tf":1.0},"846":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"989":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"380":{"tf":1.0},"613":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"1196":{"tf":1.0},"1232":{"tf":1.0},"128":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1352":{"tf":1.0},"136":{"tf":1.0},"1375":{"tf":1.0},"1421":{"tf":1.0},"143":{"tf":1.0},"1436":{"tf":1.0},"1499":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"327":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"555":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.0},"101":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1314":{"tf":1.0},"1409":{"tf":1.0},"1482":{"tf":1.0},"1503":{"tf":1.0},"199":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"740":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"895":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"998":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"185":{"tf":1.0},"43":{"tf":1.0},"978":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"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":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1262":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"394":{"tf":1.0},"628":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"1080":{"tf":1.0},"1177":{"tf":1.0},"1426":{"tf":1.0},"173":{"tf":1.0},"200":{"tf":1.0},"267":{"tf":1.0},"31":{"tf":1.0},"405":{"tf":1.0},"424":{"tf":1.0},"639":{"tf":1.0},"655":{"tf":1.0},"668":{"tf":1.0},"793":{"tf":1.0},"825":{"tf":1.0},"87":{"tf":1.0},"932":{"tf":1.0},"944":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"1248":{"tf":1.0},"1327":{"tf":1.0},"1330":{"tf":1.0},"140":{"tf":1.0},"1427":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"821":{"tf":1.0},"88":{"tf":1.0}}}}}}},"l":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}});
\ No newline at end of file
+Object.assign(window.search, {"doc_urls":["index.html#jacs-json-agent-communication-standard","index.html#what-is-jacs","index.html#key-features","index.html#available-implementations","index.html#-rust-core-library--cli","index.html#-nodejs-haiaijacs","index.html#-python-jacs","index.html#quick-start","index.html#rust-cli","index.html#nodejs","index.html#python","index.html#when-to-use-jacs","index.html#why-jacs","index.html#--agent-focused-design","index.html#--production-ready","index.html#--future-proof-security","index.html#--universal-compatibility","index.html#--flexible-integration","index.html#getting-started","index.html#community-and-support","getting-started/what-is-jacs.html#what-is-jacs","getting-started/what-is-jacs.html#the-problem-jacs-solves","getting-started/what-is-jacs.html#jacs-core-philosophy","getting-started/what-is-jacs.html#--agent-first-design","getting-started/what-is-jacs.html#--trust-through-cryptography","getting-started/what-is-jacs.html#--standards-based","getting-started/what-is-jacs.html#key-concepts","getting-started/what-is-jacs.html#agents","getting-started/what-is-jacs.html#documents","getting-started/what-is-jacs.html#tasks","getting-started/what-is-jacs.html#agreements","getting-started/what-is-jacs.html#how-jacs-works","getting-started/what-is-jacs.html#real-world-examples","getting-started/what-is-jacs.html#--ai-content-pipeline","getting-started/what-is-jacs.html#--data-processing-workflow","getting-started/what-is-jacs.html#--multi-agent-analysis","getting-started/what-is-jacs.html#benefits-over-alternatives","getting-started/what-is-jacs.html#when-to-use-jacs","getting-started/what-is-jacs.html#next-steps","getting-started/concepts.html#core-concepts","getting-started/concepts.html#agents","getting-started/concepts.html#agent-identity","getting-started/concepts.html#agent-lifecycle","getting-started/concepts.html#verification-load-vs-verify_standalone","getting-started/concepts.html#documents","getting-started/concepts.html#document-structure","getting-started/concepts.html#required-jacs-fields","getting-started/concepts.html#document-types","getting-started/concepts.html#tasks","getting-started/concepts.html#task-structure","getting-started/concepts.html#task-lifecycle","getting-started/concepts.html#task-components","getting-started/concepts.html#agreements","getting-started/concepts.html#agreement-structure","getting-started/concepts.html#agreement-process","getting-started/concepts.html#agreement-types","getting-started/concepts.html#cryptographic-security","getting-started/concepts.html#supported-algorithms","getting-started/concepts.html#signature-process","getting-started/concepts.html#key-management","getting-started/concepts.html#versioning-and-audit-trails","getting-started/concepts.html#version-management","getting-started/concepts.html#audit-trail-benefits","getting-started/concepts.html#storage-and-transport","getting-started/concepts.html#storage-options","getting-started/concepts.html#transport-mechanisms","getting-started/concepts.html#format-compatibility","getting-started/concepts.html#next-steps","getting-started/quick-start.html#quick-start-guide","getting-started/quick-start.html#choose-your-implementation","getting-started/quick-start.html#install-rust-cli","getting-started/quick-start.html#initialize-jacs","getting-started/quick-start.html#create-your-first-agent","getting-started/quick-start.html#create-and-sign-a-task","getting-started/quick-start.html#install-nodejs-package","getting-started/quick-start.html#basic-setup","getting-started/quick-start.html#create-agent-document","getting-started/quick-start.html#create-a-task","getting-started/quick-start.html#install-python-package","getting-started/quick-start.html#basic-setup-1","getting-started/quick-start.html#create-agent-document-1","getting-started/quick-start.html#create-a-task-1","getting-started/quick-start.html#non-interactive-agent-creation-v060","getting-started/quick-start.html#understanding-what-happened","getting-started/quick-start.html#1--agent-creation","getting-started/quick-start.html#2--configuration-setup","getting-started/quick-start.html#3--task-creation","getting-started/quick-start.html#verify-everything-works","getting-started/quick-start.html#next-steps-multi-agent-workflow","getting-started/quick-start.html#what-youve-accomplished","getting-started/quick-start.html#key-takeaways","getting-started/quick-start.html#where-to-go-next","getting-started/quick-start.html#troubleshooting","usecases.html#use-cases","usecases.html#1-verifying-that-json-came-from-a-specific-program","usecases.html#2-protecting-your-agents-identity-on-the-internet","usecases.html#3-registering-and-testing-your-agent-on-haiai","usecases.html#4-a-go-node-or-python-agent-with-strong-data-provenance","usecases.html#5-openclaw-moltyjacs-proving-your-agent-sent-a-message","rust/installation.html#installation","rust/installation.html#requirements","rust/installation.html#verify-rust-version","rust/installation.html#installing-the-cli","rust/installation.html#from-cratesio-recommended","rust/installation.html#from-source","rust/installation.html#verify-installation","rust/installation.html#using-as-a-library","rust/installation.html#with-optional-features","rust/installation.html#available-features","rust/installation.html#platform-support","rust/installation.html#webassembly-notes","rust/installation.html#configuration","rust/installation.html#manual-configuration","rust/installation.html#environment-variables","rust/installation.html#troubleshooting","rust/installation.html#build-errors","rust/installation.html#runtime-errors","rust/installation.html#next-steps","rust/cli.html#cli-usage","rust/cli.html#getting-help","rust/cli.html#commands-overview","rust/cli.html#initialization","rust/cli.html#quick-start","rust/cli.html#configuration-commands","rust/cli.html#create-configuration","rust/cli.html#read-configuration","rust/cli.html#agent-commands","rust/cli.html#create-agent","rust/cli.html#verify-agent","rust/cli.html#dns-commands","rust/cli.html#lookup-agent","rust/cli.html#task-commands","rust/cli.html#create-task","rust/cli.html#document-commands","rust/cli.html#create-document","rust/cli.html#update-document","rust/cli.html#verify-document","rust/cli.html#extract-embedded-content","rust/cli.html#agreement-commands","rust/cli.html#environment-variables","rust/cli.html#common-workflows","rust/cli.html#create-and-sign-a-document","rust/cli.html#multi-agent-agreement","rust/cli.html#verify-another-agent","rust/cli.html#exit-codes","rust/cli.html#next-steps","rust/agent.html#creating-an-agent","rust/agent.html#what-is-an-agent","rust/agent.html#creating-your-first-agent","rust/agent.html#quick-method-recommended","rust/agent.html#manual-method","rust/agent.html#with-custom-agent-definition","rust/agent.html#agent-types","rust/agent.html#ai-agent-example","rust/agent.html#human-agent-example","rust/agent.html#agent-services","rust/agent.html#service-with-actions","rust/agent.html#agent-contacts","rust/agent.html#cryptographic-keys","rust/agent.html#key-algorithms","rust/agent.html#configure-key-algorithm","rust/agent.html#key-storage","rust/agent.html#verifying-agents","rust/agent.html#verify-your-own-agent","rust/agent.html#verify-a-specific-agent-file","rust/agent.html#with-dns-verification","rust/agent.html#updating-agents","rust/agent.html#agent-document-structure","rust/agent.html#best-practices","rust/agent.html#security","rust/agent.html#agent-design","rust/agent.html#operations","rust/agent.html#next-steps","rust/documents.html#working-with-documents","rust/documents.html#what-is-a-jacs-document","rust/documents.html#creating-documents","rust/documents.html#from-a-json-file","rust/documents.html#from-a-directory","rust/documents.html#with-custom-schema","rust/documents.html#output-options","rust/documents.html#document-structure","rust/documents.html#required-header-fields","rust/documents.html#document-levels","rust/documents.html#file-attachments","rust/documents.html#attach-files","rust/documents.html#embed-vs-reference","rust/documents.html#attachment-structure","rust/documents.html#verifying-documents","rust/documents.html#basic-verification","rust/documents.html#verify-with-schema","rust/documents.html#verify-directory","rust/documents.html#verbose-output","rust/documents.html#updating-documents","rust/documents.html#update-with-attachments","rust/documents.html#extracting-embedded-content","rust/documents.html#document-types","rust/documents.html#task-documents","rust/documents.html#message-documents","rust/documents.html#custom-documents","rust/documents.html#version-history","rust/documents.html#working-with-multiple-agents","rust/documents.html#different-agent-signs-document","rust/documents.html#verify-document-from-unknown-agent","rust/documents.html#best-practices","rust/documents.html#document-design","rust/documents.html#security","rust/documents.html#performance","rust/documents.html#common-workflows","rust/documents.html#create-and-share-document","rust/documents.html#track-document-changes","rust/documents.html#process-multiple-documents","rust/documents.html#next-steps","rust/agreements.html#creating-and-using-agreements","rust/agreements.html#what-is-an-agreement","rust/agreements.html#agreement-lifecycle","rust/agreements.html#creating-agreements","rust/agreements.html#basic-agreement","rust/agreements.html#with-context","rust/agreements.html#signing-agreements","rust/agreements.html#sign-as-current-agent","rust/agreements.html#sign-as-different-agent","rust/agreements.html#sign-with-response","rust/agreements.html#checking-agreement-status","rust/agreements.html#check-if-complete","rust/agreements.html#agreement-structure","rust/agreements.html#task-agreements","rust/agreements.html#multi-agent-workflow-example","rust/agreements.html#agreement-hash","rust/agreements.html#best-practices","rust/agreements.html#next-steps","rust/dns.html#dns-based-agent-verification","rust/dns.html#overview","rust/dns.html#why-dns-verification","rust/dns.html#publishing-agent-identity","rust/dns.html#generate-dns-commands","rust/dns.html#provider-specific-formats","rust/dns.html#dns-record-structure","rust/dns.html#setting-up-with-route-53-aws","rust/dns.html#setting-up-with-cloudflare","rust/dns.html#setting-up-with-azure-dns","rust/dns.html#verifying-agents-with-dns","rust/dns.html#look-up-another-agent","rust/dns.html#verify-agent-with-dns","rust/dns.html#dns-validation-modes","rust/dns.html#agent-domain-configuration","rust/dns.html#dnssec-requirements","rust/dns.html#checking-dnssec-status","rust/dns.html#security-considerations","rust/dns.html#trust-model","rust/dns.html#best-practices","rust/dns.html#caching","rust/dns.html#troubleshooting","rust/dns.html#dns-record-not-found","rust/dns.html#dnssec-validation-failed","rust/dns.html#fingerprint-mismatch","rust/dns.html#integration-with-cicd","rust/dns.html#next-steps","rust/library.html#rust-library-api","rust/library.html#adding-jacs-as-a-dependency","rust/library.html#feature-flags","rust/library.html#core-types","rust/library.html#agent","rust/library.html#jacsdocument","rust/library.html#creating-an-agent","rust/library.html#minimal-agent","rust/library.html#loading-by-configuration","rust/library.html#dns-strict-mode","rust/library.html#working-with-documents","rust/library.html#creating-documents","rust/library.html#creating-documents-with-attachments","rust/library.html#loading-documents","rust/library.html#updating-documents","rust/library.html#verifying-documents","rust/library.html#saving-documents","rust/library.html#creating-tasks","rust/library.html#signing-and-verification","rust/library.html#signing-documents","rust/library.html#verification","rust/library.html#custom-schema-validation","rust/library.html#configuration","rust/library.html#loading-configuration","rust/library.html#accessing-configuration","rust/library.html#observability","rust/library.html#initialize-default-observability","rust/library.html#custom-observability-configuration","rust/library.html#storage-backends","rust/library.html#error-handling","rust/library.html#thread-safety","rust/library.html#complete-example","rust/library.html#next-steps","rust/observability.html#observability","rust/observability.html#overview","rust/observability.html#feature-flags","rust/observability.html#quick-start","rust/observability.html#default-configuration","rust/observability.html#custom-configuration","rust/observability.html#logging","rust/observability.html#log-levels","rust/observability.html#log-destinations","rust/observability.html#using-logs","rust/observability.html#metrics","rust/observability.html#enabling-metrics","rust/observability.html#metrics-destinations","rust/observability.html#recording-metrics","rust/observability.html#built-in-metrics","rust/observability.html#distributed-tracing","rust/observability.html#enabling-tracing","rust/observability.html#tracing-destinations","rust/observability.html#sampling-configuration","rust/observability.html#using-tracing-spans","rust/observability.html#configuration-file","rust/observability.html#opentelemetry-collector-setup","rust/observability.html#reset-and-cleanup","rust/observability.html#best-practices","rust/observability.html#development","rust/observability.html#production","rust/observability.html#troubleshooting","rust/observability.html#logs-not-appearing","rust/observability.html#metrics-not-exporting","rust/observability.html#traces-missing","rust/observability.html#next-steps","nodejs/installation.html#nodejs-installation","nodejs/installation.html#requirements","nodejs/installation.html#installation","nodejs/installation.html#using-npm","nodejs/installation.html#using-yarn","nodejs/installation.html#using-pnpm","nodejs/installation.html#verify-installation","nodejs/installation.html#package-structure","nodejs/installation.html#core-module-haiaijacs","nodejs/installation.html#mcp-integration-haiaijacsmcp","nodejs/installation.html#http-server-haiaijacshttp","nodejs/installation.html#typescript-support","nodejs/installation.html#configuration","nodejs/installation.html#basic-configuration","nodejs/installation.html#configuration-file","nodejs/installation.html#environment-variables","nodejs/installation.html#storage-backends","nodejs/installation.html#file-system-default","nodejs/installation.html#s3-storage","nodejs/installation.html#memory-storage-testing","nodejs/installation.html#cryptographic-algorithms","nodejs/installation.html#ring-ed25519-recommended","nodejs/installation.html#rsa-pss","nodejs/installation.html#pq-dilithium-post-quantum","nodejs/installation.html#pq2025-post-quantum-hybrid","nodejs/installation.html#development-setup","nodejs/installation.html#project-structure","nodejs/installation.html#packagejson-setup","nodejs/installation.html#basic-application","nodejs/installation.html#common-issues","nodejs/installation.html#module-not-found","nodejs/installation.html#permission-errors","nodejs/installation.html#binary-compatibility","nodejs/installation.html#typescript-issues","nodejs/installation.html#next-steps","nodejs/installation.html#examples","nodejs/simple-api.html#simplified-api","nodejs/simple-api.html#quick-start","nodejs/simple-api.html#when-to-use-the-simplified-api","nodejs/simple-api.html#api-reference","nodejs/simple-api.html#loadconfigpath","nodejs/simple-api.html#isloaded","nodejs/simple-api.html#getagentinfo","nodejs/simple-api.html#verifyself","nodejs/simple-api.html#signmessagedata","nodejs/simple-api.html#signfilefilepath-embed","nodejs/simple-api.html#verifysigneddocument","nodejs/simple-api.html#verifystandalonesigneddocument-options","nodejs/simple-api.html#auditoptions","nodejs/simple-api.html#updateagentnewagentdata","nodejs/simple-api.html#updatedocumentdocumentid-newdocumentdata-attachments-embed","nodejs/simple-api.html#exportagent","nodejs/simple-api.html#registerwithhaioptions","nodejs/simple-api.html#getdnsrecorddomain-ttl","nodejs/simple-api.html#getwellknownjson","nodejs/simple-api.html#getpublickey","nodejs/simple-api.html#type-definitions","nodejs/simple-api.html#agentinfo","nodejs/simple-api.html#signeddocument","nodejs/simple-api.html#verificationresult","nodejs/simple-api.html#attachment","nodejs/simple-api.html#complete-example","nodejs/simple-api.html#mcp-integration","nodejs/simple-api.html#error-handling","nodejs/simple-api.html#see-also","nodejs/basic-usage.html#basic-usage","nodejs/basic-usage.html#initializing-an-agent","nodejs/basic-usage.html#create-and-load-agent","nodejs/basic-usage.html#configuration-file","nodejs/basic-usage.html#creating-documents","nodejs/basic-usage.html#basic-document-creation","nodejs/basic-usage.html#with-custom-schema","nodejs/basic-usage.html#with-output-file","nodejs/basic-usage.html#without-saving","nodejs/basic-usage.html#with-attachments","nodejs/basic-usage.html#verifying-documents","nodejs/basic-usage.html#verify-document-signature","nodejs/basic-usage.html#verify-specific-signature-field","nodejs/basic-usage.html#updating-documents","nodejs/basic-usage.html#update-existing-document","nodejs/basic-usage.html#update-with-new-attachments","nodejs/basic-usage.html#signing-and-verification","nodejs/basic-usage.html#sign-arbitrary-data","nodejs/basic-usage.html#verify-arbitrary-data","nodejs/basic-usage.html#working-with-agreements","nodejs/basic-usage.html#create-an-agreement","nodejs/basic-usage.html#sign-an-agreement","nodejs/basic-usage.html#check-agreement-status","nodejs/basic-usage.html#agent-operations","nodejs/basic-usage.html#verify-agent","nodejs/basic-usage.html#update-agent","nodejs/basic-usage.html#sign-external-agent","nodejs/basic-usage.html#requestresponse-signing","nodejs/basic-usage.html#sign-a-request","nodejs/basic-usage.html#verify-a-response","nodejs/basic-usage.html#utility-functions","nodejs/basic-usage.html#hash-string","nodejs/basic-usage.html#create-configuration","nodejs/basic-usage.html#error-handling","nodejs/basic-usage.html#complete-example","nodejs/basic-usage.html#next-steps","nodejs/mcp.html#model-context-protocol-mcp-integration","nodejs/mcp.html#what-is-mcp","nodejs/mcp.html#how-jacs-mcp-works","nodejs/mcp.html#quick-start","nodejs/mcp.html#basic-mcp-server-with-jacs","nodejs/mcp.html#mcp-client-with-jacs","nodejs/mcp.html#api-reference","nodejs/mcp.html#jacstransportproxy","nodejs/mcp.html#createjacstransportproxy","nodejs/mcp.html#createjacstransportproxyasync","nodejs/mcp.html#transport-options","nodejs/mcp.html#stdio-transport","nodejs/mcp.html#sse-transport-http","nodejs/mcp.html#configuration","nodejs/mcp.html#jacs-config-file","nodejs/mcp.html#environment-variables","nodejs/mcp.html#how-messages-are-signed","nodejs/mcp.html#outgoing-messages","nodejs/mcp.html#incoming-messages","nodejs/mcp.html#complete-example","nodejs/mcp.html#server-mcpserverjs","nodejs/mcp.html#client-mcpclientjs","nodejs/mcp.html#security-considerations","nodejs/mcp.html#message-verification","nodejs/mcp.html#passthrough-mode","nodejs/mcp.html#key-management","nodejs/mcp.html#debugging","nodejs/mcp.html#enable-debug-logging","nodejs/mcp.html#stdio-debug-note","nodejs/mcp.html#common-issues","nodejs/mcp.html#next-steps","nodejs/http.html#http-server","nodejs/http.html#overview","nodejs/http.html#core-concepts","nodejs/http.html#requestresponse-flow","nodejs/http.html#http-client","nodejs/http.html#basic-client-usage","nodejs/http.html#using-fetch","nodejs/http.html#express-server","nodejs/http.html#using-express-middleware","nodejs/http.html#middleware-configuration","nodejs/http.html#manual-requestresponse-handling","nodejs/http.html#koa-server","nodejs/http.html#using-koa-middleware","nodejs/http.html#api-reference","nodejs/http.html#jacssignrequestpayload","nodejs/http.html#jacsverifyresponseresponsestring","nodejs/http.html#jacssignresponsepayload","nodejs/http.html#jacsexpressmiddlewareoptions","nodejs/http.html#jacskoamiddlewareoptions","nodejs/http.html#complete-example","nodejs/http.html#server-serverjs","nodejs/http.html#client-clientjs","nodejs/http.html#security-considerations","nodejs/http.html#content-type","nodejs/http.html#error-handling","nodejs/http.html#agent-keys","nodejs/http.html#middleware-order","nodejs/http.html#next-steps","nodejs/express.html#express-middleware","nodejs/express.html#overview","nodejs/express.html#quick-start","nodejs/express.html#middleware-configuration","nodejs/express.html#basic-configuration","nodejs/express.html#per-route-configuration","nodejs/express.html#multiple-jacs-agents","nodejs/express.html#request-handling","nodejs/express.html#accessing-verified-payload","nodejs/express.html#handling-missing-payload","nodejs/express.html#validation-helper","nodejs/express.html#response-handling","nodejs/express.html#automatic-signing","nodejs/express.html#sending-unsigned-responses","nodejs/express.html#custom-response-format","nodejs/express.html#error-handling","nodejs/express.html#global-error-handler","nodejs/express.html#typed-errors","nodejs/express.html#advanced-patterns","nodejs/express.html#router-level-middleware","nodejs/express.html#middleware-composition","nodejs/express.html#logging-middleware","nodejs/express.html#authentication-integration","nodejs/express.html#testing","nodejs/express.html#unit-testing-routes","nodejs/express.html#mock-jacs-for-testing","nodejs/express.html#complete-application-example","nodejs/express.html#troubleshooting","nodejs/express.html#body-parsing-issues","nodejs/express.html#json-body-parser-conflict","nodejs/express.html#response-not-signed","nodejs/express.html#next-steps","nodejs/api.html#api-reference","nodejs/api.html#installation","nodejs/api.html#core-module","nodejs/api.html#jacsagent-class","nodejs/api.html#constructor","nodejs/api.html#agentloadconfigpath","nodejs/api.html#agentcreatedocumentdocumentstring-customschema-outputfilename-nosave-attachments-embed","nodejs/api.html#agentverifydocumentdocumentstring","nodejs/api.html#agentverifysignaturedocumentstring-signaturefield","nodejs/api.html#agentupdatedocumentdocumentkey-newdocumentstring-attachments-embed","nodejs/api.html#agentcreateagreementdocumentstring-agentids-question-context-agreementfieldname","nodejs/api.html#agentsignagreementdocumentstring-agreementfieldname","nodejs/api.html#agentcheckagreementdocumentstring-agreementfieldname","nodejs/api.html#agentsignstringdata","nodejs/api.html#agentverifystringdata-signaturebase64-publickey-publickeyenctype","nodejs/api.html#agentsignrequestparams","nodejs/api.html#agentverifyresponsedocumentstring","nodejs/api.html#agentverifyresponsewithagentiddocumentstring","nodejs/api.html#agentverifyagentagentfile","nodejs/api.html#agentupdateagentnewagentstring","nodejs/api.html#agentsignagentagentstring-publickey-publickeyenctype","nodejs/api.html#utility-functions","nodejs/api.html#hashstringdata","nodejs/api.html#createconfigoptions","nodejs/api.html#http-module","nodejs/api.html#jacsexpressmiddlewareoptions","nodejs/api.html#jacskoamiddlewareoptions","nodejs/api.html#mcp-module","nodejs/api.html#jacstransportproxy","nodejs/api.html#createjacstransportproxytransport-configpath-role","nodejs/api.html#createjacstransportproxyasynctransport-configpath-role","nodejs/api.html#typescript-support","nodejs/api.html#deprecated-functions","nodejs/api.html#error-handling","nodejs/api.html#see-also","python/installation.html#python-installation","python/installation.html#requirements","python/installation.html#installation","python/installation.html#using-pip","python/installation.html#using-conda","python/installation.html#using-poetry","python/installation.html#development-installation","python/installation.html#verify-installation","python/installation.html#package-structure","python/installation.html#core-module","python/installation.html#jacsagent-methods","python/installation.html#configuration","python/installation.html#configuration-file","python/installation.html#load-configuration-in-python","python/installation.html#programmatic-configuration","python/installation.html#environment-variables","python/installation.html#storage-backends","python/installation.html#file-system-default","python/installation.html#s3-storage","python/installation.html#memory-storage-testing","python/installation.html#cryptographic-algorithms","python/installation.html#ring-ed25519-recommended","python/installation.html#rsa-pss","python/installation.html#pq-dilithium-post-quantum","python/installation.html#pq2025-post-quantum-hybrid","python/installation.html#development-setup","python/installation.html#project-structure","python/installation.html#requirementstxt-setup","python/installation.html#basic-application","python/installation.html#virtual-environment-setup","python/installation.html#using-venv","python/installation.html#using-conda-1","python/installation.html#using-poetry-1","python/installation.html#jupyter-notebook-setup","python/installation.html#common-issues","python/installation.html#module-not-found","python/installation.html#permission-errors","python/installation.html#binary-compatibility","python/installation.html#windows-issues","python/installation.html#type-hints-and-ide-support","python/installation.html#testing-setup","python/installation.html#next-steps","python/installation.html#examples","python/simple-api.html#simplified-api","python/simple-api.html#quick-start","python/simple-api.html#when-to-use-the-simplified-api","python/simple-api.html#api-reference","python/simple-api.html#loadconfig_pathnone","python/simple-api.html#is_loaded","python/simple-api.html#get_agent_info","python/simple-api.html#verify_self","python/simple-api.html#sign_messagedata","python/simple-api.html#sign_filefile_path-embedfalse","python/simple-api.html#verifysigned_document","python/simple-api.html#verify_standalonedocument-key_resolutionlocal-data_directorynone-key_directorynone","python/simple-api.html#auditconfig_pathnone-recent_nnone","python/simple-api.html#update_agentnew_agent_data","python/simple-api.html#update_documentdocument_id-new_document_data-attachmentsnone-embedfalse","python/simple-api.html#export_agent","python/simple-api.html#get_dns_recorddomain-ttl3600","python/simple-api.html#get_well_known_json","python/simple-api.html#get_public_key","python/simple-api.html#type-definitions","python/simple-api.html#agentinfo","python/simple-api.html#signeddocument","python/simple-api.html#verificationresult","python/simple-api.html#attachment","python/simple-api.html#exceptions","python/simple-api.html#complete-example","python/simple-api.html#mcp-integration","python/simple-api.html#error-handling","python/simple-api.html#see-also","python/basic-usage.html#basic-usage","python/basic-usage.html#initializing-an-agent","python/basic-usage.html#create-and-load-agent","python/basic-usage.html#configuration-file","python/basic-usage.html#creating-documents","python/basic-usage.html#basic-document-creation","python/basic-usage.html#with-custom-schema","python/basic-usage.html#with-output-file","python/basic-usage.html#without-saving","python/basic-usage.html#with-attachments","python/basic-usage.html#verifying-documents","python/basic-usage.html#verify-document-signature","python/basic-usage.html#verify-specific-signature-field","python/basic-usage.html#updating-documents","python/basic-usage.html#update-existing-document","python/basic-usage.html#update-with-new-attachments","python/basic-usage.html#signing-and-verification","python/basic-usage.html#sign-arbitrary-data","python/basic-usage.html#verify-arbitrary-data","python/basic-usage.html#working-with-agreements","python/basic-usage.html#create-an-agreement","python/basic-usage.html#sign-an-agreement","python/basic-usage.html#check-agreement-status","python/basic-usage.html#agent-operations","python/basic-usage.html#verify-agent","python/basic-usage.html#update-agent","python/basic-usage.html#sign-external-agent","python/basic-usage.html#requestresponse-signing","python/basic-usage.html#sign-a-request","python/basic-usage.html#verify-a-response","python/basic-usage.html#utility-functions","python/basic-usage.html#hash-string","python/basic-usage.html#create-configuration","python/basic-usage.html#error-handling","python/basic-usage.html#complete-example","python/basic-usage.html#working-with-document-data","python/basic-usage.html#parse-signed-documents","python/basic-usage.html#document-key-format","python/basic-usage.html#configuration-management","python/basic-usage.html#load-from-file","python/basic-usage.html#environment-variables","python/basic-usage.html#programmatic-configuration","python/basic-usage.html#next-steps","python/mcp.html#mcp-integration","python/mcp.html#overview","python/mcp.html#quick-start","python/mcp.html#basic-mcp-server-with-jacs","python/mcp.html#basic-mcp-client-with-jacs","python/mcp.html#how-it-works","python/mcp.html#jacsmcpserver","python/mcp.html#jacsmcpclient","python/mcp.html#configuration","python/mcp.html#jacs-configuration-file","python/mcp.html#initializing-the-agent","python/mcp.html#integration-patterns","python/mcp.html#fastmcp-with-jacs-middleware","python/mcp.html#manual-requestresponse-signing","python/mcp.html#error-handling","python/mcp.html#common-errors","python/mcp.html#debugging","python/mcp.html#production-deployment","python/mcp.html#security-best-practices","python/mcp.html#docker-deployment","python/mcp.html#testing","python/mcp.html#unit-testing-mcp-tools","python/mcp.html#api-reference","python/mcp.html#jacsmcpservermcp_server","python/mcp.html#jacsmcpclienturl-kwargs","python/mcp.html#module-functions","python/mcp.html#next-steps","python/api.html#api-reference","python/api.html#installation","python/api.html#core-module","python/api.html#jacsagent-class","python/api.html#constructor","python/api.html#agentloadconfig_path","python/api.html#agentcreate_documentdocument_string-custom_schemanone-output_filenamenone-no_savefalse-attachmentsnone-embedfalse","python/api.html#agentverify_documentdocument_string","python/api.html#agentverify_signaturedocument_string-signature_fieldnone","python/api.html#agentupdate_documentdocument_key-new_document_string-attachmentsnone-embedfalse","python/api.html#agentcreate_agreementdocument_string-agent_ids-questionnone-contextnone-agreement_field_namenone","python/api.html#agentsign_agreementdocument_string-agreement_field_namenone","python/api.html#agentcheck_agreementdocument_string-agreement_field_namenone","python/api.html#agentsign_stringdata","python/api.html#agentverify_stringdata-signature_base64-public_key-public_key_enc_type","python/api.html#agentsign_requestparams","python/api.html#agentverify_responsedocument_string","python/api.html#agentverify_response_with_agent_iddocument_string","python/api.html#agentverify_agentagent_filenone","python/api.html#agentupdate_agentnew_agent_string","python/api.html#agentsign_agentagent_string-public_key-public_key_enc_type","python/api.html#module-level-functions","python/api.html#jacsloadconfig_path","python/api.html#jacssign_requestdata","python/api.html#jacsverify_requestdata","python/api.html#jacssign_responsedata","python/api.html#jacsverify_responsedata","python/api.html#mcp-module","python/api.html#jacsmcpservermcp_server","python/api.html#jacsmcpclienturl-kwargs","python/api.html#configuration","python/api.html#configuration-file-format","python/api.html#configuration-options","python/api.html#error-handling","python/api.html#common-exceptions","python/api.html#type-hints","python/api.html#thread-safety","python/api.html#see-also","schemas/overview.html#json-schemas","schemas/overview.html#schema-architecture","schemas/overview.html#schema-categories","schemas/overview.html#configuration-schema","schemas/overview.html#document-schemas","schemas/overview.html#component-schemas","schemas/overview.html#schema-locations","schemas/overview.html#using-schemas","schemas/overview.html#in-documents","schemas/overview.html#in-configuration-files","schemas/overview.html#custom-schema-validation","schemas/overview.html#hai-extensions","schemas/overview.html#versioning","schemas/overview.html#schema-composition","schemas/overview.html#creating-custom-schemas","schemas/overview.html#validation-rules","schemas/overview.html#required-fields","schemas/overview.html#format-validation","schemas/overview.html#enum-constraints","schemas/overview.html#schema-reference","schemas/overview.html#see-also","schemas/agent.html#agent-schema","schemas/agent.html#schema-location","schemas/agent.html#overview","schemas/agent.html#schema-structure","schemas/agent.html#agent-types","schemas/agent.html#contact-requirements","schemas/agent.html#agent-properties","schemas/agent.html#core-fields-from-header","schemas/agent.html#agent-specific-fields","schemas/agent.html#services","schemas/agent.html#service-schema-fields","schemas/agent.html#pii-types","schemas/agent.html#contacts","schemas/agent.html#contact-schema-fields","schemas/agent.html#dns-verification","schemas/agent.html#complete-example","schemas/agent.html#ai-agent","schemas/agent.html#human-agent","schemas/agent.html#organization-agent","schemas/agent.html#creating-agents","schemas/agent.html#python","schemas/agent.html#nodejs","schemas/agent.html#cli","schemas/agent.html#verifying-agents","schemas/agent.html#see-also","schemas/document.html#document-schema","schemas/document.html#schema-location","schemas/document.html#overview","schemas/document.html#core-fields","schemas/document.html#identification","schemas/document.html#versioning","schemas/document.html#document-level","schemas/document.html#cryptographic-fields","schemas/document.html#signature","schemas/document.html#registration","schemas/document.html#hash","schemas/document.html#agreements","schemas/document.html#agreement-schema-fields","schemas/document.html#file-attachments","schemas/document.html#file-schema-fields","schemas/document.html#vector-embeddings","schemas/document.html#embedding-schema-fields","schemas/document.html#complete-example","schemas/document.html#hai-field-categories","schemas/document.html#working-with-documents","schemas/document.html#creating-documents","schemas/document.html#verifying-documents","schemas/document.html#updating-documents","schemas/document.html#adding-attachments","schemas/document.html#version-history","schemas/document.html#see-also","schemas/task.html#task-schema","schemas/task.html#schema-location","schemas/task.html#overview","schemas/task.html#schema-structure","schemas/task.html#task-states","schemas/task.html#state-transitions","schemas/task.html#task-properties","schemas/task.html#core-fields-from-header","schemas/task.html#task-specific-fields","schemas/task.html#relationship-fields","schemas/task.html#actions","schemas/task.html#action-schema-fields","schemas/task.html#unit-schema","schemas/task.html#agreements","schemas/task.html#start-agreement","schemas/task.html#end-agreement","schemas/task.html#complete-example","schemas/task.html#task-relationships","schemas/task.html#sub-tasks","schemas/task.html#task-copies-branching","schemas/task.html#merged-tasks","schemas/task.html#task-workflow","schemas/task.html#1-creating-a-task","schemas/task.html#2-assigning-an-agent","schemas/task.html#3-signing-start-agreement","schemas/task.html#4-completing-work","schemas/task.html#5-final-completion","schemas/task.html#state-machine-rules","schemas/task.html#see-also","schemas/agentstate.html#agent-state-schema","schemas/agentstate.html#schema-location","schemas/agentstate.html#overview","schemas/agentstate.html#schema-structure","schemas/agentstate.html#state-types","schemas/agentstate.html#properties","schemas/agentstate.html#required-fields","schemas/agentstate.html#optional-fields","schemas/agentstate.html#origin-tracking","schemas/agentstate.html#file-references","schemas/agentstate.html#examples","schemas/agentstate.html#minimal-agent-state","schemas/agentstate.html#memory-file-with-embedding","schemas/agentstate.html#adopted-skill","schemas/agentstate.html#general-purpose-signed-document","schemas/agentstate.html#rust-api","schemas/agentstate.html#creating-agent-state-documents","schemas/agentstate.html#signing-and-verification","schemas/agentstate.html#mcp-tools","schemas/agentstate.html#mcp-example-sign-a-memory-file","schemas/agentstate.html#mcp-example-sign-any-document","schemas/agentstate.html#security-notes","schemas/agentstate.html#see-also","schemas/commitment.html#commitment-schema","schemas/commitment.html#schema","schemas/commitment.html#required-fields","schemas/commitment.html#status-lifecycle","schemas/commitment.html#optional-fields","schemas/commitment.html#cross-references","schemas/commitment.html#multi-agent-agreements","schemas/commitment.html#example","schemas/commitment.html#rust-api","schemas/commitment.html#versioning","schemas/commitment.html#see-also","schemas/todo.html#todo-list-schema","schemas/todo.html#schema","schemas/todo.html#required-fields","schemas/todo.html#optional-fields","schemas/todo.html#todo-items","schemas/todo.html#required-item-fields","schemas/todo.html#optional-item-fields","schemas/todo.html#cross-references","schemas/todo.html#item-hierarchy","schemas/todo.html#example","schemas/todo.html#rust-api","schemas/todo.html#versioning","schemas/todo.html#see-also","schemas/conversation.html#conversation-schema","schemas/conversation.html#schema","schemas/conversation.html#message-fields","schemas/conversation.html#required","schemas/conversation.html#optional","schemas/conversation.html#threading-model","schemas/conversation.html#immutability","schemas/conversation.html#example","schemas/conversation.html#rust-api","schemas/conversation.html#cross-references","schemas/conversation.html#see-also","schemas/configuration.html#configuration","schemas/configuration.html#schema-location","schemas/configuration.html#quick-start","schemas/configuration.html#required-fields","schemas/configuration.html#configuration-options","schemas/configuration.html#key-configuration","schemas/configuration.html#storage-configuration","schemas/configuration.html#agent-identity","schemas/configuration.html#schema-versions","schemas/configuration.html#dns-configuration","schemas/configuration.html#security","schemas/configuration.html#observability-configuration","schemas/configuration.html#logs-configuration","schemas/configuration.html#metrics-configuration","schemas/configuration.html#tracing-configuration","schemas/configuration.html#complete-configuration-example","schemas/configuration.html#environment-variables","schemas/configuration.html#loading-configuration","schemas/configuration.html#python","schemas/configuration.html#nodejs","schemas/configuration.html#cli","schemas/configuration.html#production-best-practices","schemas/configuration.html#see-also","advanced/security.html#security-model","advanced/security.html#security-model-v060","advanced/security.html#core-security-principles","advanced/security.html#1-cryptographic-identity","advanced/security.html#2-document-integrity","advanced/security.html#3-non-repudiation","advanced/security.html#security-audit-audit","advanced/security.html#threat-model","advanced/security.html#protected-against","advanced/security.html#trust-assumptions","advanced/security.html#signature-process","advanced/security.html#signing-a-document","advanced/security.html#verifying-a-document","advanced/security.html#key-management","advanced/security.html#key-generation","advanced/security.html#key-protection","advanced/security.html#key-rotation","advanced/security.html#tls-certificate-validation","advanced/security.html#default-behavior-development","advanced/security.html#production-configuration","advanced/security.html#security-implications","advanced/security.html#signature-timestamp-validation","advanced/security.html#how-it-works","advanced/security.html#configuring-signature-expiration","advanced/security.html#protection-against-replay-attacks","advanced/security.html#clock-synchronization","advanced/security.html#verification-claims","advanced/security.html#claim-levels","advanced/security.html#setting-a-verification-claim","advanced/security.html#claim-enforcement","advanced/security.html#backward-compatibility","advanced/security.html#error-messages","advanced/security.html#security-considerations","advanced/security.html#dns-based-verification","advanced/security.html#how-it-works-1","advanced/security.html#configuration","advanced/security.html#security-levels","advanced/security.html#trust-store-management","advanced/security.html#trusting-agents","advanced/security.html#untrusting-agents","advanced/security.html#trust-store-security","advanced/security.html#best-practices","advanced/security.html#agreement-security","advanced/security.html#agreement-structure","advanced/security.html#agreement-guarantees","advanced/security.html#requestresponse-security","advanced/security.html#request-signing","advanced/security.html#response-verification","advanced/security.html#algorithm-security","advanced/security.html#supported-algorithms","advanced/security.html#algorithm-selection","advanced/security.html#security-best-practices","advanced/security.html#1-key-storage","advanced/security.html#2-password-handling","advanced/security.html#3-transport-security","advanced/security.html#4-verification-policies","advanced/security.html#5-audit-logging","advanced/security.html#security-checklist","advanced/security.html#development","advanced/security.html#production","advanced/security.html#verification","advanced/security.html#security-considerations-1","advanced/security.html#supply-chain","advanced/security.html#side-channels","advanced/security.html#recovery","advanced/security.html#troubleshooting-verification-claims","advanced/security.html#common-issues-and-solutions","advanced/security.html#claim-level-reference","advanced/security.html#upgrade-vs-downgrade-rules","advanced/security.html#quick-diagnostic-commands","advanced/security.html#see-also","advanced/key-rotation.html#key-rotation","advanced/key-rotation.html#why-key-rotation-matters","advanced/key-rotation.html#key-compromise-recovery","advanced/key-rotation.html#cryptographic-agility","advanced/key-rotation.html#compliance-requirements","advanced/key-rotation.html#agent-versioning","advanced/key-rotation.html#version-format","advanced/key-rotation.html#version-chain","advanced/key-rotation.html#version-aware-verification","advanced/key-rotation.html#signature-structure","advanced/key-rotation.html#key-resolution-process","advanced/key-rotation.html#key-lookup-priority","advanced/key-rotation.html#key-rotation-process","advanced/key-rotation.html#step-by-step-rotation","advanced/key-rotation.html#transition-signature","advanced/key-rotation.html#cli-commands-planned","advanced/key-rotation.html#example-rotation-flow","advanced/key-rotation.html#trust-store-with-version-history","advanced/key-rotation.html#trustedagent-structure","advanced/key-rotation.html#key-status-values","advanced/key-rotation.html#looking-up-keys","advanced/key-rotation.html#dns-support-for-key-versions","advanced/key-rotation.html#multi-version-dns-records","advanced/key-rotation.html#dns-record-generation","advanced/key-rotation.html#security-considerations","advanced/key-rotation.html#key-revocation","advanced/key-rotation.html#overlap-period","advanced/key-rotation.html#secure-deletion","advanced/key-rotation.html#best-practices","advanced/key-rotation.html#rotation-schedule","advanced/key-rotation.html#pre-rotation-checklist","advanced/key-rotation.html#post-rotation-checklist","advanced/key-rotation.html#see-also","advanced/crypto.html#cryptographic-algorithms","advanced/crypto.html#supported-algorithms","advanced/crypto.html#ed25519-ring-ed25519","advanced/crypto.html#overview","advanced/crypto.html#characteristics","advanced/crypto.html#configuration","advanced/crypto.html#use-cases","advanced/crypto.html#example","advanced/crypto.html#rsa-pss","advanced/crypto.html#overview-1","advanced/crypto.html#characteristics-1","advanced/crypto.html#configuration-1","advanced/crypto.html#use-cases-1","advanced/crypto.html#considerations","advanced/crypto.html#dilithium-pq-dilithium","advanced/crypto.html#overview-2","advanced/crypto.html#characteristics-2","advanced/crypto.html#configuration-2","advanced/crypto.html#use-cases-2","advanced/crypto.html#considerations-1","advanced/crypto.html#pq2025-hybrid","advanced/crypto.html#overview-3","advanced/crypto.html#characteristics-3","advanced/crypto.html#configuration-3","advanced/crypto.html#use-cases-3","advanced/crypto.html#considerations-2","advanced/crypto.html#algorithm-selection-guide","advanced/crypto.html#decision-matrix","advanced/crypto.html#by-use-case","advanced/crypto.html#key-generation","advanced/crypto.html#key-formats","advanced/crypto.html#signature-structure","advanced/crypto.html#hashing","advanced/crypto.html#algorithm-migration","advanced/crypto.html#performance-comparison","advanced/crypto.html#security-considerations","advanced/crypto.html#algorithm-agility","advanced/crypto.html#forward-secrecy","advanced/crypto.html#key-compromise","advanced/crypto.html#see-also","advanced/storage.html#storage-backends","advanced/storage.html#available-backends","advanced/storage.html#configuration","advanced/storage.html#filesystem-storage-fs","advanced/storage.html#configuration-1","advanced/storage.html#directory-structure","advanced/storage.html#use-cases","advanced/storage.html#advantages","advanced/storage.html#considerations","advanced/storage.html#example","advanced/storage.html#aws-s3-storage-aws","advanced/storage.html#configuration-2","advanced/storage.html#environment-variables","advanced/storage.html#bucket-structure","advanced/storage.html#use-cases-1","advanced/storage.html#advantages-1","advanced/storage.html#considerations-1","advanced/storage.html#iam-policy","advanced/storage.html#example-1","advanced/storage.html#hai-cloud-storage-hai","advanced/storage.html#configuration-3","advanced/storage.html#features","advanced/storage.html#use-cases-2","advanced/storage.html#postgresql-database-storage-database","advanced/storage.html#compile-time-setup","advanced/storage.html#configuration-4","advanced/storage.html#how-it-works","advanced/storage.html#table-schema","advanced/storage.html#append-only-model","advanced/storage.html#query-capabilities","advanced/storage.html#rust-api-example","advanced/storage.html#security-note","advanced/storage.html#use-cases-3","advanced/storage.html#considerations-2","advanced/storage.html#in-memory-storage","advanced/storage.html#storage-selection-guide","advanced/storage.html#file-storage","advanced/storage.html#embedded-files","advanced/storage.html#external-files","advanced/storage.html#data-migration","advanced/storage.html#filesystem-to-s3","advanced/storage.html#exportimport","advanced/storage.html#backup-and-recovery","advanced/storage.html#filesystem-backup","advanced/storage.html#s3-backup","advanced/storage.html#cross-region-replication","advanced/storage.html#performance-optimization","advanced/storage.html#filesystem","advanced/storage.html#s3","advanced/storage.html#caching","advanced/storage.html#security-considerations","advanced/storage.html#filesystem-1","advanced/storage.html#s3-1","advanced/storage.html#see-also","advanced/custom-schemas.html#custom-schemas","advanced/custom-schemas.html#overview","advanced/custom-schemas.html#creating-a-custom-schema","advanced/custom-schemas.html#basic-structure","advanced/custom-schemas.html#step-by-step-guide","advanced/custom-schemas.html#schema-best-practices","advanced/custom-schemas.html#use-meaningful-ids","advanced/custom-schemas.html#document-everything","advanced/custom-schemas.html#use-appropriate-validation","advanced/custom-schemas.html#group-related-fields","advanced/custom-schemas.html#advanced-schema-features","advanced/custom-schemas.html#conditional-validation","advanced/custom-schemas.html#reusable-definitions","advanced/custom-schemas.html#array-constraints","advanced/custom-schemas.html#pattern-properties","advanced/custom-schemas.html#schema-inheritance","advanced/custom-schemas.html#extending-custom-schemas","advanced/custom-schemas.html#validation","advanced/custom-schemas.html#python-validation","advanced/custom-schemas.html#nodejs-validation","advanced/custom-schemas.html#example-schemas","advanced/custom-schemas.html#medical-record","advanced/custom-schemas.html#legal-contract","advanced/custom-schemas.html#iot-sensor-reading","advanced/custom-schemas.html#schema-versioning","advanced/custom-schemas.html#version-in-path","advanced/custom-schemas.html#version-field","advanced/custom-schemas.html#migration-strategy","advanced/custom-schemas.html#see-also","advanced/testing.html#testing","advanced/testing.html#testing-fundamentals","advanced/testing.html#test-agent-setup","advanced/testing.html#test-fixtures","advanced/testing.html#unit-testing","advanced/testing.html#testing-document-operations","advanced/testing.html#testing-agreements","advanced/testing.html#agreement-completion-semantics-strict","advanced/testing.html#two-agent-agreement-harness-separate-agents","advanced/testing.html#testing-requestresponse-signing","advanced/testing.html#integration-testing","advanced/testing.html#testing-mcp-integration","advanced/testing.html#testing-http-endpoints","advanced/testing.html#mocking","advanced/testing.html#mocking-jacs-agent","advanced/testing.html#mocking-mcp-transport","advanced/testing.html#test-coverage","advanced/testing.html#rust-coverage","advanced/testing.html#python-coverage","advanced/testing.html#nodejs-coverage","advanced/testing.html#cicd-integration","advanced/testing.html#github-actions","advanced/testing.html#test-environment-variables","advanced/testing.html#raii-test-fixtures-rust","advanced/testing.html#trusttestguard-pattern","advanced/testing.html#property-based-testing","advanced/testing.html#key-properties-to-test","advanced/testing.html#fuzzing","advanced/testing.html#recommended-tool-cargo-fuzz","advanced/testing.html#priority-fuzz-targets-for-jacs","advanced/testing.html#best-practices","advanced/testing.html#1-isolate-tests","advanced/testing.html#2-test-edge-cases","advanced/testing.html#3-test-security-properties","advanced/testing.html#4-test-error-handling","advanced/testing.html#see-also","integrations/mcp.html#model-context-protocol-mcp","integrations/mcp.html#what-is-mcp","integrations/mcp.html#why-jacs--mcp","integrations/mcp.html#architecture","integrations/mcp.html#how-it-works","integrations/mcp.html#quick-start","integrations/mcp.html#nodejs","integrations/mcp.html#python","integrations/mcp.html#language-support","integrations/mcp.html#nodejs-haiaijacs","integrations/mcp.html#python-jacspy","integrations/mcp.html#message-flow","integrations/mcp.html#tool-call-example","integrations/mcp.html#signed-message-structure","integrations/mcp.html#configuration","integrations/mcp.html#server-configuration","integrations/mcp.html#client-configuration","integrations/mcp.html#transports","integrations/mcp.html#stdio","integrations/mcp.html#server-sent-events-sse","integrations/mcp.html#security-model","integrations/mcp.html#signing-is-sacred","integrations/mcp.html#what-gets-signed","integrations/mcp.html#what-gets-verified","integrations/mcp.html#passthrough-mode","integrations/mcp.html#debugging","integrations/mcp.html#enable-debug-logging","integrations/mcp.html#common-issues","integrations/mcp.html#best-practices","integrations/mcp.html#1-separate-keys-for-server-and-client","integrations/mcp.html#2-use-tls-for-network-transports","integrations/mcp.html#3-implement-key-rotation","integrations/mcp.html#4-log-security-events","integrations/mcp.html#example-multi-agent-system","integrations/mcp.html#hai-mcp-server-tools","integrations/mcp.html#identity--registration-tools","integrations/mcp.html#agent-state-tools","integrations/mcp.html#see-also","integrations/a2a.html#a2a-interoperability","integrations/a2a.html#what-jacs-adds","integrations/a2a.html#interoperability-contract","integrations/a2a.html#verification-model","integrations/a2a.html#12-factor-runtime-configuration","integrations/a2a.html#rust-example","integrations/a2a.html#python-example","integrations/a2a.html#nodejs-example","integrations/a2a.html#devex-expectations","integrations/a2a.html#troubleshooting","integrations/openclaw.html#openclaw-integration","integrations/openclaw.html#overview","integrations/openclaw.html#installation","integrations/openclaw.html#setup","integrations/openclaw.html#initialize-jacs-identity","integrations/openclaw.html#configuration","integrations/openclaw.html#configuration-options","integrations/openclaw.html#directory-structure","integrations/openclaw.html#cli-commands","integrations/openclaw.html#status","integrations/openclaw.html#sign-document","integrations/openclaw.html#verify-document","integrations/openclaw.html#lookup-agent","integrations/openclaw.html#export-agent-card","integrations/openclaw.html#generate-dns-record","integrations/openclaw.html#agent-tools","integrations/openclaw.html#jacs_sign","integrations/openclaw.html#jacs_verify","integrations/openclaw.html#jacs_fetch_pubkey","integrations/openclaw.html#jacs_verify_with_key","integrations/openclaw.html#jacs_lookup_agent","integrations/openclaw.html#jacs_create_agreement","integrations/openclaw.html#well-known-endpoints","integrations/openclaw.html#well-knownagent-cardjson","integrations/openclaw.html#well-knownjacs-pubkeyjson","integrations/openclaw.html#p2p-agent-verification","integrations/openclaw.html#flow","integrations/openclaw.html#example-workflow","integrations/openclaw.html#dns-based-discovery","integrations/openclaw.html#generate-dns-record-1","integrations/openclaw.html#dns-lookup","integrations/openclaw.html#security","integrations/openclaw.html#key-protection","integrations/openclaw.html#post-quantum-cryptography","integrations/openclaw.html#signature-binding","integrations/openclaw.html#skill-usage","integrations/openclaw.html#troubleshooting","integrations/openclaw.html#jacs-not-initialized","integrations/openclaw.html#failed-to-fetch-public-key","integrations/openclaw.html#signature-verification-failed","integrations/openclaw.html#next-steps","integrations/web-servers.html#web-servers","integrations/web-servers.html#overview","integrations/web-servers.html#supported-frameworks","integrations/web-servers.html#requestresponse-flow","integrations/web-servers.html#nodejs-integration","integrations/web-servers.html#expressjs","integrations/web-servers.html#koa","integrations/web-servers.html#python-integration","integrations/web-servers.html#fastapi","integrations/web-servers.html#flask","integrations/web-servers.html#http-client","integrations/web-servers.html#nodejs-client","integrations/web-servers.html#python-client","integrations/web-servers.html#middleware-patterns","integrations/web-servers.html#route-level-protection","integrations/web-servers.html#multiple-agent-configurations","integrations/web-servers.html#validation-middleware","integrations/web-servers.html#content-type-considerations","integrations/web-servers.html#error-handling","integrations/web-servers.html#server-side-errors","integrations/web-servers.html#client-side-errors","integrations/web-servers.html#security-best-practices","integrations/web-servers.html#1-use-tls-in-production","integrations/web-servers.html#2-separate-server-and-client-keys","integrations/web-servers.html#3-middleware-order-matters","integrations/web-servers.html#4-avoid-json-body-parser-conflicts","integrations/web-servers.html#logging-and-auditing","integrations/web-servers.html#testing","integrations/web-servers.html#testing-with-supertest","integrations/web-servers.html#troubleshooting","integrations/web-servers.html#common-issues","integrations/web-servers.html#debug-logging","integrations/web-servers.html#see-also","integrations/databases.html#databases","integrations/databases.html#built-in-postgresql-backend","integrations/databases.html#custom-database-integrations","integrations/databases.html#why-use-a-custom-database-integration","integrations/databases.html#postgresql-integration","integrations/databases.html#schema-design","integrations/databases.html#nodejs-example","integrations/databases.html#python-example","integrations/databases.html#mongodb-integration","integrations/databases.html#collection-design","integrations/databases.html#example","integrations/databases.html#sqlite-integration","integrations/databases.html#redis-caching","integrations/databases.html#indexing-strategies","integrations/databases.html#extracting-searchable-fields","integrations/databases.html#full-text-search","integrations/databases.html#best-practices","integrations/databases.html#1-store-complete-documents","integrations/databases.html#2-verify-after-retrieval","integrations/databases.html#3-handle-version-history","integrations/databases.html#4-batch-verification","integrations/databases.html#see-also","examples/cli.html#cli-examples","examples/cli.html#quick-reference","examples/cli.html#getting-started","examples/cli.html#first-time-setup","examples/cli.html#verify-your-setup","examples/cli.html#document-operations","examples/cli.html#creating-documents","examples/cli.html#verifying-documents","examples/cli.html#updating-documents","examples/cli.html#extracting-embedded-content","examples/cli.html#agreement-workflows","examples/cli.html#creating-an-agreement","examples/cli.html#signing-an-agreement","examples/cli.html#complete-agreement-workflow","examples/cli.html#agent-operations","examples/cli.html#creating-a-custom-agent","examples/cli.html#dns-based-identity","examples/cli.html#agent-verification","examples/cli.html#task-management","examples/cli.html#creating-tasks","examples/cli.html#scripting-examples","examples/cli.html#batch-document-processing","examples/cli.html#verification-report","examples/cli.html#watch-for-new-documents","examples/cli.html#environment-configuration","examples/cli.html#using-environment-variables","examples/cli.html#multiple-configurations","examples/cli.html#error-handling","examples/cli.html#understanding-exit-codes","examples/cli.html#handling-failures","examples/cli.html#see-also","examples/nodejs.html#nodejs-examples","examples/nodejs.html#setup","examples/nodejs.html#basic-document-operations","examples/nodejs.html#creating-and-signing-documents","examples/nodejs.html#verifying-documents","examples/nodejs.html#updating-documents","examples/nodejs.html#http-server-with-express","examples/nodejs.html#complete-express-server","examples/nodejs.html#http-client","examples/nodejs.html#mcp-integration","examples/nodejs.html#mcp-server","examples/nodejs.html#mcp-client","examples/nodejs.html#agreements","examples/nodejs.html#creating-multi-party-agreements","examples/nodejs.html#signing-agreements","examples/nodejs.html#checking-agreement-status","examples/nodejs.html#document-store","examples/nodejs.html#simple-file-based-store","examples/nodejs.html#error-handling","examples/nodejs.html#robust-error-handling-pattern","examples/nodejs.html#testing","examples/nodejs.html#jest-test-setup","examples/nodejs.html#see-also","examples/python.html#python-examples","examples/python.html#setup","examples/python.html#basic-document-operations","examples/python.html#creating-and-signing-documents","examples/python.html#verifying-documents","examples/python.html#updating-documents","examples/python.html#http-server-with-fastapi","examples/python.html#complete-fastapi-server","examples/python.html#http-client","examples/python.html#mcp-integration","examples/python.html#fastmcp-server-with-jacs","examples/python.html#mcp-client-with-jacs","examples/python.html#agreements","examples/python.html#creating-multi-party-agreements","examples/python.html#signing-agreements","examples/python.html#checking-agreement-status","examples/python.html#document-store","examples/python.html#simple-file-based-store","examples/python.html#batch-processing","examples/python.html#batch-document-creator","examples/python.html#testing","examples/python.html#pytest-setup","examples/python.html#error-handling","examples/python.html#robust-error-handling-pattern","examples/python.html#see-also","examples/integrations.html#integration-examples","examples/integrations.html#multi-agent-contract-signing-system","examples/integrations.html#overview","examples/integrations.html#implementation","examples/integrations.html#secure-api-gateway-with-mcp-tools","examples/integrations.html#nodejs-implementation","examples/integrations.html#python-implementation","examples/integrations.html#document-audit-trail-system","examples/integrations.html#multi-tenant-document-service","examples/integrations.html#webhook-notification-system","examples/integrations.html#see-also","reference/cli-commands.html#cli-command-reference","reference/cli-commands.html#global-commands","reference/cli-commands.html#jacs-version","reference/cli-commands.html#jacs-init","reference/cli-commands.html#jacs-help","reference/cli-commands.html#configuration-commands","reference/cli-commands.html#jacs-config","reference/cli-commands.html#agent-commands","reference/cli-commands.html#jacs-agent","reference/cli-commands.html#task-commands","reference/cli-commands.html#jacs-task","reference/cli-commands.html#document-commands","reference/cli-commands.html#jacs-document-create","reference/cli-commands.html#jacs-document-update","reference/cli-commands.html#jacs-document-verify","reference/cli-commands.html#jacs-document-extract","reference/cli-commands.html#agreement-commands","reference/cli-commands.html#common-patterns","reference/cli-commands.html#basic-document-lifecycle","reference/cli-commands.html#working-with-attachments","reference/cli-commands.html#schema-validation-workflow","reference/cli-commands.html#global-options","reference/cli-commands.html#exit-codes","reference/cli-commands.html#environment-variables","reference/cli-commands.html#file-formats","reference/cli-commands.html#input-files","reference/cli-commands.html#output-files","reference/configuration.html#configuration-reference","reference/configuration.html#overview","reference/configuration.html#key-resolution-for-verifiers","reference/configuration.html#complete-example-configuration","reference/configuration.html#observability-configuration","reference/configuration.html#logs-configuration","reference/configuration.html#metrics-configuration","reference/configuration.html#tracing-configuration","reference/configuration.html#authentication--headers","reference/configuration.html#common-patterns","reference/configuration.html#development-configuration","reference/configuration.html#production-configuration","reference/configuration.html#file-based-configuration","reference/configuration.html#environment-variable-integration","reference/configuration.html#required-environment-variable","reference/configuration.html#configuration-based-settings","reference/configuration.html#storage-configuration","reference/configuration.html#available-storage-backends","reference/configuration.html#backend-specific-configuration","reference/configuration.html#storage-behavior","reference/configuration.html#configuration-examples","reference/configuration.html#security-considerations","reference/configuration.html#migration-between-storage-backends","reference/errors.html#error-codes","reference/errors.html#cli-exit-codes","reference/errors.html#configuration-errors","reference/errors.html#missing-configuration","reference/errors.html#invalid-configuration","reference/errors.html#key-directory-not-found","reference/errors.html#cryptographic-errors","reference/errors.html#private-key-not-found","reference/errors.html#invalid-key-format","reference/errors.html#key-password-required","reference/errors.html#algorithm-mismatch","reference/errors.html#signature-errors","reference/errors.html#verification-failed","reference/errors.html#missing-signature","reference/errors.html#invalid-signature-format","reference/errors.html#unknown-signing-algorithm","reference/errors.html#dns-verification-errors","reference/errors.html#dnssec-validation-failed","reference/errors.html#dns-record-not-found","reference/errors.html#dns-required","reference/errors.html#dns-lookup-timeout","reference/errors.html#document-errors","reference/errors.html#invalid-json","reference/errors.html#schema-validation-failed","reference/errors.html#document-not-found","reference/errors.html#version-mismatch","reference/errors.html#agreement-errors","reference/errors.html#agreement-not-found","reference/errors.html#already-signed","reference/errors.html#not-authorized","reference/errors.html#agreement-locked","reference/errors.html#storage-errors","reference/errors.html#storage-backend-error","reference/errors.html#aws-s3-error","reference/errors.html#connection-error","reference/errors.html#httpmcp-errors","reference/errors.html#request-verification-failed","reference/errors.html#response-verification-failed","reference/errors.html#middleware-configuration-error","reference/errors.html#debugging-tips","reference/errors.html#enable-verbose-output","reference/errors.html#check-configuration","reference/errors.html#verify-agent","reference/errors.html#test-signing","reference/errors.html#see-also","reference/migration.html#migration-guide","reference/migration.html#version-compatibility","reference/migration.html#migrating-from-051-to-052","reference/migration.html#migration-notes","reference/migration.html#deprecated-environment-variables","reference/migration.html#new-environment-variables","reference/migration.html#migrating-from-02x-to-03x","reference/migration.html#configuration-changes","reference/migration.html#migration-steps","reference/migration.html#migrating-storage-backends","reference/migration.html#filesystem-to-aws-s3","reference/migration.html#aws-s3-to-filesystem","reference/migration.html#migrating-cryptographic-algorithms","reference/migration.html#ed25519-to-post-quantum","reference/migration.html#migrating-between-platforms","reference/migration.html#nodejs-to-python","reference/migration.html#sharing-agents-between-platforms","reference/migration.html#migrating-key-formats","reference/migration.html#unencrypted-to-encrypted-keys","reference/migration.html#database-migration","reference/migration.html#adding-database-storage","reference/migration.html#mcp-integration-migration","reference/migration.html#adding-jacs-to-existing-mcp-server","reference/migration.html#http-api-migration","reference/migration.html#adding-jacs-to-existing-express-api","reference/migration.html#troubleshooting-migration","reference/migration.html#common-issues","reference/migration.html#verification-checklist","reference/migration.html#rollback-procedures","reference/migration.html#see-also"],"index":{"documentStore":{"docInfo":{"0":{"body":24,"breadcrumbs":6,"title":5},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":8,"breadcrumbs":2,"title":1},"100":{"body":10,"breadcrumbs":2,"title":1},"1000":{"body":22,"breadcrumbs":5,"title":3},"1001":{"body":42,"breadcrumbs":5,"title":3},"1002":{"body":7,"breadcrumbs":6,"title":4},"1003":{"body":33,"breadcrumbs":6,"title":4},"1004":{"body":9,"breadcrumbs":5,"title":3},"1005":{"body":0,"breadcrumbs":4,"title":2},"1006":{"body":22,"breadcrumbs":4,"title":2},"1007":{"body":24,"breadcrumbs":4,"title":2},"1008":{"body":14,"breadcrumbs":4,"title":2},"1009":{"body":0,"breadcrumbs":4,"title":2},"101":{"body":12,"breadcrumbs":4,"title":3},"1010":{"body":15,"breadcrumbs":4,"title":2},"1011":{"body":19,"breadcrumbs":5,"title":3},"1012":{"body":21,"breadcrumbs":5,"title":3},"1013":{"body":15,"breadcrumbs":3,"title":1},"1014":{"body":18,"breadcrumbs":4,"title":2},"1015":{"body":54,"breadcrumbs":4,"title":2},"1016":{"body":4,"breadcrumbs":5,"title":3},"1017":{"body":13,"breadcrumbs":3,"title":1},"1018":{"body":24,"breadcrumbs":3,"title":1},"1019":{"body":3,"breadcrumbs":3,"title":1},"102":{"body":0,"breadcrumbs":3,"title":2},"1020":{"body":11,"breadcrumbs":4,"title":2},"1021":{"body":21,"breadcrumbs":3,"title":1},"1022":{"body":7,"breadcrumbs":4,"title":2},"1023":{"body":14,"breadcrumbs":3,"title":1},"1024":{"body":24,"breadcrumbs":3,"title":1},"1025":{"body":3,"breadcrumbs":3,"title":1},"1026":{"body":10,"breadcrumbs":4,"title":2},"1027":{"body":12,"breadcrumbs":3,"title":1},"1028":{"body":7,"breadcrumbs":5,"title":3},"1029":{"body":18,"breadcrumbs":3,"title":1},"103":{"body":5,"breadcrumbs":3,"title":2},"1030":{"body":27,"breadcrumbs":3,"title":1},"1031":{"body":3,"breadcrumbs":3,"title":1},"1032":{"body":14,"breadcrumbs":4,"title":2},"1033":{"body":13,"breadcrumbs":3,"title":1},"1034":{"body":8,"breadcrumbs":4,"title":2},"1035":{"body":18,"breadcrumbs":3,"title":1},"1036":{"body":20,"breadcrumbs":3,"title":1},"1037":{"body":2,"breadcrumbs":3,"title":1},"1038":{"body":12,"breadcrumbs":4,"title":2},"1039":{"body":8,"breadcrumbs":3,"title":1},"104":{"body":10,"breadcrumbs":2,"title":1},"1040":{"body":0,"breadcrumbs":5,"title":3},"1041":{"body":26,"breadcrumbs":4,"title":2},"1042":{"body":41,"breadcrumbs":4,"title":2},"1043":{"body":20,"breadcrumbs":4,"title":2},"1044":{"body":30,"breadcrumbs":4,"title":2},"1045":{"body":46,"breadcrumbs":4,"title":2},"1046":{"body":20,"breadcrumbs":3,"title":1},"1047":{"body":56,"breadcrumbs":4,"title":2},"1048":{"body":32,"breadcrumbs":4,"title":2},"1049":{"body":0,"breadcrumbs":4,"title":2},"105":{"body":2,"breadcrumbs":3,"title":2},"1050":{"body":15,"breadcrumbs":4,"title":2},"1051":{"body":13,"breadcrumbs":4,"title":2},"1052":{"body":19,"breadcrumbs":4,"title":2},"1053":{"body":14,"breadcrumbs":3,"title":1},"1054":{"body":17,"breadcrumbs":4,"title":2},"1055":{"body":31,"breadcrumbs":4,"title":2},"1056":{"body":8,"breadcrumbs":3,"title":1},"1057":{"body":9,"breadcrumbs":5,"title":3},"1058":{"body":4,"breadcrumbs":3,"title":1},"1059":{"body":14,"breadcrumbs":4,"title":2},"106":{"body":6,"breadcrumbs":3,"title":2},"1060":{"body":10,"breadcrumbs":4,"title":2},"1061":{"body":10,"breadcrumbs":3,"title":1},"1062":{"body":10,"breadcrumbs":3,"title":1},"1063":{"body":21,"breadcrumbs":3,"title":1},"1064":{"body":6,"breadcrumbs":6,"title":4},"1065":{"body":6,"breadcrumbs":3,"title":1},"1066":{"body":12,"breadcrumbs":4,"title":2},"1067":{"body":16,"breadcrumbs":4,"title":2},"1068":{"body":10,"breadcrumbs":4,"title":2},"1069":{"body":10,"breadcrumbs":3,"title":1},"107":{"body":49,"breadcrumbs":3,"title":2},"1070":{"body":10,"breadcrumbs":3,"title":1},"1071":{"body":22,"breadcrumbs":4,"title":2},"1072":{"body":27,"breadcrumbs":3,"title":1},"1073":{"body":4,"breadcrumbs":6,"title":4},"1074":{"body":2,"breadcrumbs":3,"title":1},"1075":{"body":12,"breadcrumbs":3,"title":1},"1076":{"body":11,"breadcrumbs":4,"title":2},"1077":{"body":28,"breadcrumbs":6,"title":4},"1078":{"body":19,"breadcrumbs":5,"title":3},"1079":{"body":24,"breadcrumbs":3,"title":1},"108":{"body":41,"breadcrumbs":3,"title":2},"1080":{"body":37,"breadcrumbs":3,"title":1},"1081":{"body":29,"breadcrumbs":4,"title":2},"1082":{"body":24,"breadcrumbs":4,"title":2},"1083":{"body":43,"breadcrumbs":4,"title":2},"1084":{"body":53,"breadcrumbs":5,"title":3},"1085":{"body":17,"breadcrumbs":4,"title":2},"1086":{"body":22,"breadcrumbs":4,"title":2},"1087":{"body":17,"breadcrumbs":3,"title":1},"1088":{"body":31,"breadcrumbs":4,"title":2},"1089":{"body":29,"breadcrumbs":5,"title":3},"109":{"body":29,"breadcrumbs":3,"title":2},"1090":{"body":0,"breadcrumbs":4,"title":2},"1091":{"body":17,"breadcrumbs":4,"title":2},"1092":{"body":19,"breadcrumbs":4,"title":2},"1093":{"body":0,"breadcrumbs":4,"title":2},"1094":{"body":40,"breadcrumbs":4,"title":2},"1095":{"body":16,"breadcrumbs":3,"title":1},"1096":{"body":0,"breadcrumbs":4,"title":2},"1097":{"body":12,"breadcrumbs":4,"title":2},"1098":{"body":16,"breadcrumbs":4,"title":2},"1099":{"body":14,"breadcrumbs":5,"title":3},"11":{"body":39,"breadcrumbs":3,"title":2},"110":{"body":18,"breadcrumbs":3,"title":2},"1100":{"body":0,"breadcrumbs":4,"title":2},"1101":{"body":10,"breadcrumbs":3,"title":1},"1102":{"body":14,"breadcrumbs":3,"title":1},"1103":{"body":15,"breadcrumbs":3,"title":1},"1104":{"body":0,"breadcrumbs":4,"title":2},"1105":{"body":8,"breadcrumbs":3,"title":1},"1106":{"body":25,"breadcrumbs":3,"title":1},"1107":{"body":12,"breadcrumbs":3,"title":1},"1108":{"body":18,"breadcrumbs":4,"title":2},"1109":{"body":24,"breadcrumbs":3,"title":1},"111":{"body":20,"breadcrumbs":2,"title":1},"1110":{"body":0,"breadcrumbs":5,"title":3},"1111":{"body":48,"breadcrumbs":4,"title":2},"1112":{"body":161,"breadcrumbs":5,"title":3},"1113":{"body":0,"breadcrumbs":5,"title":3},"1114":{"body":7,"breadcrumbs":5,"title":3},"1115":{"body":16,"breadcrumbs":4,"title":2},"1116":{"body":19,"breadcrumbs":5,"title":3},"1117":{"body":33,"breadcrumbs":5,"title":3},"1118":{"body":0,"breadcrumbs":5,"title":3},"1119":{"body":31,"breadcrumbs":4,"title":2},"112":{"body":19,"breadcrumbs":3,"title":2},"1120":{"body":28,"breadcrumbs":4,"title":2},"1121":{"body":13,"breadcrumbs":4,"title":2},"1122":{"body":13,"breadcrumbs":4,"title":2},"1123":{"body":0,"breadcrumbs":4,"title":2},"1124":{"body":56,"breadcrumbs":5,"title":3},"1125":{"body":0,"breadcrumbs":3,"title":1},"1126":{"body":31,"breadcrumbs":4,"title":2},"1127":{"body":42,"breadcrumbs":4,"title":2},"1128":{"body":0,"breadcrumbs":4,"title":2},"1129":{"body":58,"breadcrumbs":4,"title":2},"113":{"body":45,"breadcrumbs":3,"title":2},"1130":{"body":59,"breadcrumbs":4,"title":2},"1131":{"body":54,"breadcrumbs":5,"title":3},"1132":{"body":0,"breadcrumbs":4,"title":2},"1133":{"body":2,"breadcrumbs":4,"title":2},"1134":{"body":6,"breadcrumbs":4,"title":2},"1135":{"body":15,"breadcrumbs":4,"title":2},"1136":{"body":12,"breadcrumbs":3,"title":1},"1137":{"body":14,"breadcrumbs":2,"title":1},"1138":{"body":0,"breadcrumbs":3,"title":2},"1139":{"body":23,"breadcrumbs":4,"title":3},"114":{"body":0,"breadcrumbs":2,"title":1},"1140":{"body":169,"breadcrumbs":3,"title":2},"1141":{"body":0,"breadcrumbs":3,"title":2},"1142":{"body":63,"breadcrumbs":4,"title":3},"1143":{"body":64,"breadcrumbs":3,"title":2},"1144":{"body":33,"breadcrumbs":5,"title":4},"1145":{"body":187,"breadcrumbs":7,"title":6},"1146":{"body":28,"breadcrumbs":4,"title":3},"1147":{"body":0,"breadcrumbs":3,"title":2},"1148":{"body":125,"breadcrumbs":4,"title":3},"1149":{"body":63,"breadcrumbs":4,"title":3},"115":{"body":34,"breadcrumbs":3,"title":2},"1150":{"body":0,"breadcrumbs":2,"title":1},"1151":{"body":93,"breadcrumbs":4,"title":3},"1152":{"body":27,"breadcrumbs":4,"title":3},"1153":{"body":0,"breadcrumbs":3,"title":2},"1154":{"body":96,"breadcrumbs":3,"title":2},"1155":{"body":13,"breadcrumbs":3,"title":2},"1156":{"body":10,"breadcrumbs":3,"title":2},"1157":{"body":0,"breadcrumbs":3,"title":2},"1158":{"body":55,"breadcrumbs":3,"title":2},"1159":{"body":7,"breadcrumbs":4,"title":3},"116":{"body":30,"breadcrumbs":3,"title":2},"1160":{"body":22,"breadcrumbs":5,"title":4},"1161":{"body":140,"breadcrumbs":3,"title":2},"1162":{"body":15,"breadcrumbs":4,"title":3},"1163":{"body":39,"breadcrumbs":4,"title":3},"1164":{"body":12,"breadcrumbs":2,"title":1},"1165":{"body":22,"breadcrumbs":5,"title":4},"1166":{"body":31,"breadcrumbs":5,"title":4},"1167":{"body":0,"breadcrumbs":3,"title":2},"1168":{"body":17,"breadcrumbs":4,"title":3},"1169":{"body":33,"breadcrumbs":5,"title":4},"117":{"body":16,"breadcrumbs":3,"title":2},"1170":{"body":21,"breadcrumbs":5,"title":4},"1171":{"body":20,"breadcrumbs":5,"title":4},"1172":{"body":15,"breadcrumbs":2,"title":1},"1173":{"body":18,"breadcrumbs":8,"title":4},"1174":{"body":38,"breadcrumbs":5,"title":1},"1175":{"body":51,"breadcrumbs":6,"title":2},"1176":{"body":27,"breadcrumbs":5,"title":1},"1177":{"body":30,"breadcrumbs":5,"title":1},"1178":{"body":0,"breadcrumbs":6,"title":2},"1179":{"body":60,"breadcrumbs":5,"title":1},"118":{"body":11,"breadcrumbs":4,"title":2},"1180":{"body":48,"breadcrumbs":5,"title":1},"1181":{"body":8,"breadcrumbs":6,"title":2},"1182":{"body":36,"breadcrumbs":6,"title":2},"1183":{"body":33,"breadcrumbs":6,"title":2},"1184":{"body":0,"breadcrumbs":6,"title":2},"1185":{"body":33,"breadcrumbs":7,"title":3},"1186":{"body":47,"breadcrumbs":7,"title":3},"1187":{"body":0,"breadcrumbs":5,"title":1},"1188":{"body":15,"breadcrumbs":6,"title":2},"1189":{"body":22,"breadcrumbs":6,"title":2},"119":{"body":16,"breadcrumbs":4,"title":2},"1190":{"body":0,"breadcrumbs":5,"title":1},"1191":{"body":29,"breadcrumbs":5,"title":1},"1192":{"body":48,"breadcrumbs":8,"title":4},"1193":{"body":0,"breadcrumbs":6,"title":2},"1194":{"body":122,"breadcrumbs":6,"title":2},"1195":{"body":13,"breadcrumbs":6,"title":2},"1196":{"body":14,"breadcrumbs":6,"title":2},"1197":{"body":30,"breadcrumbs":6,"title":2},"1198":{"body":0,"breadcrumbs":5,"title":1},"1199":{"body":7,"breadcrumbs":7,"title":3},"12":{"body":0,"breadcrumbs":2,"title":1},"120":{"body":31,"breadcrumbs":4,"title":2},"1200":{"body":35,"breadcrumbs":6,"title":2},"1201":{"body":0,"breadcrumbs":6,"title":2},"1202":{"body":11,"breadcrumbs":9,"title":5},"1203":{"body":5,"breadcrumbs":9,"title":5},"1204":{"body":7,"breadcrumbs":8,"title":4},"1205":{"body":7,"breadcrumbs":8,"title":4},"1206":{"body":48,"breadcrumbs":8,"title":4},"1207":{"body":8,"breadcrumbs":8,"title":4},"1208":{"body":32,"breadcrumbs":7,"title":3},"1209":{"body":75,"breadcrumbs":7,"title":3},"121":{"body":0,"breadcrumbs":3,"title":1},"1210":{"body":25,"breadcrumbs":5,"title":1},"1211":{"body":10,"breadcrumbs":4,"title":2},"1212":{"body":33,"breadcrumbs":4,"title":2},"1213":{"body":30,"breadcrumbs":4,"title":2},"1214":{"body":47,"breadcrumbs":4,"title":2},"1215":{"body":19,"breadcrumbs":6,"title":4},"1216":{"body":20,"breadcrumbs":4,"title":2},"1217":{"body":21,"breadcrumbs":4,"title":2},"1218":{"body":21,"breadcrumbs":4,"title":2},"1219":{"body":35,"breadcrumbs":4,"title":2},"122":{"body":18,"breadcrumbs":4,"title":2},"1220":{"body":28,"breadcrumbs":3,"title":1},"1221":{"body":16,"breadcrumbs":3,"title":2},"1222":{"body":42,"breadcrumbs":2,"title":1},"1223":{"body":8,"breadcrumbs":2,"title":1},"1224":{"body":0,"breadcrumbs":2,"title":1},"1225":{"body":20,"breadcrumbs":4,"title":3},"1226":{"body":31,"breadcrumbs":2,"title":1},"1227":{"body":49,"breadcrumbs":3,"title":2},"1228":{"body":29,"breadcrumbs":3,"title":2},"1229":{"body":0,"breadcrumbs":3,"title":2},"123":{"body":0,"breadcrumbs":4,"title":2},"1230":{"body":11,"breadcrumbs":2,"title":1},"1231":{"body":9,"breadcrumbs":3,"title":2},"1232":{"body":8,"breadcrumbs":3,"title":2},"1233":{"body":11,"breadcrumbs":3,"title":2},"1234":{"body":9,"breadcrumbs":4,"title":3},"1235":{"body":13,"breadcrumbs":4,"title":3},"1236":{"body":6,"breadcrumbs":3,"title":2},"1237":{"body":13,"breadcrumbs":2,"title":1},"1238":{"body":10,"breadcrumbs":2,"title":1},"1239":{"body":11,"breadcrumbs":2,"title":1},"124":{"body":11,"breadcrumbs":4,"title":2},"1240":{"body":16,"breadcrumbs":2,"title":1},"1241":{"body":10,"breadcrumbs":2,"title":1},"1242":{"body":23,"breadcrumbs":2,"title":1},"1243":{"body":5,"breadcrumbs":4,"title":3},"1244":{"body":6,"breadcrumbs":4,"title":3},"1245":{"body":20,"breadcrumbs":4,"title":3},"1246":{"body":6,"breadcrumbs":4,"title":3},"1247":{"body":34,"breadcrumbs":2,"title":1},"1248":{"body":55,"breadcrumbs":3,"title":2},"1249":{"body":8,"breadcrumbs":4,"title":3},"125":{"body":13,"breadcrumbs":4,"title":2},"1250":{"body":20,"breadcrumbs":4,"title":3},"1251":{"body":23,"breadcrumbs":3,"title":2},"1252":{"body":0,"breadcrumbs":2,"title":1},"1253":{"body":18,"breadcrumbs":3,"title":2},"1254":{"body":15,"breadcrumbs":4,"title":3},"1255":{"body":14,"breadcrumbs":3,"title":2},"1256":{"body":20,"breadcrumbs":3,"title":2},"1257":{"body":0,"breadcrumbs":2,"title":1},"1258":{"body":8,"breadcrumbs":3,"title":2},"1259":{"body":7,"breadcrumbs":5,"title":4},"126":{"body":0,"breadcrumbs":4,"title":2},"1260":{"body":13,"breadcrumbs":4,"title":3},"1261":{"body":15,"breadcrumbs":3,"title":2},"1262":{"body":13,"breadcrumbs":4,"title":2},"1263":{"body":31,"breadcrumbs":3,"title":1},"1264":{"body":15,"breadcrumbs":4,"title":2},"1265":{"body":14,"breadcrumbs":4,"title":2},"1266":{"body":0,"breadcrumbs":4,"title":2},"1267":{"body":55,"breadcrumbs":3,"title":1},"1268":{"body":56,"breadcrumbs":3,"title":1},"1269":{"body":0,"breadcrumbs":4,"title":2},"127":{"body":51,"breadcrumbs":4,"title":2},"1270":{"body":71,"breadcrumbs":3,"title":1},"1271":{"body":62,"breadcrumbs":3,"title":1},"1272":{"body":0,"breadcrumbs":4,"title":2},"1273":{"body":55,"breadcrumbs":4,"title":2},"1274":{"body":43,"breadcrumbs":4,"title":2},"1275":{"body":0,"breadcrumbs":4,"title":2},"1276":{"body":49,"breadcrumbs":5,"title":3},"1277":{"body":29,"breadcrumbs":5,"title":3},"1278":{"body":34,"breadcrumbs":4,"title":2},"1279":{"body":33,"breadcrumbs":5,"title":3},"128":{"body":69,"breadcrumbs":4,"title":2},"1280":{"body":0,"breadcrumbs":4,"title":2},"1281":{"body":35,"breadcrumbs":5,"title":3},"1282":{"body":16,"breadcrumbs":5,"title":3},"1283":{"body":0,"breadcrumbs":5,"title":3},"1284":{"body":9,"breadcrumbs":6,"title":4},"1285":{"body":16,"breadcrumbs":7,"title":5},"1286":{"body":30,"breadcrumbs":6,"title":4},"1287":{"body":19,"breadcrumbs":8,"title":6},"1288":{"body":34,"breadcrumbs":4,"title":2},"1289":{"body":0,"breadcrumbs":3,"title":1},"129":{"body":76,"breadcrumbs":4,"title":2},"1290":{"body":62,"breadcrumbs":4,"title":2},"1291":{"body":0,"breadcrumbs":3,"title":1},"1292":{"body":39,"breadcrumbs":4,"title":2},"1293":{"body":7,"breadcrumbs":4,"title":2},"1294":{"body":22,"breadcrumbs":3,"title":1},"1295":{"body":28,"breadcrumbs":2,"title":1},"1296":{"body":38,"breadcrumbs":4,"title":3},"1297":{"body":67,"breadcrumbs":4,"title":3},"1298":{"body":34,"breadcrumbs":5,"title":4},"1299":{"body":0,"breadcrumbs":3,"title":2},"13":{"body":16,"breadcrumbs":4,"title":3},"130":{"body":27,"breadcrumbs":4,"title":2},"1300":{"body":67,"breadcrumbs":3,"title":2},"1301":{"body":173,"breadcrumbs":3,"title":2},"1302":{"body":175,"breadcrumbs":3,"title":2},"1303":{"body":0,"breadcrumbs":3,"title":2},"1304":{"body":54,"breadcrumbs":3,"title":2},"1305":{"body":112,"breadcrumbs":2,"title":1},"1306":{"body":140,"breadcrumbs":3,"title":2},"1307":{"body":82,"breadcrumbs":3,"title":2},"1308":{"body":0,"breadcrumbs":3,"title":2},"1309":{"body":33,"breadcrumbs":4,"title":3},"131":{"body":0,"breadcrumbs":4,"title":2},"1310":{"body":80,"breadcrumbs":4,"title":3},"1311":{"body":0,"breadcrumbs":3,"title":2},"1312":{"body":40,"breadcrumbs":5,"title":4},"1313":{"body":39,"breadcrumbs":4,"title":3},"1314":{"body":22,"breadcrumbs":5,"title":4},"1315":{"body":37,"breadcrumbs":4,"title":3},"1316":{"body":13,"breadcrumbs":2,"title":1},"1317":{"body":9,"breadcrumbs":4,"title":2},"1318":{"body":31,"breadcrumbs":4,"title":2},"1319":{"body":0,"breadcrumbs":4,"title":2},"132":{"body":62,"breadcrumbs":4,"title":2},"1320":{"body":30,"breadcrumbs":5,"title":3},"1321":{"body":29,"breadcrumbs":4,"title":2},"1322":{"body":0,"breadcrumbs":4,"title":2},"1323":{"body":118,"breadcrumbs":4,"title":2},"1324":{"body":73,"breadcrumbs":4,"title":2},"1325":{"body":69,"breadcrumbs":4,"title":2},"1326":{"body":21,"breadcrumbs":5,"title":3},"1327":{"body":0,"breadcrumbs":4,"title":2},"1328":{"body":72,"breadcrumbs":4,"title":2},"1329":{"body":65,"breadcrumbs":4,"title":2},"133":{"body":0,"breadcrumbs":4,"title":2},"1330":{"body":159,"breadcrumbs":5,"title":3},"1331":{"body":0,"breadcrumbs":4,"title":2},"1332":{"body":54,"breadcrumbs":5,"title":3},"1333":{"body":93,"breadcrumbs":5,"title":3},"1334":{"body":47,"breadcrumbs":4,"title":2},"1335":{"body":0,"breadcrumbs":4,"title":2},"1336":{"body":45,"breadcrumbs":4,"title":2},"1337":{"body":0,"breadcrumbs":4,"title":2},"1338":{"body":43,"breadcrumbs":5,"title":3},"1339":{"body":59,"breadcrumbs":4,"title":2},"134":{"body":118,"breadcrumbs":4,"title":2},"1340":{"body":52,"breadcrumbs":5,"title":3},"1341":{"body":0,"breadcrumbs":4,"title":2},"1342":{"body":36,"breadcrumbs":5,"title":3},"1343":{"body":32,"breadcrumbs":4,"title":2},"1344":{"body":0,"breadcrumbs":4,"title":2},"1345":{"body":36,"breadcrumbs":5,"title":3},"1346":{"body":56,"breadcrumbs":4,"title":2},"1347":{"body":16,"breadcrumbs":3,"title":1},"1348":{"body":8,"breadcrumbs":4,"title":2},"1349":{"body":21,"breadcrumbs":3,"title":1},"135":{"body":65,"breadcrumbs":4,"title":2},"1350":{"body":0,"breadcrumbs":5,"title":3},"1351":{"body":58,"breadcrumbs":5,"title":3},"1352":{"body":49,"breadcrumbs":4,"title":2},"1353":{"body":68,"breadcrumbs":4,"title":2},"1354":{"body":0,"breadcrumbs":5,"title":3},"1355":{"body":173,"breadcrumbs":5,"title":3},"1356":{"body":85,"breadcrumbs":4,"title":2},"1357":{"body":0,"breadcrumbs":4,"title":2},"1358":{"body":149,"breadcrumbs":4,"title":2},"1359":{"body":98,"breadcrumbs":4,"title":2},"136":{"body":62,"breadcrumbs":4,"title":2},"1360":{"body":0,"breadcrumbs":3,"title":1},"1361":{"body":91,"breadcrumbs":6,"title":4},"1362":{"body":56,"breadcrumbs":4,"title":2},"1363":{"body":45,"breadcrumbs":5,"title":3},"1364":{"body":0,"breadcrumbs":4,"title":2},"1365":{"body":152,"breadcrumbs":6,"title":4},"1366":{"body":0,"breadcrumbs":4,"title":2},"1367":{"body":130,"breadcrumbs":6,"title":4},"1368":{"body":0,"breadcrumbs":3,"title":1},"1369":{"body":137,"breadcrumbs":5,"title":3},"137":{"body":17,"breadcrumbs":5,"title":3},"1370":{"body":18,"breadcrumbs":3,"title":1},"1371":{"body":9,"breadcrumbs":4,"title":2},"1372":{"body":15,"breadcrumbs":3,"title":1},"1373":{"body":0,"breadcrumbs":5,"title":3},"1374":{"body":56,"breadcrumbs":5,"title":3},"1375":{"body":48,"breadcrumbs":4,"title":2},"1376":{"body":63,"breadcrumbs":4,"title":2},"1377":{"body":0,"breadcrumbs":5,"title":3},"1378":{"body":208,"breadcrumbs":5,"title":3},"1379":{"body":69,"breadcrumbs":4,"title":2},"138":{"body":59,"breadcrumbs":4,"title":2},"1380":{"body":0,"breadcrumbs":4,"title":2},"1381":{"body":108,"breadcrumbs":5,"title":3},"1382":{"body":58,"breadcrumbs":5,"title":3},"1383":{"body":0,"breadcrumbs":3,"title":1},"1384":{"body":88,"breadcrumbs":6,"title":4},"1385":{"body":53,"breadcrumbs":4,"title":2},"1386":{"body":42,"breadcrumbs":5,"title":3},"1387":{"body":0,"breadcrumbs":4,"title":2},"1388":{"body":143,"breadcrumbs":6,"title":4},"1389":{"body":0,"breadcrumbs":4,"title":2},"139":{"body":29,"breadcrumbs":4,"title":2},"1390":{"body":163,"breadcrumbs":5,"title":3},"1391":{"body":0,"breadcrumbs":3,"title":1},"1392":{"body":142,"breadcrumbs":4,"title":2},"1393":{"body":0,"breadcrumbs":4,"title":2},"1394":{"body":145,"breadcrumbs":6,"title":4},"1395":{"body":15,"breadcrumbs":3,"title":1},"1396":{"body":11,"breadcrumbs":4,"title":2},"1397":{"body":7,"breadcrumbs":7,"title":5},"1398":{"body":8,"breadcrumbs":3,"title":1},"1399":{"body":262,"breadcrumbs":3,"title":1},"14":{"body":13,"breadcrumbs":3,"title":2},"140":{"body":0,"breadcrumbs":4,"title":2},"1400":{"body":8,"breadcrumbs":7,"title":5},"1401":{"body":295,"breadcrumbs":4,"title":2},"1402":{"body":198,"breadcrumbs":4,"title":2},"1403":{"body":329,"breadcrumbs":6,"title":4},"1404":{"body":352,"breadcrumbs":6,"title":4},"1405":{"body":178,"breadcrumbs":5,"title":3},"1406":{"body":23,"breadcrumbs":3,"title":1},"1407":{"body":9,"breadcrumbs":6,"title":3},"1408":{"body":0,"breadcrumbs":5,"title":2},"1409":{"body":8,"breadcrumbs":5,"title":2},"141":{"body":23,"breadcrumbs":5,"title":3},"1410":{"body":17,"breadcrumbs":5,"title":2},"1411":{"body":8,"breadcrumbs":5,"title":2},"1412":{"body":0,"breadcrumbs":5,"title":2},"1413":{"body":15,"breadcrumbs":5,"title":2},"1414":{"body":0,"breadcrumbs":5,"title":2},"1415":{"body":20,"breadcrumbs":5,"title":2},"1416":{"body":0,"breadcrumbs":5,"title":2},"1417":{"body":20,"breadcrumbs":5,"title":2},"1418":{"body":8,"breadcrumbs":5,"title":2},"1419":{"body":157,"breadcrumbs":6,"title":3},"142":{"body":46,"breadcrumbs":5,"title":3},"1420":{"body":112,"breadcrumbs":6,"title":3},"1421":{"body":105,"breadcrumbs":6,"title":3},"1422":{"body":86,"breadcrumbs":6,"title":3},"1423":{"body":61,"breadcrumbs":5,"title":2},"1424":{"body":0,"breadcrumbs":5,"title":2},"1425":{"body":49,"breadcrumbs":6,"title":3},"1426":{"body":42,"breadcrumbs":5,"title":2},"1427":{"body":21,"breadcrumbs":6,"title":3},"1428":{"body":24,"breadcrumbs":5,"title":2},"1429":{"body":22,"breadcrumbs":5,"title":2},"143":{"body":18,"breadcrumbs":5,"title":3},"1430":{"body":18,"breadcrumbs":5,"title":2},"1431":{"body":0,"breadcrumbs":5,"title":2},"1432":{"body":27,"breadcrumbs":5,"title":2},"1433":{"body":14,"breadcrumbs":5,"title":2},"1434":{"body":0,"breadcrumbs":4,"title":2},"1435":{"body":0,"breadcrumbs":3,"title":1},"1436":{"body":52,"breadcrumbs":5,"title":3},"1437":{"body":77,"breadcrumbs":5,"title":3},"1438":{"body":15,"breadcrumbs":4,"title":2},"1439":{"body":91,"breadcrumbs":4,"title":2},"144":{"body":19,"breadcrumbs":4,"title":2},"1440":{"body":91,"breadcrumbs":4,"title":2},"1441":{"body":117,"breadcrumbs":4,"title":2},"1442":{"body":35,"breadcrumbs":4,"title":2},"1443":{"body":0,"breadcrumbs":4,"title":2},"1444":{"body":15,"breadcrumbs":4,"title":2},"1445":{"body":41,"breadcrumbs":4,"title":2},"1446":{"body":21,"breadcrumbs":5,"title":3},"1447":{"body":8,"breadcrumbs":5,"title":3},"1448":{"body":13,"breadcrumbs":5,"title":3},"1449":{"body":65,"breadcrumbs":5,"title":3},"145":{"body":15,"breadcrumbs":4,"title":2},"1450":{"body":15,"breadcrumbs":4,"title":2},"1451":{"body":53,"breadcrumbs":5,"title":3},"1452":{"body":103,"breadcrumbs":5,"title":3},"1453":{"body":30,"breadcrumbs":4,"title":2},"1454":{"body":39,"breadcrumbs":4,"title":2},"1455":{"body":33,"breadcrumbs":4,"title":2},"1456":{"body":36,"breadcrumbs":6,"title":4},"1457":{"body":8,"breadcrumbs":4,"title":2},"1458":{"body":40,"breadcrumbs":5,"title":3},"1459":{"body":0,"breadcrumbs":4,"title":2},"146":{"body":15,"breadcrumbs":4,"title":2},"1460":{"body":25,"breadcrumbs":4,"title":2},"1461":{"body":28,"breadcrumbs":4,"title":2},"1462":{"body":22,"breadcrumbs":5,"title":3},"1463":{"body":0,"breadcrumbs":4,"title":2},"1464":{"body":23,"breadcrumbs":5,"title":3},"1465":{"body":27,"breadcrumbs":5,"title":3},"1466":{"body":21,"breadcrumbs":5,"title":3},"1467":{"body":27,"breadcrumbs":4,"title":2},"1468":{"body":0,"breadcrumbs":4,"title":2},"1469":{"body":20,"breadcrumbs":4,"title":2},"147":{"body":20,"breadcrumbs":3,"title":1},"1470":{"body":20,"breadcrumbs":4,"title":2},"1471":{"body":20,"breadcrumbs":5,"title":3},"1472":{"body":22,"breadcrumbs":5,"title":3},"1473":{"body":0,"breadcrumbs":5,"title":3},"1474":{"body":35,"breadcrumbs":5,"title":3},"1475":{"body":37,"breadcrumbs":5,"title":3},"1476":{"body":30,"breadcrumbs":4,"title":2},"1477":{"body":22,"breadcrumbs":5,"title":3},"1478":{"body":0,"breadcrumbs":4,"title":2},"1479":{"body":24,"breadcrumbs":4,"title":2},"148":{"body":0,"breadcrumbs":5,"title":3},"1480":{"body":27,"breadcrumbs":5,"title":3},"1481":{"body":23,"breadcrumbs":4,"title":2},"1482":{"body":21,"breadcrumbs":4,"title":2},"1483":{"body":0,"breadcrumbs":4,"title":2},"1484":{"body":24,"breadcrumbs":4,"title":2},"1485":{"body":18,"breadcrumbs":4,"title":2},"1486":{"body":16,"breadcrumbs":3,"title":1},"1487":{"body":17,"breadcrumbs":4,"title":2},"1488":{"body":0,"breadcrumbs":4,"title":2},"1489":{"body":23,"breadcrumbs":5,"title":3},"149":{"body":16,"breadcrumbs":5,"title":3},"1490":{"body":23,"breadcrumbs":5,"title":3},"1491":{"body":22,"breadcrumbs":4,"title":2},"1492":{"body":0,"breadcrumbs":4,"title":2},"1493":{"body":24,"breadcrumbs":5,"title":3},"1494":{"body":19,"breadcrumbs":5,"title":3},"1495":{"body":18,"breadcrumbs":5,"title":3},"1496":{"body":0,"breadcrumbs":4,"title":2},"1497":{"body":13,"breadcrumbs":5,"title":3},"1498":{"body":6,"breadcrumbs":4,"title":2},"1499":{"body":8,"breadcrumbs":4,"title":2},"15":{"body":13,"breadcrumbs":4,"title":3},"150":{"body":17,"breadcrumbs":4,"title":2},"1500":{"body":13,"breadcrumbs":4,"title":2},"1501":{"body":13,"breadcrumbs":3,"title":1},"1502":{"body":9,"breadcrumbs":4,"title":2},"1503":{"body":22,"breadcrumbs":4,"title":2},"1504":{"body":0,"breadcrumbs":5,"title":3},"1505":{"body":32,"breadcrumbs":4,"title":2},"1506":{"body":9,"breadcrumbs":5,"title":3},"1507":{"body":32,"breadcrumbs":5,"title":3},"1508":{"body":0,"breadcrumbs":5,"title":3},"1509":{"body":23,"breadcrumbs":4,"title":2},"151":{"body":50,"breadcrumbs":5,"title":3},"1510":{"body":34,"breadcrumbs":4,"title":2},"1511":{"body":0,"breadcrumbs":5,"title":3},"1512":{"body":51,"breadcrumbs":5,"title":3},"1513":{"body":22,"breadcrumbs":5,"title":3},"1514":{"body":0,"breadcrumbs":5,"title":3},"1515":{"body":78,"breadcrumbs":5,"title":3},"1516":{"body":0,"breadcrumbs":5,"title":3},"1517":{"body":26,"breadcrumbs":4,"title":2},"1518":{"body":21,"breadcrumbs":6,"title":4},"1519":{"body":0,"breadcrumbs":5,"title":3},"152":{"body":28,"breadcrumbs":4,"title":2},"1520":{"body":38,"breadcrumbs":5,"title":3},"1521":{"body":0,"breadcrumbs":4,"title":2},"1522":{"body":98,"breadcrumbs":5,"title":3},"1523":{"body":0,"breadcrumbs":5,"title":3},"1524":{"body":51,"breadcrumbs":7,"title":5},"1525":{"body":0,"breadcrumbs":5,"title":3},"1526":{"body":49,"breadcrumbs":7,"title":5},"1527":{"body":0,"breadcrumbs":4,"title":2},"1528":{"body":46,"breadcrumbs":4,"title":2},"1529":{"body":36,"breadcrumbs":4,"title":2},"153":{"body":18,"breadcrumbs":5,"title":3},"1530":{"body":35,"breadcrumbs":4,"title":2},"1531":{"body":12,"breadcrumbs":3,"title":1},"154":{"body":24,"breadcrumbs":5,"title":3},"155":{"body":25,"breadcrumbs":4,"title":2},"156":{"body":29,"breadcrumbs":4,"title":2},"157":{"body":20,"breadcrumbs":4,"title":2},"158":{"body":0,"breadcrumbs":4,"title":2},"159":{"body":32,"breadcrumbs":4,"title":2},"16":{"body":12,"breadcrumbs":3,"title":2},"160":{"body":15,"breadcrumbs":5,"title":3},"161":{"body":16,"breadcrumbs":4,"title":2},"162":{"body":0,"breadcrumbs":4,"title":2},"163":{"body":3,"breadcrumbs":4,"title":2},"164":{"body":4,"breadcrumbs":6,"title":4},"165":{"body":17,"breadcrumbs":4,"title":2},"166":{"body":20,"breadcrumbs":4,"title":2},"167":{"body":95,"breadcrumbs":5,"title":3},"168":{"body":0,"breadcrumbs":4,"title":2},"169":{"body":26,"breadcrumbs":3,"title":1},"17":{"body":13,"breadcrumbs":3,"title":2},"170":{"body":22,"breadcrumbs":4,"title":2},"171":{"body":18,"breadcrumbs":3,"title":1},"172":{"body":14,"breadcrumbs":4,"title":2},"173":{"body":16,"breadcrumbs":4,"title":2},"174":{"body":22,"breadcrumbs":4,"title":2},"175":{"body":0,"breadcrumbs":4,"title":2},"176":{"body":32,"breadcrumbs":4,"title":2},"177":{"body":9,"breadcrumbs":3,"title":1},"178":{"body":12,"breadcrumbs":4,"title":2},"179":{"body":29,"breadcrumbs":4,"title":2},"18":{"body":21,"breadcrumbs":3,"title":2},"180":{"body":72,"breadcrumbs":4,"title":2},"181":{"body":46,"breadcrumbs":5,"title":3},"182":{"body":32,"breadcrumbs":4,"title":2},"183":{"body":0,"breadcrumbs":4,"title":2},"184":{"body":20,"breadcrumbs":4,"title":2},"185":{"body":33,"breadcrumbs":5,"title":3},"186":{"body":17,"breadcrumbs":4,"title":2},"187":{"body":0,"breadcrumbs":4,"title":2},"188":{"body":22,"breadcrumbs":4,"title":2},"189":{"body":7,"breadcrumbs":4,"title":2},"19":{"body":21,"breadcrumbs":3,"title":2},"190":{"body":5,"breadcrumbs":4,"title":2},"191":{"body":6,"breadcrumbs":4,"title":2},"192":{"body":34,"breadcrumbs":4,"title":2},"193":{"body":10,"breadcrumbs":4,"title":2},"194":{"body":17,"breadcrumbs":5,"title":3},"195":{"body":0,"breadcrumbs":4,"title":2},"196":{"body":19,"breadcrumbs":4,"title":2},"197":{"body":16,"breadcrumbs":4,"title":2},"198":{"body":17,"breadcrumbs":4,"title":2},"199":{"body":28,"breadcrumbs":4,"title":2},"2":{"body":51,"breadcrumbs":3,"title":2},"20":{"body":19,"breadcrumbs":2,"title":1},"200":{"body":0,"breadcrumbs":5,"title":3},"201":{"body":10,"breadcrumbs":6,"title":4},"202":{"body":12,"breadcrumbs":6,"title":4},"203":{"body":0,"breadcrumbs":4,"title":2},"204":{"body":23,"breadcrumbs":4,"title":2},"205":{"body":19,"breadcrumbs":3,"title":1},"206":{"body":18,"breadcrumbs":3,"title":1},"207":{"body":0,"breadcrumbs":4,"title":2},"208":{"body":23,"breadcrumbs":5,"title":3},"209":{"body":35,"breadcrumbs":5,"title":3},"21":{"body":60,"breadcrumbs":4,"title":3},"210":{"body":17,"breadcrumbs":5,"title":3},"211":{"body":13,"breadcrumbs":4,"title":2},"212":{"body":17,"breadcrumbs":6,"title":3},"213":{"body":18,"breadcrumbs":4,"title":1},"214":{"body":34,"breadcrumbs":5,"title":2},"215":{"body":0,"breadcrumbs":5,"title":2},"216":{"body":15,"breadcrumbs":5,"title":2},"217":{"body":19,"breadcrumbs":4,"title":1},"218":{"body":0,"breadcrumbs":5,"title":2},"219":{"body":7,"breadcrumbs":6,"title":3},"22":{"body":0,"breadcrumbs":4,"title":3},"220":{"body":10,"breadcrumbs":6,"title":3},"221":{"body":39,"breadcrumbs":5,"title":2},"222":{"body":0,"breadcrumbs":6,"title":3},"223":{"body":16,"breadcrumbs":5,"title":2},"224":{"body":63,"breadcrumbs":5,"title":2},"225":{"body":31,"breadcrumbs":5,"title":2},"226":{"body":64,"breadcrumbs":7,"title":4},"227":{"body":25,"breadcrumbs":5,"title":2},"228":{"body":27,"breadcrumbs":5,"title":2},"229":{"body":14,"breadcrumbs":5,"title":2},"23":{"body":27,"breadcrumbs":4,"title":3},"230":{"body":22,"breadcrumbs":7,"title":4},"231":{"body":33,"breadcrumbs":4,"title":1},"232":{"body":27,"breadcrumbs":5,"title":2},"233":{"body":0,"breadcrumbs":6,"title":3},"234":{"body":51,"breadcrumbs":6,"title":3},"235":{"body":48,"breadcrumbs":6,"title":3},"236":{"body":23,"breadcrumbs":6,"title":3},"237":{"body":51,"breadcrumbs":8,"title":5},"238":{"body":26,"breadcrumbs":6,"title":3},"239":{"body":18,"breadcrumbs":7,"title":4},"24":{"body":19,"breadcrumbs":4,"title":3},"240":{"body":0,"breadcrumbs":6,"title":3},"241":{"body":25,"breadcrumbs":7,"title":4},"242":{"body":58,"breadcrumbs":6,"title":3},"243":{"body":46,"breadcrumbs":6,"title":3},"244":{"body":23,"breadcrumbs":6,"title":3},"245":{"body":26,"breadcrumbs":5,"title":2},"246":{"body":20,"breadcrumbs":6,"title":3},"247":{"body":0,"breadcrumbs":5,"title":2},"248":{"body":22,"breadcrumbs":5,"title":2},"249":{"body":32,"breadcrumbs":5,"title":2},"25":{"body":22,"breadcrumbs":3,"title":2},"250":{"body":21,"breadcrumbs":4,"title":1},"251":{"body":0,"breadcrumbs":4,"title":1},"252":{"body":20,"breadcrumbs":6,"title":3},"253":{"body":20,"breadcrumbs":6,"title":3},"254":{"body":20,"breadcrumbs":5,"title":2},"255":{"body":51,"breadcrumbs":5,"title":2},"256":{"body":19,"breadcrumbs":5,"title":2},"257":{"body":15,"breadcrumbs":6,"title":3},"258":{"body":6,"breadcrumbs":6,"title":3},"259":{"body":25,"breadcrumbs":5,"title":2},"26":{"body":0,"breadcrumbs":3,"title":2},"260":{"body":0,"breadcrumbs":5,"title":2},"261":{"body":36,"breadcrumbs":4,"title":1},"262":{"body":41,"breadcrumbs":4,"title":1},"263":{"body":0,"breadcrumbs":5,"title":2},"264":{"body":41,"breadcrumbs":5,"title":2},"265":{"body":21,"breadcrumbs":5,"title":2},"266":{"body":19,"breadcrumbs":6,"title":3},"267":{"body":0,"breadcrumbs":5,"title":2},"268":{"body":35,"breadcrumbs":5,"title":2},"269":{"body":16,"breadcrumbs":6,"title":3},"27":{"body":16,"breadcrumbs":2,"title":1},"270":{"body":20,"breadcrumbs":5,"title":2},"271":{"body":23,"breadcrumbs":5,"title":2},"272":{"body":37,"breadcrumbs":5,"title":2},"273":{"body":18,"breadcrumbs":5,"title":2},"274":{"body":28,"breadcrumbs":5,"title":2},"275":{"body":0,"breadcrumbs":5,"title":2},"276":{"body":25,"breadcrumbs":5,"title":2},"277":{"body":35,"breadcrumbs":4,"title":1},"278":{"body":14,"breadcrumbs":6,"title":3},"279":{"body":0,"breadcrumbs":4,"title":1},"28":{"body":21,"breadcrumbs":2,"title":1},"280":{"body":47,"breadcrumbs":5,"title":2},"281":{"body":13,"breadcrumbs":5,"title":2},"282":{"body":0,"breadcrumbs":4,"title":1},"283":{"body":16,"breadcrumbs":6,"title":3},"284":{"body":47,"breadcrumbs":6,"title":3},"285":{"body":20,"breadcrumbs":5,"title":2},"286":{"body":21,"breadcrumbs":5,"title":2},"287":{"body":34,"breadcrumbs":5,"title":2},"288":{"body":70,"breadcrumbs":5,"title":2},"289":{"body":15,"breadcrumbs":5,"title":2},"29":{"body":14,"breadcrumbs":2,"title":1},"290":{"body":16,"breadcrumbs":2,"title":1},"291":{"body":21,"breadcrumbs":2,"title":1},"292":{"body":40,"breadcrumbs":3,"title":2},"293":{"body":0,"breadcrumbs":3,"title":2},"294":{"body":29,"breadcrumbs":3,"title":2},"295":{"body":43,"breadcrumbs":3,"title":2},"296":{"body":0,"breadcrumbs":2,"title":1},"297":{"body":9,"breadcrumbs":3,"title":2},"298":{"body":44,"breadcrumbs":3,"title":2},"299":{"body":22,"breadcrumbs":3,"title":2},"3":{"body":6,"breadcrumbs":3,"title":2},"30":{"body":20,"breadcrumbs":2,"title":1},"300":{"body":0,"breadcrumbs":2,"title":1},"301":{"body":13,"breadcrumbs":3,"title":2},"302":{"body":45,"breadcrumbs":3,"title":2},"303":{"body":41,"breadcrumbs":3,"title":2},"304":{"body":19,"breadcrumbs":3,"title":2},"305":{"body":0,"breadcrumbs":3,"title":2},"306":{"body":43,"breadcrumbs":3,"title":2},"307":{"body":12,"breadcrumbs":3,"title":2},"308":{"body":23,"breadcrumbs":3,"title":2},"309":{"body":27,"breadcrumbs":4,"title":3},"31":{"body":64,"breadcrumbs":3,"title":2},"310":{"body":52,"breadcrumbs":3,"title":2},"311":{"body":51,"breadcrumbs":4,"title":3},"312":{"body":19,"breadcrumbs":3,"title":2},"313":{"body":0,"breadcrumbs":3,"title":2},"314":{"body":24,"breadcrumbs":2,"title":1},"315":{"body":62,"breadcrumbs":2,"title":1},"316":{"body":0,"breadcrumbs":2,"title":1},"317":{"body":16,"breadcrumbs":3,"title":2},"318":{"body":13,"breadcrumbs":3,"title":2},"319":{"body":15,"breadcrumbs":3,"title":2},"32":{"body":0,"breadcrumbs":4,"title":3},"320":{"body":15,"breadcrumbs":3,"title":2},"321":{"body":19,"breadcrumbs":3,"title":2},"322":{"body":14,"breadcrumbs":2,"title":1},"323":{"body":0,"breadcrumbs":2,"title":1},"324":{"body":3,"breadcrumbs":3,"title":2},"325":{"body":3,"breadcrumbs":3,"title":2},"326":{"body":3,"breadcrumbs":3,"title":2},"327":{"body":37,"breadcrumbs":3,"title":2},"328":{"body":5,"breadcrumbs":3,"title":2},"329":{"body":6,"breadcrumbs":4,"title":3},"33":{"body":17,"breadcrumbs":4,"title":3},"330":{"body":4,"breadcrumbs":4,"title":3},"331":{"body":4,"breadcrumbs":4,"title":3},"332":{"body":56,"breadcrumbs":3,"title":2},"333":{"body":0,"breadcrumbs":2,"title":1},"334":{"body":32,"breadcrumbs":3,"title":2},"335":{"body":24,"breadcrumbs":3,"title":2},"336":{"body":17,"breadcrumbs":3,"title":2},"337":{"body":3,"breadcrumbs":3,"title":2},"338":{"body":6,"breadcrumbs":4,"title":3},"339":{"body":9,"breadcrumbs":3,"title":2},"34":{"body":17,"breadcrumbs":4,"title":3},"340":{"body":2,"breadcrumbs":4,"title":3},"341":{"body":0,"breadcrumbs":3,"title":2},"342":{"body":13,"breadcrumbs":4,"title":3},"343":{"body":12,"breadcrumbs":3,"title":2},"344":{"body":10,"breadcrumbs":5,"title":4},"345":{"body":14,"breadcrumbs":5,"title":4},"346":{"body":0,"breadcrumbs":3,"title":2},"347":{"body":15,"breadcrumbs":3,"title":2},"348":{"body":22,"breadcrumbs":3,"title":2},"349":{"body":40,"breadcrumbs":3,"title":2},"35":{"body":17,"breadcrumbs":4,"title":3},"350":{"body":0,"breadcrumbs":3,"title":2},"351":{"body":19,"breadcrumbs":3,"title":2},"352":{"body":20,"breadcrumbs":3,"title":2},"353":{"body":15,"breadcrumbs":3,"title":2},"354":{"body":12,"breadcrumbs":3,"title":2},"355":{"body":31,"breadcrumbs":3,"title":2},"356":{"body":17,"breadcrumbs":2,"title":1},"357":{"body":18,"breadcrumbs":4,"title":2},"358":{"body":26,"breadcrumbs":4,"title":2},"359":{"body":29,"breadcrumbs":5,"title":3},"36":{"body":56,"breadcrumbs":4,"title":3},"360":{"body":0,"breadcrumbs":4,"title":2},"361":{"body":26,"breadcrumbs":3,"title":1},"362":{"body":8,"breadcrumbs":3,"title":1},"363":{"body":15,"breadcrumbs":3,"title":1},"364":{"body":21,"breadcrumbs":3,"title":1},"365":{"body":41,"breadcrumbs":3,"title":1},"366":{"body":45,"breadcrumbs":4,"title":2},"367":{"body":30,"breadcrumbs":3,"title":1},"368":{"body":42,"breadcrumbs":4,"title":2},"369":{"body":45,"breadcrumbs":3,"title":1},"37":{"body":41,"breadcrumbs":3,"title":2},"370":{"body":85,"breadcrumbs":3,"title":1},"371":{"body":86,"breadcrumbs":6,"title":4},"372":{"body":27,"breadcrumbs":3,"title":1},"373":{"body":24,"breadcrumbs":3,"title":1},"374":{"body":25,"breadcrumbs":4,"title":2},"375":{"body":18,"breadcrumbs":3,"title":1},"376":{"body":28,"breadcrumbs":3,"title":1},"377":{"body":0,"breadcrumbs":4,"title":2},"378":{"body":22,"breadcrumbs":3,"title":1},"379":{"body":23,"breadcrumbs":3,"title":1},"38":{"body":19,"breadcrumbs":3,"title":2},"380":{"body":27,"breadcrumbs":3,"title":1},"381":{"body":25,"breadcrumbs":3,"title":1},"382":{"body":107,"breadcrumbs":4,"title":2},"383":{"body":46,"breadcrumbs":4,"title":2},"384":{"body":43,"breadcrumbs":4,"title":2},"385":{"body":15,"breadcrumbs":3,"title":1},"386":{"body":13,"breadcrumbs":4,"title":2},"387":{"body":0,"breadcrumbs":4,"title":2},"388":{"body":15,"breadcrumbs":5,"title":3},"389":{"body":17,"breadcrumbs":4,"title":2},"39":{"body":16,"breadcrumbs":4,"title":2},"390":{"body":0,"breadcrumbs":4,"title":2},"391":{"body":28,"breadcrumbs":5,"title":3},"392":{"body":13,"breadcrumbs":4,"title":2},"393":{"body":10,"breadcrumbs":4,"title":2},"394":{"body":13,"breadcrumbs":4,"title":2},"395":{"body":19,"breadcrumbs":3,"title":1},"396":{"body":0,"breadcrumbs":4,"title":2},"397":{"body":10,"breadcrumbs":5,"title":3},"398":{"body":12,"breadcrumbs":6,"title":4},"399":{"body":0,"breadcrumbs":4,"title":2},"4":{"body":27,"breadcrumbs":5,"title":4},"40":{"body":10,"breadcrumbs":3,"title":1},"400":{"body":38,"breadcrumbs":5,"title":3},"401":{"body":12,"breadcrumbs":5,"title":3},"402":{"body":0,"breadcrumbs":4,"title":2},"403":{"body":10,"breadcrumbs":5,"title":3},"404":{"body":22,"breadcrumbs":5,"title":3},"405":{"body":0,"breadcrumbs":4,"title":2},"406":{"body":27,"breadcrumbs":4,"title":2},"407":{"body":12,"breadcrumbs":4,"title":2},"408":{"body":11,"breadcrumbs":5,"title":3},"409":{"body":0,"breadcrumbs":4,"title":2},"41":{"body":50,"breadcrumbs":4,"title":2},"410":{"body":18,"breadcrumbs":4,"title":2},"411":{"body":19,"breadcrumbs":4,"title":2},"412":{"body":13,"breadcrumbs":5,"title":3},"413":{"body":0,"breadcrumbs":4,"title":2},"414":{"body":17,"breadcrumbs":4,"title":2},"415":{"body":19,"breadcrumbs":4,"title":2},"416":{"body":0,"breadcrumbs":4,"title":2},"417":{"body":13,"breadcrumbs":4,"title":2},"418":{"body":42,"breadcrumbs":4,"title":2},"419":{"body":38,"breadcrumbs":4,"title":2},"42":{"body":24,"breadcrumbs":4,"title":2},"420":{"body":85,"breadcrumbs":4,"title":2},"421":{"body":20,"breadcrumbs":4,"title":2},"422":{"body":26,"breadcrumbs":7,"title":5},"423":{"body":32,"breadcrumbs":3,"title":1},"424":{"body":43,"breadcrumbs":5,"title":3},"425":{"body":0,"breadcrumbs":4,"title":2},"426":{"body":76,"breadcrumbs":6,"title":4},"427":{"body":87,"breadcrumbs":5,"title":3},"428":{"body":0,"breadcrumbs":4,"title":2},"429":{"body":26,"breadcrumbs":3,"title":1},"43":{"body":73,"breadcrumbs":6,"title":4},"430":{"body":21,"breadcrumbs":3,"title":1},"431":{"body":18,"breadcrumbs":3,"title":1},"432":{"body":0,"breadcrumbs":4,"title":2},"433":{"body":35,"breadcrumbs":4,"title":2},"434":{"body":50,"breadcrumbs":5,"title":3},"435":{"body":0,"breadcrumbs":3,"title":1},"436":{"body":19,"breadcrumbs":5,"title":3},"437":{"body":7,"breadcrumbs":4,"title":2},"438":{"body":0,"breadcrumbs":4,"title":2},"439":{"body":42,"breadcrumbs":4,"title":2},"44":{"body":10,"breadcrumbs":3,"title":1},"440":{"body":28,"breadcrumbs":4,"title":2},"441":{"body":0,"breadcrumbs":4,"title":2},"442":{"body":114,"breadcrumbs":4,"title":2},"443":{"body":97,"breadcrumbs":4,"title":2},"444":{"body":0,"breadcrumbs":4,"title":2},"445":{"body":18,"breadcrumbs":4,"title":2},"446":{"body":28,"breadcrumbs":4,"title":2},"447":{"body":15,"breadcrumbs":4,"title":2},"448":{"body":0,"breadcrumbs":3,"title":1},"449":{"body":8,"breadcrumbs":5,"title":3},"45":{"body":58,"breadcrumbs":4,"title":2},"450":{"body":12,"breadcrumbs":5,"title":3},"451":{"body":34,"breadcrumbs":4,"title":2},"452":{"body":15,"breadcrumbs":4,"title":2},"453":{"body":18,"breadcrumbs":4,"title":2},"454":{"body":41,"breadcrumbs":3,"title":1},"455":{"body":0,"breadcrumbs":4,"title":2},"456":{"body":24,"breadcrumbs":4,"title":2},"457":{"body":0,"breadcrumbs":4,"title":2},"458":{"body":105,"breadcrumbs":5,"title":3},"459":{"body":56,"breadcrumbs":4,"title":2},"46":{"body":75,"breadcrumbs":5,"title":3},"460":{"body":0,"breadcrumbs":4,"title":2},"461":{"body":96,"breadcrumbs":5,"title":3},"462":{"body":7,"breadcrumbs":4,"title":2},"463":{"body":66,"breadcrumbs":5,"title":3},"464":{"body":0,"breadcrumbs":4,"title":2},"465":{"body":86,"breadcrumbs":5,"title":3},"466":{"body":0,"breadcrumbs":4,"title":2},"467":{"body":18,"breadcrumbs":3,"title":1},"468":{"body":16,"breadcrumbs":3,"title":1},"469":{"body":18,"breadcrumbs":3,"title":1},"47":{"body":51,"breadcrumbs":4,"title":2},"470":{"body":40,"breadcrumbs":3,"title":1},"471":{"body":36,"breadcrumbs":3,"title":1},"472":{"body":0,"breadcrumbs":4,"title":2},"473":{"body":81,"breadcrumbs":4,"title":2},"474":{"body":67,"breadcrumbs":4,"title":2},"475":{"body":0,"breadcrumbs":4,"title":2},"476":{"body":11,"breadcrumbs":4,"title":2},"477":{"body":21,"breadcrumbs":4,"title":2},"478":{"body":16,"breadcrumbs":4,"title":2},"479":{"body":27,"breadcrumbs":4,"title":2},"48":{"body":8,"breadcrumbs":3,"title":1},"480":{"body":17,"breadcrumbs":4,"title":2},"481":{"body":12,"breadcrumbs":4,"title":2},"482":{"body":22,"breadcrumbs":3,"title":1},"483":{"body":44,"breadcrumbs":4,"title":2},"484":{"body":0,"breadcrumbs":4,"title":2},"485":{"body":7,"breadcrumbs":4,"title":2},"486":{"body":46,"breadcrumbs":5,"title":3},"487":{"body":28,"breadcrumbs":5,"title":3},"488":{"body":0,"breadcrumbs":4,"title":2},"489":{"body":28,"breadcrumbs":5,"title":3},"49":{"body":40,"breadcrumbs":4,"title":2},"490":{"body":21,"breadcrumbs":5,"title":3},"491":{"body":34,"breadcrumbs":4,"title":2},"492":{"body":0,"breadcrumbs":4,"title":2},"493":{"body":22,"breadcrumbs":4,"title":2},"494":{"body":15,"breadcrumbs":5,"title":3},"495":{"body":23,"breadcrumbs":5,"title":3},"496":{"body":0,"breadcrumbs":4,"title":2},"497":{"body":51,"breadcrumbs":5,"title":3},"498":{"body":51,"breadcrumbs":4,"title":2},"499":{"body":0,"breadcrumbs":4,"title":2},"5":{"body":25,"breadcrumbs":3,"title":2},"50":{"body":32,"breadcrumbs":4,"title":2},"500":{"body":39,"breadcrumbs":5,"title":3},"501":{"body":48,"breadcrumbs":4,"title":2},"502":{"body":33,"breadcrumbs":4,"title":2},"503":{"body":48,"breadcrumbs":4,"title":2},"504":{"body":0,"breadcrumbs":3,"title":1},"505":{"body":62,"breadcrumbs":5,"title":3},"506":{"body":48,"breadcrumbs":5,"title":3},"507":{"body":119,"breadcrumbs":5,"title":3},"508":{"body":0,"breadcrumbs":3,"title":1},"509":{"body":25,"breadcrumbs":5,"title":3},"51":{"body":37,"breadcrumbs":4,"title":2},"510":{"body":25,"breadcrumbs":6,"title":4},"511":{"body":20,"breadcrumbs":4,"title":2},"512":{"body":17,"breadcrumbs":4,"title":2},"513":{"body":6,"breadcrumbs":4,"title":2},"514":{"body":3,"breadcrumbs":3,"title":1},"515":{"body":5,"breadcrumbs":4,"title":2},"516":{"body":17,"breadcrumbs":4,"title":2},"517":{"body":17,"breadcrumbs":3,"title":1},"518":{"body":28,"breadcrumbs":3,"title":1},"519":{"body":105,"breadcrumbs":8,"title":6},"52":{"body":8,"breadcrumbs":3,"title":1},"520":{"body":28,"breadcrumbs":3,"title":1},"521":{"body":43,"breadcrumbs":4,"title":2},"522":{"body":63,"breadcrumbs":6,"title":4},"523":{"body":66,"breadcrumbs":7,"title":5},"524":{"body":31,"breadcrumbs":4,"title":2},"525":{"body":41,"breadcrumbs":4,"title":2},"526":{"body":24,"breadcrumbs":3,"title":1},"527":{"body":42,"breadcrumbs":6,"title":4},"528":{"body":31,"breadcrumbs":3,"title":1},"529":{"body":28,"breadcrumbs":3,"title":1},"53":{"body":67,"breadcrumbs":4,"title":2},"530":{"body":29,"breadcrumbs":3,"title":1},"531":{"body":36,"breadcrumbs":3,"title":1},"532":{"body":29,"breadcrumbs":3,"title":1},"533":{"body":34,"breadcrumbs":5,"title":3},"534":{"body":0,"breadcrumbs":4,"title":2},"535":{"body":26,"breadcrumbs":3,"title":1},"536":{"body":103,"breadcrumbs":3,"title":1},"537":{"body":4,"breadcrumbs":4,"title":2},"538":{"body":37,"breadcrumbs":3,"title":1},"539":{"body":32,"breadcrumbs":3,"title":1},"54":{"body":33,"breadcrumbs":4,"title":2},"540":{"body":5,"breadcrumbs":4,"title":2},"541":{"body":28,"breadcrumbs":3,"title":1},"542":{"body":40,"breadcrumbs":5,"title":3},"543":{"body":19,"breadcrumbs":5,"title":3},"544":{"body":29,"breadcrumbs":4,"title":2},"545":{"body":88,"breadcrumbs":4,"title":2},"546":{"body":23,"breadcrumbs":4,"title":2},"547":{"body":21,"breadcrumbs":3,"title":1},"548":{"body":21,"breadcrumbs":3,"title":2},"549":{"body":16,"breadcrumbs":2,"title":1},"55":{"body":26,"breadcrumbs":4,"title":2},"550":{"body":0,"breadcrumbs":2,"title":1},"551":{"body":3,"breadcrumbs":3,"title":2},"552":{"body":6,"breadcrumbs":3,"title":2},"553":{"body":3,"breadcrumbs":3,"title":2},"554":{"body":24,"breadcrumbs":3,"title":2},"555":{"body":35,"breadcrumbs":3,"title":2},"556":{"body":8,"breadcrumbs":3,"title":2},"557":{"body":19,"breadcrumbs":3,"title":2},"558":{"body":20,"breadcrumbs":3,"title":2},"559":{"body":0,"breadcrumbs":2,"title":1},"56":{"body":7,"breadcrumbs":4,"title":2},"560":{"body":18,"breadcrumbs":3,"title":2},"561":{"body":9,"breadcrumbs":4,"title":3},"562":{"body":14,"breadcrumbs":3,"title":2},"563":{"body":17,"breadcrumbs":3,"title":2},"564":{"body":3,"breadcrumbs":3,"title":2},"565":{"body":6,"breadcrumbs":4,"title":3},"566":{"body":9,"breadcrumbs":3,"title":2},"567":{"body":2,"breadcrumbs":4,"title":3},"568":{"body":0,"breadcrumbs":3,"title":2},"569":{"body":13,"breadcrumbs":4,"title":3},"57":{"body":28,"breadcrumbs":4,"title":2},"570":{"body":12,"breadcrumbs":3,"title":2},"571":{"body":10,"breadcrumbs":5,"title":4},"572":{"body":14,"breadcrumbs":5,"title":4},"573":{"body":0,"breadcrumbs":3,"title":2},"574":{"body":17,"breadcrumbs":3,"title":2},"575":{"body":10,"breadcrumbs":3,"title":2},"576":{"body":42,"breadcrumbs":3,"title":2},"577":{"body":0,"breadcrumbs":4,"title":3},"578":{"body":22,"breadcrumbs":3,"title":2},"579":{"body":20,"breadcrumbs":3,"title":2},"58":{"body":27,"breadcrumbs":4,"title":2},"580":{"body":19,"breadcrumbs":3,"title":2},"581":{"body":42,"breadcrumbs":4,"title":3},"582":{"body":0,"breadcrumbs":3,"title":2},"583":{"body":25,"breadcrumbs":3,"title":2},"584":{"body":20,"breadcrumbs":3,"title":2},"585":{"body":18,"breadcrumbs":3,"title":2},"586":{"body":20,"breadcrumbs":3,"title":2},"587":{"body":28,"breadcrumbs":5,"title":4},"588":{"body":62,"breadcrumbs":3,"title":2},"589":{"body":27,"breadcrumbs":3,"title":2},"59":{"body":30,"breadcrumbs":4,"title":2},"590":{"body":20,"breadcrumbs":2,"title":1},"591":{"body":18,"breadcrumbs":4,"title":2},"592":{"body":22,"breadcrumbs":4,"title":2},"593":{"body":29,"breadcrumbs":5,"title":3},"594":{"body":0,"breadcrumbs":4,"title":2},"595":{"body":30,"breadcrumbs":3,"title":1},"596":{"body":8,"breadcrumbs":3,"title":1},"597":{"body":14,"breadcrumbs":3,"title":1},"598":{"body":20,"breadcrumbs":3,"title":1},"599":{"body":40,"breadcrumbs":3,"title":1},"6":{"body":26,"breadcrumbs":3,"title":2},"60":{"body":7,"breadcrumbs":5,"title":3},"600":{"body":43,"breadcrumbs":4,"title":2},"601":{"body":27,"breadcrumbs":3,"title":1},"602":{"body":25,"breadcrumbs":6,"title":4},"603":{"body":31,"breadcrumbs":4,"title":2},"604":{"body":85,"breadcrumbs":3,"title":1},"605":{"body":82,"breadcrumbs":6,"title":4},"606":{"body":25,"breadcrumbs":3,"title":1},"607":{"body":17,"breadcrumbs":4,"title":2},"608":{"body":18,"breadcrumbs":3,"title":1},"609":{"body":27,"breadcrumbs":3,"title":1},"61":{"body":22,"breadcrumbs":4,"title":2},"610":{"body":5,"breadcrumbs":4,"title":2},"611":{"body":19,"breadcrumbs":3,"title":1},"612":{"body":24,"breadcrumbs":3,"title":1},"613":{"body":24,"breadcrumbs":3,"title":1},"614":{"body":27,"breadcrumbs":3,"title":1},"615":{"body":15,"breadcrumbs":3,"title":1},"616":{"body":105,"breadcrumbs":4,"title":2},"617":{"body":58,"breadcrumbs":4,"title":2},"618":{"body":48,"breadcrumbs":4,"title":2},"619":{"body":15,"breadcrumbs":3,"title":1},"62":{"body":20,"breadcrumbs":5,"title":3},"620":{"body":13,"breadcrumbs":4,"title":2},"621":{"body":0,"breadcrumbs":4,"title":2},"622":{"body":12,"breadcrumbs":5,"title":3},"623":{"body":17,"breadcrumbs":4,"title":2},"624":{"body":0,"breadcrumbs":4,"title":2},"625":{"body":25,"breadcrumbs":5,"title":3},"626":{"body":12,"breadcrumbs":4,"title":2},"627":{"body":9,"breadcrumbs":4,"title":2},"628":{"body":12,"breadcrumbs":4,"title":2},"629":{"body":18,"breadcrumbs":3,"title":1},"63":{"body":6,"breadcrumbs":4,"title":2},"630":{"body":0,"breadcrumbs":4,"title":2},"631":{"body":9,"breadcrumbs":5,"title":3},"632":{"body":11,"breadcrumbs":6,"title":4},"633":{"body":0,"breadcrumbs":4,"title":2},"634":{"body":38,"breadcrumbs":5,"title":3},"635":{"body":11,"breadcrumbs":5,"title":3},"636":{"body":0,"breadcrumbs":4,"title":2},"637":{"body":9,"breadcrumbs":5,"title":3},"638":{"body":21,"breadcrumbs":5,"title":3},"639":{"body":0,"breadcrumbs":4,"title":2},"64":{"body":23,"breadcrumbs":4,"title":2},"640":{"body":26,"breadcrumbs":4,"title":2},"641":{"body":11,"breadcrumbs":4,"title":2},"642":{"body":10,"breadcrumbs":5,"title":3},"643":{"body":0,"breadcrumbs":4,"title":2},"644":{"body":16,"breadcrumbs":4,"title":2},"645":{"body":18,"breadcrumbs":4,"title":2},"646":{"body":12,"breadcrumbs":5,"title":3},"647":{"body":0,"breadcrumbs":4,"title":2},"648":{"body":15,"breadcrumbs":4,"title":2},"649":{"body":17,"breadcrumbs":4,"title":2},"65":{"body":19,"breadcrumbs":4,"title":2},"650":{"body":0,"breadcrumbs":4,"title":2},"651":{"body":11,"breadcrumbs":4,"title":2},"652":{"body":16,"breadcrumbs":4,"title":2},"653":{"body":35,"breadcrumbs":4,"title":2},"654":{"body":78,"breadcrumbs":4,"title":2},"655":{"body":0,"breadcrumbs":5,"title":3},"656":{"body":29,"breadcrumbs":5,"title":3},"657":{"body":21,"breadcrumbs":5,"title":3},"658":{"body":0,"breadcrumbs":4,"title":2},"659":{"body":5,"breadcrumbs":4,"title":2},"66":{"body":19,"breadcrumbs":4,"title":2},"660":{"body":17,"breadcrumbs":4,"title":2},"661":{"body":26,"breadcrumbs":4,"title":2},"662":{"body":17,"breadcrumbs":4,"title":2},"663":{"body":29,"breadcrumbs":4,"title":2},"664":{"body":32,"breadcrumbs":3,"title":1},"665":{"body":0,"breadcrumbs":4,"title":2},"666":{"body":82,"breadcrumbs":6,"title":4},"667":{"body":65,"breadcrumbs":6,"title":4},"668":{"body":0,"breadcrumbs":3,"title":1},"669":{"body":58,"breadcrumbs":3,"title":1},"67":{"body":28,"breadcrumbs":4,"title":2},"670":{"body":30,"breadcrumbs":3,"title":1},"671":{"body":0,"breadcrumbs":3,"title":1},"672":{"body":23,"breadcrumbs":5,"title":3},"673":{"body":20,"breadcrumbs":4,"title":2},"674":{"body":0,"breadcrumbs":4,"title":2},"675":{"body":45,"breadcrumbs":5,"title":3},"676":{"body":33,"breadcrumbs":5,"title":3},"677":{"body":0,"breadcrumbs":4,"title":2},"678":{"body":43,"breadcrumbs":4,"title":2},"679":{"body":14,"breadcrumbs":3,"title":1},"68":{"body":17,"breadcrumbs":5,"title":3},"680":{"body":0,"breadcrumbs":4,"title":2},"681":{"body":37,"breadcrumbs":5,"title":3},"682":{"body":38,"breadcrumbs":4,"title":2},"683":{"body":0,"breadcrumbs":3,"title":1},"684":{"body":51,"breadcrumbs":6,"title":4},"685":{"body":0,"breadcrumbs":4,"title":2},"686":{"body":30,"breadcrumbs":3,"title":1},"687":{"body":37,"breadcrumbs":4,"title":2},"688":{"body":21,"breadcrumbs":4,"title":2},"689":{"body":14,"breadcrumbs":4,"title":2},"69":{"body":7,"breadcrumbs":4,"title":2},"690":{"body":6,"breadcrumbs":4,"title":2},"691":{"body":3,"breadcrumbs":3,"title":1},"692":{"body":5,"breadcrumbs":4,"title":2},"693":{"body":17,"breadcrumbs":4,"title":2},"694":{"body":14,"breadcrumbs":3,"title":1},"695":{"body":25,"breadcrumbs":3,"title":1},"696":{"body":89,"breadcrumbs":8,"title":6},"697":{"body":27,"breadcrumbs":3,"title":1},"698":{"body":41,"breadcrumbs":4,"title":2},"699":{"body":60,"breadcrumbs":6,"title":4},"7":{"body":4,"breadcrumbs":3,"title":2},"70":{"body":31,"breadcrumbs":5,"title":3},"700":{"body":66,"breadcrumbs":7,"title":5},"701":{"body":30,"breadcrumbs":4,"title":2},"702":{"body":39,"breadcrumbs":4,"title":2},"703":{"body":23,"breadcrumbs":3,"title":1},"704":{"body":41,"breadcrumbs":6,"title":4},"705":{"body":30,"breadcrumbs":3,"title":1},"706":{"body":26,"breadcrumbs":3,"title":1},"707":{"body":28,"breadcrumbs":3,"title":1},"708":{"body":34,"breadcrumbs":3,"title":1},"709":{"body":27,"breadcrumbs":3,"title":1},"71":{"body":15,"breadcrumbs":4,"title":2},"710":{"body":33,"breadcrumbs":5,"title":3},"711":{"body":14,"breadcrumbs":5,"title":3},"712":{"body":8,"breadcrumbs":3,"title":1},"713":{"body":9,"breadcrumbs":3,"title":1},"714":{"body":8,"breadcrumbs":3,"title":1},"715":{"body":8,"breadcrumbs":3,"title":1},"716":{"body":10,"breadcrumbs":3,"title":1},"717":{"body":4,"breadcrumbs":4,"title":2},"718":{"body":30,"breadcrumbs":3,"title":1},"719":{"body":37,"breadcrumbs":4,"title":2},"72":{"body":40,"breadcrumbs":5,"title":3},"720":{"body":0,"breadcrumbs":3,"title":1},"721":{"body":21,"breadcrumbs":5,"title":3},"722":{"body":48,"breadcrumbs":4,"title":2},"723":{"body":33,"breadcrumbs":4,"title":2},"724":{"body":19,"breadcrumbs":4,"title":2},"725":{"body":43,"breadcrumbs":4,"title":2},"726":{"body":42,"breadcrumbs":4,"title":2},"727":{"body":17,"breadcrumbs":3,"title":1},"728":{"body":22,"breadcrumbs":4,"title":2},"729":{"body":27,"breadcrumbs":4,"title":2},"73":{"body":24,"breadcrumbs":5,"title":3},"730":{"body":0,"breadcrumbs":4,"title":2},"731":{"body":7,"breadcrumbs":4,"title":2},"732":{"body":55,"breadcrumbs":4,"title":2},"733":{"body":36,"breadcrumbs":4,"title":2},"734":{"body":15,"breadcrumbs":4,"title":2},"735":{"body":0,"breadcrumbs":4,"title":2},"736":{"body":21,"breadcrumbs":3,"title":1},"737":{"body":11,"breadcrumbs":4,"title":2},"738":{"body":46,"breadcrumbs":5,"title":3},"739":{"body":36,"breadcrumbs":4,"title":2},"74":{"body":3,"breadcrumbs":5,"title":3},"740":{"body":28,"breadcrumbs":3,"title":1},"741":{"body":35,"breadcrumbs":4,"title":2},"742":{"body":71,"breadcrumbs":5,"title":3},"743":{"body":0,"breadcrumbs":4,"title":2},"744":{"body":43,"breadcrumbs":4,"title":2},"745":{"body":21,"breadcrumbs":4,"title":2},"746":{"body":27,"breadcrumbs":4,"title":2},"747":{"body":49,"breadcrumbs":4,"title":2},"748":{"body":16,"breadcrumbs":3,"title":1},"749":{"body":17,"breadcrumbs":4,"title":2},"75":{"body":38,"breadcrumbs":4,"title":2},"750":{"body":1,"breadcrumbs":4,"title":2},"751":{"body":27,"breadcrumbs":3,"title":1},"752":{"body":30,"breadcrumbs":4,"title":2},"753":{"body":35,"breadcrumbs":4,"title":2},"754":{"body":15,"breadcrumbs":4,"title":2},"755":{"body":0,"breadcrumbs":4,"title":2},"756":{"body":61,"breadcrumbs":5,"title":3},"757":{"body":27,"breadcrumbs":5,"title":3},"758":{"body":45,"breadcrumbs":3,"title":1},"759":{"body":70,"breadcrumbs":5,"title":3},"76":{"body":50,"breadcrumbs":5,"title":3},"760":{"body":62,"breadcrumbs":4,"title":2},"761":{"body":28,"breadcrumbs":3,"title":1},"762":{"body":52,"breadcrumbs":5,"title":3},"763":{"body":24,"breadcrumbs":4,"title":2},"764":{"body":0,"breadcrumbs":4,"title":2},"765":{"body":93,"breadcrumbs":4,"title":2},"766":{"body":62,"breadcrumbs":4,"title":2},"767":{"body":81,"breadcrumbs":4,"title":2},"768":{"body":0,"breadcrumbs":4,"title":2},"769":{"body":26,"breadcrumbs":3,"title":1},"77":{"body":66,"breadcrumbs":4,"title":2},"770":{"body":19,"breadcrumbs":3,"title":1},"771":{"body":12,"breadcrumbs":3,"title":1},"772":{"body":26,"breadcrumbs":4,"title":2},"773":{"body":21,"breadcrumbs":3,"title":1},"774":{"body":18,"breadcrumbs":4,"title":2},"775":{"body":1,"breadcrumbs":4,"title":2},"776":{"body":39,"breadcrumbs":3,"title":1},"777":{"body":0,"breadcrumbs":4,"title":2},"778":{"body":35,"breadcrumbs":3,"title":1},"779":{"body":73,"breadcrumbs":3,"title":1},"78":{"body":3,"breadcrumbs":5,"title":3},"780":{"body":24,"breadcrumbs":4,"title":2},"781":{"body":0,"breadcrumbs":4,"title":2},"782":{"body":108,"breadcrumbs":3,"title":1},"783":{"body":31,"breadcrumbs":3,"title":1},"784":{"body":12,"breadcrumbs":3,"title":1},"785":{"body":43,"breadcrumbs":3,"title":1},"786":{"body":21,"breadcrumbs":5,"title":3},"787":{"body":32,"breadcrumbs":4,"title":2},"788":{"body":34,"breadcrumbs":5,"title":3},"789":{"body":17,"breadcrumbs":4,"title":2},"79":{"body":43,"breadcrumbs":4,"title":2},"790":{"body":15,"breadcrumbs":5,"title":3},"791":{"body":81,"breadcrumbs":4,"title":2},"792":{"body":35,"breadcrumbs":5,"title":3},"793":{"body":0,"breadcrumbs":4,"title":2},"794":{"body":35,"breadcrumbs":4,"title":2},"795":{"body":5,"breadcrumbs":4,"title":2},"796":{"body":25,"breadcrumbs":4,"title":2},"797":{"body":22,"breadcrumbs":4,"title":2},"798":{"body":26,"breadcrumbs":4,"title":2},"799":{"body":19,"breadcrumbs":3,"title":1},"8":{"body":30,"breadcrumbs":3,"title":2},"80":{"body":46,"breadcrumbs":5,"title":3},"800":{"body":17,"breadcrumbs":4,"title":2},"801":{"body":1,"breadcrumbs":4,"title":2},"802":{"body":30,"breadcrumbs":3,"title":1},"803":{"body":25,"breadcrumbs":4,"title":2},"804":{"body":37,"breadcrumbs":4,"title":2},"805":{"body":11,"breadcrumbs":4,"title":2},"806":{"body":0,"breadcrumbs":4,"title":2},"807":{"body":9,"breadcrumbs":5,"title":3},"808":{"body":59,"breadcrumbs":5,"title":3},"809":{"body":19,"breadcrumbs":4,"title":2},"81":{"body":61,"breadcrumbs":4,"title":2},"810":{"body":28,"breadcrumbs":3,"title":1},"811":{"body":30,"breadcrumbs":5,"title":3},"812":{"body":15,"breadcrumbs":4,"title":2},"813":{"body":5,"breadcrumbs":3,"title":1},"814":{"body":21,"breadcrumbs":4,"title":2},"815":{"body":20,"breadcrumbs":4,"title":2},"816":{"body":211,"breadcrumbs":4,"title":2},"817":{"body":0,"breadcrumbs":4,"title":2},"818":{"body":9,"breadcrumbs":4,"title":2},"819":{"body":7,"breadcrumbs":5,"title":3},"82":{"body":92,"breadcrumbs":7,"title":5},"820":{"body":10,"breadcrumbs":4,"title":2},"821":{"body":0,"breadcrumbs":4,"title":2},"822":{"body":28,"breadcrumbs":5,"title":3},"823":{"body":9,"breadcrumbs":5,"title":3},"824":{"body":8,"breadcrumbs":6,"title":4},"825":{"body":8,"breadcrumbs":5,"title":3},"826":{"body":7,"breadcrumbs":5,"title":3},"827":{"body":23,"breadcrumbs":5,"title":3},"828":{"body":17,"breadcrumbs":3,"title":1},"829":{"body":28,"breadcrumbs":6,"title":3},"83":{"body":7,"breadcrumbs":4,"title":2},"830":{"body":1,"breadcrumbs":5,"title":2},"831":{"body":62,"breadcrumbs":4,"title":1},"832":{"body":35,"breadcrumbs":5,"title":2},"833":{"body":50,"breadcrumbs":5,"title":2},"834":{"body":0,"breadcrumbs":4,"title":1},"835":{"body":21,"breadcrumbs":5,"title":2},"836":{"body":53,"breadcrumbs":5,"title":2},"837":{"body":25,"breadcrumbs":5,"title":2},"838":{"body":41,"breadcrumbs":5,"title":2},"839":{"body":0,"breadcrumbs":4,"title":1},"84":{"body":19,"breadcrumbs":5,"title":3},"840":{"body":11,"breadcrumbs":6,"title":3},"841":{"body":39,"breadcrumbs":6,"title":3},"842":{"body":19,"breadcrumbs":5,"title":2},"843":{"body":27,"breadcrumbs":7,"title":4},"844":{"body":0,"breadcrumbs":5,"title":2},"845":{"body":62,"breadcrumbs":7,"title":4},"846":{"body":14,"breadcrumbs":5,"title":2},"847":{"body":48,"breadcrumbs":5,"title":2},"848":{"body":21,"breadcrumbs":8,"title":5},"849":{"body":14,"breadcrumbs":7,"title":4},"85":{"body":10,"breadcrumbs":5,"title":3},"850":{"body":39,"breadcrumbs":5,"title":2},"851":{"body":19,"breadcrumbs":4,"title":1},"852":{"body":30,"breadcrumbs":4,"title":2},"853":{"body":14,"breadcrumbs":3,"title":1},"854":{"body":13,"breadcrumbs":4,"title":2},"855":{"body":34,"breadcrumbs":4,"title":2},"856":{"body":79,"breadcrumbs":4,"title":2},"857":{"body":28,"breadcrumbs":4,"title":2},"858":{"body":16,"breadcrumbs":5,"title":3},"859":{"body":32,"breadcrumbs":3,"title":1},"86":{"body":20,"breadcrumbs":5,"title":3},"860":{"body":38,"breadcrumbs":4,"title":2},"861":{"body":21,"breadcrumbs":3,"title":1},"862":{"body":15,"breadcrumbs":3,"title":1},"863":{"body":18,"breadcrumbs":6,"title":3},"864":{"body":18,"breadcrumbs":4,"title":1},"865":{"body":14,"breadcrumbs":5,"title":2},"866":{"body":9,"breadcrumbs":5,"title":2},"867":{"body":7,"breadcrumbs":5,"title":2},"868":{"body":29,"breadcrumbs":6,"title":3},"869":{"body":41,"breadcrumbs":6,"title":3},"87":{"body":102,"breadcrumbs":5,"title":3},"870":{"body":32,"breadcrumbs":5,"title":2},"871":{"body":29,"breadcrumbs":5,"title":2},"872":{"body":57,"breadcrumbs":4,"title":1},"873":{"body":55,"breadcrumbs":5,"title":2},"874":{"body":25,"breadcrumbs":4,"title":1},"875":{"body":13,"breadcrumbs":4,"title":1},"876":{"body":20,"breadcrumbs":4,"title":2},"877":{"body":15,"breadcrumbs":3,"title":1},"878":{"body":0,"breadcrumbs":4,"title":2},"879":{"body":18,"breadcrumbs":3,"title":1},"88":{"body":231,"breadcrumbs":7,"title":5},"880":{"body":18,"breadcrumbs":3,"title":1},"881":{"body":43,"breadcrumbs":4,"title":2},"882":{"body":20,"breadcrumbs":3,"title":1},"883":{"body":32,"breadcrumbs":3,"title":1},"884":{"body":44,"breadcrumbs":4,"title":2},"885":{"body":23,"breadcrumbs":4,"title":2},"886":{"body":16,"breadcrumbs":3,"title":1},"887":{"body":13,"breadcrumbs":2,"title":1},"888":{"body":1,"breadcrumbs":3,"title":2},"889":{"body":19,"breadcrumbs":3,"title":2},"89":{"body":27,"breadcrumbs":4,"title":2},"890":{"body":33,"breadcrumbs":3,"title":2},"891":{"body":0,"breadcrumbs":3,"title":2},"892":{"body":69,"breadcrumbs":3,"title":2},"893":{"body":26,"breadcrumbs":3,"title":2},"894":{"body":16,"breadcrumbs":3,"title":2},"895":{"body":10,"breadcrumbs":3,"title":2},"896":{"body":35,"breadcrumbs":3,"title":2},"897":{"body":12,"breadcrumbs":2,"title":1},"898":{"body":8,"breadcrumbs":3,"title":2},"899":{"body":54,"breadcrumbs":3,"title":2},"9":{"body":11,"breadcrumbs":2,"title":1},"90":{"body":29,"breadcrumbs":4,"title":2},"900":{"body":35,"breadcrumbs":3,"title":2},"901":{"body":47,"breadcrumbs":3,"title":2},"902":{"body":64,"breadcrumbs":4,"title":3},"903":{"body":16,"breadcrumbs":3,"title":2},"904":{"body":0,"breadcrumbs":3,"title":2},"905":{"body":5,"breadcrumbs":2,"title":1},"906":{"body":8,"breadcrumbs":2,"title":1},"907":{"body":5,"breadcrumbs":2,"title":1},"908":{"body":45,"breadcrumbs":4,"title":3},"909":{"body":18,"breadcrumbs":2,"title":1},"91":{"body":33,"breadcrumbs":4,"title":2},"910":{"body":14,"breadcrumbs":4,"title":2},"911":{"body":155,"breadcrumbs":5,"title":3},"912":{"body":0,"breadcrumbs":5,"title":3},"913":{"body":42,"breadcrumbs":5,"title":3},"914":{"body":21,"breadcrumbs":5,"title":3},"915":{"body":17,"breadcrumbs":5,"title":3},"916":{"body":112,"breadcrumbs":5,"title":3},"917":{"body":0,"breadcrumbs":4,"title":2},"918":{"body":53,"breadcrumbs":4,"title":2},"919":{"body":11,"breadcrumbs":4,"title":2},"92":{"body":42,"breadcrumbs":3,"title":1},"920":{"body":0,"breadcrumbs":4,"title":2},"921":{"body":45,"breadcrumbs":4,"title":2},"922":{"body":23,"breadcrumbs":4,"title":2},"923":{"body":0,"breadcrumbs":4,"title":2},"924":{"body":23,"breadcrumbs":4,"title":2},"925":{"body":130,"breadcrumbs":4,"title":2},"926":{"body":23,"breadcrumbs":4,"title":2},"927":{"body":9,"breadcrumbs":5,"title":3},"928":{"body":21,"breadcrumbs":5,"title":3},"929":{"body":35,"breadcrumbs":4,"title":2},"93":{"body":45,"breadcrumbs":4,"title":2},"930":{"body":33,"breadcrumbs":4,"title":2},"931":{"body":10,"breadcrumbs":5,"title":3},"932":{"body":37,"breadcrumbs":3,"title":1},"933":{"body":24,"breadcrumbs":5,"title":3},"934":{"body":41,"breadcrumbs":6,"title":4},"935":{"body":24,"breadcrumbs":4,"title":2},"936":{"body":11,"breadcrumbs":4,"title":2},"937":{"body":32,"breadcrumbs":4,"title":2},"938":{"body":12,"breadcrumbs":5,"title":3},"939":{"body":63,"breadcrumbs":4,"title":2},"94":{"body":50,"breadcrumbs":8,"title":6},"940":{"body":19,"breadcrumbs":4,"title":2},"941":{"body":38,"breadcrumbs":4,"title":2},"942":{"body":32,"breadcrumbs":4,"title":2},"943":{"body":6,"breadcrumbs":5,"title":3},"944":{"body":22,"breadcrumbs":3,"title":1},"945":{"body":6,"breadcrumbs":3,"title":1},"946":{"body":23,"breadcrumbs":4,"title":2},"947":{"body":8,"breadcrumbs":5,"title":3},"948":{"body":17,"breadcrumbs":4,"title":2},"949":{"body":20,"breadcrumbs":4,"title":2},"95":{"body":43,"breadcrumbs":7,"title":5},"950":{"body":119,"breadcrumbs":5,"title":3},"951":{"body":31,"breadcrumbs":4,"title":2},"952":{"body":6,"breadcrumbs":4,"title":2},"953":{"body":23,"breadcrumbs":4,"title":2},"954":{"body":26,"breadcrumbs":4,"title":2},"955":{"body":3,"breadcrumbs":4,"title":2},"956":{"body":22,"breadcrumbs":4,"title":2},"957":{"body":8,"breadcrumbs":4,"title":2},"958":{"body":0,"breadcrumbs":4,"title":2},"959":{"body":23,"breadcrumbs":4,"title":2},"96":{"body":43,"breadcrumbs":7,"title":5},"960":{"body":28,"breadcrumbs":4,"title":2},"961":{"body":0,"breadcrumbs":5,"title":3},"962":{"body":17,"breadcrumbs":5,"title":3},"963":{"body":8,"breadcrumbs":5,"title":3},"964":{"body":15,"breadcrumbs":5,"title":3},"965":{"body":6,"breadcrumbs":5,"title":3},"966":{"body":10,"breadcrumbs":5,"title":3},"967":{"body":0,"breadcrumbs":4,"title":2},"968":{"body":14,"breadcrumbs":3,"title":1},"969":{"body":74,"breadcrumbs":3,"title":1},"97":{"body":47,"breadcrumbs":10,"title":8},"970":{"body":15,"breadcrumbs":3,"title":1},"971":{"body":0,"breadcrumbs":4,"title":2},"972":{"body":11,"breadcrumbs":4,"title":2},"973":{"body":13,"breadcrumbs":4,"title":2},"974":{"body":12,"breadcrumbs":3,"title":1},"975":{"body":0,"breadcrumbs":5,"title":3},"976":{"body":160,"breadcrumbs":5,"title":3},"977":{"body":25,"breadcrumbs":5,"title":3},"978":{"body":20,"breadcrumbs":6,"title":4},"979":{"body":22,"breadcrumbs":5,"title":3},"98":{"body":31,"breadcrumbs":9,"title":7},"980":{"body":16,"breadcrumbs":3,"title":1},"981":{"body":25,"breadcrumbs":4,"title":2},"982":{"body":0,"breadcrumbs":5,"title":3},"983":{"body":19,"breadcrumbs":5,"title":3},"984":{"body":22,"breadcrumbs":4,"title":2},"985":{"body":24,"breadcrumbs":4,"title":2},"986":{"body":12,"breadcrumbs":4,"title":2},"987":{"body":52,"breadcrumbs":4,"title":2},"988":{"body":27,"breadcrumbs":4,"title":2},"989":{"body":12,"breadcrumbs":5,"title":3},"99":{"body":7,"breadcrumbs":2,"title":1},"990":{"body":28,"breadcrumbs":4,"title":2},"991":{"body":42,"breadcrumbs":5,"title":3},"992":{"body":35,"breadcrumbs":5,"title":3},"993":{"body":0,"breadcrumbs":5,"title":3},"994":{"body":33,"breadcrumbs":5,"title":3},"995":{"body":24,"breadcrumbs":4,"title":2},"996":{"body":56,"breadcrumbs":5,"title":3},"997":{"body":80,"breadcrumbs":5,"title":3},"998":{"body":9,"breadcrumbs":6,"title":4},"999":{"body":70,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"Welcome to the JSON Agent Communication Standard (JACS) documentation! JACS is a comprehensive framework for creating, signing, and verifying JSON documents with cryptographic integrity, designed specifically for AI agent communication and task management.","breadcrumbs":"Introduction » JACS: JSON Agent Communication Standard","id":"0","title":"JACS: JSON Agent Communication Standard"},"1":{"body":"JACS provides a standard way for AI agents to: Create and sign JSON documents with cryptographic signatures Verify authenticity and integrity of documents Manage tasks and agreements between multiple agents Maintain audit trails of modifications and versioning Ensure trust in multi-agent systems As a developer, JACS gives you the tools to build trustworthy AI systems where agents can securely exchange tasks, agreements, and data with verifiable integrity.","breadcrumbs":"Introduction » What is JACS?","id":"1","title":"What is JACS?"},"10":{"body":"pip install jacs import jacs agent = jacs.JacsAgent()\nagent.load(\"./config.json\")","breadcrumbs":"Introduction » Python","id":"10","title":"Python"},"100":{"body":"Rust : Version 1.93 or later (Edition 2024) Cargo : Included with Rust installation","breadcrumbs":"Installation » Requirements","id":"100","title":"Requirements"},"1000":{"body":"Status Description active Currently in use for signing rotated Superseded by newer key, still valid for old signatures revoked Compromised, signatures should not be trusted expired Past validity period","breadcrumbs":"Key Rotation » Key Status Values","id":"1000","title":"Key Status Values"},"1001":{"body":"impl TrustedAgent { /// Get the public key that was active for a specific agent version fn get_key_for_version(&self, version: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|entry| { match (&entry.first_version, &entry.last_version) { (Some(first), Some(last)) => { version >= first && version <= last } (Some(first), None) => { version >= first // Current key } _ => false } }) } /// Get the public key by its hash fn get_key_by_hash(&self, hash: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|e| e.public_key_hash == hash) }\n}","breadcrumbs":"Key Rotation » Looking Up Keys","id":"1001","title":"Looking Up Keys"},"1002":{"body":"DNS records can advertise multiple key versions for an agent.","breadcrumbs":"Key Rotation » DNS Support for Key Versions","id":"1002","title":"DNS Support for Key Versions"},"1003":{"body":"Each key version gets its own TXT record: ; Current key\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=current; alg=SHA-256; hash={hash1}\" ; Previous key (still valid for old signatures)\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=rotated; valid_until=2025-01-15; hash={hash2}\"","breadcrumbs":"Key Rotation » Multi-Version DNS Records","id":"1003","title":"Multi-Version DNS Records"},"1004":{"body":"# Generate DNS records for all active keys\njacs agent dns --all-keys","breadcrumbs":"Key Rotation » DNS Record Generation","id":"1004","title":"DNS Record Generation"},"1005":{"body":"","breadcrumbs":"Key Rotation » Security Considerations","id":"1005","title":"Security Considerations"},"1006":{"body":"When a key is compromised: Mark as revoked in the agent's key history Update DNS to include revocation status Signatures fail verification when made with revoked keys Notify trusted peers if possible","breadcrumbs":"Key Rotation » Key Revocation","id":"1006","title":"Key Revocation"},"1007":{"body":"During rotation, both old and new keys may be valid: New documents should be signed with the new key Old documents remain verifiable with the old key DNS may advertise both keys during transition","breadcrumbs":"Key Rotation » Overlap Period","id":"1007","title":"Overlap Period"},"1008":{"body":"After rotation: Old private keys should be securely deleted Only public keys are retained for verification Key metadata must be protected from modification","breadcrumbs":"Key Rotation » Secure Deletion","id":"1008","title":"Secure Deletion"},"1009":{"body":"","breadcrumbs":"Key Rotation » Best Practices","id":"1009","title":"Best Practices"},"101":{"body":"rustc --version\n# Should show rustc 1.93.0 or later If you need to update Rust: rustup update stable","breadcrumbs":"Installation » Verify Rust Version","id":"101","title":"Verify Rust Version"},"1010":{"body":"Regular rotation : Quarterly or annually for compliance Algorithm upgrade : When transitioning to stronger cryptography Incident response : Immediately after suspected compromise","breadcrumbs":"Key Rotation » Rotation Schedule","id":"1010","title":"Rotation Schedule"},"1011":{"body":"Backup current agent state Verify all systems can handle new key format Plan DNS propagation time Notify dependent systems of upcoming change","breadcrumbs":"Key Rotation » Pre-Rotation Checklist","id":"1011","title":"Pre-Rotation Checklist"},"1012":{"body":"Verify new key is active Confirm old documents still verify Update DNS records Securely delete old private key Test signing with new key","breadcrumbs":"Key Rotation » Post-Rotation Checklist","id":"1012","title":"Post-Rotation Checklist"},"1013":{"body":"Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity verification","breadcrumbs":"Key Rotation » See Also","id":"1013","title":"See Also"},"1014":{"body":"JACS supports multiple cryptographic algorithms for digital signatures, providing flexibility for different security requirements and future-proofing against quantum computing threats.","breadcrumbs":"Cryptographic Algorithms » Cryptographic Algorithms","id":"1014","title":"Cryptographic Algorithms"},"1015":{"body":"Algorithm Config Value Type Key Size Signature Size Recommended Use Ed25519 ring-Ed25519 Elliptic Curve 32 bytes 64 bytes General purpose (default) RSA-PSS RSA-PSS RSA 2048-4096 bits 256-512 bytes Legacy systems Dilithium pq-dilithium Lattice-based ~1.3 KB ~2.4 KB Post-quantum PQ2025 pq2025 Hybrid ~1.3 KB ~2.5 KB Transitional","breadcrumbs":"Cryptographic Algorithms » Supported Algorithms","id":"1015","title":"Supported Algorithms"},"1016":{"body":"The recommended algorithm for most use cases.","breadcrumbs":"Cryptographic Algorithms » Ed25519 (ring-Ed25519)","id":"1016","title":"Ed25519 (ring-Ed25519)"},"1017":{"body":"Ed25519 is an elliptic curve signature scheme using Curve25519. JACS uses the ring cryptographic library implementation.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1017","title":"Overview"},"1018":{"body":"Speed : Extremely fast signing and verification Key Size : 32-byte private key, 32-byte public key Signature Size : 64 bytes Security Level : ~128 bits (classical)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1018","title":"Characteristics"},"1019":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1019","title":"Configuration"},"102":{"body":"","breadcrumbs":"Installation » Installing the CLI","id":"102","title":"Installing the CLI"},"1020":{"body":"General agent communication MCP message signing HTTP request/response signing Document signing","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1020","title":"Use Cases"},"1021":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using ring-Ed25519 # Sign a message\nsignature = agent.sign_string(\"Hello, World!\")\nprint(f\"Signature (64 bytes): {len(signature)} characters base64\")","breadcrumbs":"Cryptographic Algorithms » Example","id":"1021","title":"Example"},"1022":{"body":"Industry-standard RSA with Probabilistic Signature Scheme padding.","breadcrumbs":"Cryptographic Algorithms » RSA-PSS","id":"1022","title":"RSA-PSS"},"1023":{"body":"RSA-PSS provides compatibility with systems that require RSA signatures. JACS uses 2048-bit or larger keys.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1023","title":"Overview"},"1024":{"body":"Speed : Slower than Ed25519 Key Size : 2048-4096 bits Signature Size : Same as key size (256-512 bytes) Security Level : ~112-128 bits (2048-bit key)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1024","title":"Characteristics"},"1025":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1025","title":"Configuration"},"1026":{"body":"Integration with legacy systems Compliance requirements mandating RSA Interoperability with enterprise PKI","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1026","title":"Use Cases"},"1027":{"body":"Larger signatures increase document size Slower than Ed25519 Larger keys needed for equivalent security","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1027","title":"Considerations"},"1028":{"body":"NIST-standardized post-quantum digital signature algorithm.","breadcrumbs":"Cryptographic Algorithms » Dilithium (pq-dilithium)","id":"1028","title":"Dilithium (pq-dilithium)"},"1029":{"body":"Dilithium is a lattice-based signature scheme selected by NIST for post-quantum cryptography standardization. It provides security against both classical and quantum computers.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1029","title":"Overview"},"103":{"body":"cargo install jacs --features cli","breadcrumbs":"Installation » From crates.io (Recommended)","id":"103","title":"From crates.io (Recommended)"},"1030":{"body":"Speed : Moderate (faster than RSA, slower than Ed25519) Key Size : ~1.3 KB public key, ~2.5 KB private key Signature Size : ~2.4 KB Security Level : NIST Level 3 (quantum-resistant)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1030","title":"Characteristics"},"1031":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1031","title":"Configuration"},"1032":{"body":"Long-term document security Protection against future quantum attacks High-security applications Government/defense requirements","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1032","title":"Use Cases"},"1033":{"body":"Larger signatures and keys than classical algorithms Newer algorithm (less battle-tested) May be required for future compliance","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1033","title":"Considerations"},"1034":{"body":"Transitional hybrid scheme combining classical and post-quantum algorithms.","breadcrumbs":"Cryptographic Algorithms » PQ2025 (Hybrid)","id":"1034","title":"PQ2025 (Hybrid)"},"1035":{"body":"PQ2025 combines Ed25519 with Dilithium, providing security even if one algorithm is broken. This approach is recommended by security researchers during the quantum transition period.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1035","title":"Overview"},"1036":{"body":"Speed : Slower (two signatures computed) Key Size : Combined Ed25519 + Dilithium Signature Size : ~2.5 KB (combined) Security Level : Max of both algorithms","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1036","title":"Characteristics"},"1037":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1037","title":"Configuration"},"1038":{"body":"Transitioning to post-quantum Maximum security requirements Uncertainty about algorithm security Long-lived documents","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1038","title":"Use Cases"},"1039":{"body":"Largest signatures Slowest signing/verification Best for paranoid security requirements","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1039","title":"Considerations"},"104":{"body":"git clone https://github.com/HumanAssisted/JACS\ncd JACS/jacs\ncargo install --path . --features cli","breadcrumbs":"Installation » From Source","id":"104","title":"From Source"},"1040":{"body":"","breadcrumbs":"Cryptographic Algorithms » Algorithm Selection Guide","id":"1040","title":"Algorithm Selection Guide"},"1041":{"body":"Requirement Recommended Algorithm Best performance ring-Ed25519 Smallest signatures ring-Ed25519 Legacy compatibility RSA-PSS Quantum resistance pq-dilithium Maximum security pq2025 General purpose ring-Ed25519","breadcrumbs":"Cryptographic Algorithms » Decision Matrix","id":"1041","title":"Decision Matrix"},"1042":{"body":"Web APIs and MCP : { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Fast signing is critical for real-time communication. Legal/Financial Documents : { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Long-term validity requires quantum resistance. Enterprise Integration : { \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Compatibility with existing PKI infrastructure. High-Security : { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Belt-and-suspenders approach for maximum protection.","breadcrumbs":"Cryptographic Algorithms » By Use Case","id":"1042","title":"By Use Case"},"1043":{"body":"Keys are generated automatically when creating an agent: # Directory structure after agent creation\njacs_keys/\n├── private.pem # Algorithm-specific private key\n└── public.pem # Algorithm-specific public key","breadcrumbs":"Cryptographic Algorithms » Key Generation","id":"1043","title":"Key Generation"},"1044":{"body":"Algorithm Private Key Format Public Key Format ring-Ed25519 PEM (PKCS#8) PEM (SPKI) RSA-PSS PEM (PKCS#8) PEM (SPKI) pq-dilithium PEM (custom) PEM (custom) pq2025 PEM (combined) PEM (combined)","breadcrumbs":"Cryptographic Algorithms » Key Formats","id":"1044","title":"Key Formats"},"1045":{"body":"Signatures in JACS documents include algorithm metadata: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"content\"] }\n} The signingAlgorithm field enables verifiers to use the correct verification method.","breadcrumbs":"Cryptographic Algorithms » Signature Structure","id":"1045","title":"Signature Structure"},"1046":{"body":"JACS uses SHA-256 for all hash operations: Document content hashing (jacsSha256) Public key fingerprints (publicKeyHash) Agreement content locking (jacsAgreementHash) { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Cryptographic Algorithms » Hashing","id":"1046","title":"Hashing"},"1047":{"body":"To migrate to a new algorithm: Generate New Keys { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Create New Agent Version # Load with old algorithm\nagent.load('./old-config.json') # Update to new algorithm and generate new version\nnew_agent = agent.update_agent(json.dumps({ # ... agent data with new keys\n})) Update Configuration { \"jacs_agent_id_and_version\": \"agent-id:new-version\", \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Maintain Backward Compatibility Keep old agent versions for verifying old documents Old signatures remain valid with old public keys","breadcrumbs":"Cryptographic Algorithms » Algorithm Migration","id":"1047","title":"Algorithm Migration"},"1048":{"body":"Approximate performance (varies by hardware): Algorithm Sign (ops/sec) Verify (ops/sec) Key Gen (ms) ring-Ed25519 ~50,000 ~20,000 <1 RSA-PSS (2048) ~1,000 ~30,000 ~100 pq-dilithium ~5,000 ~10,000 ~1 pq2025 ~4,000 ~8,000 ~2","breadcrumbs":"Cryptographic Algorithms » Performance Comparison","id":"1048","title":"Performance Comparison"},"1049":{"body":"","breadcrumbs":"Cryptographic Algorithms » Security Considerations","id":"1049","title":"Security Considerations"},"105":{"body":"jacs --help","breadcrumbs":"Installation » Verify Installation","id":"105","title":"Verify Installation"},"1050":{"body":"JACS documents include the signing algorithm, enabling: Verification with correct algorithm Graceful algorithm transitions Multi-algorithm environments","breadcrumbs":"Cryptographic Algorithms » Algorithm Agility","id":"1050","title":"Algorithm Agility"},"1051":{"body":"Signatures don't provide forward secrecy. For confidentiality: Use TLS for transport Consider additional encryption layers","breadcrumbs":"Cryptographic Algorithms » Forward Secrecy","id":"1051","title":"Forward Secrecy"},"1052":{"body":"If a private key is compromised: Generate new key pair Create new agent version Revoke trust in compromised version Re-sign critical documents","breadcrumbs":"Cryptographic Algorithms » Key Compromise","id":"1052","title":"Key Compromise"},"1053":{"body":"Security Model - Overall security architecture Configuration - Algorithm configuration DNS Verification - Public key fingerprint verification","breadcrumbs":"Cryptographic Algorithms » See Also","id":"1053","title":"See Also"},"1054":{"body":"JACS supports multiple storage backends for persisting documents and agents. This flexibility allows deployment in various environments from local development to cloud infrastructure.","breadcrumbs":"Storage Backends » Storage Backends","id":"1054","title":"Storage Backends"},"1055":{"body":"Backend Config Value Description Filesystem fs Local file storage (default) AWS S3 aws Amazon S3 object storage HAI Cloud hai HAI managed storage PostgreSQL database PostgreSQL with JSONB queries (requires database feature)","breadcrumbs":"Storage Backends » Available Backends","id":"1055","title":"Available Backends"},"1056":{"body":"Set the storage backend in your configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1056","title":"Configuration"},"1057":{"body":"The default storage backend, storing documents as JSON files on the local filesystem.","breadcrumbs":"Storage Backends » Filesystem Storage (fs)","id":"1057","title":"Filesystem Storage (fs)"},"1058":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1058","title":"Configuration"},"1059":{"body":"jacs_data/\n├── agents/\n│ └── {agent-id}/\n│ └── {version-id}.json\n├── documents/\n│ └── {document-id}/\n│ └── {version-id}.json\n└── files/ └── {attachment-hash}","breadcrumbs":"Storage Backends » Directory Structure","id":"1059","title":"Directory Structure"},"106":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Installation » Using as a Library","id":"106","title":"Using as a Library"},"1060":{"body":"Local development Single-server deployments Testing and prototyping Air-gapped environments","breadcrumbs":"Storage Backends » Use Cases","id":"1060","title":"Use Cases"},"1061":{"body":"Simple setup No network dependencies Fast local access Easy backup and migration","breadcrumbs":"Storage Backends » Advantages","id":"1061","title":"Advantages"},"1062":{"body":"Not suitable for distributed systems Limited by local disk space Single point of failure","breadcrumbs":"Storage Backends » Considerations","id":"1062","title":"Considerations"},"1063":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using filesystem storage # Documents are saved to jacs_data/documents/\ndoc = agent.create_document(json.dumps({ 'title': 'My Document'\n}))\n# Saved to: jacs_data/documents/{doc-id}/{version-id}.json","breadcrumbs":"Storage Backends » Example","id":"1063","title":"Example"},"1064":{"body":"Cloud object storage using Amazon S3.","breadcrumbs":"Storage Backends » AWS S3 Storage (aws)","id":"1064","title":"AWS S3 Storage (aws)"},"1065":{"body":"{ \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1065","title":"Configuration"},"1066":{"body":"export AWS_ACCESS_KEY_ID=\"your-access-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret-key\"\nexport AWS_REGION=\"us-east-1\"","breadcrumbs":"Storage Backends » Environment Variables","id":"1066","title":"Environment Variables"},"1067":{"body":"my-jacs-bucket/\n├── data/\n│ ├── agents/\n│ │ └── {agent-id}/\n│ │ └── {version-id}.json\n│ ├── documents/\n│ │ └── {document-id}/\n│ │ └── {version-id}.json\n│ └── files/\n│ └── {attachment-hash}","breadcrumbs":"Storage Backends » Bucket Structure","id":"1067","title":"Bucket Structure"},"1068":{"body":"Production deployments Distributed systems High availability requirements Large document volumes","breadcrumbs":"Storage Backends » Use Cases","id":"1068","title":"Use Cases"},"1069":{"body":"Scalable storage High durability (99.999999999%) Geographic redundancy Built-in versioning support","breadcrumbs":"Storage Backends » Advantages","id":"1069","title":"Advantages"},"107":{"body":"JACS supports several optional features for observability and integrations: [dependencies]\n# Basic library usage\njacs = \"0.3\" # With OpenTelemetry logging\njacs = { version = \"0.3\", features = [\"otlp-logs\"] } # With OpenTelemetry metrics\njacs = { version = \"0.3\", features = [\"otlp-metrics\"] } # With OpenTelemetry tracing\njacs = { version = \"0.3\", features = [\"otlp-tracing\"] } # With all observability features\njacs = { version = \"0.3\", features = [\"otlp-logs\", \"otlp-metrics\", \"otlp-tracing\"] }","breadcrumbs":"Installation » With Optional Features","id":"107","title":"With Optional Features"},"1070":{"body":"Requires AWS account Network latency Storage costs IAM configuration needed","breadcrumbs":"Storage Backends » Considerations","id":"1070","title":"Considerations"},"1071":{"body":"Minimum required permissions: { \"Version\": \"2012-10-17\", \"Statement\": [ { \"Effect\": \"Allow\", \"Action\": [ \"s3:GetObject\", \"s3:PutObject\", \"s3:DeleteObject\", \"s3:ListBucket\" ], \"Resource\": [ \"arn:aws:s3:::my-jacs-bucket\", \"arn:aws:s3:::my-jacs-bucket/*\" ] } ]\n}","breadcrumbs":"Storage Backends » IAM Policy","id":"1071","title":"IAM Policy"},"1072":{"body":"import jacs\nimport json\nimport os # Set AWS credentials\nos.environ['AWS_ACCESS_KEY_ID'] = 'your-key'\nos.environ['AWS_SECRET_ACCESS_KEY'] = 'your-secret'\nos.environ['AWS_REGION'] = 'us-east-1' agent = jacs.JacsAgent()\nagent.load('./jacs.s3.config.json') # Documents are saved to S3\ndoc = agent.create_document(json.dumps({ 'title': 'Cloud Document'\n}))","breadcrumbs":"Storage Backends » Example","id":"1072","title":"Example"},"1073":{"body":"Managed storage provided by HAI.","breadcrumbs":"Storage Backends » HAI Cloud Storage (hai)","id":"1073","title":"HAI Cloud Storage (hai)"},"1074":{"body":"{ \"jacs_default_storage\": \"hai\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1074","title":"Configuration"},"1075":{"body":"Managed infrastructure Built-in agent registry Cross-organization document sharing Integrated DNS verification","breadcrumbs":"Storage Backends » Features","id":"1075","title":"Features"},"1076":{"body":"Multi-agent ecosystems Cross-organization collaboration Managed deployments Integration with HAI services","breadcrumbs":"Storage Backends » Use Cases","id":"1076","title":"Use Cases"},"1077":{"body":"The database storage backend stores JACS documents in PostgreSQL, enabling JSONB queries, pagination, and agent-based lookups while preserving cryptographic signatures. This backend is behind a compile-time feature flag and requires the database Cargo feature to be enabled.","breadcrumbs":"Storage Backends » PostgreSQL Database Storage (database)","id":"1077","title":"PostgreSQL Database Storage (database)"},"1078":{"body":"# Build with database support\ncargo build --features database # Run tests with database support (requires Docker for testcontainers)\ncargo test --features database-tests","breadcrumbs":"Storage Backends » Compile-Time Setup","id":"1078","title":"Compile-Time Setup"},"1079":{"body":"{ \"jacs_default_storage\": \"database\"\n} Environment variables (12-Factor compliant): export JACS_DATABASE_URL=\"postgres://user:password@localhost:5432/jacs\"\nexport JACS_DATABASE_MAX_CONNECTIONS=10 # optional, default 10\nexport JACS_DATABASE_MIN_CONNECTIONS=1 # optional, default 1\nexport JACS_DATABASE_CONNECT_TIMEOUT_SECS=30 # optional, default 30","breadcrumbs":"Storage Backends » Configuration","id":"1079","title":"Configuration"},"108":{"body":"Feature Description cli Enables CLI binary build with clap and ratatui otlp-logs OpenTelemetry Protocol logging backend otlp-metrics OpenTelemetry Protocol metrics backend otlp-tracing OpenTelemetry Protocol distributed tracing observability-convenience Helper wrappers for metrics and logging mcp-server Model Context Protocol server integration surface","breadcrumbs":"Installation » Available Features","id":"108","title":"Available Features"},"1080":{"body":"JACS uses a TEXT + JSONB dual-column strategy: raw_contents (TEXT) : Stores the exact JSON bytes as-is. This is used when retrieving documents to preserve cryptographic signatures (PostgreSQL JSONB normalizes key ordering, which would break signatures). file_contents (JSONB) : Stores the same document as JSONB for efficient queries, field extraction, and indexing.","breadcrumbs":"Storage Backends » How It Works","id":"1080","title":"How It Works"},"1081":{"body":"CREATE TABLE jacs_document ( jacs_id TEXT NOT NULL, jacs_version TEXT NOT NULL, agent_id TEXT, jacs_type TEXT NOT NULL, raw_contents TEXT NOT NULL, file_contents JSONB NOT NULL, created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), PRIMARY KEY (jacs_id, jacs_version)\n);","breadcrumbs":"Storage Backends » Table Schema","id":"1081","title":"Table Schema"},"1082":{"body":"Documents are immutable once stored . New versions create new rows keyed by (jacs_id, jacs_version). There are no UPDATE operations on existing rows. Inserting a duplicate (jacs_id, jacs_version) is silently ignored (ON CONFLICT DO NOTHING).","breadcrumbs":"Storage Backends » Append-Only Model","id":"1082","title":"Append-Only Model"},"1083":{"body":"The database backend provides additional query methods beyond basic CRUD: Method Description query_by_type(type, limit, offset) Paginated queries by document type query_by_field(field, value, type, limit, offset) JSONB field queries count_by_type(type) Count documents by type get_versions(id) All versions of a document get_latest(id) Most recent version query_by_agent(agent_id, type, limit, offset) Documents by signing agent","breadcrumbs":"Storage Backends » Query Capabilities","id":"1083","title":"Query Capabilities"},"1084":{"body":"use jacs::storage::{DatabaseStorage, DatabaseDocumentTraits, StorageDocumentTraits}; // Create storage (requires tokio runtime)\nlet storage = DatabaseStorage::new( \"postgres://localhost/jacs\", Some(10), // max connections Some(1), // min connections Some(30), // timeout seconds\n)?; // Run migrations (creates table + indexes)\nstorage.run_migrations()?; // Store a document\nstorage.store_document(&doc)?; // Query by type with pagination\nlet commitments = storage.query_by_type(\"commitment\", 10, 0)?; // Query by JSONB field\nlet active = storage.query_by_field( \"jacsCommitmentStatus\", \"active\", Some(\"commitment\"), 10, 0\n)?; // Get latest version\nlet latest = storage.get_latest(\"some-document-id\")?;","breadcrumbs":"Storage Backends » Rust API Example","id":"1084","title":"Rust API Example"},"1085":{"body":"Even when using database storage, keys are always loaded from the filesystem or keyservers -- never from the database or configuration providers. The database stores only signed documents.","breadcrumbs":"Storage Backends » Security Note","id":"1085","title":"Security Note"},"1086":{"body":"Production deployments requiring complex queries Multi-agent systems with shared document visibility Applications needing pagination and aggregation Environments where JSONB indexing provides significant query performance","breadcrumbs":"Storage Backends » Use Cases","id":"1086","title":"Use Cases"},"1087":{"body":"Requires PostgreSQL 14+ Requires tokio runtime (not available in WASM) Compile-time feature flag (database) Network dependency on PostgreSQL server","breadcrumbs":"Storage Backends » Considerations","id":"1087","title":"Considerations"},"1088":{"body":"For testing and temporary operations, documents can be created without saving: # Create document without saving\ndoc = agent.create_document( json.dumps({'temp': 'data'}), no_save=True # Don't persist\n) const doc = agent.createDocument( JSON.stringify({ temp: 'data' }), null, // custom_schema null, // output_filename true // no_save = true\n);","breadcrumbs":"Storage Backends » In-Memory Storage","id":"1088","title":"In-Memory Storage"},"1089":{"body":"Scenario Recommended Backend Development fs Single server fs Complex queries needed database Multi-agent with shared queries database Cloud deployment aws High availability aws Multi-organization hai Testing In-memory (no_save)","breadcrumbs":"Storage Backends » Storage Selection Guide","id":"1089","title":"Storage Selection Guide"},"109":{"body":"JACS supports the following platforms: Platform Architecture Support Linux x86_64, aarch64 Full support macOS x86_64, aarch64 Full support Windows x86_64 Full support WebAssembly wasm32 Partial (no post-quantum crypto, limited storage)","breadcrumbs":"Installation » Platform Support","id":"109","title":"Platform Support"},"1090":{"body":"","breadcrumbs":"Storage Backends » File Storage","id":"1090","title":"File Storage"},"1091":{"body":"Files can be embedded directly in documents: doc = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n) The file contents are base64-encoded and stored in jacsFiles.","breadcrumbs":"Storage Backends » Embedded Files","id":"1091","title":"Embedded Files"},"1092":{"body":"Or reference files without embedding: doc = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=False\n) Only the file path and hash are stored. The file must be available when the document is accessed.","breadcrumbs":"Storage Backends » External Files","id":"1092","title":"External Files"},"1093":{"body":"","breadcrumbs":"Storage Backends » Data Migration","id":"1093","title":"Data Migration"},"1094":{"body":"import jacs\nimport json\nimport os # Load from filesystem\nfs_agent = jacs.JacsAgent()\nfs_agent.load('./jacs.fs.config.json') # Read all documents\n# (implementation depends on your document tracking) # Configure S3\ns3_agent = jacs.JacsAgent()\ns3_agent.load('./jacs.s3.config.json') # Re-create documents in S3\nfor doc_json in documents: doc = json.loads(doc_json) # Remove existing signatures for re-signing del doc['jacsSignature'] del doc['jacsSha256'] s3_agent.create_document(json.dumps(doc))","breadcrumbs":"Storage Backends » Filesystem to S3","id":"1094","title":"Filesystem to S3"},"1095":{"body":"For manual migration: # Export from filesystem\ntar -czf jacs_backup.tar.gz ./jacs_data # Import to new location\ntar -xzf jacs_backup.tar.gz -C /new/location","breadcrumbs":"Storage Backends » Export/Import","id":"1095","title":"Export/Import"},"1096":{"body":"","breadcrumbs":"Storage Backends » Backup and Recovery","id":"1096","title":"Backup and Recovery"},"1097":{"body":"# Regular backups\nrsync -av ./jacs_data/ /backup/jacs_data/ # Or with timestamp\ntar -czf jacs_backup_$(date +%Y%m%d).tar.gz ./jacs_data","breadcrumbs":"Storage Backends » Filesystem Backup","id":"1097","title":"Filesystem Backup"},"1098":{"body":"Enable S3 versioning for automatic backups: aws s3api put-bucket-versioning \\ --bucket my-jacs-bucket \\ --versioning-configuration Status=Enabled","breadcrumbs":"Storage Backends » S3 Backup","id":"1098","title":"S3 Backup"},"1099":{"body":"For disaster recovery with S3: aws s3api put-bucket-replication \\ --bucket my-jacs-bucket \\ --replication-configuration file://replication.json","breadcrumbs":"Storage Backends » Cross-Region Replication","id":"1099","title":"Cross-Region Replication"},"11":{"body":"JACS is ideal for scenarios where you need: Multi-agent systems where agents need to trust each other Task delegation with verifiable completion and approval Audit trails for AI decision-making processes Secure data exchange between AI systems Compliance requirements for AI system interactions Version control for AI-generated content and decisions","breadcrumbs":"Introduction » When to Use JACS","id":"11","title":"When to Use JACS"},"110":{"body":"When targeting WebAssembly, some features are unavailable: Post-quantum cryptographic algorithms (pq-dilithium) File system storage backend HTTP-based remote operations","breadcrumbs":"Installation » WebAssembly Notes","id":"110","title":"WebAssembly Notes"},"1100":{"body":"","breadcrumbs":"Storage Backends » Performance Optimization","id":"1100","title":"Performance Optimization"},"1101":{"body":"Use SSD storage Consider separate disk for jacs_data Enable filesystem caching","breadcrumbs":"Storage Backends » Filesystem","id":"1101","title":"Filesystem"},"1102":{"body":"Use regional endpoints Enable transfer acceleration for global access Consider S3 Intelligent-Tiering for cost optimization","breadcrumbs":"Storage Backends » S3","id":"1102","title":"S3"},"1103":{"body":"Implement application-level caching for frequently accessed documents: import functools @functools.lru_cache(maxsize=100)\ndef get_document(doc_id, version_id): return agent.get_document(f\"{doc_id}:{version_id}\")","breadcrumbs":"Storage Backends » Caching","id":"1103","title":"Caching"},"1104":{"body":"","breadcrumbs":"Storage Backends » Security Considerations","id":"1104","title":"Security Considerations"},"1105":{"body":"# Restrict permissions\nchmod 700 ./jacs_data\nchmod 600 ./jacs_data/**/*.json","breadcrumbs":"Storage Backends » Filesystem","id":"1105","title":"Filesystem"},"1106":{"body":"Enable encryption at rest (SSE-S3 or SSE-KMS) Use VPC endpoints for private access Enable access logging Configure bucket policies carefully { \"jacs_data_directory\": \"s3://my-jacs-bucket/data\", \"aws_s3_encryption\": \"AES256\"\n}","breadcrumbs":"Storage Backends » S3","id":"1106","title":"S3"},"1107":{"body":"Configuration - Storage configuration options Security Model - Storage security Quick Start - Initial setup","breadcrumbs":"Storage Backends » See Also","id":"1107","title":"See Also"},"1108":{"body":"JACS allows you to define custom document schemas that extend the base header schema, enabling type-safe, validated documents for your specific use cases.","breadcrumbs":"Custom Schemas » Custom Schemas","id":"1108","title":"Custom Schemas"},"1109":{"body":"Custom schemas: Inherit all JACS header fields (jacsId, jacsVersion, jacsSignature, etc.) Add domain-specific fields with validation Enable IDE autocompletion and type checking Ensure document consistency across your application","breadcrumbs":"Custom Schemas » Overview","id":"1109","title":"Overview"},"111":{"body":"After installation, initialize JACS: # Create configuration and agent in one step\njacs init This creates: ~/.jacs/jacs.config.json - Configuration file Cryptographic keys for your agent Initial agent document","breadcrumbs":"Installation » Configuration","id":"111","title":"Configuration"},"1110":{"body":"","breadcrumbs":"Custom Schemas » Creating a Custom Schema","id":"1110","title":"Creating a Custom Schema"},"1111":{"body":"Custom schemas extend the JACS header using allOf: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"description\": \"Invoice document with JACS signing\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0 }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"] } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"Custom Schemas » Basic Structure","id":"1111","title":"Basic Structure"},"1112":{"body":"Create the schema file // schemas/order.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://mycompany.com/schemas/order.schema.json\", \"title\": \"Order\", \"description\": \"E-commerce order document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"orderId\": { \"type\": \"string\", \"pattern\": \"^ORD-[0-9]{6}$\" }, \"customer\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"email\": { \"type\": \"string\", \"format\": \"email\" } }, \"required\": [\"name\", \"email\"] }, \"items\": { \"type\": \"array\", \"minItems\": 1, \"items\": { \"type\": \"object\", \"properties\": { \"sku\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"price\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"sku\", \"quantity\", \"price\"] } }, \"total\": { \"type\": \"number\", \"minimum\": 0 }, \"status\": { \"type\": \"string\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }, \"required\": [\"orderId\", \"customer\", \"items\", \"total\", \"status\"] } ]\n} Use the schema when creating documents import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') order = agent.create_document( json.dumps({ 'orderId': 'ORD-123456', 'customer': { 'name': 'Jane Smith', 'email': 'jane@example.com' }, 'items': [ {'sku': 'WIDGET-001', 'quantity': 2, 'price': 29.99} ], 'total': 59.98, 'status': 'pending' }), custom_schema='./schemas/order.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const order = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane Smith', email: 'jane@example.com' }, items: [ { sku: 'WIDGET-001', quantity: 2, price: 29.99 } ], total: 59.98, status: 'pending' }), './schemas/order.schema.json'\n);","breadcrumbs":"Custom Schemas » Step-by-Step Guide","id":"1112","title":"Step-by-Step Guide"},"1113":{"body":"","breadcrumbs":"Custom Schemas » Schema Best Practices","id":"1113","title":"Schema Best Practices"},"1114":{"body":"{ \"$id\": \"https://mycompany.com/schemas/v1/order.schema.json\"\n} Include version in the path for schema evolution.","breadcrumbs":"Custom Schemas » Use Meaningful IDs","id":"1114","title":"Use Meaningful IDs"},"1115":{"body":"{ \"properties\": { \"status\": { \"type\": \"string\", \"description\": \"Current order status in the fulfillment workflow\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }\n}","breadcrumbs":"Custom Schemas » Document Everything","id":"1115","title":"Document Everything"},"1116":{"body":"{ \"properties\": { \"email\": { \"type\": \"string\", \"format\": \"email\" }, \"phone\": { \"type\": \"string\", \"pattern\": \"^\\\\+?[1-9]\\\\d{1,14}$\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1, \"maximum\": 1000 } }\n}","breadcrumbs":"Custom Schemas » Use Appropriate Validation","id":"1116","title":"Use Appropriate Validation"},"1117":{"body":"{ \"properties\": { \"shipping\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } }, \"billing\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } } }\n}","breadcrumbs":"Custom Schemas » Group Related Fields","id":"1117","title":"Group Related Fields"},"1118":{"body":"","breadcrumbs":"Custom Schemas » Advanced Schema Features","id":"1118","title":"Advanced Schema Features"},"1119":{"body":"Different requirements based on field values: { \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\", \"enum\": [\"credit_card\", \"bank_transfer\", \"crypto\"] } } } ], \"if\": { \"properties\": { \"paymentMethod\": { \"const\": \"credit_card\" } } }, \"then\": { \"properties\": { \"cardLastFour\": { \"type\": \"string\", \"pattern\": \"^[0-9]{4}$\" } }, \"required\": [\"cardLastFour\"] }\n}","breadcrumbs":"Custom Schemas » Conditional Validation","id":"1119","title":"Conditional Validation"},"112":{"body":"Alternatively, create configuration and agent separately: # Create configuration only\njacs config create # Create agent with keys\njacs agent create --create-keys true","breadcrumbs":"Installation » Manual Configuration","id":"112","title":"Manual Configuration"},"1120":{"body":"{ \"$defs\": { \"address\": { \"type\": \"object\", \"properties\": { \"street\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } }, \"required\": [\"street\", \"city\", \"country\"] } }, \"properties\": { \"shippingAddress\": { \"$ref\": \"#/$defs/address\" }, \"billingAddress\": { \"$ref\": \"#/$defs/address\" } }\n}","breadcrumbs":"Custom Schemas » Reusable Definitions","id":"1120","title":"Reusable Definitions"},"1121":{"body":"{ \"properties\": { \"tags\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"minItems\": 1, \"maxItems\": 10, \"uniqueItems\": true } }\n}","breadcrumbs":"Custom Schemas » Array Constraints","id":"1121","title":"Array Constraints"},"1122":{"body":"For dynamic field names: { \"properties\": { \"metadata\": { \"type\": \"object\", \"patternProperties\": { \"^x-\": { \"type\": \"string\" } }, \"additionalProperties\": false } }\n}","breadcrumbs":"Custom Schemas » Pattern Properties","id":"1122","title":"Pattern Properties"},"1123":{"body":"","breadcrumbs":"Custom Schemas » Schema Inheritance","id":"1123","title":"Schema Inheritance"},"1124":{"body":"Create schema hierarchies: // schemas/base-transaction.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/base-transaction.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"transactionId\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"amount\": { \"type\": \"number\" } }, \"required\": [\"transactionId\", \"timestamp\", \"amount\"] } ]\n} // schemas/payment.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/payment.schema.json\", \"allOf\": [ { \"$ref\": \"https://example.com/schemas/base-transaction.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\" }, \"processorId\": { \"type\": \"string\" } }, \"required\": [\"paymentMethod\"] } ]\n}","breadcrumbs":"Custom Schemas » Extending Custom Schemas","id":"1124","title":"Extending Custom Schemas"},"1125":{"body":"","breadcrumbs":"Custom Schemas » Validation","id":"1125","title":"Validation"},"1126":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') try: # This will fail validation - missing required field doc = agent.create_document( json.dumps({ 'orderId': 'ORD-123456' # Missing: customer, items, total, status }), custom_schema='./schemas/order.schema.json' )\nexcept Exception as e: print(f\"Validation failed: {e}\")","breadcrumbs":"Custom Schemas » Python Validation","id":"1126","title":"Python Validation"},"1127":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); try { // This will fail - invalid enum value const doc = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane', email: 'jane@example.com' }, items: [{ sku: 'A', quantity: 1, price: 10 }], total: 10, status: 'invalid_status' // Not in enum }), './schemas/order.schema.json' );\n} catch (error) { console.error('Validation failed:', error.message);\n}","breadcrumbs":"Custom Schemas » Node.js Validation","id":"1127","title":"Node.js Validation"},"1128":{"body":"","breadcrumbs":"Custom Schemas » Example Schemas","id":"1128","title":"Example Schemas"},"1129":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://healthcare.example.com/schemas/medical-record.schema.json\", \"title\": \"Medical Record\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"patientId\": { \"type\": \"string\" }, \"recordType\": { \"type\": \"string\", \"enum\": [\"visit\", \"lab_result\", \"prescription\", \"diagnosis\"] }, \"provider\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"npi\": { \"type\": \"string\", \"pattern\": \"^[0-9]{10}$\" } } }, \"date\": { \"type\": \"string\", \"format\": \"date\" }, \"notes\": { \"type\": \"string\" }, \"confidential\": { \"type\": \"boolean\", \"default\": true } }, \"required\": [\"patientId\", \"recordType\", \"provider\", \"date\"] } ]\n}","breadcrumbs":"Custom Schemas » Medical Record","id":"1129","title":"Medical Record"},"113":{"body":"JACS respects the following environment variables: Variable Description Default JACS_CONFIG_PATH Path to configuration file ./jacs.config.json JACS_USE_SECURITY Enable/disable security features true JACS_DATA_DIRECTORY Directory for document storage ./jacs_data JACS_KEY_DIRECTORY Directory for cryptographic keys ./jacs_keys JACS_DEFAULT_STORAGE Storage backend (fs, memory) fs JACS_AGENT_KEY_ALGORITHM Key algorithm (ring-Ed25519, RSA-PSS, pq-dilithium) ring-Ed25519","breadcrumbs":"Installation » Environment Variables","id":"113","title":"Environment Variables"},"1130":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://legal.example.com/schemas/contract.schema.json\", \"title\": \"Legal Contract\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"contractNumber\": { \"type\": \"string\" }, \"parties\": { \"type\": \"array\", \"minItems\": 2, \"items\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"role\": { \"type\": \"string\" }, \"agentId\": { \"type\": \"string\", \"format\": \"uuid\" } } } }, \"effectiveDate\": { \"type\": \"string\", \"format\": \"date\" }, \"expirationDate\": { \"type\": \"string\", \"format\": \"date\" }, \"terms\": { \"type\": \"string\" }, \"jurisdiction\": { \"type\": \"string\" } }, \"required\": [\"contractNumber\", \"parties\", \"effectiveDate\", \"terms\"] } ]\n}","breadcrumbs":"Custom Schemas » Legal Contract","id":"1130","title":"Legal Contract"},"1131":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://iot.example.com/schemas/sensor-reading.schema.json\", \"title\": \"Sensor Reading\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"deviceId\": { \"type\": \"string\" }, \"sensorType\": { \"type\": \"string\", \"enum\": [\"temperature\", \"humidity\", \"pressure\", \"motion\"] }, \"value\": { \"type\": \"number\" }, \"unit\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"location\": { \"type\": \"object\", \"properties\": { \"latitude\": { \"type\": \"number\" }, \"longitude\": { \"type\": \"number\" } } } }, \"required\": [\"deviceId\", \"sensorType\", \"value\", \"timestamp\"] } ]\n}","breadcrumbs":"Custom Schemas » IoT Sensor Reading","id":"1131","title":"IoT Sensor Reading"},"1132":{"body":"","breadcrumbs":"Custom Schemas » Schema Versioning","id":"1132","title":"Schema Versioning"},"1133":{"body":"{ \"$id\": \"https://example.com/schemas/v1/order.schema.json\"\n}","breadcrumbs":"Custom Schemas » Version in Path","id":"1133","title":"Version in Path"},"1134":{"body":"{ \"properties\": { \"schemaVersion\": { \"type\": \"string\", \"const\": \"1.0.0\" } }\n}","breadcrumbs":"Custom Schemas » Version Field","id":"1134","title":"Version Field"},"1135":{"body":"Create new schema version Update application to support both versions Migrate existing documents Deprecate old version","breadcrumbs":"Custom Schemas » Migration Strategy","id":"1135","title":"Migration Strategy"},"1136":{"body":"JSON Schemas Overview - Built-in schemas Document Schema - Header fields Configuration - Schema configuration","breadcrumbs":"Custom Schemas » See Also","id":"1136","title":"See Also"},"1137":{"body":"This chapter covers testing strategies for applications that use JACS, including unit testing, integration testing, and mocking approaches.","breadcrumbs":"Testing » Testing","id":"1137","title":"Testing"},"1138":{"body":"","breadcrumbs":"Testing » Testing Fundamentals","id":"1138","title":"Testing Fundamentals"},"1139":{"body":"Create dedicated test configurations to isolate tests from production: // jacs.test.config.json\n{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./test_data\", \"jacs_key_directory\": \"./test_keys\", \"jacs_agent_private_key_filename\": \"test_private.pem\", \"jacs_agent_public_key_filename\": \"test_public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Testing » Test Agent Setup","id":"1139","title":"Test Agent Setup"},"114":{"body":"","breadcrumbs":"Installation » Troubleshooting","id":"114","title":"Troubleshooting"},"1140":{"body":"Set up test fixtures before running tests: Python (pytest) : import pytest\nimport jacs\nimport tempfile\nimport shutil @pytest.fixture\ndef test_agent(): \"\"\"Create a test agent with temporary directories.\"\"\" temp_dir = tempfile.mkdtemp() data_dir = f\"{temp_dir}/data\" key_dir = f\"{temp_dir}/keys\" # Initialize directories import os os.makedirs(data_dir) os.makedirs(key_dir) # Create test config config = { \"jacs_data_directory\": data_dir, \"jacs_key_directory\": key_dir, \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = f\"{temp_dir}/jacs.config.json\" with open(config_path, 'w') as f: import json json.dump(config, f) agent = jacs.JacsAgent() agent.load(config_path) yield agent # Cleanup shutil.rmtree(temp_dir) def test_create_document(test_agent): \"\"\"Test document creation.\"\"\" import json doc = test_agent.create_document(json.dumps({ 'title': 'Test Document' })) assert doc is not None parsed = json.loads(doc) assert 'jacsId' in parsed assert 'jacsSignature' in parsed Node.js (Jest) : import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Tests', () => { let agent; let tempDir; beforeAll(() => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; const configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); agent = new JacsAgent(); agent.load(configPath); }); afterAll(() => { // Cleanup fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', () => { const doc = agent.createDocument(JSON.stringify({ title: 'Test Document' })); const parsed = JSON.parse(doc); expect(parsed.jacsId).toBeDefined(); expect(parsed.jacsSignature).toBeDefined(); });\n});","breadcrumbs":"Testing » Test Fixtures","id":"1140","title":"Test Fixtures"},"1141":{"body":"","breadcrumbs":"Testing » Unit Testing","id":"1141","title":"Unit Testing"},"1142":{"body":"import pytest\nimport jacs\nimport json def test_document_verification(test_agent): \"\"\"Test that created documents verify correctly.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Test content' })) is_valid = test_agent.verify_document(doc) assert is_valid is True def test_document_tampering_detected(test_agent): \"\"\"Test that tampered documents fail verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Original content' })) # Tamper with the document parsed = json.loads(doc) parsed['content'] = 'Tampered content' tampered = json.dumps(parsed) is_valid = test_agent.verify_document(tampered) assert is_valid is False def test_signature_verification(test_agent): \"\"\"Test signature verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'data': 'test' })) is_valid = test_agent.verify_signature(doc) assert is_valid is True","breadcrumbs":"Testing » Testing Document Operations","id":"1142","title":"Testing Document Operations"},"1143":{"body":"def test_agreement_creation(test_agent): \"\"\"Test creating a document with agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Service Agreement' })) # Add agreement doc_with_agreement = test_agent.create_agreement( doc, ['agent-1-id', 'agent-2-id'], question='Do you agree to these terms?', context='Test agreement' ) parsed = json.loads(doc_with_agreement) assert 'jacsAgreement' in parsed assert len(parsed['jacsAgreement']['agentIDs']) == 2 def test_agreement_signing(test_agent): \"\"\"Test signing an agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Test' })) agent_json = test_agent.load('./jacs.test.config.json') agent_data = json.loads(agent_json) agent_id = agent_data['jacsId'] doc_with_agreement = test_agent.create_agreement( doc, [agent_id], question='Agree?' ) signed = test_agent.sign_agreement(doc_with_agreement) status_json = test_agent.check_agreement(signed) status = json.loads(status_json) assert status['complete'] is True","breadcrumbs":"Testing » Testing Agreements","id":"1143","title":"Testing Agreements"},"1144":{"body":"check_agreement() is intentionally strict: it should fail until all required signers have signed. Add explicit tests for each state: Unsigned agreement: must fail. Partially signed agreement: must still fail. Fully signed agreement: must pass with complete == true. This prevents accidental \"partial approval\" workflows in production.","breadcrumbs":"Testing » Agreement Completion Semantics (Strict)","id":"1144","title":"Agreement Completion Semantics (Strict)"},"1145":{"body":"For realistic interoperability tests, use two separate agents with: Separate key directories (agent1/keys, agent2/keys) Shared data directory (shared-data) so both public keys are locally resolvable Relative paths from a temporary test working directory Python (pytest) : def test_two_party_agreement_requires_both_signatures(tmp_path): import os import pytest import jacs.simple as simple (tmp_path / \"shared-data\").mkdir() (tmp_path / \"agent1\").mkdir() (tmp_path / \"agent2\").mkdir() original_cwd = os.getcwd() try: os.chdir(tmp_path) a1 = simple.create( name=\"agent-1\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent1/keys\", config_path=\"agent1/jacs.config.json\", ) a2 = simple.create( name=\"agent-2\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent2/keys\", config_path=\"agent2/jacs.config.json\", ) simple.load(\"agent1/jacs.config.json\") agreement = simple.create_agreement( {\"proposal\": \"two-party-approval\"}, [a1.agent_id, a2.agent_id], question=\"Approve?\", ) with pytest.raises(Exception): simple.check_agreement(agreement) signed_by_a1 = simple.sign_agreement(agreement) with pytest.raises(Exception): simple.check_agreement(signed_by_a1) simple.load(\"agent2/jacs.config.json\") signed_by_both = simple.sign_agreement(signed_by_a1) status = simple.check_agreement(signed_by_both) assert status.complete is True finally: os.chdir(original_cwd) Node.js (Mocha/Jest style) : const root = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-two-agent-'));\nconst originalCwd = process.cwd();\ntry { process.chdir(root); fs.mkdirSync('agent1', { recursive: true }); fs.mkdirSync('agent2', { recursive: true }); simpleA.create({ name: 'agent-a', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent1/keys', configPath: 'agent1/jacs.config.json' }); simpleB.create({ name: 'agent-b', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent2/keys', configPath: 'agent2/jacs.config.json' }); simpleA.load('agent1/jacs.config.json'); simpleB.load('agent2/jacs.config.json'); const infoA = simpleA.getAgentInfo(); const infoB = simpleB.getAgentInfo(); const agreement = simpleA.createAgreement( { proposal: 'two-party-approval' }, [infoA.agentId, infoB.agentId] ); expect(() => simpleA.checkAgreement(agreement)).to.throw(); const signedByA = simpleA.signAgreement(agreement); expect(() => simpleA.checkAgreement(signedByA)).to.throw(); const signedByBoth = simpleB.signAgreement(signedByA); const status = simpleB.checkAgreement(signedByBoth); expect(status.complete).to.equal(true);\n} finally { process.chdir(originalCwd); fs.rmSync(root, { recursive: true, force: true });\n}","breadcrumbs":"Testing » Two-Agent Agreement Harness (Separate Agents)","id":"1145","title":"Two-Agent Agreement Harness (Separate Agents)"},"1146":{"body":"def test_request_signing(test_agent): \"\"\"Test signing a request payload.\"\"\" payload = { 'method': 'tools/call', 'params': {'name': 'test_tool'} } signed = test_agent.sign_request(payload) assert signed is not None # Verify the signed request result = test_agent.verify_response(signed) assert result is not None assert 'payload' in result","breadcrumbs":"Testing » Testing Request/Response Signing","id":"1146","title":"Testing Request/Response Signing"},"1147":{"body":"","breadcrumbs":"Testing » Integration Testing","id":"1147","title":"Integration Testing"},"1148":{"body":"Python : import pytest\nimport asyncio\nfrom jacs.mcp import JACSMCPServer, JACSMCPClient\nfrom fastmcp import FastMCP @pytest.fixture\ndef mcp_server(test_agent): \"\"\"Create a test MCP server.\"\"\" mcp = FastMCP(\"Test Server\") @mcp.tool() def echo(text: str) -> str: return f\"Echo: {text}\" return JACSMCPServer(mcp) @pytest.mark.asyncio\nasync def test_mcp_tool_call(mcp_server, test_agent): \"\"\"Test calling an MCP tool with JACS authentication.\"\"\" # This would require setting up actual server/client connection # For unit testing, test the signing/verification separately pass Node.js : import { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport express from 'express';\nimport request from 'supertest'; describe('JACS Express Middleware', () => { let app; let agent; beforeAll(() => { app = express(); app.use('/api', express.text({ type: '*/*' })); app.use('/api', JACSExpressMiddleware({ configPath: './jacs.test.config.json' })); app.post('/api/echo', (req, res) => { res.send({ echo: req.jacsPayload }); }); agent = new JacsAgent(); agent.load('./jacs.test.config.json'); }); test('accepts valid JACS requests', async () => { const signedRequest = agent.signRequest({ message: 'Hello' }); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); }); test('rejects invalid requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Testing » Testing MCP Integration","id":"1148","title":"Testing MCP Integration"},"1149":{"body":"import pytest\nfrom fastapi import FastAPI\nfrom fastapi.testclient import TestClient\nimport jacs\nimport json app = FastAPI() @app.post(\"/api/document\")\nasync def create_doc(request_body: str): agent = jacs.JacsAgent() agent.load('./jacs.test.config.json') result = agent.verify_response(request_body) if result: # Process the verified payload return {\"status\": \"success\", \"payload\": result.get(\"payload\")} return {\"status\": \"error\"} @pytest.fixture\ndef client(): return TestClient(app) def test_endpoint_accepts_signed_request(client, test_agent): \"\"\"Test that endpoint accepts properly signed requests.\"\"\" signed = test_agent.sign_request({ 'action': 'create', 'data': {'title': 'Test'} }) response = client.post(\"/api/document\", content=signed) assert response.status_code == 200","breadcrumbs":"Testing » Testing HTTP Endpoints","id":"1149","title":"Testing HTTP Endpoints"},"115":{"body":"\"edition 2024 is required\" Update Rust to version 1.93 or later: rustup update stable Missing dependencies on Linux Install build essentials: # Debian/Ubuntu\nsudo apt-get install build-essential pkg-config libssl-dev # Fedora\nsudo dnf install gcc openssl-devel","breadcrumbs":"Installation » Build Errors","id":"115","title":"Build Errors"},"1150":{"body":"","breadcrumbs":"Testing » Mocking","id":"1150","title":"Mocking"},"1151":{"body":"Python : from unittest.mock import Mock, patch\nimport json def test_with_mocked_agent(): \"\"\"Test with a mocked JACS agent.\"\"\" mock_agent = Mock() # Mock create_document to return a fake signed document mock_agent.create_document.return_value = json.dumps({ 'jacsId': 'mock-id', 'jacsVersion': 'mock-version', 'content': 'test', 'jacsSignature': {'signature': 'mock-sig'} }) # Mock verify_document to always return True mock_agent.verify_document.return_value = True # Use the mock in your tests doc = mock_agent.create_document(json.dumps({'content': 'test'})) assert mock_agent.verify_document(doc) is True Node.js : // Mock for testing\nconst mockAgent = { createDocument: jest.fn().mockReturnValue(JSON.stringify({ jacsId: 'mock-id', jacsVersion: 'mock-version', content: 'test', jacsSignature: { signature: 'mock-sig' } })), verifyDocument: jest.fn().mockReturnValue(true), signRequest: jest.fn().mockImplementation((payload) => JSON.stringify({ payload, jacsSignature: { signature: 'mock' } }) ), verifyResponse: jest.fn().mockImplementation((response) => ({ payload: JSON.parse(response).payload }) )\n}; test('uses mocked agent', () => { const doc = mockAgent.createDocument(JSON.stringify({ test: true })); expect(mockAgent.createDocument).toHaveBeenCalled(); expect(mockAgent.verifyDocument(doc)).toBe(true);\n});","breadcrumbs":"Testing » Mocking JACS Agent","id":"1151","title":"Mocking JACS Agent"},"1152":{"body":"// Mock transport for MCP testing\nclass MockTransport { constructor() { this.messages = []; } send(message) { this.messages.push(message); } async receive() { return this.messages.shift(); }\n} test('MCP client with mock transport', async () => { const mockTransport = new MockTransport(); // Use mock transport in tests\n});","breadcrumbs":"Testing » Mocking MCP Transport","id":"1152","title":"Mocking MCP Transport"},"1153":{"body":"","breadcrumbs":"Testing » Test Coverage","id":"1153","title":"Test Coverage"},"1154":{"body":"For Rust coverage, we recommend cargo-llvm-cov for its cross-platform support and accuracy with cryptographic code. Installation: cargo install cargo-llvm-cov Running coverage: # Print coverage summary to stdout\ncargo llvm-cov # Generate and open HTML report in browser\ncargo llvm-cov --open # With specific features enabled\ncargo llvm-cov --features cli # Export LCOV format for CI integration\ncargo llvm-cov --lcov --output-path lcov.info Why cargo-llvm-cov? Factor cargo-llvm-cov tarpaulin Platform support Linux, macOS, Windows Linux primarily Accuracy LLVM source-based (highly accurate) Ptrace-based (some inaccuracies) Coverage types Line, region, branch Line primarily For CI integration, export to LCOV format and upload to Codecov or similar services.","breadcrumbs":"Testing » Rust Coverage","id":"1154","title":"Rust Coverage"},"1155":{"body":"# Run tests with coverage\npytest --cov=myapp --cov-report=html tests/ # View coverage report\nopen htmlcov/index.html","breadcrumbs":"Testing » Python Coverage","id":"1155","title":"Python Coverage"},"1156":{"body":"# Run tests with coverage\nnpm test -- --coverage # Or with Jest directly\njest --coverage","breadcrumbs":"Testing » Node.js Coverage","id":"1156","title":"Node.js Coverage"},"1157":{"body":"","breadcrumbs":"Testing » CI/CD Integration","id":"1157","title":"CI/CD Integration"},"1158":{"body":"# .github/workflows/test.yml\nname: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install dependencies run: npm install - name: Generate test keys run: | mkdir -p test_keys test_data # Generate test keys (implementation depends on your setup) - name: Run tests run: npm test - name: Upload coverage uses: codecov/codecov-action@v3","breadcrumbs":"Testing » GitHub Actions","id":"1158","title":"GitHub Actions"},"1159":{"body":"# Set test environment\nexport JACS_TEST_MODE=1\nexport JACS_TEST_CONFIG=./jacs.test.config.json","breadcrumbs":"Testing » Test Environment Variables","id":"1159","title":"Test Environment Variables"},"116":{"body":"\"Configuration file not found\" Run jacs init or set JACS_CONFIG_PATH environment variable. \"Key directory does not exist\" Create the key directory or run jacs init: mkdir -p ./jacs_keys \"Permission denied\" Ensure you have write permissions to the data and key directories.","breadcrumbs":"Installation » Runtime Errors","id":"116","title":"Runtime Errors"},"1160":{"body":"For Rust tests that modify global state (environment variables, file system, etc.), use RAII guards to ensure cleanup even on panic. This pattern is essential for test isolation and reliability.","breadcrumbs":"Testing » RAII Test Fixtures (Rust)","id":"1160","title":"RAII Test Fixtures (Rust)"},"1161":{"body":"The JACS codebase uses a TrustTestGuard pattern for tests that modify the HOME environment variable: use std::env;\nuse tempfile::TempDir; /// RAII guard for test isolation that ensures HOME is restored even on panic.\nstruct TrustTestGuard { _temp_dir: TempDir, original_home: Option,\n} impl TrustTestGuard { fn new() -> Self { // Save original HOME before modifying let original_home = env::var(\"HOME\").ok(); let temp_dir = TempDir::new().expect(\"Failed to create temp directory\"); // SAFETY: Only used in #[serial] tests - no concurrent access unsafe { env::set_var(\"HOME\", temp_dir.path().to_str().unwrap()); } Self { _temp_dir: temp_dir, original_home, } }\n} impl Drop for TrustTestGuard { fn drop(&mut self) { // Restore original HOME even during panic unwinding unsafe { match &self.original_home { Some(home) => env::set_var(\"HOME\", home), None => env::remove_var(\"HOME\"), } } }\n} // Usage in tests:\n#[test]\n#[serial] // Use serial_test crate to prevent parallel execution\nfn test_with_isolated_home() { let _guard = TrustTestGuard::new(); // Setup // Test code here - HOME points to temp directory // Guard automatically restores HOME on drop, even if test panics\n} Key benefits: Panic safety : Cleanup runs even if the test panics No manual cleanup : Drop trait handles restoration automatically Environment isolation : Each test gets a fresh temporary directory Composable : Multiple guards can be combined for complex setups","breadcrumbs":"Testing » TrustTestGuard Pattern","id":"1161","title":"TrustTestGuard Pattern"},"1162":{"body":"For cryptographic code, property-based testing helps verify invariants that hold across many random inputs. We recommend proptest for Rust.","breadcrumbs":"Testing » Property-Based Testing","id":"1162","title":"Property-Based Testing"},"1163":{"body":"Round-trip : Sign then verify should always succeed Tamper detection : Modified content should fail verification Key independence : Different keys produce different signatures use proptest::prelude::*; proptest! { #[test] fn signature_roundtrip(content in \".*\") { let signed = sign_content(&content)?; prop_assert!(verify_signature(&signed).is_ok()); } #[test] fn tamper_detection(content in \".*\", tamper_pos in 0usize..1000) { let signed = sign_content(&content)?; let tampered = tamper_at_position(&signed, tamper_pos); prop_assert!(verify_signature(&tampered).is_err()); }\n}","breadcrumbs":"Testing » Key Properties to Test","id":"1163","title":"Key Properties to Test"},"1164":{"body":"Fuzz testing is recommended for parsing and decoding functions to discover edge cases and potential security issues.","breadcrumbs":"Testing » Fuzzing","id":"1164","title":"Fuzzing"},"1165":{"body":"# Install\ncargo install cargo-fuzz # Create a fuzz target\ncargo fuzz init\ncargo fuzz add base64_decode # Run fuzzing\ncargo +nightly fuzz run base64_decode","breadcrumbs":"Testing » Recommended Tool: cargo-fuzz","id":"1165","title":"Recommended Tool: cargo-fuzz"},"1166":{"body":"Base64 decoding - Handles untrusted input from signatures Agent JSON parsing - Complex nested structures Document validation - Schema compliance checking Timestamp parsing - Date/time format handling Fuzzing documentation will be expanded as fuzz targets are added to the JACS test suite.","breadcrumbs":"Testing » Priority Fuzz Targets for JACS","id":"1166","title":"Priority Fuzz Targets for JACS"},"1167":{"body":"","breadcrumbs":"Testing » Best Practices","id":"1167","title":"Best Practices"},"1168":{"body":"Use separate test configurations Create temporary directories for each test run Clean up after tests (use RAII guards in Rust)","breadcrumbs":"Testing » 1. Isolate Tests","id":"1168","title":"1. Isolate Tests"},"1169":{"body":"def test_empty_document(): \"\"\"Test handling of empty documents.\"\"\" with pytest.raises(Exception): test_agent.create_document('') def test_invalid_json(): \"\"\"Test handling of invalid JSON.\"\"\" with pytest.raises(Exception): test_agent.create_document('not json') def test_large_document(): \"\"\"Test handling of large documents.\"\"\" large_content = 'x' * 1000000 doc = test_agent.create_document(json.dumps({ 'content': large_content })) assert doc is not None","breadcrumbs":"Testing » 2. Test Edge Cases","id":"1169","title":"2. Test Edge Cases"},"117":{"body":"CLI Usage - Learn CLI commands Creating an Agent - Create your first agent Rust Library API - Use JACS as a library","breadcrumbs":"Installation » Next Steps","id":"117","title":"Next Steps"},"1170":{"body":"def test_signature_changes_with_content(): \"\"\"Verify different content produces different signatures.\"\"\" doc1 = test_agent.create_document(json.dumps({'a': 1})) doc2 = test_agent.create_document(json.dumps({'a': 2})) sig1 = json.loads(doc1)['jacsSignature']['signature'] sig2 = json.loads(doc2)['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Testing » 3. Test Security Properties","id":"1170","title":"3. Test Security Properties"},"1171":{"body":"def test_verify_invalid_signature(): \"\"\"Test that invalid signatures are rejected.\"\"\" doc = test_agent.create_document(json.dumps({'data': 'test'})) parsed = json.loads(doc) # Corrupt the signature parsed['jacsSignature']['signature'] = 'invalid' corrupted = json.dumps(parsed) assert test_agent.verify_document(corrupted) is False","breadcrumbs":"Testing » 4. Test Error Handling","id":"1171","title":"4. Test Error Handling"},"1172":{"body":"Python API Reference - API documentation Node.js API Reference - API documentation Security Model - Security testing considerations","breadcrumbs":"Testing » See Also","id":"1172","title":"See Also"},"1173":{"body":"JACS provides comprehensive integration with the Model Context Protocol (MCP) , enabling cryptographically signed and verified communication between AI agents and MCP servers.","breadcrumbs":"Model Context Protocol (MCP) » Model Context Protocol (MCP)","id":"1173","title":"Model Context Protocol (MCP)"},"1174":{"body":"Model Context Protocol is an open standard created by Anthropic for AI models to securely access external tools, data, and services. MCP defines: Tools : Functions that AI models can call Resources : Data sources that models can read Prompts : Pre-defined prompt templates Transports : Communication channels (STDIO, SSE, WebSocket)","breadcrumbs":"Model Context Protocol (MCP) » What is MCP?","id":"1174","title":"What is MCP?"},"1175":{"body":"JACS enhances MCP by adding a security layer that standard MCP lacks: Feature Standard MCP JACS MCP Message Signing No Yes Identity Verification No Yes Tamper Detection No Yes Audit Trail No Yes Non-Repudiation No Yes This makes JACS MCP suitable for: Multi-agent systems requiring trust Financial and legal AI applications Healthcare AI systems Enterprise deployments Any scenario where message authenticity matters","breadcrumbs":"Model Context Protocol (MCP) » Why JACS + MCP?","id":"1175","title":"Why JACS + MCP?"},"1176":{"body":"JACS uses a transport proxy pattern that wraps any MCP transport with cryptographic signing and verification: ┌─────────────────────────────────────────────────────────────┐\n│ MCP Application │\n├─────────────────────────────────────────────────────────────┤\n│ MCP SDK │\n├─────────────────────────────────────────────────────────────┤\n│ JACS Transport Proxy │\n│ ┌─────────────┐ ┌──────────────┐ │\n│ │ Outgoing: │ │ Incoming: │ │\n│ │ signRequest │ │ verifyResp │ │\n│ └─────────────┘ └──────────────┘ │\n├─────────────────────────────────────────────────────────────┤\n│ Underlying Transport │\n│ (STDIO / SSE / WebSocket) │\n└─────────────────────────────────────────────────────────────┘","breadcrumbs":"Model Context Protocol (MCP) » Architecture","id":"1176","title":"Architecture"},"1177":{"body":"Outgoing Messages : The proxy intercepts JSON-RPC messages and signs them with the agent's private key Incoming Messages : The proxy verifies signatures before passing messages to the application Graceful Fallback : If verification fails, messages can be passed through as plain JSON for interoperability","breadcrumbs":"Model Context Protocol (MCP) » How It Works","id":"1177","title":"How It Works"},"1178":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Quick Start","id":"1178","title":"Quick Start"},"1179":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; // Create transport with JACS encryption\nconst baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); // Create MCP server\nconst server = new McpServer({ name: \"my-secure-server\", version: \"1.0.0\"\n}); // Register tools (standard MCP API)\nserver.tool(\"add\", { a: z.number(), b: z.number()\n}, async ({ a, b }) => { return { content: [{ type: \"text\", text: `${a + b}` }] };\n}); // Connect with JACS encryption\nawait server.connect(secureTransport);","breadcrumbs":"Model Context Protocol (MCP) » Node.js","id":"1179","title":"Node.js"},"118":{"body":"The JACS CLI provides a command-line interface for managing agents, documents, tasks, and agreements.","breadcrumbs":"CLI Usage » CLI Usage","id":"118","title":"CLI Usage"},"1180":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Create FastMCP server with JACS authentication\nmcp = JACSMCPServer(FastMCP(\"Secure Server\")) @mcp.tool()\ndef add(a: int, b: int) -> str: \"\"\"Add two numbers\"\"\" return str(a + b) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Model Context Protocol (MCP) » Python","id":"1180","title":"Python"},"1181":{"body":"JACS provides native MCP integration for both major platforms:","breadcrumbs":"Model Context Protocol (MCP) » Language Support","id":"1181","title":"Language Support"},"1182":{"body":"The Node.js integration uses a transport proxy pattern that works with any MCP transport: STDIO : For CLI tools and subprocess communication SSE : For web-based servers WebSocket : For bidirectional streaming Key classes: JACSTransportProxy - Wraps any transport with signing/verification createJACSTransportProxy() - Factory function See Node.js MCP Integration for complete documentation.","breadcrumbs":"Model Context Protocol (MCP) » Node.js (@hai.ai/jacs)","id":"1182","title":"Node.js (@hai.ai/jacs)"},"1183":{"body":"The Python integration uses middleware wrappers for FastMCP: JACSMCPServer - Wraps FastMCP servers with authentication JACSMCPClient - Wraps FastMCP clients with signing Key classes: JACSMCPServer - Server wrapper with JACS middleware JACSMCPClient - Client wrapper with interceptors See Python MCP Integration for complete documentation.","breadcrumbs":"Model Context Protocol (MCP) » Python (jacspy)","id":"1183","title":"Python (jacspy)"},"1184":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Message Flow","id":"1184","title":"Message Flow"},"1185":{"body":"When a client calls a tool on a JACS-enabled MCP server: Client Server │ │ │ 1. Create JSON-RPC request │ │ 2. Sign with signRequest() │ │ ──────────────────────────> │ │ │ 3. Verify with verifyRequest() │ │ 4. Execute tool │ │ 5. Sign response with signResponse() │ <────────────────────────── │ │ 6. Verify with verifyResponse() │ │ 7. Extract payload │","breadcrumbs":"Model Context Protocol (MCP) » Tool Call Example","id":"1185","title":"Tool Call Example"},"1186":{"body":"A JACS-signed MCP message contains: { \"jacsId\": \"unique-document-id\", \"jacsVersion\": \"version-uuid\", \"jacsSignature\": { \"agentID\": \"signing-agent-id\", \"agentVersion\": \"agent-version\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\" }, \"jacsSha256\": \"content-hash\", \"payload\": { \"jsonrpc\": \"2.0\", \"method\": \"tools/call\", \"params\": { \"name\": \"add\", \"arguments\": { \"a\": 5, \"b\": 3 } }, \"id\": 1 }\n}","breadcrumbs":"Model Context Protocol (MCP) » Signed Message Structure","id":"1186","title":"Signed Message Structure"},"1187":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Configuration","id":"1187","title":"Configuration"},"1188":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"server-agent-id:version\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Model Context Protocol (MCP) » Server Configuration","id":"1188","title":"Server Configuration"},"1189":{"body":"Each MCP client needs its own JACS agent identity: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"client-agent-id:version\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Model Context Protocol (MCP) » Client Configuration","id":"1189","title":"Client Configuration"},"119":{"body":"# General help\njacs --help # Command-specific help\njacs agent --help\njacs document --help\njacs task --help","breadcrumbs":"CLI Usage » Getting Help","id":"119","title":"Getting Help"},"1190":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Transports","id":"1190","title":"Transports"},"1191":{"body":"Best for CLI tools and subprocess communication: // Node.js\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\"; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); Important : Debug logging goes to stderr to keep stdout clean for JSON-RPC.","breadcrumbs":"Model Context Protocol (MCP) » STDIO","id":"1191","title":"STDIO"},"1192":{"body":"For web-based MCP servers: # Python with FastMCP\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP mcp = JACSMCPServer(FastMCP(\"Web Server\"))\napp = mcp.sse_app() # Returns ASGI app with JACS middleware // Node.js with Express\nimport { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport express from 'express'; const app = express();\napp.get('/sse', (req, res) => { const baseTransport = new SSEServerTransport('/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\" ); server.connect(secureTransport);\n});","breadcrumbs":"Model Context Protocol (MCP) » Server-Sent Events (SSE)","id":"1192","title":"Server-Sent Events (SSE)"},"1193":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Security Model","id":"1193","title":"Security Model"},"1194":{"body":"CRITICAL GUIDANCE FOR AI AGENTS AND DEVELOPERS Signing a document or message with JACS is a sacred, irreversible act . When an agent signs: Permanent Commitment : The signature creates permanent cryptographic proof that the signer attested to the content. This proof exists forever and can be verified by anyone. Non-Repudiation : The signer cannot later deny having signed. The signature is mathematically bound to their private key. Accountability : The signer is accountable for the content they signed. In multi-agent systems, signatures establish trust chains and responsibility. Irreversibility : There is no \"unsign\" operation. Once signed, the commitment exists permanently. Before signing any document, message, or agreement: Read and understand the complete content Verify the content represents your actual intent Confirm you have authority to make this commitment Understand the implications of your signature For AI agents : Do not sign automatically or without verification. Signing carelessly can: Create binding commitments you didn't intend Establish false audit trails Damage trust relationships with other agents Create legal or ethical liability For MCP tool implementations : When exposing signing capabilities as tools, include appropriate warnings and consider requiring explicit confirmation.","breadcrumbs":"Model Context Protocol (MCP) » Signing is Sacred","id":"1194","title":"Signing is Sacred"},"1195":{"body":"All JSON-RPC requests and responses Tool calls and results Resource requests and data Prompt requests and templates","breadcrumbs":"Model Context Protocol (MCP) » What Gets Signed","id":"1195","title":"What Gets Signed"},"1196":{"body":"Agent identity (agentID) Message integrity (jacsSha256) Signature validity (jacsSignature) Optional: DNS-based identity verification","breadcrumbs":"Model Context Protocol (MCP) » What Gets Verified","id":"1196","title":"What Gets Verified"},"1197":{"body":"For interoperability with non-JACS MCP systems, the proxy can fall back to plain JSON: Try to verify as JACS artifact If verification fails, parse as plain JSON Pass clean message to application To enforce JACS-only communication, implement custom validation in your tools.","breadcrumbs":"Model Context Protocol (MCP) » Passthrough Mode","id":"1197","title":"Passthrough Mode"},"1198":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Debugging","id":"1198","title":"Debugging"},"1199":{"body":"# Node.js\nexport JACS_MCP_DEBUG=true # Python\nimport logging\nlogging.basicConfig(level=logging.DEBUG)","breadcrumbs":"Model Context Protocol (MCP) » Enable Debug Logging","id":"1199","title":"Enable Debug Logging"},"12":{"body":"","breadcrumbs":"Introduction » Why JACS?","id":"12","title":"Why JACS?"},"120":{"body":"Command Description jacs init Initialize JACS (create config and agent with keys) jacs version Print version information jacs config Manage configuration jacs agent Manage agents jacs document Manage documents jacs task Manage tasks","breadcrumbs":"CLI Usage » Commands Overview","id":"120","title":"Commands Overview"},"1200":{"body":"Issue Cause Solution \"JACS not operational\" Config path incorrect Verify config file path Verification failures Incompatible keys Ensure matching key algorithms Empty responses Null value handling Check message serialization Connection timeouts Network issues Verify server is running","breadcrumbs":"Model Context Protocol (MCP) » Common Issues","id":"1200","title":"Common Issues"},"1201":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Best Practices","id":"1201","title":"Best Practices"},"1202":{"body":"project/\n├── server/\n│ ├── jacs.config.json\n│ └── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── client/ ├── jacs.config.json └── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Model Context Protocol (MCP) » 1. Separate Keys for Server and Client","id":"1202","title":"1. Separate Keys for Server and Client"},"1203":{"body":"# Use HTTPS for SSE\nclient = JACSMCPClient(\"https://server.example.com/sse\")","breadcrumbs":"Model Context Protocol (MCP) » 2. Use TLS for Network Transports","id":"1203","title":"2. Use TLS for Network Transports"},"1204":{"body":"Update agent versions when rotating keys: { \"jacs_agent_id_and_version\": \"my-agent:v2\"\n}","breadcrumbs":"Model Context Protocol (MCP) » 3. Implement Key Rotation","id":"1204","title":"3. Implement Key Rotation"},"1205":{"body":"# Production logging setup\nimport logging logging.getLogger(\"jacs\").setLevel(logging.INFO)\nlogging.getLogger(\"jacs.security\").setLevel(logging.WARNING)","breadcrumbs":"Model Context Protocol (MCP) » 4. Log Security Events","id":"1205","title":"4. Log Security Events"},"1206":{"body":"A complete example with multiple JACS-authenticated agents: ┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐\n│ Agent A │ │ MCP Server │ │ Agent B │\n│ (Data Analyst) │────>│ (Tool Provider) │<────│ (Report Writer) │\n│ │ │ │ │ │\n│ Signs requests │ │ Verifies both │ │ Signs requests │\n│ Verifies resps │ │ Signs responses │ │ Verifies resps │\n└──────────────────┘ └──────────────────┘ └──────────────────┘ Each agent has its own: JACS agent ID and version Private/public key pair Configuration file The MCP server verifies requests from both agents and signs all responses.","breadcrumbs":"Model Context Protocol (MCP) » Example: Multi-Agent System","id":"1206","title":"Example: Multi-Agent System"},"1207":{"body":"The jacs-mcp server provides built-in tools for agent operations:","breadcrumbs":"Model Context Protocol (MCP) » HAI MCP Server Tools","id":"1207","title":"HAI MCP Server Tools"},"1208":{"body":"Tool Description fetch_agent_key Fetch a public key from HAI's key distribution service register_agent Register the local agent with HAI (requires JACS_MCP_ALLOW_REGISTRATION=true) verify_agent Verify another agent's attestation level check_agent_status Check registration status with HAI unregister_agent Unregister an agent from HAI","breadcrumbs":"Model Context Protocol (MCP) » Identity & Registration Tools","id":"1208","title":"Identity & Registration Tools"},"1209":{"body":"These tools allow agents to sign, verify, and manage state documents (memory files, skills, plans, configs, hooks, or any document): Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document's signature jacs_load_state Load an agent state document by key jacs_update_state Update and re-sign an agent state document jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state All documents are stored within the JACS data directory for security. Use state_type: \"other\" for general-purpose signing of any document. See Agent State Schema for full documentation.","breadcrumbs":"Model Context Protocol (MCP) » Agent State Tools","id":"1209","title":"Agent State Tools"},"121":{"body":"","breadcrumbs":"CLI Usage » Initialization","id":"121","title":"Initialization"},"1210":{"body":"Node.js MCP Integration - Node.js specific details Python MCP Integration - Python specific details Security Model - JACS security architecture Cryptographic Algorithms - Signing algorithms Testing - Testing MCP integrations","breadcrumbs":"Model Context Protocol (MCP) » See Also","id":"1210","title":"See Also"},"1211":{"body":"This guide describes how JACS interoperates with Agent-to-Agent (A2A) systems in real deployments.","breadcrumbs":"A2A Interoperability » A2A Interoperability","id":"1211","title":"A2A Interoperability"},"1212":{"body":"JACS adds cryptographic provenance to A2A artifacts: Signed artifact envelopes (a2a-task, a2a-message, etc.) Verifiable signer identity via public key resolution Chain-of-custody support through parent signatures Well-known discovery documents for external verifiers","breadcrumbs":"A2A Interoperability » What JACS Adds","id":"1212","title":"What JACS Adds"},"1213":{"body":"JACS A2A integration currently targets the v0.4.0 Agent Card shape used in this repository's Rust, Python, and Node bindings. Required well-known documents: /.well-known/agent-card.json /.well-known/jwks.json /.well-known/jacs-agent.json /.well-known/jacs-pubkey.json","breadcrumbs":"A2A Interoperability » Interoperability Contract","id":"1213","title":"Interoperability Contract"},"1214":{"body":"When verifying foreign-agent A2A artifacts, JACS resolves keys using JACS_KEY_RESOLUTION order: local: trusted local key cache dns: identity validation only (does not return key bytes) hai: remote key retrieval from HAI key service If a key is found, JACS performs full signature verification and returns a verified status. If no key is found, verification is explicitly marked unverified (not silently accepted).","breadcrumbs":"A2A Interoperability » Verification Model","id":"1214","title":"Verification Model"},"1215":{"body":"Use environment variables for deploy-time behavior: export JACS_PRIVATE_KEY_PASSWORD=\"your-strong-password\"\nexport JACS_KEY_RESOLUTION=\"local,hai\"\nexport HAI_KEYS_BASE_URL=\"https://keys.hai.ai\" For offline/air-gapped operation: export JACS_KEY_RESOLUTION=\"local\"","breadcrumbs":"A2A Interoperability » 12-Factor Runtime Configuration","id":"1215","title":"12-Factor Runtime Configuration"},"1216":{"body":"use jacs::a2a::provenance::{wrap_artifact_with_provenance, verify_wrapped_artifact};\nuse serde_json::json; let wrapped = wrap_artifact_with_provenance( &mut agent, json!({\"taskId\": \"task-123\", \"operation\": \"classify\"}), \"task\", None,\n)?; let result = verify_wrapped_artifact(&agent, &wrapped)?;\nassert!(result.valid);","breadcrumbs":"A2A Interoperability » Rust Example","id":"1216","title":"Rust Example"},"1217":{"body":"from jacs.a2a import JACSA2AIntegration a2a = JACSA2AIntegration(\"jacs.config.json\")\nagent_card = a2a.export_agent_card(agent_data)\ndocs = a2a.generate_well_known_documents( agent_card=agent_card, jws_signature=\"...\", public_key_b64=\"...\", agent_data={\"jacsId\": \"...\", \"jacsVersion\": \"...\", \"keyAlgorithm\": \"RSA-PSS\"},\n) assert \"/.well-known/jwks.json\" in docs","breadcrumbs":"A2A Interoperability » Python Example","id":"1217","title":"Python Example"},"1218":{"body":"const { JACSA2AIntegration } = require('@hai.ai/jacs/a2a'); const a2a = new JACSA2AIntegration('./jacs.config.json');\nconst wrapped = a2a.wrapArtifactWithProvenance( { taskId: 'task-123', operation: 'classify' }, 'task'\n); const result = a2a.verifyWrappedArtifact(wrapped);\nconsole.log(result.valid, result.parentSignaturesValid);","breadcrumbs":"A2A Interoperability » Node.js Example","id":"1218","title":"Node.js Example"},"1219":{"body":"Before merging A2A changes, ensure: Rust, Python, and Node A2A tests all pass. Foreign-signature verification is covered by tests (resolved and unresolved key paths). Documentation snippets match package names and executable APIs. Well-known docs include jwks.json and match output from all bindings.","breadcrumbs":"A2A Interoperability » DevEx Expectations","id":"1219","title":"DevEx Expectations"},"122":{"body":"# Initialize everything in one step\njacs init This command: Creates a configuration file (jacs.config.json) Generates cryptographic keys Creates an initial agent document","breadcrumbs":"CLI Usage » Quick Start","id":"122","title":"Quick Start"},"1220":{"body":"Unverified foreign signatures: no signer key available from configured resolution order. Invalid signatures: signature bytes, signer key, or signed payload fields do not match. Missing jwks.json: ensure you are using current A2A helper APIs in your binding.","breadcrumbs":"A2A Interoperability » Troubleshooting","id":"1220","title":"Troubleshooting"},"1221":{"body":"OpenClaw is a personal AI assistant platform. This chapter covers integrating JACS with OpenClaw to enable cryptographically signed agent-to-agent communication.","breadcrumbs":"OpenClaw » OpenClaw Integration","id":"1221","title":"OpenClaw Integration"},"1222":{"body":"The JACS OpenClaw plugin enables: Bootstrap JACS identity via openclaw plugin setup jacs Securely store cryptographic keys using OpenClaw's configuration system Sign and verify all agent communications with post-quantum cryptographic provenance Publish agent identity via .well-known endpoints P2P agent verification without requiring a central registry","breadcrumbs":"OpenClaw » Overview","id":"1222","title":"Overview"},"1223":{"body":"# Install the JACS plugin for OpenClaw\nopenclaw plugins install @openclaw/jacs","breadcrumbs":"OpenClaw » Installation","id":"1223","title":"Installation"},"1224":{"body":"","breadcrumbs":"OpenClaw » Setup","id":"1224","title":"Setup"},"1225":{"body":"# Interactive setup wizard\nopenclaw jacs init This will: Select a key algorithm (pq2025/dilithium/rsa/ecdsa) Generate a cryptographic key pair Create an agent identity Store keys in ~/.openclaw/jacs_keys/","breadcrumbs":"OpenClaw » Initialize JACS Identity","id":"1225","title":"Initialize JACS Identity"},"1226":{"body":"The plugin configuration is stored in ~/.openclaw/openclaw.json: { \"plugins\": { \"entries\": { \"jacs\": { \"enabled\": true, \"config\": { \"keyAlgorithm\": \"pq2025\", \"autoSign\": false, \"autoVerify\": false, \"agentId\": \"89fb9d88-6990-420f-8df9-252ccdfdfd3d\", \"agentName\": \"My OpenClaw Agent\", \"agentDescription\": \"Personal AI assistant with JACS identity\" } } } }\n}","breadcrumbs":"OpenClaw » Configuration","id":"1226","title":"Configuration"},"1227":{"body":"Option Type Default Description keyAlgorithm string pq2025 Signing algorithm (pq2025, pq-dilithium, rsa, ecdsa) autoSign boolean false Automatically sign outbound messages autoVerify boolean false Automatically verify inbound JACS-signed messages agentName string - Human-readable agent name agentDescription string - Agent description for A2A discovery agentDomain string - Domain for agent identity (DNSSEC validated)","breadcrumbs":"OpenClaw » Configuration Options","id":"1227","title":"Configuration Options"},"1228":{"body":"~/.openclaw/\n├── openclaw.json # Plugin config (non-sensitive)\n├── jacs/ # JACS data directory\n│ ├── jacs.config.json # JACS configuration\n│ └── agent/ # Agent documents\n└── jacs_keys/ # Key directory (encrypted) ├── agent.private.pem.enc # AES-256-GCM encrypted └── agent.public.pem # Public key (shareable)","breadcrumbs":"OpenClaw » Directory Structure","id":"1228","title":"Directory Structure"},"1229":{"body":"","breadcrumbs":"OpenClaw » CLI Commands","id":"1229","title":"CLI Commands"},"123":{"body":"","breadcrumbs":"CLI Usage » Configuration Commands","id":"123","title":"Configuration Commands"},"1230":{"body":"openclaw jacs status Shows JACS status, agent ID, algorithm, and registration state.","breadcrumbs":"OpenClaw » Status","id":"1230","title":"Status"},"1231":{"body":"openclaw jacs sign  Sign a JSON document with your JACS identity.","breadcrumbs":"OpenClaw » Sign Document","id":"1231","title":"Sign Document"},"1232":{"body":"openclaw jacs verify  Verify a JACS-signed document.","breadcrumbs":"OpenClaw » Verify Document","id":"1232","title":"Verify Document"},"1233":{"body":"openclaw jacs lookup  Look up another agent's public key from their domain.","breadcrumbs":"OpenClaw » Lookup Agent","id":"1233","title":"Lookup Agent"},"1234":{"body":"openclaw jacs export-card Export your agent as an A2A Agent Card.","breadcrumbs":"OpenClaw » Export Agent Card","id":"1234","title":"Export Agent Card"},"1235":{"body":"openclaw jacs dns-record  Generate DNS TXT record commands for publishing your agent fingerprint.","breadcrumbs":"OpenClaw » Generate DNS Record","id":"1235","title":"Generate DNS Record"},"1236":{"body":"The plugin provides tools for use in agent conversations:","breadcrumbs":"OpenClaw » Agent Tools","id":"1236","title":"Agent Tools"},"1237":{"body":"Sign a document with JACS cryptographic provenance. { \"name\": \"jacs_sign\", \"parameters\": { \"document\": { \"message\": \"hello\" }, \"artifactType\": \"message\" }\n}","breadcrumbs":"OpenClaw » jacs_sign","id":"1237","title":"jacs_sign"},"1238":{"body":"Verify a JACS-signed document. { \"name\": \"jacs_verify\", \"parameters\": { \"document\": { \"...signed document...\" } }\n}","breadcrumbs":"OpenClaw » jacs_verify","id":"1238","title":"jacs_verify"},"1239":{"body":"Fetch another agent's public key from their domain. { \"name\": \"jacs_fetch_pubkey\", \"parameters\": { \"domain\": \"other-agent.example.com\" }\n}","breadcrumbs":"OpenClaw » jacs_fetch_pubkey","id":"1239","title":"jacs_fetch_pubkey"},"124":{"body":"jacs config create Creates a new jacs.config.json file in the current directory with default settings.","breadcrumbs":"CLI Usage » Create Configuration","id":"124","title":"Create Configuration"},"1240":{"body":"Verify a document using a fetched public key. { \"name\": \"jacs_verify_with_key\", \"parameters\": { \"document\": { \"...signed document...\" }, \"publicKey\": \"-----BEGIN PUBLIC KEY-----...\" }\n}","breadcrumbs":"OpenClaw » jacs_verify_with_key","id":"1240","title":"jacs_verify_with_key"},"1241":{"body":"Lookup a JACS agent by domain or ID. { \"name\": \"jacs_lookup_agent\", \"parameters\": { \"domain\": \"agent.example.com\" }\n}","breadcrumbs":"OpenClaw » jacs_lookup_agent","id":"1241","title":"jacs_lookup_agent"},"1242":{"body":"Create a multi-party agreement requiring signatures from multiple agents. { \"name\": \"jacs_create_agreement\", \"parameters\": { \"document\": { \"terms\": \"...\" }, \"agentIds\": [\"agent-1-uuid\", \"agent-2-uuid\"], \"question\": \"Do you agree to these terms?\" }\n}","breadcrumbs":"OpenClaw » jacs_create_agreement","id":"1242","title":"jacs_create_agreement"},"1243":{"body":"When OpenClaw's gateway is running, the plugin serves:","breadcrumbs":"OpenClaw » Well-Known Endpoints","id":"1243","title":"Well-Known Endpoints"},"1244":{"body":"A2A v0.4.0 Agent Card with JACS extension.","breadcrumbs":"OpenClaw » /.well-known/agent-card.json","id":"1244","title":"/.well-known/agent-card.json"},"1245":{"body":"Your agent's public key for verification: { \"publicKey\": \"-----BEGIN PUBLIC KEY-----...\", \"publicKeyHash\": \"sha256-hash\", \"algorithm\": \"pq2025\", \"agentId\": \"agent-uuid\", \"timestamp\": \"2024-01-15T10:30:00Z\"\n}","breadcrumbs":"OpenClaw » /.well-known/jacs-pubkey.json","id":"1245","title":"/.well-known/jacs-pubkey.json"},"1246":{"body":"Agents can verify each other without a central registry:","breadcrumbs":"OpenClaw » P2P Agent Verification","id":"1246","title":"P2P Agent Verification"},"1247":{"body":"Agent A publishes their public key at /.well-known/jacs-pubkey.json Agent A optionally sets DNS TXT record at _v1.agent.jacs.. Agent A signs a document with jacs_sign Agent B receives the signed document Agent B fetches Agent A's key with jacs_fetch_pubkey Agent B verifies with jacs_verify_with_key","breadcrumbs":"OpenClaw » Flow","id":"1247","title":"Flow"},"1248":{"body":"Agent A (agent-a.example.com) Agent B (agent-b.example.com)\n================================ ================================ 1. Initialize JACS openclaw jacs init 2. Publish public key (served at /.well-known/jacs-pubkey.json) 3. Sign a message jacs_sign({ message: \"hello\" }) → signed_doc 4. Send signed_doc to Agent B 5. Receive signed_doc 6. Fetch Agent A's public key jacs_fetch_pubkey(\"agent-a.example.com\") → pubkey_a 7. Verify signature jacs_verify_with_key(signed_doc, pubkey_a) → { valid: true, signer: \"agent-a-uuid\" }","breadcrumbs":"OpenClaw » Example Workflow","id":"1248","title":"Example Workflow"},"1249":{"body":"For additional verification, agents can publish their public key fingerprint in DNS:","breadcrumbs":"OpenClaw » DNS-Based Discovery","id":"1249","title":"DNS-Based Discovery"},"125":{"body":"jacs config read Displays the current configuration, including values from both the config file and environment variables.","breadcrumbs":"CLI Usage » Read Configuration","id":"125","title":"Read Configuration"},"1250":{"body":"openclaw jacs dns-record agent.example.com This outputs commands for your DNS provider: _v1.agent.jacs.agent.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id=; alg=SHA-256; enc=base64; jac_public_key_hash=<44-char-b64>\"","breadcrumbs":"OpenClaw » Generate DNS Record","id":"1250","title":"Generate DNS Record"},"1251":{"body":"openclaw jacs lookup agent.example.com The plugin will: Query DNS TXT record at _v1.agent.jacs.agent.example.com Fetch full public key from /.well-known/jacs-pubkey.json Verify the DNS hash matches the fetched key","breadcrumbs":"OpenClaw » DNS Lookup","id":"1251","title":"DNS Lookup"},"1252":{"body":"","breadcrumbs":"OpenClaw » Security","id":"1252","title":"Security"},"1253":{"body":"Private keys are encrypted with AES-256-GCM Password-derived key using PBKDF2 (100k iterations) Keys stored with restricted file permissions","breadcrumbs":"OpenClaw » Key Protection","id":"1253","title":"Key Protection"},"1254":{"body":"The default algorithm (pq2025 / ML-DSA-87) is quantum-resistant, providing protection against future quantum computing attacks.","breadcrumbs":"OpenClaw » Post-Quantum Cryptography","id":"1254","title":"Post-Quantum Cryptography"},"1255":{"body":"Signatures include: Document hash (prevents modification) Signer's agent ID and version Timestamp List of signed fields","breadcrumbs":"OpenClaw » Signature Binding","id":"1255","title":"Signature Binding"},"1256":{"body":"The plugin provides a skill for agent conversations: /jacs sign {\"task\": \"analyze data\", \"result\": \"completed\"}\n/jacs verify \n/jacs lookup agent.example.com","breadcrumbs":"OpenClaw » Skill Usage","id":"1256","title":"Skill Usage"},"1257":{"body":"","breadcrumbs":"OpenClaw » Troubleshooting","id":"1257","title":"Troubleshooting"},"1258":{"body":"Run openclaw jacs init to set up your JACS identity.","breadcrumbs":"OpenClaw » \"JACS not initialized\"","id":"1258","title":"\"JACS not initialized\""},"1259":{"body":"Verify the domain is correct and serving /.well-known/jacs-pubkey.json.","breadcrumbs":"OpenClaw » \"Failed to fetch public key\"","id":"1259","title":"\"Failed to fetch public key\""},"126":{"body":"","breadcrumbs":"CLI Usage » Agent Commands","id":"126","title":"Agent Commands"},"1260":{"body":"Check that the document hasn't been modified Verify you have the correct public key for the signer Ensure the signing algorithm matches","breadcrumbs":"OpenClaw » \"Signature verification failed\"","id":"1260","title":"\"Signature verification failed\""},"1261":{"body":"DNS-Based Verification - Detailed DNS setup Agreements - Multi-agent coordination MCP Integration - Model Context Protocol","breadcrumbs":"OpenClaw » Next Steps","id":"1261","title":"Next Steps"},"1262":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing across multiple frameworks and languages.","breadcrumbs":"Web Servers » Web Servers","id":"1262","title":"Web Servers"},"1263":{"body":"Web server integration with JACS enables: Request Authentication : Verify incoming requests were signed by valid agents Response Signing : Automatically sign outgoing responses Tamper Detection : Ensure message integrity end-to-end Audit Trail : Track all authenticated interactions","breadcrumbs":"Web Servers » Overview","id":"1263","title":"Overview"},"1264":{"body":"Framework Language Module Express.js Node.js @hai.ai/jacs/http Koa Node.js @hai.ai/jacs/http FastAPI Python jacs.http Flask Python jacs.http","breadcrumbs":"Web Servers » Supported Frameworks","id":"1264","title":"Supported Frameworks"},"1265":{"body":"All JACS web integrations follow the same flow: Client Server │ │ │── signRequest(payload) ────> │ │ │── verifyRequest() │ │── process request │ │── signResponse(result) │<── verifyResponse(result) ── │ │","breadcrumbs":"Web Servers » Request/Response Flow","id":"1265","title":"Request/Response Flow"},"1266":{"body":"","breadcrumbs":"Web Servers » Node.js Integration","id":"1266","title":"Node.js Integration"},"1267":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // IMPORTANT: Parse body as text BEFORE JACS middleware\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Route handlers receive verified payload in req.jacsPayload\napp.post('/api/data', (req, res) => { const payload = req.jacsPayload; if (!payload) { return res.status(400).send({ error: 'Invalid JACS request' }); } // Response objects are automatically signed res.send({ received: payload, status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Web Servers » Express.js","id":"1267","title":"Express.js"},"1268":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa(); // Apply JACS middleware (handles body parsing internally)\napp.use(JACSKoaMiddleware({ configPath: './jacs.config.json'\n})); app.use(async (ctx) => { if (ctx.path === '/api/data' && ctx.method === 'POST') { const payload = ctx.state.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = { error: 'Invalid JACS request' }; return; } // Response objects are automatically signed ctx.body = { received: payload, status: 'ok' }; }\n}); app.listen(3000); See Node.js HTTP Server and Express Middleware for complete documentation.","breadcrumbs":"Web Servers » Koa","id":"1268","title":"Koa"},"1269":{"body":"","breadcrumbs":"Web Servers » Python Integration","id":"1269","title":"Python Integration"},"127":{"body":"jacs agent create --create-keys true # With a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Without creating new keys (use existing)\njacs agent create --create-keys false -f my-agent.json Options: Option Short Required Description --create-keys Yes Whether to create new cryptographic keys -f No Path to JSON file with agent definition","breadcrumbs":"CLI Usage » Create Agent","id":"127","title":"Create Agent"},"1270":{"body":"from fastapi import FastAPI, Request\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI() # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") @app.post(\"/api/data\")\nasync def handle_data(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: return PlainTextResponse( content=json.dumps({\"error\": \"Invalid JACS request\"}), status_code=400 ) # Process request result = {\"received\": payload, \"status\": \"ok\"} # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Web Servers » FastAPI","id":"1270","title":"FastAPI"},"1271":{"body":"from flask import Flask, request\nimport jacs\nimport json app = Flask(__name__) # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") @app.route(\"/api/data\", methods=[\"POST\"])\ndef handle_data(): # Read raw body body_str = request.get_data(as_text=True) # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: return json.dumps({\"error\": \"Invalid JACS request\"}), 400 # Process request result = {\"received\": payload, \"status\": \"ok\"} # Sign response signed_response = jacs.sign_response(result) return signed_response, 200, {\"Content-Type\": \"text/plain\"} if __name__ == \"__main__\": app.run(port=8000)","breadcrumbs":"Web Servers » Flask","id":"1271","title":"Flask"},"1272":{"body":"","breadcrumbs":"Web Servers » HTTP Client","id":"1272","title":"HTTP Client"},"1273":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { // Load JACS agent await jacs.load('./jacs.client.config.json'); // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"Web Servers » Node.js Client","id":"1273","title":"Node.js Client"},"1274":{"body":"import jacs\nimport requests\nimport json def send_jacs_request(url, payload): # Initialize JACS agent agent = jacs.JacsAgent() agent.load(\"./jacs.client.config.json\") # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) # Verify response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') # Usage\nresult = send_jacs_request(\"http://localhost:8000/api/data\", { \"action\": \"fetch\", \"query\": {\"id\": 42}\n})","breadcrumbs":"Web Servers » Python Client","id":"1274","title":"Python Client"},"1275":{"body":"","breadcrumbs":"Web Servers » Middleware Patterns","id":"1275","title":"Middleware Patterns"},"1276":{"body":"Protect specific routes while leaving others public: // Node.js Express\nconst app = express(); // Public routes (no JACS)\napp.get('/health', (req, res) => res.send({ status: 'ok' }));\napp.get('/public/info', (req, res) => res.send({ name: 'My API' })); // Protected routes (JACS required)\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/secure', (req, res) => { // Only JACS-signed requests reach here res.send({ data: 'secure response' });\n});","breadcrumbs":"Web Servers » Route-Level Protection","id":"1276","title":"Route-Level Protection"},"1277":{"body":"Use different JACS agents for different route groups: // Admin routes with admin agent\napp.use('/admin', express.text({ type: '*/*' }));\napp.use('/admin', JACSExpressMiddleware({ configPath: './jacs.admin.config.json'\n})); // User routes with user agent\napp.use('/user', express.text({ type: '*/*' }));\napp.use('/user', JACSExpressMiddleware({ configPath: './jacs.user.config.json'\n}));","breadcrumbs":"Web Servers » Multiple Agent Configurations","id":"1277","title":"Multiple Agent Configurations"},"1278":{"body":"Create reusable validation helpers: function requireJacsPayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'JACS verification failed', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Apply to routes\napp.post('/api/secure', requireJacsPayload, (req, res) => { // Guaranteed to have valid req.jacsPayload res.send({ data: req.jacsPayload });\n});","breadcrumbs":"Web Servers » Validation Middleware","id":"1278","title":"Validation Middleware"},"1279":{"body":"JACS requests should use text/plain content type since they are signed JSON strings: // Client side\nconst response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, // Not application/json body: signedRequest\n}); // Server side (Express)\napp.use('/api', express.text({ type: '*/*' })); // Parse as text, not JSON","breadcrumbs":"Web Servers » Content-Type Considerations","id":"1279","title":"Content-Type Considerations"},"128":{"body":"# Verify agent from config\njacs agent verify # Verify specific agent file\njacs agent verify -a ./path/to/agent.json # With DNS validation options\njacs agent verify --require-dns\njacs agent verify --require-strict-dns\njacs agent verify --no-dns\njacs agent verify --ignore-dns Options: Option Short Description -a --agent-file Path to agent file (optional) --no-dns Disable DNS validation --require-dns Require DNS validation (not strict) --require-strict-dns Require DNSSEC validation --ignore-dns Ignore DNS validation entirely","breadcrumbs":"CLI Usage » Verify Agent","id":"128","title":"Verify Agent"},"1280":{"body":"","breadcrumbs":"Web Servers » Error Handling","id":"1280","title":"Error Handling"},"1281":{"body":"app.post('/api/process', (req, res, next) => { try { if (!req.jacsPayload) { throw new Error('Missing JACS payload'); } const result = processData(req.jacsPayload); res.send({ result }); } catch (error) { next(error); }\n}); // Global error handler\napp.use((error, req, res, next) => { console.error('Error:', error.message); res.status(500).send({ error: 'Internal server error', message: error.message });\n});","breadcrumbs":"Web Servers » Server-Side Errors","id":"1281","title":"Server-Side Errors"},"1282":{"body":"try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"Web Servers » Client-Side Errors","id":"1282","title":"Client-Side Errors"},"1283":{"body":"","breadcrumbs":"Web Servers » Security Best Practices","id":"1283","title":"Security Best Practices"},"1284":{"body":"Always use HTTPS for production deployments: // Client\nawait sendJacsRequest('https://api.example.com/data', payload);","breadcrumbs":"Web Servers » 1. Use TLS in Production","id":"1284","title":"1. Use TLS in Production"},"1285":{"body":"Each endpoint needs its own JACS identity: project/\n├── server/\n│ ├── jacs.config.json\n│ └── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── client/ ├── jacs.config.json └── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Web Servers » 2. Separate Server and Client Keys","id":"1285","title":"2. Separate Server and Client Keys"},"1286":{"body":"For Express, ensure correct middleware order: // Correct order\napp.use('/api', express.text({ type: '*/*' })); // 1. Parse body\napp.use('/api', JACSExpressMiddleware({ ... })); // 2. JACS verification // Wrong order - JACS won't receive string body\napp.use('/api', JACSExpressMiddleware({ ... }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"Web Servers » 3. Middleware Order Matters","id":"1286","title":"3. Middleware Order Matters"},"1287":{"body":"Don't mix express.json() with JACS routes: // JSON for non-JACS routes\napp.use('/public', express.json()); // Text for JACS routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ ... }));","breadcrumbs":"Web Servers » 4. Avoid JSON Body Parser Conflicts","id":"1287","title":"4. Avoid JSON Body Parser Conflicts"},"1288":{"body":"Log JACS requests for security auditing: function jacsLogger(req, res, next) { if (req.jacsPayload) { console.log(JSON.stringify({ timestamp: new Date().toISOString(), method: req.method, path: req.path, jacsPayload: req.jacsPayload, ip: req.ip })); } next();\n} app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' }));\napp.use('/api', jacsLogger); // After JACS middleware","breadcrumbs":"Web Servers » Logging and Auditing","id":"1288","title":"Logging and Auditing"},"1289":{"body":"","breadcrumbs":"Web Servers » Testing","id":"1289","title":"Testing"},"129":{"body":"# Generate DNS TXT record commands for agent publishing\njacs agent dns --domain example.com --agent-id [uuid] # With different output formats\njacs agent dns --domain example.com --encoding hex\njacs agent dns --domain example.com --provider aws # With custom TTL\njacs agent dns --domain example.com --ttl 7200 Options: Option Default Description --domain Domain for DNS record --agent-id Agent UUID (optional, uses config if not provided) --ttl 3600 Time-to-live in seconds --encoding base64 Encoding format (base64, hex) --provider plain Output format (plain, aws, azure, cloudflare)","breadcrumbs":"CLI Usage » DNS Commands","id":"129","title":"DNS Commands"},"1290":{"body":"import request from 'supertest';\nimport jacs from '@hai.ai/jacs'; describe('JACS API', () => { beforeAll(async () => { await jacs.load('./jacs.test.config.json'); }); it('should accept valid JACS requests', async () => { const payload = { action: 'test', data: 'hello' }; const signedRequest = await jacs.signRequest(payload); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); // Verify response is JACS-signed const verified = await jacs.verifyResponse(response.text); expect(verified.payload.echo).toEqual(payload); }); it('should reject unsigned requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Web Servers » Testing with Supertest","id":"1290","title":"Testing with Supertest"},"1291":{"body":"","breadcrumbs":"Web Servers » Troubleshooting","id":"1291","title":"Troubleshooting"},"1292":{"body":"Issue Cause Solution req.jacsPayload undefined Wrong middleware order Put express.text() before JACS middleware Response not signed Sending string instead of object Use res.send({ ... }) not res.send(JSON.stringify(...)) Verification failures Key mismatch Ensure compatible JACS configurations Connection refused Server not running Verify server is listening on correct port","breadcrumbs":"Web Servers » Common Issues","id":"1292","title":"Common Issues"},"1293":{"body":"// Node.js\nprocess.env.JACS_DEBUG = 'true'; # Python\nimport logging\nlogging.basicConfig(level=logging.DEBUG)","breadcrumbs":"Web Servers » Debug Logging","id":"1293","title":"Debug Logging"},"1294":{"body":"Node.js HTTP Server - Detailed Node.js documentation Express Middleware - Express-specific patterns MCP Integration - Model Context Protocol support Security Model - JACS security architecture","breadcrumbs":"Web Servers » See Also","id":"1294","title":"See Also"},"1295":{"body":"JACS includes a built-in PostgreSQL storage backend (behind the database feature flag) that handles document storage, JSONB queries, and signature preservation automatically. For most use cases, this is the recommended approach. For custom integrations with other databases, see the examples below.","breadcrumbs":"Databases » Databases","id":"1295","title":"Databases"},"1296":{"body":"JACS ships with native PostgreSQL support via the database Cargo feature. This uses a TEXT + JSONB dual-column strategy to preserve cryptographic signatures while enabling efficient queries. See Storage Backends for full documentation. # Enable at compile time\ncargo build --features database # Configure via environment\nexport JACS_DATABASE_URL=\"postgres://user:pass@localhost:5432/jacs\"","breadcrumbs":"Databases » Built-in PostgreSQL Backend","id":"1296","title":"Built-in PostgreSQL Backend"},"1297":{"body":"If you need to integrate JACS documents with other databases (MongoDB, SQLite, Redis) or need application-specific table structures, you can store JACS documents directly. JACS documents are JSON objects with cryptographic signatures. They can be stored in any database that supports JSON or text storage: Database Type Storage Method Best For PostgreSQL (built-in) TEXT + JSONB Complex queries, signature preservation PostgreSQL (custom) JSONB column Application-specific schemas MongoDB Native documents Document-centric apps SQLite TEXT column Local/embedded apps Redis Key-value Caching, high-speed access","breadcrumbs":"Databases » Custom Database Integrations","id":"1297","title":"Custom Database Integrations"},"1298":{"body":"The built-in PostgreSQL backend covers most query needs. Use a custom integration when you need: Different Database : MongoDB, SQLite, Redis, etc. Custom Schema : Application-specific table structures Relations : Link JACS documents to non-JACS data Existing Infrastructure : Integrate with current systems","breadcrumbs":"Databases » Why Use a Custom Database Integration?","id":"1298","title":"Why Use a Custom Database Integration?"},"1299":{"body":"","breadcrumbs":"Databases » PostgreSQL Integration","id":"1299","title":"PostgreSQL Integration"},"13":{"body":"Unlike general-purpose signing frameworks, JACS is specifically designed for AI agent communication patterns - tasks, agreements, and collaborative workflows.","breadcrumbs":"Introduction » 🎯 Agent-Focused Design","id":"13","title":"🎯 Agent-Focused Design"},"130":{"body":"# Look up another agent's public key from their domain\njacs agent lookup agent.example.com # With strict DNSSEC validation\njacs agent lookup agent.example.com --strict # Skip DNS lookup\njacs agent lookup agent.example.com --no-dns","breadcrumbs":"CLI Usage » Lookup Agent","id":"130","title":"Lookup Agent"},"1300":{"body":"-- JACS documents table\nCREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, signature_valid BOOLEAN DEFAULT TRUE, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), updated_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), -- Extracted fields for indexing agent_id UUID, document_type VARCHAR(100), UNIQUE(id, version_id)\n); -- Index on JACS fields\nCREATE INDEX idx_jacs_agent ON jacs_documents(agent_id);\nCREATE INDEX idx_jacs_type ON jacs_documents(document_type);\nCREATE INDEX idx_jacs_created ON jacs_documents(created_at); -- GIN index for JSONB queries\nCREATE INDEX idx_jacs_document ON jacs_documents USING GIN (document);","breadcrumbs":"Databases » Schema Design","id":"1300","title":"Schema Design"},"1301":{"body":"import { Pool } from 'pg';\nimport jacs from '@hai.ai/jacs'; const pool = new Pool({ connectionString: process.env.DATABASE_URL\n}); class JacsDocumentStore { constructor(configPath) { this.configPath = configPath; } async initialize() { await jacs.load(this.configPath); } async createAndStore(content, options = {}) { // Create JACS document const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); // Store in database const result = await pool.query(` INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES ($1, $2, $3, $4, $5) RETURNING * `, [ doc.jacsId, doc.jacsVersion, doc, doc.jacsSignature?.agentID, content.type || 'document' ]); return result.rows[0]; } async getDocument(id, versionId = null) { let query = 'SELECT * FROM jacs_documents WHERE id = $1'; const params = [id]; if (versionId) { query += ' AND version_id = $2'; params.push(versionId); } else { query += ' ORDER BY created_at DESC LIMIT 1'; } const result = await pool.query(query, params); return result.rows[0]; } async verifyDocument(id) { const row = await this.getDocument(id); if (!row) return null; const isValid = await jacs.verifyDocument(JSON.stringify(row.document)); // Update signature_valid flag await pool.query( 'UPDATE jacs_documents SET signature_valid = $1 WHERE id = $2 AND version_id = $3', [isValid, row.id, row.version_id] ); return { document: row.document, isValid }; } async searchDocuments(query) { const result = await pool.query(` SELECT * FROM jacs_documents WHERE document @> $1 ORDER BY created_at DESC `, [JSON.stringify(query)]); return result.rows; }\n} // Usage\nconst store = new JacsDocumentStore('./jacs.config.json');\nawait store.initialize(); // Create and store a document\nconst doc = await store.createAndStore({ type: 'invoice', amount: 1500, customer: 'Acme Corp'\n}); // Search documents\nconst invoices = await store.searchDocuments({ type: 'invoice' });","breadcrumbs":"Databases » Node.js Example","id":"1301","title":"Node.js Example"},"1302":{"body":"import json\nimport jacs\nimport psycopg2\nfrom psycopg2.extras import RealDictCursor class JacsDocumentStore: def __init__(self, config_path, database_url): self.config_path = config_path self.database_url = database_url self.conn = None def initialize(self): # Initialize JACS agent = jacs.JacsAgent() agent.load(self.config_path) # Connect to database self.conn = psycopg2.connect(self.database_url) def create_and_store(self, content, custom_schema=None): # Create JACS document doc_string = jacs.create_document( json.dumps(content), custom_schema=custom_schema ) doc = json.loads(doc_string) # Store in database with self.conn.cursor(cursor_factory=RealDictCursor) as cur: cur.execute(\"\"\" INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES (%s, %s, %s, %s, %s) RETURNING * \"\"\", ( doc['jacsId'], doc['jacsVersion'], json.dumps(doc), doc.get('jacsSignature', {}).get('agentID'), content.get('type', 'document') )) self.conn.commit() return cur.fetchone() def get_document(self, doc_id, version_id=None): with self.conn.cursor(cursor_factory=RealDictCursor) as cur: if version_id: cur.execute( \"SELECT * FROM jacs_documents WHERE id = %s AND version_id = %s\", (doc_id, version_id) ) else: cur.execute( \"SELECT * FROM jacs_documents WHERE id = %s ORDER BY created_at DESC LIMIT 1\", (doc_id,) ) return cur.fetchone() def verify_document(self, doc_id): row = self.get_document(doc_id) if not row: return None is_valid = jacs.verify_document(json.dumps(row['document'])) # Update verification status with self.conn.cursor() as cur: cur.execute( \"UPDATE jacs_documents SET signature_valid = %s WHERE id = %s AND version_id = %s\", (is_valid, row['id'], row['version_id']) ) self.conn.commit() return {'document': row['document'], 'is_valid': is_valid} def search_documents(self, query): with self.conn.cursor(cursor_factory=RealDictCursor) as cur: cur.execute( \"SELECT * FROM jacs_documents WHERE document @> %s ORDER BY created_at DESC\", (json.dumps(query),) ) return cur.fetchall() # Usage\nstore = JacsDocumentStore('./jacs.config.json', 'postgresql://localhost/mydb')\nstore.initialize() # Create and store a document\ndoc = store.create_and_store({ 'type': 'invoice', 'amount': 1500, 'customer': 'Acme Corp'\n}) # Search documents\ninvoices = store.search_documents({'type': 'invoice'})","breadcrumbs":"Databases » Python Example","id":"1302","title":"Python Example"},"1303":{"body":"","breadcrumbs":"Databases » MongoDB Integration","id":"1303","title":"MongoDB Integration"},"1304":{"body":"// MongoDB schema (using Mongoose)\nconst jacsDocumentSchema = new mongoose.Schema({ jacsId: { type: String, required: true, index: true }, jacsVersion: { type: String, required: true }, document: { type: mongoose.Schema.Types.Mixed, required: true }, signatureValid: { type: Boolean, default: true }, agentId: { type: String, index: true }, documentType: { type: String, index: true }, createdAt: { type: Date, default: Date.now, index: true }\n}); jacsDocumentSchema.index({ jacsId: 1, jacsVersion: 1 }, { unique: true });","breadcrumbs":"Databases » Collection Design","id":"1304","title":"Collection Design"},"1305":{"body":"import mongoose from 'mongoose';\nimport jacs from '@hai.ai/jacs'; const JacsDocument = mongoose.model('JacsDocument', jacsDocumentSchema); class MongoJacsStore { async initialize(configPath) { await jacs.load(configPath); await mongoose.connect(process.env.MONGODB_URI); } async createAndStore(content, options = {}) { const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); const stored = await JacsDocument.create({ jacsId: doc.jacsId, jacsVersion: doc.jacsVersion, document: doc, agentId: doc.jacsSignature?.agentID, documentType: content.type || 'document' }); return stored; } async getDocument(jacsId, versionId = null) { const query = { jacsId }; if (versionId) { query.jacsVersion = versionId; } return JacsDocument.findOne(query).sort({ createdAt: -1 }); } async searchDocuments(query) { // Build MongoDB query from content fields const mongoQuery = {}; for (const [key, value] of Object.entries(query)) { mongoQuery[`document.${key}`] = value; } return JacsDocument.find(mongoQuery).sort({ createdAt: -1 }); } async getDocumentsByAgent(agentId) { return JacsDocument.find({ agentId }).sort({ createdAt: -1 }); }\n} // Usage\nconst store = new MongoJacsStore();\nawait store.initialize('./jacs.config.json'); const doc = await store.createAndStore({ type: 'contract', parties: ['Alice', 'Bob'], value: 50000\n}); const contracts = await store.searchDocuments({ type: 'contract' });","breadcrumbs":"Databases » Example","id":"1305","title":"Example"},"1306":{"body":"For embedded or local applications: import Database from 'better-sqlite3';\nimport jacs from '@hai.ai/jacs'; class SqliteJacsStore { constructor(dbPath) { this.db = new Database(dbPath); this.initSchema(); } initSchema() { this.db.exec(` CREATE TABLE IF NOT EXISTS jacs_documents ( id TEXT NOT NULL, version_id TEXT NOT NULL, document TEXT NOT NULL, agent_id TEXT, document_type TEXT, signature_valid INTEGER DEFAULT 1, created_at TEXT DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id, version_id) ); CREATE INDEX IF NOT EXISTS idx_agent ON jacs_documents(agent_id); CREATE INDEX IF NOT EXISTS idx_type ON jacs_documents(document_type); `); } async initialize(configPath) { await jacs.load(configPath); } async createAndStore(content, options = {}) { const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); const stmt = this.db.prepare(` INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES (?, ?, ?, ?, ?) `); stmt.run( doc.jacsId, doc.jacsVersion, docString, doc.jacsSignature?.agentID, content.type || 'document' ); return doc; } getDocument(id, versionId = null) { let query = 'SELECT * FROM jacs_documents WHERE id = ?'; const params = [id]; if (versionId) { query += ' AND version_id = ?'; params.push(versionId); } else { query += ' ORDER BY created_at DESC LIMIT 1'; } const stmt = this.db.prepare(query); const row = stmt.get(...params); if (row) { row.document = JSON.parse(row.document); } return row; } searchByType(documentType) { const stmt = this.db.prepare( 'SELECT * FROM jacs_documents WHERE document_type = ? ORDER BY created_at DESC' ); return stmt.all(documentType).map(row => ({ ...row, document: JSON.parse(row.document) })); }\n}","breadcrumbs":"Databases » SQLite Integration","id":"1306","title":"SQLite Integration"},"1307":{"body":"Use Redis for high-speed document access: import Redis from 'ioredis';\nimport jacs from '@hai.ai/jacs'; class JacsRedisCache { constructor(redisUrl) { this.redis = new Redis(redisUrl); this.ttl = 3600; // 1 hour default TTL } async initialize(configPath) { await jacs.load(configPath); } async cacheDocument(docString) { const doc = JSON.parse(docString); const key = `jacs:${doc.jacsId}:${doc.jacsVersion}`; await this.redis.setex(key, this.ttl, docString); // Also cache as latest version await this.redis.setex(`jacs:${doc.jacsId}:latest`, this.ttl, docString); return doc; } async getDocument(jacsId, versionId = 'latest') { const key = `jacs:${jacsId}:${versionId}`; const docString = await this.redis.get(key); if (!docString) return null; return JSON.parse(docString); } async invalidate(jacsId, versionId = null) { if (versionId) { await this.redis.del(`jacs:${jacsId}:${versionId}`); } else { // Invalidate all versions const keys = await this.redis.keys(`jacs:${jacsId}:*`); if (keys.length > 0) { await this.redis.del(...keys); } } }\n}","breadcrumbs":"Databases » Redis Caching","id":"1307","title":"Redis Caching"},"1308":{"body":"","breadcrumbs":"Databases » Indexing Strategies","id":"1308","title":"Indexing Strategies"},"1309":{"body":"Extract key fields during storage for efficient querying: async function extractIndexFields(jacsDocument) { return { jacsId: jacsDocument.jacsId, jacsVersion: jacsDocument.jacsVersion, agentId: jacsDocument.jacsSignature?.agentID, createdDate: jacsDocument.jacsSignature?.date, hasAgreement: !!jacsDocument.jacsAgreement, agreementComplete: jacsDocument.jacsAgreement?.signatures?.length === jacsDocument.jacsAgreement?.agentIDs?.length, // Application-specific fields documentType: jacsDocument.type, status: jacsDocument.status, tags: jacsDocument.tags || [] };\n}","breadcrumbs":"Databases » Extracting Searchable Fields","id":"1309","title":"Extracting Searchable Fields"},"131":{"body":"","breadcrumbs":"CLI Usage » Task Commands","id":"131","title":"Task Commands"},"1310":{"body":"PostgreSQL example with full-text search: -- Add text search column\nALTER TABLE jacs_documents ADD COLUMN search_vector tsvector; -- Create index\nCREATE INDEX idx_search ON jacs_documents USING GIN(search_vector); -- Update trigger\nCREATE OR REPLACE FUNCTION update_search_vector() RETURNS trigger AS $$\nBEGIN NEW.search_vector := to_tsvector('english', coalesce(NEW.document->>'title', '') || ' ' || coalesce(NEW.document->>'content', '') || ' ' || coalesce(NEW.document->>'description', '') ); RETURN NEW;\nEND;\n$$ LANGUAGE plpgsql; CREATE TRIGGER jacs_search_update BEFORE INSERT OR UPDATE ON jacs_documents FOR EACH ROW EXECUTE FUNCTION update_search_vector(); // Search example\nasync function fullTextSearch(searchQuery) { const result = await pool.query(` SELECT *, ts_rank(search_vector, plainto_tsquery($1)) as rank FROM jacs_documents WHERE search_vector @@ plainto_tsquery($1) ORDER BY rank DESC `, [searchQuery]); return result.rows;\n}","breadcrumbs":"Databases » Full-Text Search","id":"1310","title":"Full-Text Search"},"1311":{"body":"","breadcrumbs":"Databases » Best Practices","id":"1311","title":"Best Practices"},"1312":{"body":"Always store the complete JACS document to preserve signatures: // Good - stores complete document\nawait pool.query( 'INSERT INTO jacs_documents (id, document) VALUES ($1, $2)', [doc.jacsId, JSON.stringify(doc)] // Complete document\n); // Bad - loses signature data\nawait pool.query( 'INSERT INTO documents (id, content) VALUES ($1, $2)', [doc.jacsId, JSON.stringify(doc.content)] // Only content\n);","breadcrumbs":"Databases » 1. Store Complete Documents","id":"1312","title":"1. Store Complete Documents"},"1313":{"body":"Always verify signatures when retrieving documents for sensitive operations: async function getVerifiedDocument(id) { const row = await pool.query( 'SELECT document FROM jacs_documents WHERE id = $1', [id] ); if (!row.rows[0]) return null; const docString = JSON.stringify(row.rows[0].document); const isValid = await jacs.verifyDocument(docString); if (!isValid) { throw new Error('Document signature verification failed'); } return row.rows[0].document;\n}","breadcrumbs":"Databases » 2. Verify After Retrieval","id":"1313","title":"2. Verify After Retrieval"},"1314":{"body":"Maintain version history for audit trails: async function getDocumentHistory(jacsId) { const result = await pool.query(` SELECT * FROM jacs_documents WHERE id = $1 ORDER BY created_at ASC `, [jacsId]); return result.rows;\n}","breadcrumbs":"Databases » 3. Handle Version History","id":"1314","title":"3. Handle Version History"},"1315":{"body":"Periodically verify stored documents: async function verifyAllDocuments() { const docs = await pool.query('SELECT * FROM jacs_documents'); for (const row of docs.rows) { const docString = JSON.stringify(row.document); const isValid = await jacs.verifyDocument(docString); if (!isValid) { console.warn(`Document ${row.id} failed verification`); await pool.query( 'UPDATE jacs_documents SET signature_valid = false WHERE id = $1', [row.id] ); } }\n}","breadcrumbs":"Databases » 4. Batch Verification","id":"1315","title":"4. Batch Verification"},"1316":{"body":"Storage Backends - Built-in JACS storage Security Model - Document security Testing - Testing database integrations","breadcrumbs":"Databases » See Also","id":"1316","title":"See Also"},"1317":{"body":"This chapter provides practical examples of using the JACS CLI for common workflows.","breadcrumbs":"CLI Examples » CLI Examples","id":"1317","title":"CLI Examples"},"1318":{"body":"jacs init # Initialize JACS (config + agent + keys)\njacs agent create # Create a new agent\njacs document create # Create a signed document\njacs document verify # Verify a document signature\njacs document sign-agreement # Sign an agreement","breadcrumbs":"CLI Examples » Quick Reference","id":"1318","title":"Quick Reference"},"1319":{"body":"","breadcrumbs":"CLI Examples » Getting Started","id":"1319","title":"Getting Started"},"132":{"body":"jacs task create -n \"Task Name\" -d \"Task description\" # With optional agent file\njacs task create -n \"Task Name\" -d \"Description\" -a ./agent.json # With input file\njacs task create -n \"Task Name\" -d \"Description\" -f ./task-details.json Options: Option Short Required Description -n --name Yes Name of the task -d --description Yes Description of the task -a --agent-file No Path to agent file -f --filename No Path to JSON file with additional task data","breadcrumbs":"CLI Usage » Create Task","id":"132","title":"Create Task"},"1320":{"body":"Initialize JACS in a new project: # Create a new directory\nmkdir my-jacs-project\ncd my-jacs-project # Initialize JACS\njacs init # This creates:\n# - jacs.config.json (configuration)\n# - jacs_keys/ (private and public keys)\n# - jacs_data/ (document storage)\n# - An initial agent document","breadcrumbs":"CLI Examples » First-Time Setup","id":"1320","title":"First-Time Setup"},"1321":{"body":"# Check the configuration\njacs config read # Verify your agent\njacs agent verify # Expected output:\n# Agent verification successful\n# Agent ID: 550e8400-e29b-41d4-a716-446655440000\n# Agent Version: f47ac10b-58cc-4372-a567-0e02b2c3d479","breadcrumbs":"CLI Examples » Verify Your Setup","id":"1321","title":"Verify Your Setup"},"1322":{"body":"","breadcrumbs":"CLI Examples » Document Operations","id":"1322","title":"Document Operations"},"1323":{"body":"Create from a JSON file: # Create input file\ncat > invoice.json << 'EOF'\n{ \"type\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"customer\": \"Acme Corp\", \"amount\": 1500.00, \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ]\n}\nEOF # Create signed document\njacs document create -f invoice.json # Output shows the saved document path\n# Document saved to: jacs_data/documents/[uuid]/[version].json Create with custom output: # Specify output filename\njacs document create -f invoice.json -o signed-invoice.json # Print to stdout (don't save)\njacs document create -f invoice.json --no-save Create with file attachments: # Create document with PDF attachment\njacs document create -f contract.json --attach ./contract.pdf # Embed attachment content in document\njacs document create -f contract.json --attach ./contract.pdf --embed true # Attach entire directory\njacs document create -f report.json --attach ./attachments/ Create with custom schema: # Use a custom schema for validation\njacs document create -f order.json -s ./schemas/order.schema.json","breadcrumbs":"CLI Examples » Creating Documents","id":"1323","title":"Creating Documents"},"1324":{"body":"Basic verification: # Verify a document\njacs document verify -f ./signed-invoice.json # Expected output:\n# Document verified successfully\n# Document ID: 550e8400-e29b-41d4-a716-446655440000\n# Signer: Agent Name (agent-uuid) Verbose verification: # Get detailed verification info\njacs document verify -f ./signed-invoice.json -v # Output includes:\n# - Document ID and version\n# - Signature algorithm used\n# - Signing agent details\n# - Timestamp\n# - Schema validation results Batch verification: # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -d ./invoices/ -s ./schemas/invoice.schema.json","breadcrumbs":"CLI Examples » Verifying Documents","id":"1324","title":"Verifying Documents"},"1325":{"body":"Create a new version of an existing document: # Original document\ncat > original.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"draft\", \"content\": \"Initial version\"\n}\nEOF jacs document create -f original.json -o project-v1.json # Updated content\ncat > updated.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"approved\", \"content\": \"Final version with updates\"\n}\nEOF # Create new version (maintains version history)\njacs document update -f project-v1.json -n updated.json -o project-v2.json # Verify the updated document\njacs document verify -f project-v2.json -v","breadcrumbs":"CLI Examples » Updating Documents","id":"1325","title":"Updating Documents"},"1326":{"body":"# Extract embedded files from a document\njacs document extract -f ./document-with-attachments.json # Extracts to: jacs_data/extracted/[document-id]/ # Extract from multiple documents\njacs document extract -d ./documents/","breadcrumbs":"CLI Examples » Extracting Embedded Content","id":"1326","title":"Extracting Embedded Content"},"1327":{"body":"","breadcrumbs":"CLI Examples » Agreement Workflows","id":"1327","title":"Agreement Workflows"},"1328":{"body":"An agreement requires multiple agents to sign a document: # First, create the document to be agreed upon\ncat > service-agreement.json << 'EOF'\n{ \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"...\", \"effectiveDate\": \"2024-02-01\"\n}\nEOF jacs document create -f service-agreement.json -o agreement.json # Create agreement requiring signatures from two agents\n# (Use actual agent UUIDs)\njacs document create-agreement \\ -f agreement.json \\ -i \"agent1-uuid-here,agent2-uuid-here\" \\ -o agreement-pending.json # Output:\n# Agreement created\n# Required signatures: 2\n# Current signatures: 0","breadcrumbs":"CLI Examples » Creating an Agreement","id":"1328","title":"Creating an Agreement"},"1329":{"body":"# First agent signs\njacs document sign-agreement -f agreement-pending.json -o agreement-signed-1.json # Check status\njacs document check-agreement -f agreement-signed-1.json\n# Output:\n# Agreement status: pending\n# Signatures: 1/2\n# Missing: agent2-uuid # Second agent signs (using their configuration)\nJACS_CONFIG_PATH=./agent2.config.json \\ jacs document sign-agreement -f agreement-signed-1.json -o agreement-complete.json # Verify completion\njacs document check-agreement -f agreement-complete.json\n# Output:\n# Agreement status: complete\n# Signatures: 2/2","breadcrumbs":"CLI Examples » Signing an Agreement","id":"1329","title":"Signing an Agreement"},"133":{"body":"","breadcrumbs":"CLI Usage » Document Commands","id":"133","title":"Document Commands"},"1330":{"body":"#!/bin/bash\n# agreement-workflow.sh # Step 1: Create the contract document\ncat > contract.json << 'EOF'\n{ \"type\": \"contract\", \"parties\": { \"seller\": \"Widget Corp\", \"buyer\": \"Acme Inc\" }, \"terms\": \"Sale of 1000 widgets at $10 each\", \"totalValue\": 10000\n}\nEOF echo \"Creating contract document...\"\njacs document create -f contract.json -o contract-signed.json # Step 2: Get agent IDs\nSELLER_AGENT=$(jacs config read | grep agent_id | cut -d: -f2 | tr -d ' ')\nBUYER_AGENT=\"buyer-agent-uuid-here\" # Replace with actual ID # Step 3: Create agreement\necho \"Creating agreement...\"\njacs document create-agreement \\ -f contract-signed.json \\ -i \"$SELLER_AGENT,$BUYER_AGENT\" \\ -o contract-agreement.json # Step 4: Seller signs\necho \"Seller signing...\"\njacs document sign-agreement \\ -f contract-agreement.json \\ -o contract-seller-signed.json # Step 5: Check intermediate status\necho \"Checking status...\"\njacs document check-agreement -f contract-seller-signed.json # Step 6: Buyer signs\necho \"Buyer signing...\"\nJACS_CONFIG_PATH=./buyer.config.json \\ jacs document sign-agreement \\ -f contract-seller-signed.json \\ -o contract-complete.json # Step 7: Verify complete agreement\necho \"Final verification...\"\njacs document verify -f contract-complete.json -v\njacs document check-agreement -f contract-complete.json echo \"Agreement workflow complete!\"","breadcrumbs":"CLI Examples » Complete Agreement Workflow","id":"1330","title":"Complete Agreement Workflow"},"1331":{"body":"","breadcrumbs":"CLI Examples » Agent Operations","id":"1331","title":"Agent Operations"},"1332":{"body":"# Create agent definition file\ncat > my-agent.json << 'EOF'\n{ \"jacsAgentType\": \"ai\", \"name\": \"My Custom Agent\", \"description\": \"An AI agent for document processing\", \"contact\": { \"email\": \"agent@example.com\" }, \"services\": [ { \"name\": \"document-processing\", \"description\": \"Process and sign documents\" } ]\n}\nEOF # Create agent with new keys\njacs agent create --create-keys true -f my-agent.json # Create agent using existing keys\njacs agent create --create-keys false -f my-agent.json","breadcrumbs":"CLI Examples » Creating a Custom Agent","id":"1332","title":"Creating a Custom Agent"},"1333":{"body":"Generate DNS record commands: # Generate TXT record for your domain\njacs agent dns --domain myagent.example.com # Output (example):\n# Add the following DNS TXT record:\n# _v1.agent.jacs.myagent.example.com TXT \"pk=\" # Different providers\njacs agent dns --domain myagent.example.com --provider aws\njacs agent dns --domain myagent.example.com --provider cloudflare\njacs agent dns --domain myagent.example.com --provider azure # Custom TTL\njacs agent dns --domain myagent.example.com --ttl 7200 Verify DNS-published agent: # Look up agent by domain\njacs agent lookup partner.example.com # Require strict DNSSEC validation\njacs agent lookup partner.example.com --strict # Verify local agent file against DNS\njacs agent verify -a ./partner-agent.json --require-strict-dns","breadcrumbs":"CLI Examples » DNS-Based Identity","id":"1333","title":"DNS-Based Identity"},"1334":{"body":"# Basic verification\njacs agent verify # Verify another agent's file\njacs agent verify -a ./other-agent.json # With DNS requirements\njacs agent verify --require-dns # Require DNS (not strict)\njacs agent verify --require-strict-dns # Require DNSSEC\njacs agent verify --no-dns # Skip DNS entirely\njacs agent verify --ignore-dns # Ignore DNS validation failures","breadcrumbs":"CLI Examples » Agent Verification","id":"1334","title":"Agent Verification"},"1335":{"body":"","breadcrumbs":"CLI Examples » Task Management","id":"1335","title":"Task Management"},"1336":{"body":"# Simple task\njacs task create \\ -n \"Review Contract\" \\ -d \"Review the service contract and provide feedback\" # Task with additional data from file\ncat > task-details.json << 'EOF'\n{ \"priority\": \"high\", \"dueDate\": \"2024-02-15\", \"assignee\": \"legal-team\"\n}\nEOF jacs task create \\ -n \"Contract Review\" \\ -d \"Detailed review required\" \\ -f task-details.json","breadcrumbs":"CLI Examples » Creating Tasks","id":"1336","title":"Creating Tasks"},"1337":{"body":"","breadcrumbs":"CLI Examples » Scripting Examples","id":"1337","title":"Scripting Examples"},"1338":{"body":"#!/bin/bash\n# batch-sign.sh - Sign all JSON files in a directory INPUT_DIR=$1\nOUTPUT_DIR=${2:-\"./signed\"} mkdir -p \"$OUTPUT_DIR\" for file in \"$INPUT_DIR\"/*.json; do filename=$(basename \"$file\") echo \"Signing: $filename\" jacs document create -f \"$file\" -o \"$OUTPUT_DIR/$filename\" if [ $? -eq 0 ]; then echo \" ✓ Signed successfully\" else echo \" ✗ Signing failed\" fi\ndone echo \"Batch signing complete. Output in $OUTPUT_DIR\"","breadcrumbs":"CLI Examples » Batch Document Processing","id":"1338","title":"Batch Document Processing"},"1339":{"body":"#!/bin/bash\n# verify-report.sh - Generate verification report DOC_DIR=$1\nREPORT=\"verification-report.txt\" echo \"JACS Document Verification Report\" > $REPORT\necho \"Generated: $(date)\" >> $REPORT\necho \"=================================\" >> $REPORT\necho \"\" >> $REPORT passed=0\nfailed=0 for file in \"$DOC_DIR\"/*.json; do filename=$(basename \"$file\") if jacs document verify -f \"$file\" > /dev/null 2>&1; then echo \"✓ PASS: $filename\" >> $REPORT ((passed++)) else echo \"✗ FAIL: $filename\" >> $REPORT ((failed++)) fi\ndone echo \"\" >> $REPORT\necho \"Summary: $passed passed, $failed failed\" >> $REPORT cat $REPORT","breadcrumbs":"CLI Examples » Verification Report","id":"1339","title":"Verification Report"},"134":{"body":"# Create from a JSON file\njacs document create -f ./document.json # Create from a directory of files\njacs document create -d ./documents/ # With custom schema\njacs document create -f ./document.json -s ./custom-schema.json # With file attachments\njacs document create -f ./document.json --attach ./attachment.pdf # Embed attachments in document\njacs document create -f ./document.json --attach ./files/ --embed true # Output to specific file\njacs document create -f ./document.json -o ./output.json # Print to stdout instead of saving\njacs document create -f ./document.json --no-save Options: Option Short Description -f --filename Path to input JSON file -d --directory Path to directory of JSON files -o --output Output filename -s --schema Path to custom JSON schema --attach Path to file/directory for attachments --embed -e Embed documents (true/false) --no-save -n Print to stdout instead of saving -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Usage » Create Document","id":"134","title":"Create Document"},"1340":{"body":"#!/bin/bash\n# watch-and-verify.sh - Monitor directory and verify new documents WATCH_DIR=${1:-\"./incoming\"} echo \"Watching $WATCH_DIR for new documents...\" inotifywait -m \"$WATCH_DIR\" -e create -e moved_to | while read dir action file; do if [[ \"$file\" == *.json ]]; then echo \"New document: $file\" if jacs document verify -f \"$WATCH_DIR/$file\"; then mv \"$WATCH_DIR/$file\" \"./verified/\" echo \" Moved to verified/\" else mv \"$WATCH_DIR/$file\" \"./rejected/\" echo \" Moved to rejected/\" fi fi done","breadcrumbs":"CLI Examples » Watch for New Documents","id":"1340","title":"Watch for New Documents"},"1341":{"body":"","breadcrumbs":"CLI Examples » Environment Configuration","id":"1341","title":"Environment Configuration"},"1342":{"body":"# Use a specific config file\nexport JACS_CONFIG_PATH=./production.config.json\njacs document create -f invoice.json # Override specific settings\nexport JACS_DATA_DIRECTORY=./custom-data\nexport JACS_KEY_DIRECTORY=./secure-keys\njacs agent create --create-keys true # One-time override\nJACS_CONFIG_PATH=./test.config.json jacs document verify -f test-doc.json","breadcrumbs":"CLI Examples » Using Environment Variables","id":"1342","title":"Using Environment Variables"},"1343":{"body":"# Development\nalias jacs-dev='JACS_CONFIG_PATH=./dev.config.json jacs'\njacs-dev document create -f test.json # Production\nalias jacs-prod='JACS_CONFIG_PATH=./prod.config.json jacs'\njacs-prod document verify -f important.json # Different agents\nalias jacs-alice='JACS_CONFIG_PATH=./alice.config.json jacs'\nalias jacs-bob='JACS_CONFIG_PATH=./bob.config.json jacs'","breadcrumbs":"CLI Examples » Multiple Configurations","id":"1343","title":"Multiple Configurations"},"1344":{"body":"","breadcrumbs":"CLI Examples » Error Handling","id":"1344","title":"Error Handling"},"1345":{"body":"jacs document verify -f document.json\nexit_code=$? case $exit_code in 0) echo \"Success\" ;; 1) echo \"General error\" ;; 2) echo \"Invalid arguments\" ;; 3) echo \"File not found\" ;; 4) echo \"Verification failed\" ;; 5) echo \"Signature invalid\" ;; *) echo \"Unknown error: $exit_code\" ;;\nesac","breadcrumbs":"CLI Examples » Understanding Exit Codes","id":"1345","title":"Understanding Exit Codes"},"1346":{"body":"#!/bin/bash\n# robust-signing.sh sign_document() { local input=$1 local output=$2 if ! jacs document create -f \"$input\" -o \"$output\" 2>/dev/null; then echo \"Error: Failed to sign $input\" >&2 return 1 fi if ! jacs document verify -f \"$output\" 2>/dev/null; then echo \"Error: Verification failed for $output\" >&2 rm -f \"$output\" return 1 fi echo \"Successfully signed: $output\" return 0\n} # Usage\nsign_document \"invoice.json\" \"signed-invoice.json\" || exit 1","breadcrumbs":"CLI Examples » Handling Failures","id":"1346","title":"Handling Failures"},"1347":{"body":"CLI Command Reference - Complete command reference Configuration Reference - Configuration options Rust CLI Usage - Detailed CLI documentation","breadcrumbs":"CLI Examples » See Also","id":"1347","title":"See Also"},"1348":{"body":"This chapter provides practical Node.js examples using the @hai.ai/jacs package.","breadcrumbs":"Node.js Examples » Node.js Examples","id":"1348","title":"Node.js Examples"},"1349":{"body":"# Install dependencies\nnpm install @hai.ai/jacs express @modelcontextprotocol/sdk zod // Initialize JACS (ES Modules)\nimport { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"Node.js Examples » Setup","id":"1349","title":"Setup"},"135":{"body":"# Update an existing document with new content\njacs document update -f ./original.json -n ./updated.json # With output file\njacs document update -f ./original.json -n ./updated.json -o ./result.json # With file attachments\njacs document update -f ./original.json -n ./updated.json --attach ./new-file.pdf Options: Option Short Required Description -f --filename Yes Path to original document -n --new Yes Path to new version -o --output No Output filename --attach No Path to file attachments --embed -e No Embed documents (true/false)","breadcrumbs":"CLI Usage » Update Document","id":"135","title":"Update Document"},"1350":{"body":"","breadcrumbs":"Node.js Examples » Basic Document Operations","id":"1350","title":"Basic Document Operations"},"1351":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function createSignedDocument() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a simple document const content = { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', items: [ { description: 'Consulting', quantity: 10, price: 150 } ] }; // Create and sign the document const signedDoc = await agent.createDocument(JSON.stringify(content)); // Parse the result const doc = JSON.parse(signedDoc); console.log('Document ID:', doc.jacsId); console.log('Version:', doc.jacsVersion); console.log('Signature:', doc.jacsSignature ? 'Present' : 'Missing'); return doc;\n} createSignedDocument();","breadcrumbs":"Node.js Examples » Creating and Signing Documents","id":"1351","title":"Creating and Signing Documents"},"1352":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function verifyDocument(filePath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read the document const docString = fs.readFileSync(filePath, 'utf-8'); // Verify signature const isValid = await agent.verifyDocument(docString); if (isValid) { console.log('✓ Document signature is valid'); const doc = JSON.parse(docString); console.log(' Signed by:', doc.jacsSignature?.agentID); console.log(' Signed at:', doc.jacsSignature?.date); } else { console.log('✗ Document signature is INVALID'); } return isValid;\n} verifyDocument('./invoice.json');","breadcrumbs":"Node.js Examples » Verifying Documents","id":"1352","title":"Verifying Documents"},"1353":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function updateDocument(originalPath, newContent) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read original document const originalDoc = fs.readFileSync(originalPath, 'utf-8'); // Update with new content (preserves version chain) const updatedDoc = await agent.updateDocument( originalDoc, JSON.stringify(newContent) ); const doc = JSON.parse(updatedDoc); console.log('Updated Document ID:', doc.jacsId); console.log('New Version:', doc.jacsVersion); return doc;\n} // Usage\nconst updated = await updateDocument('./invoice-v1.json', { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', status: 'paid' // New field\n});","breadcrumbs":"Node.js Examples » Updating Documents","id":"1353","title":"Updating Documents"},"1354":{"body":"","breadcrumbs":"Node.js Examples » HTTP Server with Express","id":"1354","title":"HTTP Server with Express"},"1355":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { JacsAgent } from '@hai.ai/jacs'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Health check (no JACS)\napp.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() });\n}); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Echo endpoint\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', requirePayload, (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : null; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); // Create document endpoint\napp.post('/api/documents', requirePayload, async (req, res) => { try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); app.listen(PORT, () => { console.log(`JACS Express server running on port ${PORT}`);\n});","breadcrumbs":"Node.js Examples » Complete Express Server","id":"1355","title":"Complete Express Server"},"1356":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function callJacsApi(url, payload) { const agent = new JacsAgent(); await agent.load('./jacs.client.config.json'); // Sign the request const signedRequest = await agent.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify and extract response const responseText = await response.text(); const verified = await agent.verifyResponse(responseText); return verified.payload;\n} // Usage\nasync function main() { // Call echo endpoint const echoResult = await callJacsApi( 'http://localhost:3000/api/echo', { message: 'Hello, server!' } ); console.log('Echo:', echoResult); // Call calculate endpoint const calcResult = await callJacsApi( 'http://localhost:3000/api/calculate', { operation: 'multiply', a: 7, b: 6 } ); console.log('Calculate:', calcResult);\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » HTTP Client","id":"1356","title":"HTTP Client"},"1357":{"body":"","breadcrumbs":"Node.js Examples » MCP Integration","id":"1357","title":"MCP Integration"},"1358":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; const JACS_CONFIG = \"./jacs.server.config.json\"; async function main() { console.error(\"JACS MCP Server starting...\"); // Create transport with JACS encryption const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG, \"server\" ); // Create MCP server const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"calculate\", { operation: z.enum([\"add\", \"subtract\", \"multiply\", \"divide\"]), a: z.number(), b: z.number() }, async ({ operation, a, b }) => { let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : 'undefined'; break; } return { content: [{ type: \"text\", text: `${a} ${operation} ${b} = ${result}` }] }; }); // Register resource server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: JSON.stringify({ name: \"JACS Demo Server\", version: \"1.0.0\", capabilities: [\"echo\", \"calculate\"] }), mimeType: \"application/json\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"Node.js Examples » MCP Server","id":"1358","title":"MCP Server"},"1359":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const JACS_CONFIG = \"./jacs.client.config.json\"; async function main() { console.log(\"JACS MCP Client starting...\"); // Connect to server const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp-server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG, \"client\" ); const client = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await client.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await client.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo const echoResult = await client.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo:\", echoResult.content[0].text); // Call calculate const calcResult = await client.callTool({ name: \"calculate\", arguments: { operation: \"multiply\", a: 6, b: 7 } }); console.log(\"Calculate:\", calcResult.content[0].text); await client.close(); console.log(\"Done!\");\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » MCP Client","id":"1359","title":"MCP Client"},"136":{"body":"# Verify a document\njacs document verify -f ./document.json # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -f ./document.json -s ./schema.json # Verbose output\njacs document verify -f ./document.json -v Options: Option Short Description -f --filename Path to document file -d --directory Path to directory of documents -s --schema Path to JSON schema for validation -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Usage » Verify Document","id":"136","title":"Verify Document"},"1360":{"body":"","breadcrumbs":"Node.js Examples » Agreements","id":"1360","title":"Agreements"},"1361":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function createAgreement() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create the contract document const contract = { type: 'service_agreement', title: 'Professional Services Agreement', parties: ['Company A', 'Company B'], terms: 'Terms and conditions here...', value: 50000, effectiveDate: '2024-02-01' }; const signedContract = await agent.createDocument(JSON.stringify(contract)); // Get agent IDs (replace with actual UUIDs) const agentIds = [ 'agent1-uuid-here', 'agent2-uuid-here' ]; // Create agreement const agreementDoc = await agent.createAgreement( signedContract, agentIds, 'Do you agree to the terms of this service agreement?', 'This is a legally binding agreement' ); console.log('Agreement created'); const doc = JSON.parse(agreementDoc); console.log('Document ID:', doc.jacsId); console.log('Required signatures:', doc.jacsAgreement?.agentIDs?.length); // Save for signing fs.writeFileSync('agreement-pending.json', agreementDoc); return doc;\n} createAgreement();","breadcrumbs":"Node.js Examples » Creating Multi-Party Agreements","id":"1361","title":"Creating Multi-Party Agreements"},"1362":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function signAgreement(agreementPath, outputPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read agreement const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); // Sign agreement const signedAgreement = await agent.signAgreement(agreementDoc); // Check status const statusJson = await agent.checkAgreement(signedAgreement); const status = JSON.parse(statusJson); console.log('Agreement signed'); console.log('Status:', status.complete ? 'Complete' : 'Pending'); console.log('Signatures:', status.signatures?.length || 0); // Save fs.writeFileSync(outputPath, signedAgreement); return status;\n} signAgreement('./agreement-pending.json', './agreement-signed.json');","breadcrumbs":"Node.js Examples » Signing Agreements","id":"1362","title":"Signing Agreements"},"1363":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function checkAgreementStatus(agreementPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); const statusJson = await agent.checkAgreement(agreementDoc); const status = JSON.parse(statusJson); console.log('Agreement Status:'); console.log(' Complete:', status.complete); console.log(' Required agents:', status.requiredAgents); console.log(' Signed by:', status.signedBy || []); console.log(' Missing:', status.missing || []); return status;\n} checkAgreementStatus('./agreement.json');","breadcrumbs":"Node.js Examples » Checking Agreement Status","id":"1363","title":"Checking Agreement Status"},"1364":{"body":"","breadcrumbs":"Node.js Examples » Document Store","id":"1364","title":"Document Store"},"1365":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class JacsDocumentStore { constructor(configPath, dataDir = './documents') { this.configPath = configPath; this.dataDir = dataDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.dataDir)) { fs.mkdirSync(this.dataDir, { recursive: true }); } } async create(content) { const signedDoc = await this.agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); const filename = `${doc.jacsId}.json`; const filepath = path.join(this.dataDir, filename); fs.writeFileSync(filepath, signedDoc); return { id: doc.jacsId, version: doc.jacsVersion, path: filepath }; } async get(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return null; } const docString = fs.readFileSync(filepath, 'utf-8'); return JSON.parse(docString); } async verify(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return { valid: false, error: 'Document not found' }; } const docString = fs.readFileSync(filepath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); return { valid: isValid, document: JSON.parse(docString) }; } list() { const files = fs.readdirSync(this.dataDir); return files .filter(f => f.endsWith('.json')) .map(f => f.replace('.json', '')); }\n} // Usage\nasync function main() { const store = new JacsDocumentStore('./jacs.config.json'); await store.initialize(); // Create document const result = await store.create({ type: 'note', title: 'Meeting Notes', content: 'Discussed project timeline...' }); console.log('Created:', result.id); // Verify document const verification = await store.verify(result.id); console.log('Valid:', verification.valid); // List all documents const docs = store.list(); console.log('Documents:', docs);\n} main();","breadcrumbs":"Node.js Examples » Simple File-Based Store","id":"1365","title":"Simple File-Based Store"},"1366":{"body":"","breadcrumbs":"Node.js Examples » Error Handling","id":"1366","title":"Error Handling"},"1367":{"body":"import { JacsAgent } from '@hai.ai/jacs'; class JacsError extends Error { constructor(message, code, details = {}) { super(message); this.name = 'JacsError'; this.code = code; this.details = details; }\n} async function robustDocumentCreate(configPath, content) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const signedDoc = await agent.createDocument(JSON.stringify(content)); return JSON.parse(signedDoc); } catch (error) { throw new JacsError( 'Failed to create document', 'CREATE_ERROR', { originalError: error.message, content } ); }\n} async function robustDocumentVerify(configPath, docString) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const isValid = await agent.verifyDocument(docString); return { valid: isValid }; } catch (error) { throw new JacsError( 'Verification error', 'VERIFY_ERROR', { originalError: error.message } ); }\n} // Usage with error handling\nasync function main() { try { const doc = await robustDocumentCreate('./jacs.config.json', { title: 'Test' }); console.log('Created:', doc.jacsId); } catch (error) { if (error instanceof JacsError) { console.error(`JACS Error [${error.code}]:`, error.message); console.error('Details:', error.details); } else { console.error('Unexpected error:', error); } }\n} main();","breadcrumbs":"Node.js Examples » Robust Error Handling Pattern","id":"1367","title":"Robust Error Handling Pattern"},"1368":{"body":"","breadcrumbs":"Node.js Examples » Testing","id":"1368","title":"Testing"},"1369":{"body":"// tests/jacs.test.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Operations', () => { let agent; let tempDir; let configPath; beforeAll(async () => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); // Initialize agent agent = new JacsAgent(); await agent.load(configPath); }); afterAll(() => { fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', async () => { const content = { title: 'Test Document', value: 42 }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); expect(doc.jacsId).toBeDefined(); expect(doc.jacsVersion).toBeDefined(); expect(doc.jacsSignature).toBeDefined(); expect(doc.title).toBe('Test Document'); }); test('verifies a valid document', async () => { const content = { title: 'Verify Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const isValid = await agent.verifyDocument(signedDoc); expect(isValid).toBe(true); }); test('detects tampered document', async () => { const content = { title: 'Tamper Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); // Tamper with document const doc = JSON.parse(signedDoc); doc.title = 'Modified Title'; const tamperedDoc = JSON.stringify(doc); const isValid = await agent.verifyDocument(tamperedDoc); expect(isValid).toBe(false); });\n});","breadcrumbs":"Node.js Examples » Jest Test Setup","id":"1369","title":"Jest Test Setup"},"137":{"body":"# Extract embedded content from a document\njacs document extract -f ./document.json # Extract from all documents in directory\njacs document extract -d ./documents/","breadcrumbs":"CLI Usage » Extract Embedded Content","id":"137","title":"Extract Embedded Content"},"1370":{"body":"Node.js Installation - Setup guide Node.js API Reference - Complete API documentation MCP Integration - MCP details HTTP Server - HTTP integration","breadcrumbs":"Node.js Examples » See Also","id":"1370","title":"See Also"},"1371":{"body":"This chapter provides practical Python examples using the jacs (jacspy) package.","breadcrumbs":"Python Examples » Python Examples","id":"1371","title":"Python Examples"},"1372":{"body":"# Install dependencies\npip install jacs fastmcp fastapi uvicorn # Initialize JACS\nimport jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Python Examples » Setup","id":"1372","title":"Setup"},"1373":{"body":"","breadcrumbs":"Python Examples » Basic Document Operations","id":"1373","title":"Basic Document Operations"},"1374":{"body":"import jacs\nimport json def create_signed_document(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create document content content = { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ] } # Create and sign the document signed_doc = agent.create_document(json.dumps(content)) # Parse the result doc = json.loads(signed_doc) print(f\"Document ID: {doc['jacsId']}\") print(f\"Version: {doc['jacsVersion']}\") print(f\"Signature: {'Present' if 'jacsSignature' in doc else 'Missing'}\") return doc if __name__ == \"__main__\": create_signed_document()","breadcrumbs":"Python Examples » Creating and Signing Documents","id":"1374","title":"Creating and Signing Documents"},"1375":{"body":"import jacs\nimport json def verify_document(file_path: str) -> bool: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read the document with open(file_path, 'r') as f: doc_string = f.read() # Verify signature is_valid = agent.verify_document(doc_string) if is_valid: doc = json.loads(doc_string) print(\"✓ Document signature is valid\") print(f\" Signed by: {doc.get('jacsSignature', {}).get('agentID')}\") print(f\" Signed at: {doc.get('jacsSignature', {}).get('date')}\") else: print(\"✗ Document signature is INVALID\") return is_valid if __name__ == \"__main__\": verify_document('./invoice.json')","breadcrumbs":"Python Examples » Verifying Documents","id":"1375","title":"Verifying Documents"},"1376":{"body":"import jacs\nimport json def update_document(original_path: str, new_content: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read original document with open(original_path, 'r') as f: original_doc = f.read() # Update with new content (preserves version chain) updated_doc = agent.update_document( original_doc, json.dumps(new_content) ) doc = json.loads(updated_doc) print(f\"Updated Document ID: {doc['jacsId']}\") print(f\"New Version: {doc['jacsVersion']}\") return doc if __name__ == \"__main__\": updated = update_document('./invoice-v1.json', { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"status\": \"paid\" # New field })","breadcrumbs":"Python Examples » Updating Documents","id":"1376","title":"Updating Documents"},"1377":{"body":"","breadcrumbs":"Python Examples » HTTP Server with FastAPI","id":"1377","title":"HTTP Server with FastAPI"},"1378":{"body":"from fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI(title=\"JACS API\") # Initialize JACS agent at startup\nagent = None @app.on_event(\"startup\")\nasync def startup(): global agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Health check (no JACS)\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"ok\"} # JACS-protected endpoint\n@app.post(\"/api/echo\")\nasync def echo(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Process and respond result = { \"echo\": payload, \"serverTime\": str(datetime.now()) } # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Create document endpoint\n@app.post(\"/api/documents\")\nasync def create_document(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Create signed document signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc['jacsId'], \"version\": doc['jacsVersion'] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Calculate endpoint\n@app.post(\"/api/calculate\")\nasync def calculate(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") operation = payload.get('operation') a = payload.get('a', 0) b = payload.get('b', 0) if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else None else: raise HTTPException(status_code=400, detail=\"Unknown operation\") response = {\"operation\": operation, \"a\": a, \"b\": b, \"result\": result} signed_response = jacs.sign_response(response) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » Complete FastAPI Server","id":"1378","title":"Complete FastAPI Server"},"1379":{"body":"import jacs\nimport requests\nimport json def call_jacs_api(url: str, payload: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) if response.status_code != 200: raise Exception(f\"HTTP {response.status_code}\") # Verify and extract response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') if __name__ == \"__main__\": # Call echo endpoint echo_result = call_jacs_api( 'http://localhost:8000/api/echo', {\"message\": \"Hello, server!\"} ) print(\"Echo:\", echo_result) # Call calculate endpoint calc_result = call_jacs_api( 'http://localhost:8000/api/calculate', {\"operation\": \"multiply\", \"a\": 7, \"b\": 6} ) print(\"Calculate:\", calc_result)","breadcrumbs":"Python Examples » HTTP Client","id":"1379","title":"HTTP Client"},"138":{"body":"# Create an agreement requiring signatures from specified agents\njacs document create-agreement -f ./document.json -i agent1-uuid,agent2-uuid # Check agreement status\njacs document check-agreement -f ./document.json # Sign an agreement\njacs document sign-agreement -f ./document.json Create Agreement Options: Option Short Required Description -f --filename Yes Path to document -i --agentids Yes Comma-separated list of agent UUIDs -o --output No Output filename --no-save -n No Print to stdout","breadcrumbs":"CLI Usage » Agreement Commands","id":"138","title":"Agreement Commands"},"1380":{"body":"","breadcrumbs":"Python Examples » MCP Integration","id":"1380","title":"MCP Integration"},"1381":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create FastMCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"JACS Demo Server\")) @mcp.tool()\ndef echo(message: str) -> str: \"\"\"Echo the input message\"\"\" return f\"Echo: {message}\" @mcp.tool()\ndef calculate(operation: str, a: float, b: float) -> str: \"\"\"Perform basic arithmetic\"\"\" if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else \"undefined\" else: return f\"Unknown operation: {operation}\" return f\"{a} {operation} {b} = {result}\" @mcp.resource(\"info://server\")\ndef server_info() -> str: \"\"\"Get server information\"\"\" return json.dumps({ \"name\": \"JACS Demo Server\", \"version\": \"1.0.0\", \"tools\": [\"echo\", \"calculate\"] }) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS MCP Server...\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » FastMCP Server with JACS","id":"1381","title":"FastMCP Server with JACS"},"1382":{"body":"import asyncio\nimport jacs\nfrom jacs.mcp import JACSMCPClient async def main(): # Initialize JACS agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Create authenticated client client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: # Call echo tool echo_result = await client.call_tool(\"echo\", { \"message\": \"Hello from JACS client!\" }) print(f\"Echo: {echo_result}\") # Call calculate tool calc_result = await client.call_tool(\"calculate\", { \"operation\": \"multiply\", \"a\": 6, \"b\": 7 }) print(f\"Calculate: {calc_result}\") # Read resource info = await client.read_resource(\"info://server\") print(f\"Server info: {info}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"Python Examples » MCP Client with JACS","id":"1382","title":"MCP Client with JACS"},"1383":{"body":"","breadcrumbs":"Python Examples » Agreements","id":"1383","title":"Agreements"},"1384":{"body":"import jacs\nimport json def create_agreement(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create contract document contract = { \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"Terms and conditions here...\", \"value\": 50000, \"effectiveDate\": \"2024-02-01\" } signed_contract = agent.create_document(json.dumps(contract)) # Define required signers (replace with actual UUIDs) agent_ids = [ \"agent1-uuid-here\", \"agent2-uuid-here\" ] # Create agreement agreement_doc = agent.create_agreement( signed_contract, agent_ids, question=\"Do you agree to the terms of this service agreement?\", context=\"This is a legally binding agreement\" ) doc = json.loads(agreement_doc) print(\"Agreement created\") print(f\"Document ID: {doc['jacsId']}\") print(f\"Required signatures: {len(doc.get('jacsAgreement', {}).get('agentIDs', []))}\") # Save for signing with open('agreement-pending.json', 'w') as f: f.write(agreement_doc) return doc if __name__ == \"__main__\": create_agreement()","breadcrumbs":"Python Examples » Creating Multi-Party Agreements","id":"1384","title":"Creating Multi-Party Agreements"},"1385":{"body":"import jacs\nimport json def sign_agreement(agreement_path: str, output_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read agreement with open(agreement_path, 'r') as f: agreement_doc = f.read() # Sign agreement signed_agreement = agent.sign_agreement(agreement_doc) # Check status status_json = agent.check_agreement(signed_agreement) status = json.loads(status_json) print(\"Agreement signed\") print(f\"Status: {'Complete' if status.get('complete') else 'Pending'}\") print(f\"Signatures: {len(status.get('signatures', []))}\") # Save with open(output_path, 'w') as f: f.write(signed_agreement) return status if __name__ == \"__main__\": sign_agreement('./agreement-pending.json', './agreement-signed.json')","breadcrumbs":"Python Examples » Signing Agreements","id":"1385","title":"Signing Agreements"},"1386":{"body":"import jacs\nimport json def check_agreement_status(agreement_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') with open(agreement_path, 'r') as f: agreement_doc = f.read() status_json = agent.check_agreement(agreement_doc) status = json.loads(status_json) print(\"Agreement Status:\") print(f\" Complete: {status.get('complete')}\") print(f\" Required agents: {status.get('requiredAgents', [])}\") print(f\" Signed by: {status.get('signedBy', [])}\") print(f\" Missing: {status.get('missing', [])}\") return status if __name__ == \"__main__\": check_agreement_status('./agreement.json')","breadcrumbs":"Python Examples » Checking Agreement Status","id":"1386","title":"Checking Agreement Status"},"1387":{"body":"","breadcrumbs":"Python Examples » Document Store","id":"1387","title":"Document Store"},"1388":{"body":"import jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Optional, Dict, List class JacsDocumentStore: def __init__(self, config_path: str, data_dir: str = './documents'): self.config_path = config_path self.data_dir = Path(data_dir) self.agent = None def initialize(self): self.agent = jacs.JacsAgent() self.agent.load(self.config_path) self.data_dir.mkdir(parents=True, exist_ok=True) def create(self, content: dict) -> dict: signed_doc = self.agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = self.data_dir / filename with open(filepath, 'w') as f: f.write(signed_doc) return { 'id': doc['jacsId'], 'version': doc['jacsVersion'], 'path': str(filepath) } def get(self, document_id: str) -> Optional[dict]: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return None with open(filepath, 'r') as f: return json.load(f) def verify(self, document_id: str) -> dict: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return {'valid': False, 'error': 'Document not found'} with open(filepath, 'r') as f: doc_string = f.read() is_valid = self.agent.verify_document(doc_string) return {'valid': is_valid, 'document': json.loads(doc_string)} def list(self) -> List[str]: return [ f.stem for f in self.data_dir.glob('*.json') ] if __name__ == \"__main__\": store = JacsDocumentStore('./jacs.config.json') store.initialize() # Create document result = store.create({ 'type': 'note', 'title': 'Meeting Notes', 'content': 'Discussed project timeline...' }) print(f\"Created: {result['id']}\") # Verify document verification = store.verify(result['id']) print(f\"Valid: {verification['valid']}\") # List all documents docs = store.list() print(f\"Documents: {docs}\")","breadcrumbs":"Python Examples » Simple File-Based Store","id":"1388","title":"Simple File-Based Store"},"1389":{"body":"","breadcrumbs":"Python Examples » Batch Processing","id":"1389","title":"Batch Processing"},"139":{"body":"The CLI respects the following environment variables: # Use a specific configuration file\nJACS_CONFIG_PATH=./custom-config.json jacs agent verify # Override settings\nJACS_DATA_DIRECTORY=./data jacs document create -f ./doc.json\nJACS_KEY_DIRECTORY=./keys jacs agent create --create-keys true","breadcrumbs":"CLI Usage » Environment Variables","id":"139","title":"Environment Variables"},"1390":{"body":"import jacs\nimport json\nfrom pathlib import Path\nfrom concurrent.futures import ThreadPoolExecutor class BatchDocumentProcessor: def __init__(self, config_path: str): self.config_path = config_path def create_documents(self, documents: list, output_dir: str) -> list: \"\"\"Create multiple signed documents\"\"\" output_path = Path(output_dir) output_path.mkdir(parents=True, exist_ok=True) results = [] # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) for i, content in enumerate(documents): try: signed_doc = agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = output_path / filename with open(filepath, 'w') as f: f.write(signed_doc) results.append({ 'success': True, 'index': i, 'id': doc['jacsId'], 'path': str(filepath) }) except Exception as e: results.append({ 'success': False, 'index': i, 'error': str(e) }) return results def verify_documents(self, input_dir: str) -> list: \"\"\"Verify all documents in a directory\"\"\" input_path = Path(input_dir) # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) results = [] for filepath in input_path.glob('*.json'): try: with open(filepath, 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string) doc = json.loads(doc_string) results.append({ 'file': filepath.name, 'valid': is_valid, 'id': doc.get('jacsId') }) except Exception as e: results.append({ 'file': filepath.name, 'valid': False, 'error': str(e) }) return results if __name__ == \"__main__\": processor = BatchDocumentProcessor('./jacs.config.json') # Create batch of documents documents = [ {'type': 'invoice', 'number': f'INV-{i:03d}', 'amount': i * 100} for i in range(1, 11) ] results = processor.create_documents(documents, './batch-output') success_count = sum(1 for r in results if r['success']) print(f\"Created {success_count}/{len(documents)} documents\") # Verify all documents verification_results = processor.verify_documents('./batch-output') valid_count = sum(1 for r in verification_results if r['valid']) print(f\"Valid: {valid_count}/{len(verification_results)} documents\")","breadcrumbs":"Python Examples » Batch Document Creator","id":"1390","title":"Batch Document Creator"},"1391":{"body":"","breadcrumbs":"Python Examples » Testing","id":"1391","title":"Testing"},"1392":{"body":"# tests/test_jacs.py\nimport pytest\nimport jacs\nimport json\nimport tempfile\nimport shutil\nfrom pathlib import Path @pytest.fixture\ndef jacs_agent(): \"\"\"Create a test JACS agent with temporary directories\"\"\" temp_dir = tempfile.mkdtemp() data_dir = Path(temp_dir) / 'data' key_dir = Path(temp_dir) / 'keys' data_dir.mkdir() key_dir.mkdir() config = { 'jacs_data_directory': str(data_dir), 'jacs_key_directory': str(key_dir), 'jacs_agent_key_algorithm': 'ring-Ed25519', 'jacs_default_storage': 'fs' } config_path = Path(temp_dir) / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f) agent = jacs.JacsAgent() agent.load(str(config_path)) yield agent shutil.rmtree(temp_dir) class TestDocumentOperations: def test_create_document(self, jacs_agent): content = {'title': 'Test Document', 'value': 42} signed_doc = jacs_agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) assert 'jacsId' in doc assert 'jacsVersion' in doc assert 'jacsSignature' in doc assert doc['title'] == 'Test Document' def test_verify_valid_document(self, jacs_agent): content = {'title': 'Verify Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) is_valid = jacs_agent.verify_document(signed_doc) assert is_valid is True def test_detect_tampered_document(self, jacs_agent): content = {'title': 'Tamper Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) # Tamper with document doc = json.loads(signed_doc) doc['title'] = 'Modified Title' tampered_doc = json.dumps(doc) is_valid = jacs_agent.verify_document(tampered_doc) assert is_valid is False def test_different_content_different_signatures(self, jacs_agent): doc1 = jacs_agent.create_document(json.dumps({'a': 1})) doc2 = jacs_agent.create_document(json.dumps({'a': 2})) parsed1 = json.loads(doc1) parsed2 = json.loads(doc2) sig1 = parsed1['jacsSignature']['signature'] sig2 = parsed2['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Python Examples » Pytest Setup","id":"1392","title":"Pytest Setup"},"1393":{"body":"","breadcrumbs":"Python Examples » Error Handling","id":"1393","title":"Error Handling"},"1394":{"body":"import jacs\nimport json\nfrom typing import Optional class JacsError(Exception): def __init__(self, message: str, code: str, details: dict = None): super().__init__(message) self.code = code self.details = details or {} def robust_create_document(config_path: str, content: dict) -> dict: \"\"\"Create a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except FileNotFoundError: raise JacsError( \"Configuration file not found\", \"CONFIG_NOT_FOUND\", {\"path\": config_path} ) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) except Exception as e: raise JacsError( \"Failed to create document\", \"CREATE_ERROR\", {\"original_error\": str(e), \"content\": content} ) def robust_verify_document(config_path: str, doc_string: str) -> dict: \"\"\"Verify a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: is_valid = agent.verify_document(doc_string) return {\"valid\": is_valid} except Exception as e: raise JacsError( \"Verification error\", \"VERIFY_ERROR\", {\"original_error\": str(e)} ) if __name__ == \"__main__\": try: doc = robust_create_document('./jacs.config.json', {'title': 'Test'}) print(f\"Created: {doc['jacsId']}\") except JacsError as e: print(f\"JACS Error [{e.code}]: {e}\") print(f\"Details: {e.details}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"Python Examples » Robust Error Handling Pattern","id":"1394","title":"Robust Error Handling Pattern"},"1395":{"body":"Python Installation - Setup guide Python API Reference - Complete API documentation Python MCP Integration - MCP details","breadcrumbs":"Python Examples » See Also","id":"1395","title":"See Also"},"1396":{"body":"This chapter provides complete, production-ready integration examples combining multiple JACS features.","breadcrumbs":"Integration Examples » Integration Examples","id":"1396","title":"Integration Examples"},"1397":{"body":"A complete example of a contract signing workflow with multiple agents.","breadcrumbs":"Integration Examples » Multi-Agent Contract Signing System","id":"1397","title":"Multi-Agent Contract Signing System"},"1398":{"body":"┌──────────────┐ ┌──────────────┐ ┌──────────────┐\n│ Seller │ │ Contract │ │ Buyer │\n│ Agent │────>│ Document │<────│ Agent │\n└──────────────┘ └──────────────┘ └──────────────┘ │ │ │ └────────────────────┼────────────────────┘ ↓ ┌──────────────┐ │ Signed │ │ Agreement │ └──────────────┘","breadcrumbs":"Integration Examples » Overview","id":"1398","title":"Overview"},"1399":{"body":"// contract-system.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; class ContractSigningSystem { constructor() { this.agents = new Map(); } async registerAgent(name, configPath) { const agent = new JacsAgent(); await agent.load(configPath); this.agents.set(name, { agent, configPath }); return agent; } async createContract(content, sellerName) { const seller = this.agents.get(sellerName); if (!seller) throw new Error(`Agent ${sellerName} not found`); // Create and sign the contract const signedContract = await seller.agent.createDocument( JSON.stringify(content) ); return JSON.parse(signedContract); } async createAgreement(contract, agentNames, question) { const firstAgent = this.agents.get(agentNames[0]); if (!firstAgent) throw new Error(`Agent ${agentNames[0]} not found`); // Get agent IDs const agentIds = []; for (const name of agentNames) { const agent = this.agents.get(name); if (!agent) throw new Error(`Agent ${name} not found`); // Get agent ID from config const config = JSON.parse(fs.readFileSync(agent.configPath, 'utf-8')); agentIds.push(config.jacs_agent_id_and_version.split(':')[0]); } const agreementDoc = await firstAgent.agent.createAgreement( JSON.stringify(contract), agentIds, question, 'Legal contract requiring signatures from all parties' ); return JSON.parse(agreementDoc); } async signAgreement(agreement, agentName) { const agent = this.agents.get(agentName); if (!agent) throw new Error(`Agent ${agentName} not found`); const signedDoc = await agent.agent.signAgreement( JSON.stringify(agreement) ); return JSON.parse(signedDoc); } async checkAgreementStatus(agreement, agentName) { const agent = this.agents.get(agentName); if (!agent) throw new Error(`Agent ${agentName} not found`); const statusJson = await agent.agent.checkAgreement( JSON.stringify(agreement) ); return JSON.parse(statusJson); }\n} // Usage\nasync function runContractWorkflow() { const system = new ContractSigningSystem(); // Register agents await system.registerAgent('seller', './seller.config.json'); await system.registerAgent('buyer', './buyer.config.json'); // Create contract const contract = await system.createContract({ type: 'purchase_agreement', parties: { seller: 'Widget Corp', buyer: 'Acme Inc' }, items: [ { name: 'Premium Widgets', quantity: 1000, unitPrice: 10.00 } ], totalValue: 10000, terms: 'Payment due within 30 days of delivery', effectiveDate: new Date().toISOString() }, 'seller'); console.log('Contract created:', contract.jacsId); // Create agreement const agreement = await system.createAgreement( contract, ['seller', 'buyer'], 'Do you agree to the terms of this purchase agreement?' ); console.log('Agreement created, awaiting signatures'); // Seller signs let signedAgreement = await system.signAgreement(agreement, 'seller'); console.log('Seller signed'); // Check status let status = await system.checkAgreementStatus(signedAgreement, 'seller'); console.log('Status after seller:', status.complete ? 'Complete' : 'Pending'); // Buyer signs signedAgreement = await system.signAgreement(signedAgreement, 'buyer'); console.log('Buyer signed'); // Final status status = await system.checkAgreementStatus(signedAgreement, 'buyer'); console.log('Final status:', status.complete ? 'Complete' : 'Pending'); // Save completed agreement fs.writeFileSync( './completed-agreement.json', JSON.stringify(signedAgreement, null, 2) ); return signedAgreement;\n} runContractWorkflow().catch(console.error);","breadcrumbs":"Integration Examples » Implementation","id":"1399","title":"Implementation"},"14":{"body":"With built-in observability, multiple storage backends, and comprehensive error handling, JACS is ready for production AI systems.","breadcrumbs":"Introduction » 🚀 Production Ready","id":"14","title":"🚀 Production Ready"},"140":{"body":"","breadcrumbs":"CLI Usage » Common Workflows","id":"140","title":"Common Workflows"},"1400":{"body":"A complete API gateway that authenticates requests and provides MCP tools.","breadcrumbs":"Integration Examples » Secure API Gateway with MCP Tools","id":"1400","title":"Secure API Gateway with MCP Tools"},"1401":{"body":"// api-gateway.js\nimport express from 'express';\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { JacsAgent } from '@hai.ai/jacs';\nimport { z } from 'zod'; // Initialize Express\nconst app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Create MCP server with tools\nconst mcpServer = new McpServer({ name: \"secure-api-gateway\", version: \"1.0.0\"\n}); // Document operations tool\nmcpServer.tool(\"create_document\", { content: z.object({}).passthrough().describe(\"Document content\"), type: z.string().optional().describe(\"Document type\")\n}, async ({ content, type }) => { const doc = await agent.createDocument(JSON.stringify({ ...content, documentType: type || 'generic' })); const parsed = JSON.parse(doc); return { content: [{ type: \"text\", text: JSON.stringify({ success: true, documentId: parsed.jacsId, version: parsed.jacsVersion }) }] };\n}); mcpServer.tool(\"verify_document\", { document: z.string().describe(\"JSON document string to verify\")\n}, async ({ document }) => { try { const isValid = await agent.verifyDocument(document); return { content: [{ type: \"text\", text: JSON.stringify({ valid: isValid }) }] }; } catch (error) { return { content: [{ type: \"text\", text: JSON.stringify({ valid: false, error: error.message }) }] }; }\n}); // Health check (unauthenticated)\napp.get('/health', (req, res) => { res.json({ status: 'healthy', timestamp: new Date().toISOString() });\n}); // REST API routes (JACS authenticated)\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Document REST endpoint\napp.post('/api/documents', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); app.post('/api/documents/verify', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } try { const isValid = await agent.verifyDocument( JSON.stringify(req.jacsPayload.document) ); res.send({ valid: isValid }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // MCP SSE endpoint (JACS authenticated)\nconst activeSessions = new Map(); app.get('/mcp/sse', async (req, res) => { const sessionId = Date.now().toString(); // Create SSE transport with JACS const baseTransport = new SSEServerTransport('/mcp/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server' ); activeSessions.set(sessionId, { transport: secureTransport, res }); // Connect MCP server await mcpServer.connect(secureTransport); res.on('close', () => { activeSessions.delete(sessionId); });\n}); app.post('/mcp/messages', express.text({ type: '*/*' }), async (req, res) => { // Find the active session and handle the message for (const [id, session] of activeSessions) { try { await session.transport.handlePostMessage(req, res, req.body); return; } catch (error) { // Try next session } } res.status(404).send({ error: 'No active session' });\n}); // Start server\napp.listen(PORT, () => { console.log(`Secure API Gateway running on port ${PORT}`); console.log(` REST API: http://localhost:${PORT}/api`); console.log(` MCP SSE: http://localhost:${PORT}/mcp/sse`);\n});","breadcrumbs":"Integration Examples » Node.js Implementation","id":"1401","title":"Node.js Implementation"},"1402":{"body":"# api_gateway.py\nfrom fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn\nimport json app = FastAPI(title=\"Secure API Gateway\") # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create MCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"secure-api-gateway\")) @mcp.tool()\ndef create_document(content: dict, document_type: str = \"generic\") -> str: \"\"\"Create a signed JACS document\"\"\" doc_content = {**content, \"documentType\": document_type} signed_doc = agent.create_document(json.dumps(doc_content)) parsed = json.loads(signed_doc) return json.dumps({ \"success\": True, \"documentId\": parsed[\"jacsId\"], \"version\": parsed[\"jacsVersion\"] }) @mcp.tool()\ndef verify_document(document: str) -> str: \"\"\"Verify a JACS document signature\"\"\" try: is_valid = agent.verify_document(document) return json.dumps({\"valid\": is_valid}) except Exception as e: return json.dumps({\"valid\": False, \"error\": str(e)}) # Health check\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"healthy\"} # REST API endpoints\n@app.post(\"/api/documents\")\nasync def create_doc(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc[\"jacsId\"], \"version\": doc[\"jacsVersion\"] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) @app.post(\"/api/documents/verify\")\nasync def verify_doc(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") document = payload.get(\"document\") is_valid = agent.verify_document(json.dumps(document)) result = {\"valid\": is_valid} signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Mount MCP SSE endpoint\napp.mount(\"/mcp\", mcp.sse_app()) if __name__ == \"__main__\": print(\"Secure API Gateway running\") print(\" REST API: http://localhost:8000/api\") print(\" MCP SSE: http://localhost:8000/mcp/sse\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Integration Examples » Python Implementation","id":"1402","title":"Python Implementation"},"1403":{"body":"Track and verify document history with cryptographic proofs. // audit-trail.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class AuditTrailSystem { constructor(configPath, auditDir = './audit') { this.configPath = configPath; this.auditDir = auditDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.auditDir)) { fs.mkdirSync(this.auditDir, { recursive: true }); } } async createDocument(content, metadata = {}) { const auditEntry = { action: 'create', timestamp: new Date().toISOString(), content, metadata }; const signedDoc = await this.agent.createDocument( JSON.stringify({ ...content, _audit: auditEntry }) ); const doc = JSON.parse(signedDoc); // Save to audit log await this.logAuditEntry(doc.jacsId, 'create', doc); return doc; } async updateDocument(originalDoc, newContent, metadata = {}) { const auditEntry = { action: 'update', timestamp: new Date().toISOString(), previousVersion: originalDoc.jacsVersion, changes: this.computeChanges(originalDoc, newContent), metadata }; const updatedDoc = await this.agent.updateDocument( JSON.stringify(originalDoc), JSON.stringify({ ...newContent, _audit: auditEntry }) ); const doc = JSON.parse(updatedDoc); // Save to audit log await this.logAuditEntry(doc.jacsId, 'update', doc); return doc; } computeChanges(original, updated) { const changes = []; for (const [key, value] of Object.entries(updated)) { if (key.startsWith('_')) continue; if (!(key in original)) { changes.push({ field: key, type: 'added', newValue: value }); } else if (JSON.stringify(original[key]) !== JSON.stringify(value)) { changes.push({ field: key, type: 'modified', oldValue: original[key], newValue: value }); } } for (const key of Object.keys(original)) { if (key.startsWith('_') || key.startsWith('jacs')) continue; if (!(key in updated)) { changes.push({ field: key, type: 'removed', oldValue: original[key] }); } } return changes; } async logAuditEntry(documentId, action, document) { const logFile = path.join(this.auditDir, `${documentId}.audit.jsonl`); const entry = { timestamp: new Date().toISOString(), action, documentId, version: document.jacsVersion, signature: document.jacsSignature, hash: document.jacsSha256 }; fs.appendFileSync(logFile, JSON.stringify(entry) + '\\n'); } async getAuditTrail(documentId) { const logFile = path.join(this.auditDir, `${documentId}.audit.jsonl`); if (!fs.existsSync(logFile)) { return []; } const lines = fs.readFileSync(logFile, 'utf-8').trim().split('\\n'); return lines.map(line => JSON.parse(line)); } async verifyAuditTrail(documentId) { const trail = await this.getAuditTrail(documentId); const results = []; for (const entry of trail) { // Load and verify each version const docPath = path.join( this.auditDir, 'documents', documentId, `${entry.version}.json` ); if (fs.existsSync(docPath)) { const docString = fs.readFileSync(docPath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); results.push({ version: entry.version, timestamp: entry.timestamp, action: entry.action, valid: isValid }); } else { results.push({ version: entry.version, timestamp: entry.timestamp, action: entry.action, valid: null, error: 'Document file not found' }); } } return results; }\n} // Usage\nasync function runAuditExample() { const audit = new AuditTrailSystem('./jacs.config.json'); await audit.initialize(); // Create a document const doc = await audit.createDocument({ type: 'financial_report', period: 'Q1 2024', revenue: 1000000, expenses: 750000 }, { author: 'Finance Team' }); console.log('Created document:', doc.jacsId); // Update the document const updated = await audit.updateDocument(doc, { type: 'financial_report', period: 'Q1 2024', revenue: 1000000, expenses: 750000, profit: 250000, // Added field status: 'approved' }, { author: 'CFO', reason: 'Added profit calculation' }); console.log('Updated to version:', updated.jacsVersion); // Get audit trail const trail = await audit.getAuditTrail(doc.jacsId); console.log('Audit trail:'); for (const entry of trail) { console.log(` ${entry.timestamp} - ${entry.action} (v${entry.version})`); }\n} runAuditExample().catch(console.error);","breadcrumbs":"Integration Examples » Document Audit Trail System","id":"1403","title":"Document Audit Trail System"},"1404":{"body":"A complete multi-tenant document service with isolated agents per tenant. # multi_tenant.py\nimport jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Dict, Optional class TenantManager: def __init__(self, base_dir: str = './tenants'): self.base_dir = Path(base_dir) self.agents: Dict[str, jacs.JacsAgent] = {} def initialize_tenant(self, tenant_id: str) -> dict: \"\"\"Create a new tenant with its own JACS agent\"\"\" tenant_dir = self.base_dir / tenant_id data_dir = tenant_dir / 'data' key_dir = tenant_dir / 'keys' # Create directories data_dir.mkdir(parents=True, exist_ok=True) key_dir.mkdir(parents=True, exist_ok=True) # Create tenant config config = { \"jacs_data_directory\": str(data_dir), \"jacs_key_directory\": str(key_dir), \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = tenant_dir / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f, indent=2) # Initialize agent agent = jacs.JacsAgent() agent.load(str(config_path)) self.agents[tenant_id] = agent return { \"tenant_id\": tenant_id, \"config_path\": str(config_path), \"initialized\": True } def get_agent(self, tenant_id: str) -> Optional[jacs.JacsAgent]: \"\"\"Get the JACS agent for a tenant\"\"\" if tenant_id not in self.agents: # Try to load existing tenant config_path = self.base_dir / tenant_id / 'jacs.config.json' if config_path.exists(): agent = jacs.JacsAgent() agent.load(str(config_path)) self.agents[tenant_id] = agent return self.agents.get(tenant_id) def create_document(self, tenant_id: str, content: dict) -> dict: \"\"\"Create a document for a tenant\"\"\" agent = self.get_agent(tenant_id) if not agent: raise ValueError(f\"Tenant {tenant_id} not found\") signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) def verify_document(self, tenant_id: str, doc_string: str) -> bool: \"\"\"Verify a document for a tenant\"\"\" agent = self.get_agent(tenant_id) if not agent: raise ValueError(f\"Tenant {tenant_id} not found\") return agent.verify_document(doc_string) def list_tenants(self) -> list: \"\"\"List all tenants\"\"\" if not self.base_dir.exists(): return [] return [ d.name for d in self.base_dir.iterdir() if d.is_dir() and (d / 'jacs.config.json').exists() ] class MultiTenantDocumentService: def __init__(self): self.tenant_manager = TenantManager() def create_tenant(self, tenant_id: str) -> dict: return self.tenant_manager.initialize_tenant(tenant_id) def create_document(self, tenant_id: str, content: dict) -> dict: doc = self.tenant_manager.create_document(tenant_id, content) # Save document tenant_dir = self.tenant_manager.base_dir / tenant_id / 'documents' tenant_dir.mkdir(parents=True, exist_ok=True) doc_path = tenant_dir / f\"{doc['jacsId']}.json\" with open(doc_path, 'w') as f: json.dump(doc, f, indent=2) return { \"tenant_id\": tenant_id, \"document_id\": doc['jacsId'], \"version\": doc['jacsVersion'], \"path\": str(doc_path) } def get_document(self, tenant_id: str, document_id: str) -> Optional[dict]: doc_path = ( self.tenant_manager.base_dir / tenant_id / 'documents' / f\"{document_id}.json\" ) if not doc_path.exists(): return None with open(doc_path, 'r') as f: return json.load(f) def verify_document(self, tenant_id: str, document_id: str) -> dict: doc = self.get_document(tenant_id, document_id) if not doc: return {\"valid\": False, \"error\": \"Document not found\"} is_valid = self.tenant_manager.verify_document( tenant_id, json.dumps(doc) ) return { \"tenant_id\": tenant_id, \"document_id\": document_id, \"valid\": is_valid } # Usage\nif __name__ == \"__main__\": service = MultiTenantDocumentService() # Create tenants tenant1 = service.create_tenant(\"acme-corp\") tenant2 = service.create_tenant(\"globex-inc\") print(f\"Created tenants: {tenant1['tenant_id']}, {tenant2['tenant_id']}\") # Create documents for each tenant doc1 = service.create_document(\"acme-corp\", { \"type\": \"invoice\", \"amount\": 5000, \"customer\": \"John Doe\" }) print(f\"Acme Corp document: {doc1['document_id']}\") doc2 = service.create_document(\"globex-inc\", { \"type\": \"contract\", \"value\": 100000, \"parties\": [\"Globex\", \"Initech\"] }) print(f\"Globex Inc document: {doc2['document_id']}\") # Verify documents verify1 = service.verify_document(\"acme-corp\", doc1['document_id']) verify2 = service.verify_document(\"globex-inc\", doc2['document_id']) print(f\"Acme Corp verification: {verify1['valid']}\") print(f\"Globex Inc verification: {verify2['valid']}\") # Cross-tenant verification should fail cross = service.verify_document(\"acme-corp\", doc2['document_id']) print(f\"Cross-tenant verification: {cross}\")","breadcrumbs":"Integration Examples » Multi-Tenant Document Service","id":"1404","title":"Multi-Tenant Document Service"},"1405":{"body":"Notify external systems when documents are signed. // webhook-notifier.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Webhook configuration\nconst webhooks = new Map(); // Register a webhook\napp.post('/webhooks', express.json(), (req, res) => { const { url, events, secret } = req.body; const webhookId = crypto.randomUUID(); webhooks.set(webhookId, { url, events, secret, active: true }); res.json({ webhookId, message: 'Webhook registered' });\n}); // JACS-protected document endpoints\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); app.post('/api/documents', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } // Create document const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); // Notify webhooks await notifyWebhooks('document.created', { documentId: doc.jacsId, version: doc.jacsVersion, timestamp: new Date().toISOString() }); res.send({ success: true, documentId: doc.jacsId });\n}); async function notifyWebhooks(event, payload) { for (const [id, webhook] of webhooks) { if (!webhook.active) continue; if (!webhook.events.includes(event) && !webhook.events.includes('*')) continue; try { // Sign the webhook payload with JACS const signedPayload = await agent.signRequest({ event, payload, timestamp: new Date().toISOString(), webhookId: id }); // Send webhook const response = await fetch(webhook.url, { method: 'POST', headers: { 'Content-Type': 'text/plain', 'X-JACS-Signature': 'v1', 'X-Webhook-Secret': webhook.secret }, body: signedPayload }); if (!response.ok) { console.error(`Webhook ${id} failed: ${response.status}`); } } catch (error) { console.error(`Webhook ${id} error:`, error.message); } }\n} app.listen(PORT, () => { console.log(`Webhook notification server running on port ${PORT}`);\n});","breadcrumbs":"Integration Examples » Webhook Notification System","id":"1405","title":"Webhook Notification System"},"1406":{"body":"CLI Examples - Command-line examples Node.js Examples - Node.js code examples Python Examples - Python code examples MCP Integration - MCP details Web Servers - HTTP integration","breadcrumbs":"Integration Examples » See Also","id":"1406","title":"See Also"},"1407":{"body":"This page provides a comprehensive reference for all JACS command-line interface commands.","breadcrumbs":"CLI Command Reference » CLI Command Reference","id":"1407","title":"CLI Command Reference"},"1408":{"body":"","breadcrumbs":"CLI Command Reference » Global Commands","id":"1408","title":"Global Commands"},"1409":{"body":"Prints version and build information for the JACS installation. jacs version","breadcrumbs":"CLI Command Reference » jacs version","id":"1409","title":"jacs version"},"141":{"body":"# 1. Initialize (if not done)\njacs init # 2. Create document\njacs document create -f ./my-document.json # 3. Verify the signed document\njacs document verify -f ./jacs_data/[document-id].json","breadcrumbs":"CLI Usage » Create and Sign a Document","id":"141","title":"Create and Sign a Document"},"1410":{"body":"Initialize JACS by creating both configuration and agent (with cryptographic keys). This is typically the first command run when setting up JACS. jacs init","breadcrumbs":"CLI Command Reference » jacs init","id":"1410","title":"jacs init"},"1411":{"body":"Print help information for JACS commands. jacs help [COMMAND]","breadcrumbs":"CLI Command Reference » jacs help","id":"1411","title":"jacs help"},"1412":{"body":"","breadcrumbs":"CLI Command Reference » Configuration Commands","id":"1412","title":"Configuration Commands"},"1413":{"body":"Work with JACS configuration settings. jacs config [SUBCOMMAND] Note: Specific subcommands for config are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs config","id":"1413","title":"jacs config"},"1414":{"body":"","breadcrumbs":"CLI Command Reference » Agent Commands","id":"1414","title":"Agent Commands"},"1415":{"body":"Work with JACS agents - the cryptographic identities that sign and verify documents. jacs agent [SUBCOMMAND] Note: Specific subcommands for agent management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs agent","id":"1415","title":"jacs agent"},"1416":{"body":"","breadcrumbs":"CLI Command Reference » Task Commands","id":"1416","title":"Task Commands"},"1417":{"body":"Work with JACS agent tasks - structured workflows between agents. jacs task [SUBCOMMAND] Note: Specific subcommands for task management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs task","id":"1417","title":"jacs task"},"1418":{"body":"The jacs document command provides comprehensive document management capabilities.","breadcrumbs":"CLI Command Reference » Document Commands","id":"1418","title":"Document Commands"},"1419":{"body":"Create a new JACS document, either by embedding or parsing a document with optional file attachments. Usage: jacs document create [OPTIONS] Options: -a  - Path to the agent file. If not specified, uses config jacs_agent_id_and_version -f  - Path to input file. Must be JSON format -o  - Output filename for the created document -d  - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -n, --no-save - Instead of saving files, print to stdout -s, --schema  - Path to JSON schema file to use for validation --attach  - Path to file or directory for file attachments -e, --embed  - Embed documents or keep them external [possible values: true, false] -h, --help - Print help information Examples: # Create document from JSON file\njacs document create -f my-document.json # Create document with embedded attachment\njacs document create -f document.json --attach ./image.jpg --embed true # Create document with referenced attachment\njacs document create -f document.json --attach ./data.csv --embed false # Create from directory of JSON files\njacs document create -d ./documents/ # Create with custom schema validation\njacs document create -f document.json -s custom-schema.json # Print to stdout instead of saving\njacs document create -f document.json --no-save","breadcrumbs":"CLI Command Reference » jacs document create","id":"1419","title":"jacs document create"},"142":{"body":"# 1. Create agreement on a document\njacs document create-agreement -f ./document.json -i agent1-id,agent2-id # 2. First agent signs\njacs document sign-agreement -f ./document.json # 3. Second agent signs (using their config)\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json # 4. Check agreement is complete\njacs document check-agreement -f ./document.json","breadcrumbs":"CLI Usage » Multi-Agent Agreement","id":"142","title":"Multi-Agent Agreement"},"1420":{"body":"Create a new version of an existing document. Requires both the original JACS file and the modified JACS metadata. Usage: jacs document update [OPTIONS] Options: -a  - Path to the agent file -f  - Path to original document file -n  - Path to new/modified document file -o  - Output filename for updated document -v, --verbose - Enable verbose output -n, --no-save - Print to stdout instead of saving -s, --schema  - Path to JSON schema file for validation --attach  - Path to file or directory for additional attachments -e, --embed  - Embed new attachments or keep them external -h, --help - Print help information Example: # Update document with new version\njacs document update -f original.json -n modified.json -o updated.json # Update and add new attachments\njacs document update -f original.json -n modified.json --attach ./new-file.pdf --embed false","breadcrumbs":"CLI Command Reference » jacs document update","id":"1420","title":"jacs document update"},"1421":{"body":"Verify a document's hash, signatures, and schema compliance. Usage: jacs document verify [OPTIONS] Options: -a  - Path to the agent file -f  - Path to input file. Must be JSON format -d  - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -s, --schema  - Path to JSON schema file to use for validation -h, --help - Print help information Examples: # Verify single document\njacs document verify -f signed-document.json # Verify all documents in directory\njacs document verify -d ./documents/ # Verify with custom schema\njacs document verify -f document.json -s custom-schema.json Verification Process: Hash verification - Confirms document integrity Signature verification - Validates cryptographic signatures Schema validation - Ensures document structure compliance File integrity - Checks SHA256 checksums of attached files","breadcrumbs":"CLI Command Reference » jacs document verify","id":"1421","title":"jacs document verify"},"1422":{"body":"Extract embedded file contents from documents back to the filesystem. Usage: jacs document extract [OPTIONS] Options: -a  - Path to the agent file -f  - Path to input file containing embedded files -d  - Path to directory of files to process -s, --schema  - Path to JSON schema file for validation -h, --help - Print help information Examples: # Extract embedded files from single document\njacs document extract -f document-with-embedded-files.json # Extract from all documents in directory jacs document extract -d ./documents/ Extract Process: Reads embedded file contents from document Decodes base64-encoded data Writes files to their original paths Creates backup of existing files (with timestamp)","breadcrumbs":"CLI Command Reference » jacs document extract","id":"1422","title":"jacs document extract"},"1423":{"body":"JACS provides specialized commands for managing multi-agent agreements. jacs document check-agreement Given a document, provide a list of agents that should sign the document. Usage: jacs document check-agreement [OPTIONS] jacs document create-agreement Create an agreement structure for a document that requires multiple agent signatures. Usage: jacs document create-agreement [OPTIONS] jacs document sign-agreement Sign the agreement section of a document with the current agent's cryptographic signature. Usage: jacs document sign-agreement [OPTIONS]","breadcrumbs":"CLI Command Reference » Agreement Commands","id":"1423","title":"Agreement Commands"},"1424":{"body":"","breadcrumbs":"CLI Command Reference » Common Patterns","id":"1424","title":"Common Patterns"},"1425":{"body":"# 1. Initialize JACS\njacs init # 2. Create document with attachments\njacs document create -f document.json --attach ./files/ --embed true # 3. Verify document integrity\njacs document verify -f created-document.json # 4. Update document if needed\njacs document update -f original.json -n modified.json # 5. Extract embedded files when needed\njacs document extract -f document.json","breadcrumbs":"CLI Command Reference » Basic Document Lifecycle","id":"1425","title":"Basic Document Lifecycle"},"1426":{"body":"# Embed small files for portability\njacs document create -f doc.json --attach ./small-image.png --embed true # Reference large files to save space\njacs document create -f doc.json --attach ./large-video.mp4 --embed false # Attach multiple files from directory\njacs document create -f doc.json --attach ./attachments/ --embed false","breadcrumbs":"CLI Command Reference » Working with Attachments","id":"1426","title":"Working with Attachments"},"1427":{"body":"# Create with schema validation\njacs document create -f document.json -s schema.json # Verify against specific schema\njacs document verify -f document.json -s schema.json","breadcrumbs":"CLI Command Reference » Schema Validation Workflow","id":"1427","title":"Schema Validation Workflow"},"1428":{"body":"Most commands support these common options: -h, --help - Show help information -v, --verbose - Enable verbose output for debugging -a  - Specify custom agent file (overrides config default)","breadcrumbs":"CLI Command Reference » Global Options","id":"1428","title":"Global Options"},"1429":{"body":"0 - Success 1 - General error (invalid arguments, file not found, etc.) 2 - Verification failure (hash mismatch, invalid signature, etc.) 3 - Schema validation failure","breadcrumbs":"CLI Command Reference » Exit Codes","id":"1429","title":"Exit Codes"},"143":{"body":"# Look up agent by domain\njacs agent lookup other-agent.example.com # Verify with strict DNS\njacs agent verify -a ./other-agent.json --require-strict-dns","breadcrumbs":"CLI Usage » Verify Another Agent","id":"143","title":"Verify Another Agent"},"1430":{"body":"JACS_CONFIG_PATH - Override default configuration file location JACS_DATA_DIR - Override default data directory location JACS_AGENT_FILE - Default agent file to use (if not specified with -a)","breadcrumbs":"CLI Command Reference » Environment Variables","id":"1430","title":"Environment Variables"},"1431":{"body":"","breadcrumbs":"CLI Command Reference » File Formats","id":"1431","title":"File Formats"},"1432":{"body":"JSON documents - Must be valid JSON format Schema files - JSON Schema format (draft-07 compatible) Agent files - JACS agent format with cryptographic keys Attachments - Any file type (automatically detected MIME type)","breadcrumbs":"CLI Command Reference » Input Files","id":"1432","title":"Input Files"},"1433":{"body":"JACS documents - JSON format with JACS metadata, signatures, and checksums Extracted files - Original format of embedded attachments","breadcrumbs":"CLI Command Reference » Output Files","id":"1433","title":"Output Files"},"1434":{"body":"","breadcrumbs":"Configuration Reference » Configuration Reference","id":"1434","title":"Configuration Reference"},"1435":{"body":"","breadcrumbs":"Configuration Reference » Overview","id":"1435","title":"Overview"},"1436":{"body":"When verifying signed documents, JACS resolves the signer’s public key using a configurable order of sources. Set JACS_KEY_RESOLUTION (environment variable or in config) to a comma-separated list of sources: local (trust store), dns (DNS TXT record), hai (HAI key service). Example: JACS_KEY_RESOLUTION=local,hai or local,dns,hai. The first source that returns a key for the signer’s ID is used. Use verify_standalone() with explicit keyResolution for one-off verification without loading a full config.","breadcrumbs":"Configuration Reference » Key resolution for verifiers","id":"1436","title":"Key resolution for verifiers"},"1437":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_use_security\": \"false\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"jacs.private.pem.enc\", \"jacs_agent_public_key_filename\": \"jacs.public.pem\", \"jacs_agent_key_algorithm\": \"RSA-PSS\", \"jacs_default_storage\": \"fs\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"./logs\" }, \"headers\": { \"Authorization\": \"Bearer token\", \"X-API-Key\": \"secret\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" } }, \"export_interval_seconds\": 60, \"headers\": { \"X-Service\": \"jacs\" } }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"platform\", \"region\": \"us-west-2\" } } } }\n}","breadcrumbs":"Configuration Reference » Complete Example Configuration","id":"1437","title":"Complete Example Configuration"},"1438":{"body":"JACS supports comprehensive observability through configurable logging, metrics, and tracing. All observability features are optional and can be configured in the jacs.config.json file.","breadcrumbs":"Configuration Reference » Observability Configuration","id":"1438","title":"Observability Configuration"},"1439":{"body":"Controls how JACS generates and outputs log messages. Field Type Required Description enabled boolean Yes Whether logging is enabled level string Yes Minimum log level: trace, debug, info, warn, error destination object Yes Where logs are sent (see destinations below) headers object No Additional headers for remote destinations Log Destinations File Logging { \"type\": \"file\", \"path\": \"./logs\"\n} Writes logs to rotating files in the specified directory. Console Logging (stderr) { \"type\": \"stderr\"\n} Outputs logs to standard error stream. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Sends logs to an OTLP-compatible endpoint (like Jaeger, Grafana Cloud). Null (disabled) { \"type\": \"null\"\n} Discards all log output.","breadcrumbs":"Configuration Reference » Logs Configuration","id":"1439","title":"Logs Configuration"},"144":{"body":"Code Meaning 0 Success 1 General error 2 Invalid arguments 3 File not found 4 Verification failed 5 Signature invalid","breadcrumbs":"CLI Usage » Exit Codes","id":"144","title":"Exit Codes"},"1440":{"body":"Controls collection and export of application metrics. Field Type Required Description enabled boolean Yes Whether metrics collection is enabled destination object Yes Where metrics are exported (see destinations below) export_interval_seconds integer No How often to export metrics (default: 60) headers object No Additional headers for remote destinations Metrics Destinations Prometheus Remote Write { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" }\n} Exports metrics in Prometheus format to a remote write endpoint. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Exports metrics to an OTLP-compatible endpoint. File Export { \"type\": \"file\", \"path\": \"./metrics.txt\"\n} Writes metrics to a local file. Console Output (stdout) { \"type\": \"stdout\"\n} Prints metrics to standard output.","breadcrumbs":"Configuration Reference » Metrics Configuration","id":"1440","title":"Metrics Configuration"},"1441":{"body":"Controls distributed tracing for request flows. Field Type Required Description enabled boolean Yes Whether tracing is enabled sampling object No Sampling configuration (see below) resource object No Service identification (see below) Sampling Configuration Controls which traces are collected to manage overhead. Field Type Default Description ratio number 1.0 Fraction of traces to sample (0.0-1.0) parent_based boolean true Whether to respect parent trace sampling decisions rate_limit integer none Maximum traces per second Examples: \"ratio\": 1.0 - Sample all traces (100%) \"ratio\": 0.1 - Sample 10% of traces \"ratio\": 0.01 - Sample 1% of traces \"rate_limit\": 10 - Maximum 10 traces per second Resource Configuration Identifies the service in distributed tracing systems. Field Type Required Description service_name string Yes Name of the service service_version string No Version of the service environment string No Environment (dev, staging, prod) attributes object No Custom key-value attributes","breadcrumbs":"Configuration Reference » Tracing Configuration","id":"1441","title":"Tracing Configuration"},"1442":{"body":"For remote destinations (OTLP, Prometheus), you can specify authentication headers: Bearer Token Authentication: \"headers\": { \"Authorization\": \"Bearer your-token-here\"\n} Basic Authentication: \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\"\n} API Key Authentication: \"headers\": { \"X-API-Key\": \"your-api-key\", \"X-Auth-Token\": \"your-auth-token\"\n}","breadcrumbs":"Configuration Reference » Authentication & Headers","id":"1442","title":"Authentication & Headers"},"1443":{"body":"","breadcrumbs":"Configuration Reference » Common Patterns","id":"1443","title":"Common Patterns"},"1444":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"debug\", \"destination\": { \"type\": \"stderr\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"stdout\" } }\n}","breadcrumbs":"Configuration Reference » Development Configuration","id":"1444","title":"Development Configuration"},"1445":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"otlp\", \"endpoint\": \"https://logs.example.com:4317\", \"headers\": { \"Authorization\": \"Bearer prod-token\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"https://metrics.example.com/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.05, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\" } }\n}","breadcrumbs":"Configuration Reference » Production Configuration","id":"1445","title":"Production Configuration"},"1446":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.txt\" }, \"export_interval_seconds\": 60 }\n}","breadcrumbs":"Configuration Reference » File-based Configuration","id":"1446","title":"File-based Configuration"},"1447":{"body":"The observability configuration works alongside JACS's core configuration system.","breadcrumbs":"Configuration Reference » Environment Variable Integration","id":"1447","title":"Environment Variable Integration"},"1448":{"body":"Only one environment variable is truly required: JACS_PRIVATE_KEY_PASSWORD - Password for encrypting/decrypting private keys (required for cryptographic operations)","breadcrumbs":"Configuration Reference » Required Environment Variable","id":"1448","title":"Required Environment Variable"},"1449":{"body":"All other JACS settings are configuration file fields that have sensible defaults: jacs_data_directory - Where agent/document data is stored (default: ./jacs_data) jacs_key_directory - Where cryptographic keys are stored (default: ./jacs_keys) jacs_agent_key_algorithm - Cryptographic algorithm to use (default: RSA-PSS) jacs_default_storage - Storage backend (default: fs) jacs_use_security / JACS_ENABLE_FILESYSTEM_QUARANTINE - Enable filesystem quarantine of executable files (default: false). The env var JACS_USE_SECURITY is deprecated; use JACS_ENABLE_FILESYSTEM_QUARANTINE instead. These can be overridden by environment variables if needed, but they are primarily configured through the jacs.config.json file. The observability configuration is completely optional - JACS will work without any observability configuration.","breadcrumbs":"Configuration Reference » Configuration-Based Settings","id":"1449","title":"Configuration-Based Settings"},"145":{"body":"Creating an Agent - Detailed agent creation guide Working with Documents - Document operations in depth Agreements - Multi-agent agreements","breadcrumbs":"CLI Usage » Next Steps","id":"145","title":"Next Steps"},"1450":{"body":"The jacs_default_storage field determines where JACS stores agent data, documents, and keys. This is a critical configuration that affects how your data is persisted and accessed.","breadcrumbs":"Configuration Reference » Storage Configuration","id":"1450","title":"Storage Configuration"},"1451":{"body":"Backend Value Description Use Case Filesystem \"fs\" Local file system storage Development, single-node deployments AWS S3 \"aws\" Amazon S3 object storage Production, cloud deployments HAI Remote \"hai\" HAI.ai remote storage service HAI.ai platform integration Memory \"memory\" In-memory storage (non-persistent) Testing, temporary data Web Local \"local\" Browser local storage (WASM only) Web applications","breadcrumbs":"Configuration Reference » Available Storage Backends","id":"1451","title":"Available Storage Backends"},"1452":{"body":"Filesystem Storage (\"fs\") { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: None - works out of the box Data location: Local directories as specified in config Best for: Development, local testing, single-machine deployments AWS S3 Storage (\"aws\") { \"jacs_default_storage\": \"aws\"\n} Required Environment Variables: JACS_ENABLE_AWS_BUCKET_NAME - S3 bucket name AWS_ACCESS_KEY_ID - AWS access key AWS_SECRET_ACCESS_KEY - AWS secret key AWS_REGION - AWS region (optional, defaults to us-east-1) Best for: Production deployments, distributed systems, cloud-native applications HAI Remote Storage (\"hai\") { \"jacs_default_storage\": \"hai\"\n} Required Environment Variables: HAI_STORAGE_URL - HAI.ai storage service endpoint Best for: Integration with HAI.ai platform services Memory Storage (\"memory\") { \"jacs_default_storage\": \"memory\"\n} Requirements: None Data persistence: None - data is lost when application stops Best for: Unit testing, temporary operations, development scenarios","breadcrumbs":"Configuration Reference » Backend-Specific Configuration","id":"1452","title":"Backend-Specific Configuration"},"1453":{"body":"Agent data (agent definitions, signatures) are stored using the configured backend Documents are stored using the configured backend Cryptographic keys are stored using the configured backend Observability data (logs, metrics) can use separate storage via observability configuration","breadcrumbs":"Configuration Reference » Storage Behavior","id":"1453","title":"Storage Behavior"},"1454":{"body":"Development Setup (Filesystem) { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./dev_data\", \"jacs_key_directory\": \"./dev_keys\"\n} Production Setup (AWS S3) { \"jacs_default_storage\": \"aws\"\n} With environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-production-bucket\"\nexport AWS_ACCESS_KEY_ID=\"AKIA...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\" HAI Platform Integration { \"jacs_default_storage\": \"hai\"\n} With environment variable: export HAI_STORAGE_URL=\"https://storage.hai.ai/v1\"","breadcrumbs":"Configuration Reference » Configuration Examples","id":"1454","title":"Configuration Examples"},"1455":{"body":"AWS S3 : Ensure proper IAM permissions for bucket access HAI Remote : Secure the HAI_STORAGE_URL endpoint and any required authentication Filesystem : Ensure proper file system permissions for data and key directories Keys : Regardless of storage backend, always set JACS_PRIVATE_KEY_PASSWORD for key encryption","breadcrumbs":"Configuration Reference » Security Considerations","id":"1455","title":"Security Considerations"},"1456":{"body":"When changing storage backends, you'll need to: Export existing data from the current backend Update the jacs_default_storage configuration Set any required environment variables for the new backend Import data into the new backend JACS doesn't automatically migrate data between storage backends - this must be done manually or via custom scripts.","breadcrumbs":"Configuration Reference » Migration Between Storage Backends","id":"1456","title":"Migration Between Storage Backends"},"1457":{"body":"This reference documents error codes and messages you may encounter when using JACS.","breadcrumbs":"Error Codes » Error Codes","id":"1457","title":"Error Codes"},"1458":{"body":"Code Name Description 0 Success Operation completed successfully 1 General Error Unspecified error occurred 2 Invalid Arguments Command line arguments invalid 3 File Not Found Specified file does not exist 4 Verification Failed Document or signature verification failed 5 Signature Invalid Cryptographic signature is invalid","breadcrumbs":"Error Codes » CLI Exit Codes","id":"1458","title":"CLI Exit Codes"},"1459":{"body":"","breadcrumbs":"Error Codes » Configuration Errors","id":"1459","title":"Configuration Errors"},"146":{"body":"An agent is the fundamental identity in JACS - an autonomous entity that can create, sign, and verify documents. This guide covers creating and managing agents.","breadcrumbs":"Creating an Agent » Creating an Agent","id":"146","title":"Creating an Agent"},"1460":{"body":"Error: Configuration file not found: jacs.config.json Cause: JACS cannot find the configuration file. Solution: # Initialize JACS to create configuration\njacs init # Or specify a custom config path\nJACS_CONFIG_PATH=./custom.config.json jacs agent verify","breadcrumbs":"Error Codes » Missing Configuration","id":"1460","title":"Missing Configuration"},"1461":{"body":"Error: Invalid configuration: missing required field 'jacs_key_directory' Cause: Configuration file is missing required fields. Solution: Ensure your jacs.config.json contains all required fields: { \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Error Codes » Invalid Configuration","id":"1461","title":"Invalid Configuration"},"1462":{"body":"Error: Key directory not found: ./jacs_keys Cause: The specified key directory does not exist. Solution: # Create the directory\nmkdir -p ./jacs_keys # Or run init to create everything\njacs init","breadcrumbs":"Error Codes » Key Directory Not Found","id":"1462","title":"Key Directory Not Found"},"1463":{"body":"","breadcrumbs":"Error Codes » Cryptographic Errors","id":"1463","title":"Cryptographic Errors"},"1464":{"body":"Error: Private key file not found: private.pem Cause: The private key file is missing from the key directory. Solution: # Generate new keys\njacs agent create --create-keys true","breadcrumbs":"Error Codes » Private Key Not Found","id":"1464","title":"Private Key Not Found"},"1465":{"body":"Error: Failed to parse private key: invalid PEM format Cause: The key file is corrupted or in wrong format. Solution: Regenerate keys with jacs agent create --create-keys true Ensure the key file is not corrupted","breadcrumbs":"Error Codes » Invalid Key Format","id":"1465","title":"Invalid Key Format"},"1466":{"body":"Error: Private key is encrypted but no password provided Cause: Encrypted private key requires password. Solution: export JACS_PRIVATE_KEY_PASSWORD=\"your-password\"\njacs document create -f doc.json","breadcrumbs":"Error Codes » Key Password Required","id":"1466","title":"Key Password Required"},"1467":{"body":"Error: Key algorithm 'ring-Ed25519' does not match configured algorithm 'RSA-PSS' Cause: The key file was created with a different algorithm than configured. Solution: Update config to match key algorithm, or Regenerate keys with the correct algorithm","breadcrumbs":"Error Codes » Algorithm Mismatch","id":"1467","title":"Algorithm Mismatch"},"1468":{"body":"","breadcrumbs":"Error Codes » Signature Errors","id":"1468","title":"Signature Errors"},"1469":{"body":"Error: Document verification failed: signature does not match content Cause: Document content has been modified after signing. Solution: The document may have been tampered with Re-sign the document if you have the original content","breadcrumbs":"Error Codes » Verification Failed","id":"1469","title":"Verification Failed"},"147":{"body":"A JACS agent is: A unique identity with a UUID that never changes A holder of cryptographic keys for signing A provider of services defined in the agent document Self-signed to prove authenticity","breadcrumbs":"Creating an Agent » What is an Agent?","id":"147","title":"What is an Agent?"},"1470":{"body":"Error: Document missing jacsSignature field Cause: Document was not signed or signature was removed. Solution: # Create a signed document\njacs document create -f unsigned-doc.json","breadcrumbs":"Error Codes » Missing Signature","id":"1470","title":"Missing Signature"},"1471":{"body":"Error: Invalid signature format: expected base64 encoded string Cause: The signature field is malformed. Solution: Re-sign the document Verify the document hasn't been corrupted","breadcrumbs":"Error Codes » Invalid Signature Format","id":"1471","title":"Invalid Signature Format"},"1472":{"body":"Error: Unknown signing algorithm: unknown-algo Cause: Document was signed with an unsupported algorithm. Solution: Use a supported algorithm: ring-Ed25519, RSA-PSS, pq-dilithium, pq2025","breadcrumbs":"Error Codes » Unknown Signing Algorithm","id":"1472","title":"Unknown Signing Algorithm"},"1473":{"body":"","breadcrumbs":"Error Codes » DNS Verification Errors","id":"1473","title":"DNS Verification Errors"},"1474":{"body":"Error: strict DNSSEC validation failed for  (TXT not authenticated). Enable DNSSEC and publish DS at registrar Cause: DNSSEC mode was requested but the TXT response wasn't authenticated. Solution: Enable DNSSEC for your domain zone Publish the DS record at your registrar Wait for propagation (up to 48 hours)","breadcrumbs":"Error Codes » DNSSEC Validation Failed","id":"1474","title":"DNSSEC Validation Failed"},"1475":{"body":"Error: DNS TXT lookup failed for  (record missing or not yet propagated) Cause: The JACS TXT record doesn't exist or hasn't propagated. Solution: Verify the TXT record was created: dig _v1.agent.jacs.yourdomain.com TXT Wait for DNS propagation (can take up to 48 hours) Confirm record name and value are correct","breadcrumbs":"Error Codes » DNS Record Not Found","id":"1475","title":"DNS Record Not Found"},"1476":{"body":"Error: DNS TXT lookup required (domain configured) or provide embedded fingerprint Cause: Strict DNS mode is active because a domain is configured. Solution: Publish the TXT record, or Run with --no-dns during initial setup: jacs agent verify --no-dns","breadcrumbs":"Error Codes » DNS Required","id":"1476","title":"DNS Required"},"1477":{"body":"Error: DNS lookup timed out for  Cause: DNS server did not respond in time. Solution: Check network connectivity Try again later Verify DNS server is accessible","breadcrumbs":"Error Codes » DNS Lookup Timeout","id":"1477","title":"DNS Lookup Timeout"},"1478":{"body":"","breadcrumbs":"Error Codes » Document Errors","id":"1478","title":"Document Errors"},"1479":{"body":"Error: Failed to parse document: invalid JSON at line 5 Cause: Document file contains invalid JSON. Solution: Validate JSON with a linter Check for syntax errors (missing commas, quotes)","breadcrumbs":"Error Codes » Invalid JSON","id":"1479","title":"Invalid JSON"},"148":{"body":"","breadcrumbs":"Creating an Agent » Creating Your First Agent","id":"148","title":"Creating Your First Agent"},"1480":{"body":"Error: Schema validation failed: missing required field 'amount' Cause: Document doesn't conform to the specified schema. Solution: # Check which fields are required by the schema\ncat schema.json | jq '.required' # Add missing fields to your document","breadcrumbs":"Error Codes » Schema Validation Failed","id":"1480","title":"Schema Validation Failed"},"1481":{"body":"Error: Document not found: 550e8400-e29b-41d4-a716-446655440000 Cause: The specified document ID doesn't exist in storage. Solution: Verify the document ID is correct Check the storage directory","breadcrumbs":"Error Codes » Document Not Found","id":"1481","title":"Document Not Found"},"1482":{"body":"Error: Document version mismatch: expected v2, got v1 Cause: Attempting to update with incorrect base version. Solution: Get the latest version of the document Apply updates to the correct version","breadcrumbs":"Error Codes » Version Mismatch","id":"1482","title":"Version Mismatch"},"1483":{"body":"","breadcrumbs":"Error Codes » Agreement Errors","id":"1483","title":"Agreement Errors"},"1484":{"body":"Error: Document has no jacsAgreement field Cause: Attempting agreement operations on a document without an agreement. Solution: # Create an agreement first\njacs document create-agreement -f doc.json -i agent1-id,agent2-id","breadcrumbs":"Error Codes » Agreement Not Found","id":"1484","title":"Agreement Not Found"},"1485":{"body":"Error: Agent has already signed this agreement Cause: Attempting to sign an agreement that was already signed by this agent. Solution: No action needed, the signature is already present","breadcrumbs":"Error Codes » Already Signed","id":"1485","title":"Already Signed"},"1486":{"body":"Error: Agent is not in the agreement's agentIDs list Cause: Attempting to sign with an agent not listed in the agreement. Solution: Only agents listed in jacsAgreement.agentIDs can sign","breadcrumbs":"Error Codes » Not Authorized","id":"1486","title":"Not Authorized"},"1487":{"body":"Error: Cannot modify document: agreement is complete Cause: Attempting to modify a document with a completed agreement. Solution: Create a new version/agreement if changes are needed","breadcrumbs":"Error Codes » Agreement Locked","id":"1487","title":"Agreement Locked"},"1488":{"body":"","breadcrumbs":"Error Codes » Storage Errors","id":"1488","title":"Storage Errors"},"1489":{"body":"Error: Storage error: failed to write to filesystem Cause: Unable to write to the configured storage backend. Solution: Check filesystem permissions Verify storage directory exists Check disk space","breadcrumbs":"Error Codes » Storage Backend Error","id":"1489","title":"Storage Backend Error"},"149":{"body":"# Initialize JACS (creates config and agent)\njacs init This creates: Configuration file Cryptographic key pair Initial agent document","breadcrumbs":"Creating an Agent » Quick Method (Recommended)","id":"149","title":"Quick Method (Recommended)"},"1490":{"body":"Error: S3 error: AccessDenied Cause: AWS credentials don't have required permissions. Solution: Verify IAM permissions include s3:GetObject, s3:PutObject Check bucket policy Verify credentials are correct","breadcrumbs":"Error Codes » AWS S3 Error","id":"1490","title":"AWS S3 Error"},"1491":{"body":"Error: Failed to connect to storage: connection refused Cause: Cannot connect to remote storage backend. Solution: Check network connectivity Verify endpoint URL is correct Check firewall rules","breadcrumbs":"Error Codes » Connection Error","id":"1491","title":"Connection Error"},"1492":{"body":"","breadcrumbs":"Error Codes » HTTP/MCP Errors","id":"1492","title":"HTTP/MCP Errors"},"1493":{"body":"Error: JACS request verification failed Cause: Incoming HTTP request has invalid JACS signature. Solution: Ensure client is signing requests correctly Verify client and server are using compatible keys","breadcrumbs":"Error Codes » Request Verification Failed","id":"1493","title":"Request Verification Failed"},"1494":{"body":"Error: JACS response verification failed Cause: Server response has invalid signature. Solution: Check server JACS configuration Verify server is signing responses","breadcrumbs":"Error Codes » Response Verification Failed","id":"1494","title":"Response Verification Failed"},"1495":{"body":"Error: JACSExpressMiddleware: config file not found Cause: Middleware cannot find JACS configuration. Solution: app.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' // Verify path is correct\n}));","breadcrumbs":"Error Codes » Middleware Configuration Error","id":"1495","title":"Middleware Configuration Error"},"1496":{"body":"","breadcrumbs":"Error Codes » Debugging Tips","id":"1496","title":"Debugging Tips"},"1497":{"body":"# CLI verbose mode\njacs document verify -f doc.json -v # Environment variable\nexport JACS_DEBUG=true","breadcrumbs":"Error Codes » Enable Verbose Output","id":"1497","title":"Enable Verbose Output"},"1498":{"body":"# Display current configuration\njacs config read","breadcrumbs":"Error Codes » Check Configuration","id":"1498","title":"Check Configuration"},"1499":{"body":"# Verify agent is properly configured\njacs agent verify -v","breadcrumbs":"Error Codes » Verify Agent","id":"1499","title":"Verify Agent"},"15":{"body":"Support for both current (RSA, Ed25519) and post-quantum cryptographic algorithms ensures your system remains secure.","breadcrumbs":"Introduction » 🔒 Future-Proof Security","id":"15","title":"🔒 Future-Proof Security"},"150":{"body":"# 1. Create configuration\njacs config create # 2. Create agent with new keys\njacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Manual Method","id":"150","title":"Manual Method"},"1500":{"body":"# Create a test document\necho '{\"test\": true}' > test.json\njacs document create -f test.json -v","breadcrumbs":"Error Codes » Test Signing","id":"1500","title":"Test Signing"},"1501":{"body":"Configuration Reference - Configuration options CLI Command Reference - CLI usage Security Model - Security details","breadcrumbs":"Error Codes » See Also","id":"1501","title":"See Also"},"1502":{"body":"This guide covers migrating between JACS versions and common migration scenarios.","breadcrumbs":"Migration Guide » Migration Guide","id":"1502","title":"Migration Guide"},"1503":{"body":"JACS maintains backward compatibility for document verification: Documents signed with older versions can be verified with newer versions Older JACS versions cannot verify documents using newer cryptographic algorithms","breadcrumbs":"Migration Guide » Version Compatibility","id":"1503","title":"Version Compatibility"},"1504":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.5.1 to 0.5.2","id":"1504","title":"Migrating from 0.5.1 to 0.5.2"},"1505":{"body":"PBKDF2 Iteration Count : New key encryptions use 600,000 iterations (up from 100,000). Existing encrypted keys are decrypted automatically via fallback. To upgrade existing keys, re-encrypt them: # Re-generate keys to use the new iteration count\njacs keygen","breadcrumbs":"Migration Guide » Migration Notes","id":"1505","title":"Migration Notes"},"1506":{"body":"JACS_USE_SECURITY is now JACS_ENABLE_FILESYSTEM_QUARANTINE. The old name still works with a deprecation warning.","breadcrumbs":"Migration Guide » Deprecated Environment Variables","id":"1506","title":"Deprecated Environment Variables"},"1507":{"body":"Variable Default Description JACS_MAX_SIGNATURE_AGE_SECONDS 0 (no expiration) Maximum age of valid signatures. Set to a positive value to enable (e.g., 7776000 for 90 days). JACS_REQUIRE_EXPLICIT_ALGORITHM false When true, reject verification if signingAlgorithm is missing. JACS_ENABLE_FILESYSTEM_QUARANTINE false Enable filesystem quarantine (replaces JACS_USE_SECURITY).","breadcrumbs":"Migration Guide » New Environment Variables","id":"1507","title":"New Environment Variables"},"1508":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.2.x to 0.3.x","id":"1508","title":"Migrating from 0.2.x to 0.3.x"},"1509":{"body":"New Configuration Fields: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" }, \"metrics\": { \"enabled\": false }, \"tracing\": { \"enabled\": false } }\n} Deprecated Fields: jacs_log_level → Use observability.logs.level jacs_log_file → Use observability.logs.destination","breadcrumbs":"Migration Guide » Configuration Changes","id":"1509","title":"Configuration Changes"},"151":{"body":"Create an agent definition file (my-agent.json): { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent specialized in content creation\", \"jacsServices\": [ { \"jacsServiceName\": \"content-generation\", \"jacsServiceDescription\": \"Generate high-quality content\", \"jacsServiceSuccess\": \"Engaging, accurate content delivered\", \"jacsServiceFailure\": \"Unable to generate requested content\" } ]\n} Then create the agent: jacs agent create --create-keys true -f my-agent.json","breadcrumbs":"Creating an Agent » With Custom Agent Definition","id":"151","title":"With Custom Agent Definition"},"1510":{"body":"Update Configuration: # Backup current config\ncp jacs.config.json jacs.config.json.backup # Update to new format\n# Add observability section if needed Update Dependencies: # Node.js\nnpm install @hai.ai/jacs@latest # Python\npip install --upgrade jacs Verify Existing Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Migration Steps","id":"1510","title":"Migration Steps"},"1511":{"body":"","breadcrumbs":"Migration Guide » Migrating Storage Backends","id":"1511","title":"Migrating Storage Backends"},"1512":{"body":"Create S3 Bucket: aws s3 mb s3://my-jacs-bucket Update Configuration: { \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n} Set Environment Variables: export AWS_ACCESS_KEY_ID=\"your-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret\"\nexport AWS_REGION=\"us-east-1\" Migrate Documents: # Upload existing documents\naws s3 sync ./jacs_data/ s3://my-jacs-bucket/data/ Verify Migration: jacs document verify -d s3://my-jacs-bucket/data/documents/","breadcrumbs":"Migration Guide » Filesystem to AWS S3","id":"1512","title":"Filesystem to AWS S3"},"1513":{"body":"Download Documents: aws s3 sync s3://my-jacs-bucket/data/ ./jacs_data/ Update Configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n} Verify Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » AWS S3 to Filesystem","id":"1513","title":"AWS S3 to Filesystem"},"1514":{"body":"","breadcrumbs":"Migration Guide » Migrating Cryptographic Algorithms","id":"1514","title":"Migrating Cryptographic Algorithms"},"1515":{"body":"For increased security, you may want to migrate to post-quantum algorithms. Create New Agent with New Algorithm: { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} jacs agent create --create-keys true -f new-agent.json Update Configuration: { \"jacs_agent_key_algorithm\": \"pq-dilithium\", \"jacs_agent_id_and_version\": \"new-agent-id:new-version\"\n} Re-sign Critical Documents (Optional): // Re-sign documents with new algorithm\nconst oldDoc = JSON.parse(fs.readFileSync('./old-doc.json')); // Remove old signature fields\ndelete oldDoc.jacsSignature;\ndelete oldDoc.jacsSha256; // Create new signed version\nconst newDoc = await agent.createDocument(JSON.stringify(oldDoc)); Note: Old documents remain valid with old signatures. Re-signing is only needed for documents that require the new algorithm.","breadcrumbs":"Migration Guide » Ed25519 to Post-Quantum","id":"1515","title":"Ed25519 to Post-Quantum"},"1516":{"body":"","breadcrumbs":"Migration Guide » Migrating Between Platforms","id":"1516","title":"Migrating Between Platforms"},"1517":{"body":"Both platforms use the same document format: // Node.js - create document\nconst signedDoc = await agent.createDocument(JSON.stringify(content));\nfs.writeFileSync('doc.json', signedDoc); # Python - verify the same document\nwith open('doc.json', 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string)","breadcrumbs":"Migration Guide » Node.js to Python","id":"1517","title":"Node.js to Python"},"1518":{"body":"Agents can be used across platforms by sharing configuration: Export Agent Files: jacs_keys/\n├── private.pem\n└── public.pem\njacs.config.json Use Same Config in Both: // Node.js\nawait agent.load('./jacs.config.json'); # Python\nagent.load('./jacs.config.json')","breadcrumbs":"Migration Guide » Sharing Agents Between Platforms","id":"1518","title":"Sharing Agents Between Platforms"},"1519":{"body":"","breadcrumbs":"Migration Guide » Migrating Key Formats","id":"1519","title":"Migrating Key Formats"},"152":{"body":"JACS supports four agent types: Type Description Contacts Required ai Fully artificial intelligence No human Individual person Yes human-org Group of people (organization) Yes hybrid Human-AI combination Yes","breadcrumbs":"Creating an Agent » Agent Types","id":"152","title":"Agent Types"},"1520":{"body":"Encrypt Existing Key: # Backup original\ncp jacs_keys/private.pem jacs_keys/private.pem.backup # Encrypt with password\nopenssl pkcs8 -topk8 -in jacs_keys/private.pem \\ -out jacs_keys/private.pem.enc -v2 aes-256-cbc # Remove unencrypted key\nrm jacs_keys/private.pem\nmv jacs_keys/private.pem.enc jacs_keys/private.pem Update Configuration: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} Set Password: export JACS_PRIVATE_KEY_PASSWORD=\"your-secure-password\"","breadcrumbs":"Migration Guide » Unencrypted to Encrypted Keys","id":"1520","title":"Unencrypted to Encrypted Keys"},"1521":{"body":"","breadcrumbs":"Migration Guide » Database Migration","id":"1521","title":"Database Migration"},"1522":{"body":"If migrating from filesystem to include database storage: Create Database Schema: CREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), UNIQUE(id, version_id)\n); Import Existing Documents: const fs = require('fs');\nconst path = require('path');\nconst { Pool } = require('pg'); const pool = new Pool({ connectionString: process.env.DATABASE_URL });\nconst docsDir = './jacs_data/documents'; async function importDocuments() { const docDirs = fs.readdirSync(docsDir); for (const docId of docDirs) { const docPath = path.join(docsDir, docId); const versions = fs.readdirSync(docPath); for (const versionFile of versions) { const docString = fs.readFileSync( path.join(docPath, versionFile), 'utf-8' ); const doc = JSON.parse(docString); await pool.query(` INSERT INTO jacs_documents (id, version_id, document) VALUES ($1, $2, $3) ON CONFLICT (id, version_id) DO NOTHING `, [doc.jacsId, doc.jacsVersion, doc]); } }\n} importDocuments();","breadcrumbs":"Migration Guide » Adding Database Storage","id":"1522","title":"Adding Database Storage"},"1523":{"body":"","breadcrumbs":"Migration Guide » MCP Integration Migration","id":"1523","title":"MCP Integration Migration"},"1524":{"body":"Install JACS: npm install @hai.ai/jacs Wrap Existing Transport: // Before\nconst transport = new StdioServerTransport();\nawait server.connect(transport); // After\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);\nawait server.connect(secureTransport); Update Client: // Client also needs JACS\nconst baseTransport = new StdioClientTransport({ command: 'node', args: ['server.js'] });\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.client.config.json', 'client'\n);\nawait client.connect(secureTransport);","breadcrumbs":"Migration Guide » Adding JACS to Existing MCP Server","id":"1524","title":"Adding JACS to Existing MCP Server"},"1525":{"body":"","breadcrumbs":"Migration Guide » HTTP API Migration","id":"1525","title":"HTTP API Migration"},"1526":{"body":"Install Middleware: npm install @hai.ai/jacs Add Middleware to Routes: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Before\napp.use('/api', express.json()); // After - for JACS-protected routes\napp.use('/api/secure', express.text({ type: '*/*' }));\napp.use('/api/secure', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Keep non-JACS routes unchanged\napp.use('/api/public', express.json()); Update Route Handlers: // Before\napp.post('/api/data', (req, res) => { const payload = req.body; // ...\n}); // After\napp.post('/api/secure/data', (req, res) => { const payload = req.jacsPayload; // Verified payload // ...\n});","breadcrumbs":"Migration Guide » Adding JACS to Existing Express API","id":"1526","title":"Adding JACS to Existing Express API"},"1527":{"body":"","breadcrumbs":"Migration Guide » Troubleshooting Migration","id":"1527","title":"Troubleshooting Migration"},"1528":{"body":"Documents Not Verifying After Migration: Check algorithm compatibility Verify keys were copied correctly Ensure configuration paths are correct Key File Errors: Verify file permissions (600 for private key) Check key format matches algorithm Ensure password is set for encrypted keys Storage Errors After Migration: Verify storage backend is accessible Check credentials/permissions Ensure directory structure is correct","breadcrumbs":"Migration Guide » Common Issues","id":"1528","title":"Common Issues"},"1529":{"body":"After any migration: Verify Configuration: jacs config read Verify Agent: jacs agent verify Verify Sample Document: jacs document verify -f ./sample-doc.json Test Document Creation: echo '{\"test\": true}' > test.json\njacs document create -f test.json Verify Version: jacs version","breadcrumbs":"Migration Guide » Verification Checklist","id":"1529","title":"Verification Checklist"},"153":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"name\": \"DataBot\", \"description\": \"Data processing agent\", \"jacsServices\": [ { \"jacsServiceName\": \"data-processing\", \"jacsServiceDescription\": \"Process and transform data\" } ]\n}","breadcrumbs":"Creating an Agent » AI Agent Example","id":"153","title":"AI Agent Example"},"1530":{"body":"If migration fails: Restore Configuration: cp jacs.config.json.backup jacs.config.json Restore Keys: cp -r jacs_keys.backup/* jacs_keys/ Restore Dependencies: # Node.js\nnpm install @hai.ai/jacs@previous-version # Python\npip install jacs==previous-version Verify Rollback: jacs agent verify\njacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Rollback Procedures","id":"1530","title":"Rollback Procedures"},"1531":{"body":"Configuration Reference - Configuration options Cryptographic Algorithms - Algorithm details Storage Backends - Storage options","breadcrumbs":"Migration Guide » See Also","id":"1531","title":"See Also"},"154":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"human\", \"name\": \"John Smith\", \"description\": \"Software engineer\", \"jacsContacts\": [ { \"jacsContactType\": \"email\", \"jacsContactValue\": \"john@example.com\" } ], \"jacsServices\": [ { \"jacsServiceName\": \"code-review\", \"jacsServiceDescription\": \"Review code for quality and security\" } ]\n}","breadcrumbs":"Creating an Agent » Human Agent Example","id":"154","title":"Human Agent Example"},"155":{"body":"Services define what an agent can do. Each service has: { \"jacsServiceName\": \"service-identifier\", \"jacsServiceDescription\": \"What the service does\", \"jacsServiceSuccess\": \"Definition of successful completion\", \"jacsServiceFailure\": \"What constitutes failure\", \"jacsServiceActions\": [ { \"jacsActionName\": \"action-1\", \"jacsActionDescription\": \"First action in this service\" } ]\n}","breadcrumbs":"Creating an Agent » Agent Services","id":"155","title":"Agent Services"},"156":{"body":"{ \"jacsServiceName\": \"document-processing\", \"jacsServiceDescription\": \"Process and analyze documents\", \"jacsServiceActions\": [ { \"jacsActionName\": \"extract-text\", \"jacsActionDescription\": \"Extract text from PDF documents\" }, { \"jacsActionName\": \"summarize\", \"jacsActionDescription\": \"Generate document summaries\" }, { \"jacsActionName\": \"translate\", \"jacsActionDescription\": \"Translate documents between languages\" } ]\n}","breadcrumbs":"Creating an Agent » Service with Actions","id":"156","title":"Service with Actions"},"157":{"body":"For human and hybrid agents, contacts are required: { \"jacsContacts\": [ { \"jacsContactType\": \"email\", \"jacsContactValue\": \"agent@example.com\" }, { \"jacsContactType\": \"website\", \"jacsContactValue\": \"https://example.com\" }, { \"jacsContactType\": \"phone\", \"jacsContactValue\": \"+1-555-0123\" } ]\n}","breadcrumbs":"Creating an Agent » Agent Contacts","id":"157","title":"Agent Contacts"},"158":{"body":"","breadcrumbs":"Creating an Agent » Cryptographic Keys","id":"158","title":"Cryptographic Keys"},"159":{"body":"JACS supports multiple cryptographic algorithms: Algorithm Description Recommended For ring-Ed25519 Fast elliptic curve signatures General use (default) RSA-PSS Traditional RSA signatures Legacy compatibility pq-dilithium Post-quantum signatures Future-proof security","breadcrumbs":"Creating an Agent » Key Algorithms","id":"159","title":"Key Algorithms"},"16":{"body":"JSON-based documents work everywhere - store them in any database, transmit over any protocol, integrate with any system.","breadcrumbs":"Introduction » 🌐 Universal Compatibility","id":"16","title":"🌐 Universal Compatibility"},"160":{"body":"In jacs.config.json: { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Or via environment variable: JACS_AGENT_KEY_ALGORITHM=ring-Ed25519 jacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Configure Key Algorithm","id":"160","title":"Configure Key Algorithm"},"161":{"body":"Keys are stored in the key directory (default: ./jacs_keys): jacs_keys/\n├── private_key.pem # Private key (keep secure!)\n└── public_key.pem # Public key (can be shared)","breadcrumbs":"Creating an Agent » Key Storage","id":"161","title":"Key Storage"},"162":{"body":"","breadcrumbs":"Creating an Agent » Verifying Agents","id":"162","title":"Verifying Agents"},"163":{"body":"jacs agent verify","breadcrumbs":"Creating an Agent » Verify Your Own Agent","id":"163","title":"Verify Your Own Agent"},"164":{"body":"jacs agent verify -a ./path/to/agent.json","breadcrumbs":"Creating an Agent » Verify a Specific Agent File","id":"164","title":"Verify a Specific Agent File"},"165":{"body":"# Require DNS validation\njacs agent verify --require-dns # Require strict DNSSEC\njacs agent verify --require-strict-dns","breadcrumbs":"Creating an Agent » With DNS Verification","id":"165","title":"With DNS Verification"},"166":{"body":"Agent updates create a new version while maintaining the same jacsId: Modify the agent document Re-sign with the agent's keys The jacsVersion changes but jacsId remains constant.","breadcrumbs":"Creating an Agent » Updating Agents","id":"166","title":"Updating Agents"},"167":{"body":"A complete agent document looks like: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsLevel\": \"config\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent for content generation\", \"jacsServices\": [ { \"jacsServiceName\": \"content-generation\", \"jacsServiceDescription\": \"Generate high-quality content\" } ], \"jacsSha256\": \"hash-of-document\", \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"signature\": \"base64-encoded-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"name\", \"jacsServices\"] }\n}","breadcrumbs":"Creating an Agent » Agent Document Structure","id":"167","title":"Agent Document Structure"},"168":{"body":"","breadcrumbs":"Creating an Agent » Best Practices","id":"168","title":"Best Practices"},"169":{"body":"Protect private keys : Never share or commit private keys Use strong algorithms : Prefer Ed25519 or post-quantum Enable DNS verification : For production agents Regular key rotation : Update keys periodically","breadcrumbs":"Creating an Agent » Security","id":"169","title":"Security"},"17":{"body":"Whether you're building a simple CLI tool or a complex multi-agent system, JACS adapts to your architecture.","breadcrumbs":"Introduction » 🧩 Flexible Integration","id":"17","title":"🧩 Flexible Integration"},"170":{"body":"Clear service definitions : Be specific about capabilities Meaningful names : Use descriptive agent names Contact information : Include for human agents Version control : Track agent document changes","breadcrumbs":"Creating an Agent » Agent Design","id":"170","title":"Agent Design"},"171":{"body":"Backup keys : Keep secure backups of private keys Monitor signatures : Watch for unauthorized signing Document services : Keep service definitions current","breadcrumbs":"Creating an Agent » Operations","id":"171","title":"Operations"},"172":{"body":"Working with Documents - Create signed documents Agreements - Multi-agent coordination DNS Verification - Publish agent identity","breadcrumbs":"Creating an Agent » Next Steps","id":"172","title":"Next Steps"},"173":{"body":"Documents are the core data structure in JACS. Any JSON object can become a JACS document by adding the required header fields and a cryptographic signature.","breadcrumbs":"Working with Documents » Working with Documents","id":"173","title":"Working with Documents"},"174":{"body":"A JACS document is a JSON object that includes: Identity : Unique ID and version tracking Metadata : Type, timestamps, and origin information Signature : Cryptographic proof of authenticity Hash : Integrity verification","breadcrumbs":"Working with Documents » What is a JACS Document?","id":"174","title":"What is a JACS Document?"},"175":{"body":"","breadcrumbs":"Working with Documents » Creating Documents","id":"175","title":"Creating Documents"},"176":{"body":"Create a simple JSON document (my-document.json): { \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\"\n} Sign it with JACS: jacs document create -f my-document.json This adds JACS headers and signature, producing a signed document.","breadcrumbs":"Working with Documents » From a JSON File","id":"176","title":"From a JSON File"},"177":{"body":"Process multiple documents at once: jacs document create -d ./documents/","breadcrumbs":"Working with Documents » From a Directory","id":"177","title":"From a Directory"},"178":{"body":"Validate against a custom JSON schema: jacs document create -f my-document.json -s ./schemas/proposal.schema.json","breadcrumbs":"Working with Documents » With Custom Schema","id":"178","title":"With Custom Schema"},"179":{"body":"# Save to specific file\njacs document create -f my-document.json -o ./output/signed-doc.json # Print to stdout instead of saving\njacs document create -f my-document.json --no-save # Verbose output\njacs document create -f my-document.json -v","breadcrumbs":"Working with Documents » Output Options","id":"179","title":"Output Options"},"18":{"body":"Core Concepts - Understand agents, documents, and agreements Quick Start Guide - Get up and running in minutes Choose Your Implementation : Rust CLI & Library Node.js Package Python Package","breadcrumbs":"Introduction » Getting Started","id":"18","title":"Getting Started"},"180":{"body":"After signing, a document looks like: { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"version-uuid-here\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"document\", \"jacsLevel\": \"artifact\", \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\", \"jacsSha256\": \"a1b2c3d4...\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\", \"budget\", \"deadline\"] }\n}","breadcrumbs":"Working with Documents » Document Structure","id":"180","title":"Document Structure"},"181":{"body":"Field Description Auto-generated $schema JSON Schema reference Yes jacsId Permanent document UUID Yes jacsVersion Version UUID (changes on update) Yes jacsVersionDate When this version was created Yes jacsOriginalVersion First version UUID Yes jacsOriginalDate Original creation timestamp Yes jacsType Document type Yes jacsLevel Data level (raw, config, artifact, derived) Yes","breadcrumbs":"Working with Documents » Required Header Fields","id":"181","title":"Required Header Fields"},"182":{"body":"The jacsLevel field indicates the document's purpose: Level Description Use Case raw Original data, should not change Source documents config Configuration, meant to be updated Agent definitions, settings artifact Generated output Reports, summaries derived Computed from other documents Analysis results","breadcrumbs":"Working with Documents » Document Levels","id":"182","title":"Document Levels"},"183":{"body":"","breadcrumbs":"Working with Documents » File Attachments","id":"183","title":"File Attachments"},"184":{"body":"# Attach a single file\njacs document create -f my-document.json --attach ./report.pdf # Attach a directory of files\njacs document create -f my-document.json --attach ./attachments/","breadcrumbs":"Working with Documents » Attach Files","id":"184","title":"Attach Files"},"185":{"body":"# Embed files directly in the document (larger document, self-contained)\njacs document create -f my-document.json --attach ./files/ --embed true # Reference files (smaller document, files stored separately)\njacs document create -f my-document.json --attach ./files/ --embed false","breadcrumbs":"Working with Documents » Embed vs. Reference","id":"185","title":"Embed vs. Reference"},"186":{"body":"Embedded attachments appear in the jacsFiles field: { \"jacsFiles\": [ { \"jacsFileName\": \"report.pdf\", \"jacsFileMimeType\": \"application/pdf\", \"jacsFileSha256\": \"file-hash\", \"jacsFileContent\": \"base64-encoded-content\" } ]\n}","breadcrumbs":"Working with Documents » Attachment Structure","id":"186","title":"Attachment Structure"},"187":{"body":"","breadcrumbs":"Working with Documents » Verifying Documents","id":"187","title":"Verifying Documents"},"188":{"body":"jacs document verify -f ./signed-document.json Verification checks: Hash integrity (document hasn't been modified) Signature validity (signature matches content) Schema compliance (if schema specified)","breadcrumbs":"Working with Documents » Basic Verification","id":"188","title":"Basic Verification"},"189":{"body":"jacs document verify -f ./document.json -s ./schema.json","breadcrumbs":"Working with Documents » Verify with Schema","id":"189","title":"Verify with Schema"},"19":{"body":"GitHub : HumanAssisted/JACS Issues : Report bugs and feature requests Examples : Complete examples for all implementations Documentation : This comprehensive guide Ready to build trustworthy AI systems? Let's get started!","breadcrumbs":"Introduction » Community and Support","id":"19","title":"Community and Support"},"190":{"body":"jacs document verify -d ./documents/","breadcrumbs":"Working with Documents » Verify Directory","id":"190","title":"Verify Directory"},"191":{"body":"jacs document verify -f ./document.json -v","breadcrumbs":"Working with Documents » Verbose Output","id":"191","title":"Verbose Output"},"192":{"body":"Updates create a new version while maintaining the same jacsId: jacs document update -f ./original.json -n ./modified.json The update process: Reads the original document Applies changes from the modified file Increments jacsVersion Links to previous version via jacsPreviousVersion Re-signs with agent's key","breadcrumbs":"Working with Documents » Updating Documents","id":"192","title":"Updating Documents"},"193":{"body":"jacs document update -f ./original.json -n ./modified.json --attach ./new-file.pdf","breadcrumbs":"Working with Documents » Update with Attachments","id":"193","title":"Update with Attachments"},"194":{"body":"Extract attachments from a document: jacs document extract -f ./document-with-attachments.json Extract from multiple documents: jacs document extract -d ./documents/","breadcrumbs":"Working with Documents » Extracting Embedded Content","id":"194","title":"Extracting Embedded Content"},"195":{"body":"","breadcrumbs":"Working with Documents » Document Types","id":"195","title":"Document Types"},"196":{"body":"Tasks are specialized documents for work tracking: jacs task create -n \"Code Review\" -d \"Review PR #123\" See Task Schema for details.","breadcrumbs":"Working with Documents » Task Documents","id":"196","title":"Task Documents"},"197":{"body":"Messages for agent communication: { \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"jacsType\": \"message\", \"jacsMessageContent\": \"Hello, I've completed the task.\", \"jacsMessageReplyTo\": \"previous-message-uuid\"\n}","breadcrumbs":"Working with Documents » Message Documents","id":"197","title":"Message Documents"},"198":{"body":"Any JSON can be a JACS document. Create custom schemas: { \"$schema\": \"https://example.com/schemas/invoice.schema.json\", \"jacsType\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1000, \"currency\": \"USD\"\n}","breadcrumbs":"Working with Documents » Custom Documents","id":"198","title":"Custom Documents"},"199":{"body":"JACS tracks document history through version chains: Version 1 (jacsOriginalVersion) ↓\nVersion 2 (jacsPreviousVersion → Version 1) ↓\nVersion 3 (jacsPreviousVersion → Version 2) ↓\nCurrent Version Each version is a complete document that can be independently verified.","breadcrumbs":"Working with Documents » Version History","id":"199","title":"Version History"},"2":{"body":"🔐 Cryptographic Security : RSA, Ed25519, and post-quantum cryptographic algorithms 📋 JSON Schema Validation : Enforced document structure and validation 🤝 Multi-Agent Agreements : Built-in support for agent collaboration and task agreements 🔍 Full Audit Trail : Complete versioning and modification history 🌐 Multiple Language Support : Rust, Node.js, and Python implementations 🔌 MCP Integration : Native Model Context Protocol support 📊 Observability : Built-in logging and metrics for production systems","breadcrumbs":"Introduction » Key Features","id":"2","title":"Key Features"},"20":{"body":"JACS (JSON Agent Communication Standard) is a comprehensive framework designed to solve a critical problem in AI systems: How do agents communicate and collaborate securely with verifiable trust?","breadcrumbs":"What is JACS? » What is JACS?","id":"20","title":"What is JACS?"},"200":{"body":"","breadcrumbs":"Working with Documents » Working with Multiple Agents","id":"200","title":"Working with Multiple Agents"},"201":{"body":"# Use a specific agent's keys\njacs document create -f ./document.json -a ./other-agent.json","breadcrumbs":"Working with Documents » Different Agent Signs Document","id":"201","title":"Different Agent Signs Document"},"202":{"body":"# Verify with strict DNS requirement\njacs document verify -f ./document.json --require-strict-dns","breadcrumbs":"Working with Documents » Verify Document from Unknown Agent","id":"202","title":"Verify Document from Unknown Agent"},"203":{"body":"","breadcrumbs":"Working with Documents » Best Practices","id":"203","title":"Best Practices"},"204":{"body":"Use appropriate levels : Match jacsLevel to document purpose Include context : Add descriptive fields for human readability Version control : Keep source files in git alongside JACS documents","breadcrumbs":"Working with Documents » Document Design","id":"204","title":"Document Design"},"205":{"body":"Verify before trusting : Always verify signatures Check agent identity : Verify the signing agent Validate schemas : Use custom schemas for strict validation","breadcrumbs":"Working with Documents » Security","id":"205","title":"Security"},"206":{"body":"External attachments : Use --embed false for large files Batch processing : Use directory mode for multiple documents Selective verification : Verify only when needed","breadcrumbs":"Working with Documents » Performance","id":"206","title":"Performance"},"207":{"body":"","breadcrumbs":"Working with Documents » Common Workflows","id":"207","title":"Common Workflows"},"208":{"body":"# 1. Create document\njacs document create -f ./proposal.json -o ./signed-proposal.json # 2. Share the signed document\n# The recipient can verify it:\njacs document verify -f ./signed-proposal.json","breadcrumbs":"Working with Documents » Create and Share Document","id":"208","title":"Create and Share Document"},"209":{"body":"# 1. Create initial version\njacs document create -f ./contract-v1.json # 2. Make changes and update\njacs document update -f ./contract-v1.json -n ./contract-v2.json # 3. Continue updating\njacs document update -f ./contract-v2.json -n ./contract-v3.json","breadcrumbs":"Working with Documents » Track Document Changes","id":"209","title":"Track Document Changes"},"21":{"body":"As AI systems become more sophisticated, we're moving toward multi-agent architectures where different AI agents need to: Exchange tasks and delegate work to each other Create agreements and verify their completion Share data with guaranteed authenticity Maintain audit trails of decisions and actions Establish trust without centralized authorities Traditional approaches fall short because they lack: Cryptographic integrity for agent communications Standardized formats for agent interactions Built-in versioning and audit trails Support for multi-agent agreements and workflows","breadcrumbs":"What is JACS? » The Problem JACS Solves","id":"21","title":"The Problem JACS Solves"},"210":{"body":"# Create all documents in a directory\njacs document create -d ./input-docs/ # Verify all documents\njacs document verify -d ./signed-docs/","breadcrumbs":"Working with Documents » Process Multiple Documents","id":"210","title":"Process Multiple Documents"},"211":{"body":"Agreements - Multi-agent consent Task Schema - Task document structure Custom Schemas - Create your own schemas","breadcrumbs":"Working with Documents » Next Steps","id":"211","title":"Next Steps"},"212":{"body":"Agreements enable multi-party consent in JACS. They allow multiple agents to cryptographically sign a document, creating binding commitments between parties.","breadcrumbs":"Creating and Using Agreements » Creating and Using Agreements","id":"212","title":"Creating and Using Agreements"},"213":{"body":"An agreement is a mechanism for: Collecting signatures from multiple agents Tracking consent from required parties Enforcing completion before proceeding Creating audit trails of who agreed and when","breadcrumbs":"Creating and Using Agreements » What is an Agreement?","id":"213","title":"What is an Agreement?"},"214":{"body":"1. Create Agreement → 2. Distribute → 3. Agents Sign → 4. Verify Complete Create : Initial agent creates agreement with required participants Distribute : Agreement document shared with all parties Sign : Each agent reviews and adds their signature Verify : Check that all required parties have signed","breadcrumbs":"Creating and Using Agreements » Agreement Lifecycle","id":"214","title":"Agreement Lifecycle"},"215":{"body":"","breadcrumbs":"Creating and Using Agreements » Creating Agreements","id":"215","title":"Creating Agreements"},"216":{"body":"# Create agreement requiring signatures from two agents\njacs document create-agreement \\ -f ./document.json \\ -i agent1-uuid,agent2-uuid","breadcrumbs":"Creating and Using Agreements » Basic Agreement","id":"216","title":"Basic Agreement"},"217":{"body":"Include a question and context for clarity: { \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to the terms of this contract?\", \"jacsAgreementContext\": \"Service agreement for Q1 2024\", \"jacsAgreementAgents\": [\"agent1-uuid\", \"agent2-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » With Context","id":"217","title":"With Context"},"218":{"body":"","breadcrumbs":"Creating and Using Agreements » Signing Agreements","id":"218","title":"Signing Agreements"},"219":{"body":"jacs document sign-agreement -f ./document-with-agreement.json","breadcrumbs":"Creating and Using Agreements » Sign as Current Agent","id":"219","title":"Sign as Current Agent"},"22":{"body":"","breadcrumbs":"What is JACS? » JACS Core Philosophy","id":"22","title":"JACS Core Philosophy"},"220":{"body":"# Use a different configuration/agent\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json","breadcrumbs":"Creating and Using Agreements » Sign as Different Agent","id":"220","title":"Sign as Different Agent"},"221":{"body":"When signing, agents can include a response: { \"jacsAgreement\": { \"signatures\": { \"agent1-uuid\": { \"agentID\": \"agent1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\", \"response\": \"Agreed with minor reservation about timeline\", \"responseType\": \"agree\" } } }\n} Response types: agree - Agent consents disagree - Agent does not consent reject - Agent considers the question invalid or irrelevant","breadcrumbs":"Creating and Using Agreements » Sign with Response","id":"221","title":"Sign with Response"},"222":{"body":"","breadcrumbs":"Creating and Using Agreements » Checking Agreement Status","id":"222","title":"Checking Agreement Status"},"223":{"body":"jacs document check-agreement -f ./document.json This shows: Which agents have signed Which agents still need to sign Whether the agreement is complete","breadcrumbs":"Creating and Using Agreements » Check if Complete","id":"223","title":"Check if Complete"},"224":{"body":"A document with an agreement includes: { \"jacsId\": \"doc-uuid\", \"jacsType\": \"contract\", \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to these terms?\", \"jacsAgreementContext\": \"Annual service contract\", \"jacsAgreementAgents\": [ \"550e8400-e29b-41d4-a716-446655440000\", \"123e4567-e89b-12d3-a456-426614174000\" ], \"signatures\": { \"550e8400-e29b-41d4-a716-446655440000\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash\", \"date\": \"2024-01-15T10:30:00Z\", \"responseType\": \"agree\", \"fields\": [\"jacsId\", \"jacsAgreement\"] } } }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Creating and Using Agreements » Agreement Structure","id":"224","title":"Agreement Structure"},"225":{"body":"Tasks have built-in support for start and end agreements: { \"jacsType\": \"task\", \"jacsTaskName\": \"Code Review\", \"jacsStartAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to start this task?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }, \"jacsEndAgreement\": { \"jacsAgreementQuestion\": \"Do you agree the task is complete?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » Task Agreements","id":"225","title":"Task Agreements"},"226":{"body":"# 1. Agent A creates a task\njacs task create -n \"Write Report\" -d \"Quarterly sales report\" # 2. Agent A adds agreement requiring both agents\njacs document create-agreement \\ -f ./task.json \\ -i agent-a-uuid,agent-b-uuid # 3. Agent A signs the agreement\njacs document sign-agreement -f ./task.json # 4. Agent B signs the agreement\nJACS_CONFIG_PATH=./agent-b.config.json \\ jacs document sign-agreement -f ./task.json # 5. Check agreement is complete\njacs document check-agreement -f ./task.json","breadcrumbs":"Creating and Using Agreements » Multi-Agent Workflow Example","id":"226","title":"Multi-Agent Workflow Example"},"227":{"body":"The jacsAgreementHash ensures all agents agree to the same content: Hash is computed from the agreement content Each signature includes the hash If content changes, hash changes, invalidating existing signatures This prevents modifications after some parties have signed.","breadcrumbs":"Creating and Using Agreements » Agreement Hash","id":"227","title":"Agreement Hash"},"228":{"body":"Verify before signing : Always review documents before signing Check agent identities : Verify who you're agreeing with (use DNS) Include context : Make the agreement purpose clear Handle disagreement : Have a process for when agents disagree","breadcrumbs":"Creating and Using Agreements » Best Practices","id":"228","title":"Best Practices"},"229":{"body":"DNS Verification - Verify agent identities Task Schema - Task-specific agreements Security Model - Agreement security","breadcrumbs":"Creating and Using Agreements » Next Steps","id":"229","title":"Next Steps"},"23":{"body":"JACS is built specifically for AI agent communication patterns, not as a general-purpose document signing system. It understands concepts like: Agents with identities and capabilities Tasks that can be delegated and tracked Agreements between multiple parties Versioning for iterative improvements","breadcrumbs":"What is JACS? » 🎯 Agent-First Design","id":"23","title":"🎯 Agent-First Design"},"230":{"body":"JACS supports DNS-based agent verification using DNS TXT records and DNSSEC. This allows agents to publish their identity in a decentralized, verifiable way that doesn't require a central authority.","breadcrumbs":"DNS-Based Verification » DNS-Based Agent Verification","id":"230","title":"DNS-Based Agent Verification"},"231":{"body":"DNS verification in JACS works by: Publishing an agent's public key fingerprint as a DNS TXT record Using DNSSEC to cryptographically verify the DNS response Comparing the fingerprint from DNS with the agent's actual public key This provides a secure, decentralized way to verify agent identity across the internet.","breadcrumbs":"DNS-Based Verification » Overview","id":"231","title":"Overview"},"232":{"body":"Decentralized : No central authority required Existing Infrastructure : Uses established DNS infrastructure DNSSEC Security : Cryptographic verification of DNS responses Human-Readable : Agents can be identified by domain names Widely Supported : Works with any DNS provider","breadcrumbs":"DNS-Based Verification » Why DNS Verification?","id":"232","title":"Why DNS Verification?"},"233":{"body":"","breadcrumbs":"DNS-Based Verification » Publishing Agent Identity","id":"233","title":"Publishing Agent Identity"},"234":{"body":"# Generate DNS TXT record commands for your agent\njacs agent dns --domain myagent.example.com # Specify agent ID explicitly\njacs agent dns --domain myagent.example.com --agent-id 550e8400-e29b-41d4-a716-446655440000 # Use hex encoding instead of base64\njacs agent dns --domain myagent.example.com --encoding hex # Set custom TTL (time-to-live)\njacs agent dns --domain myagent.example.com --ttl 7200","breadcrumbs":"DNS-Based Verification » Generate DNS Commands","id":"234","title":"Generate DNS Commands"},"235":{"body":"JACS can generate DNS commands for various providers: # Plain text format (default)\njacs agent dns --domain myagent.example.com --provider plain # AWS Route 53 format\njacs agent dns --domain myagent.example.com --provider aws # Azure DNS format\njacs agent dns --domain myagent.example.com --provider azure # Cloudflare DNS format\njacs agent dns --domain myagent.example.com --provider cloudflare","breadcrumbs":"DNS-Based Verification » Provider-Specific Formats","id":"235","title":"Provider-Specific Formats"},"236":{"body":"The DNS TXT record follows this format: _v1.agent.jacs.myagent.example.com. 3600 IN TXT \"jacs-agent-fingerprint=\" Where: _v1.agent.jacs. is the JACS-specific subdomain prefix  is the base64-encoded hash of the agent's public key","breadcrumbs":"DNS-Based Verification » DNS Record Structure","id":"236","title":"DNS Record Structure"},"237":{"body":"Generate the AWS-formatted command: jacs agent dns --domain myagent.example.com --provider aws The output will include an AWS CLI command like: aws route53 change-resource-record-sets \\ --hosted-zone-id YOUR_ZONE_ID \\ --change-batch '{ \"Changes\": [{ \"Action\": \"UPSERT\", \"ResourceRecordSet\": { \"Name\": \"_v1.agent.jacs.myagent.example.com\", \"Type\": \"TXT\", \"TTL\": 3600, \"ResourceRecords\": [{\"Value\": \"\\\"jacs-agent-fingerprint=...\\\"\"}] } }] }' Replace YOUR_ZONE_ID with your actual Route 53 hosted zone ID.","breadcrumbs":"DNS-Based Verification » Setting Up with Route 53 (AWS)","id":"237","title":"Setting Up with Route 53 (AWS)"},"238":{"body":"Generate the Cloudflare-formatted command: jacs agent dns --domain myagent.example.com --provider cloudflare Or add manually in the Cloudflare dashboard: Type: TXT Name: _v1.agent.jacs Content: jacs-agent-fingerprint= TTL: 3600","breadcrumbs":"DNS-Based Verification » Setting Up with Cloudflare","id":"238","title":"Setting Up with Cloudflare"},"239":{"body":"Generate the Azure-formatted command: jacs agent dns --domain myagent.example.com --provider azure The output will include an Azure CLI command that you can run directly.","breadcrumbs":"DNS-Based Verification » Setting Up with Azure DNS","id":"239","title":"Setting Up with Azure DNS"},"24":{"body":"Every JACS document includes: Digital signatures proving authenticity Hash verification ensuring integrity Public key cryptography for identity verification Timestamps for chronological ordering","breadcrumbs":"What is JACS? » 🔐 Trust Through Cryptography","id":"24","title":"🔐 Trust Through Cryptography"},"240":{"body":"","breadcrumbs":"DNS-Based Verification » Verifying Agents with DNS","id":"240","title":"Verifying Agents with DNS"},"241":{"body":"# Look up an agent by their domain\njacs agent lookup other-agent.example.com # With strict DNSSEC validation\njacs agent lookup other-agent.example.com --strict # Skip DNS verification (not recommended)\njacs agent lookup other-agent.example.com --no-dns","breadcrumbs":"DNS-Based Verification » Look Up Another Agent","id":"241","title":"Look Up Another Agent"},"242":{"body":"When verifying an agent, you can specify DNS requirements: # Default: Use DNS if available, but don't require it\njacs agent verify -a ./agent.json # Require DNS validation (non-strict)\njacs agent verify -a ./agent.json --require-dns # Require strict DNSSEC validation\njacs agent verify -a ./agent.json --require-strict-dns # Disable DNS validation entirely\njacs agent verify -a ./agent.json --no-dns # Ignore DNS (won't fail if DNS unavailable)\njacs agent verify -a ./agent.json --ignore-dns","breadcrumbs":"DNS-Based Verification » Verify Agent with DNS","id":"242","title":"Verify Agent with DNS"},"243":{"body":"Mode Flag Behavior Default (none) Use DNS if available, fall back to local verification Require DNS --require-dns Fail if DNS record not found (DNSSEC not required) Require Strict --require-strict-dns Fail if DNSSEC validation fails No DNS --no-dns Skip DNS validation entirely Ignore DNS --ignore-dns Don't fail on DNS errors, just warn","breadcrumbs":"DNS-Based Verification » DNS Validation Modes","id":"243","title":"DNS Validation Modes"},"244":{"body":"Agents can specify their domain in their agent document: { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n} The jacsAgentDomain field is optional but enables DNS-based verification.","breadcrumbs":"DNS-Based Verification » Agent Domain Configuration","id":"244","title":"Agent Domain Configuration"},"245":{"body":"For maximum security, enable DNSSEC on your domain: Enable DNSSEC at your registrar : Most registrars support DNSSEC Configure your DNS provider : Ensure your DNS provider signs zones Use --require-strict-dns : Enforce DNSSEC validation","breadcrumbs":"DNS-Based Verification » DNSSEC Requirements","id":"245","title":"DNSSEC Requirements"},"246":{"body":"You can verify DNSSEC is working using standard tools: # Check if DNSSEC is enabled\ndig +dnssec _v1.agent.jacs.myagent.example.com TXT # Verify DNSSEC validation\ndelv @8.8.8.8 _v1.agent.jacs.myagent.example.com TXT","breadcrumbs":"DNS-Based Verification » Checking DNSSEC Status","id":"246","title":"Checking DNSSEC Status"},"247":{"body":"","breadcrumbs":"DNS-Based Verification » Security Considerations","id":"247","title":"Security Considerations"},"248":{"body":"With DNSSEC : Full cryptographic chain of trust from root DNS servers Without DNSSEC : Trust depends on DNS infrastructure security Local Only : Trust is limited to having the correct public key","breadcrumbs":"DNS-Based Verification » Trust Model","id":"248","title":"Trust Model"},"249":{"body":"Always enable DNSSEC for production agents Use strict validation when verifying unknown agents Rotate keys carefully - update DNS records before key changes Monitor DNS records for unauthorized changes Use short TTLs during transitions then increase for stability","breadcrumbs":"DNS-Based Verification » Best Practices","id":"249","title":"Best Practices"},"25":{"body":"JACS builds on proven standards: JSON for universal compatibility JSON Schema for structure validation RFC 3339 timestamps for consistency Standard cryptographic algorithms (RSA, Ed25519, post-quantum)","breadcrumbs":"What is JACS? » 📋 Standards-Based","id":"25","title":"📋 Standards-Based"},"250":{"body":"DNS responses are cached based on TTL. Consider: Short TTL (300-600s) : Better for development or key rotation Long TTL (3600-86400s) : Better for production stability","breadcrumbs":"DNS-Based Verification » Caching","id":"250","title":"Caching"},"251":{"body":"","breadcrumbs":"DNS-Based Verification » Troubleshooting","id":"251","title":"Troubleshooting"},"252":{"body":"Verify the record exists: dig _v1.agent.jacs.myagent.example.com TXT Check DNS propagation (may take up to 48 hours for new records) Verify the domain in the agent document matches","breadcrumbs":"DNS-Based Verification » \"DNS record not found\"","id":"252","title":"\"DNS record not found\""},"253":{"body":"Check DNSSEC is enabled: dig +dnssec myagent.example.com Verify DS records at registrar Use --require-dns instead of --require-strict-dns if DNSSEC isn't available","breadcrumbs":"DNS-Based Verification » \"DNSSEC validation failed\"","id":"253","title":"\"DNSSEC validation failed\""},"254":{"body":"The public key may have changed - regenerate DNS record: jacs agent dns --domain myagent.example.com Update the DNS TXT record with the new fingerprint Wait for DNS propagation","breadcrumbs":"DNS-Based Verification » \"Fingerprint mismatch\"","id":"254","title":"\"Fingerprint mismatch\""},"255":{"body":"Automate DNS updates in your deployment pipeline: #!/bin/bash\n# deploy-agent.sh # 1. Create new agent keys\njacs agent create --create-keys true # 2. Generate DNS update command\nDNS_CMD=$(jacs agent dns --domain $AGENT_DOMAIN --provider aws) # 3. Execute DNS update\neval $DNS_CMD # 4. Wait for propagation\nsleep 60 # 5. Verify DNS is working\njacs agent verify --require-dns","breadcrumbs":"DNS-Based Verification » Integration with CI/CD","id":"255","title":"Integration with CI/CD"},"256":{"body":"Creating an Agent - Set up agents with DNS domains Security Model - Deep dive into JACS security Agreements - Use DNS-verified agents in agreements","breadcrumbs":"DNS-Based Verification » Next Steps","id":"256","title":"Next Steps"},"257":{"body":"JACS provides a Rust library for programmatic agent and document management. This chapter covers how to use the JACS library in your Rust applications.","breadcrumbs":"Rust Library API » Rust Library API","id":"257","title":"Rust Library API"},"258":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Rust Library API » Adding JACS as a Dependency","id":"258","title":"Adding JACS as a Dependency"},"259":{"body":"[dependencies]\njacs = { version = \"0.3\", features = [\"cli\", \"observability\"] } Feature Description cli CLI utilities and helpers observability OpenTelemetry logging and metrics observability-convenience Helper functions for observability full All features enabled","breadcrumbs":"Rust Library API » Feature Flags","id":"259","title":"Feature Flags"},"26":{"body":"","breadcrumbs":"What is JACS? » Key Concepts","id":"26","title":"Key Concepts"},"260":{"body":"","breadcrumbs":"Rust Library API » Core Types","id":"260","title":"Core Types"},"261":{"body":"The Agent struct is the central type in JACS. It holds: Schema validators Agent identity and keys Document storage Configuration use jacs::{get_empty_agent, load_agent};\nuse std::error::Error; fn main() -> Result<(), Box> { // Create a new empty agent let agent = get_empty_agent(); // Or load an existing agent let agent = load_agent(Some(\"path/to/agent.json\".to_string()))?; Ok(())\n}","breadcrumbs":"Rust Library API » Agent","id":"261","title":"Agent"},"262":{"body":"Documents in JACS are represented by the JACSDocument struct: pub struct JACSDocument { pub id: String, pub version: String, pub value: serde_json::Value, pub jacs_type: String,\n} Key methods: getkey() - Returns \"id:version\" identifier getvalue() - Returns reference to the JSON value getschema() - Returns the document's schema URL signing_agent() - Returns the ID of the signing agent","breadcrumbs":"Rust Library API » JACSDocument","id":"262","title":"JACSDocument"},"263":{"body":"","breadcrumbs":"Rust Library API » Creating an Agent","id":"263","title":"Creating an Agent"},"264":{"body":"use jacs::{get_empty_agent, create_minimal_blank_agent}; fn main() -> Result<(), Box> { // Create agent JSON let agent_json = create_minimal_blank_agent( \"ai\".to_string(), // agent type Some(\"My service\".to_string()), // service description Some(\"Task completed\".to_string()), // success description Some(\"Task failed\".to_string()), // failure description )?; // Initialize and load the agent let mut agent = get_empty_agent(); agent.create_agent_and_load(&agent_json, true, None)?; // Save the agent agent.save()?; Ok(())\n}","breadcrumbs":"Rust Library API » Minimal Agent","id":"264","title":"Minimal Agent"},"265":{"body":"use jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); // Load from config file agent.load_by_config(\"./jacs.config.json\".to_string())?; // Or load by agent ID agent.load_by_id(\"agent-id:version-id\".to_string())?; Ok(())\n}","breadcrumbs":"Rust Library API » Loading by Configuration","id":"265","title":"Loading by Configuration"},"266":{"body":"use jacs::load_agent_with_dns_strict; fn main() -> Result<(), Box> { // Load agent with strict DNS verification let agent = load_agent_with_dns_strict( \"path/to/agent.json\".to_string(), true // strict mode )?; Ok(())\n}","breadcrumbs":"Rust Library API » DNS Strict Mode","id":"266","title":"DNS Strict Mode"},"267":{"body":"","breadcrumbs":"Rust Library API » Working with Documents","id":"267","title":"Working with Documents"},"268":{"body":"The DocumentTraits trait provides document operations: use jacs::agent::document::DocumentTraits;\nuse jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document from JSON let json = r#\"{\"title\": \"My Document\", \"content\": \"Hello, World!\"}\"#; let doc = agent.create_document_and_load(json, None, None)?; println!(\"Document created: {}\", doc.getkey()); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Documents","id":"268","title":"Creating Documents"},"269":{"body":"use jacs::agent::document::DocumentTraits; // With file attachments\nlet attachments = Some(vec![\"./report.pdf\".to_string()]);\nlet embed = Some(true); // Embed files in document let doc = agent.create_document_and_load( json, attachments, embed\n)?;","breadcrumbs":"Rust Library API » Creating Documents with Attachments","id":"269","title":"Creating Documents with Attachments"},"27":{"body":"An Agent is an autonomous entity with: A unique identity (UUID) Cryptographic keys for signing Capabilities defined in services The ability to create and verify documents","breadcrumbs":"What is JACS? » Agents","id":"27","title":"Agents"},"270":{"body":"use jacs::agent::document::DocumentTraits; // Load a document from JSON string\nlet doc = agent.load_document(&document_json_string)?; // Get a stored document by key\nlet doc = agent.get_document(\"doc-id:version-id\")?; // List all document keys\nlet keys = agent.get_document_keys();","breadcrumbs":"Rust Library API » Loading Documents","id":"270","title":"Loading Documents"},"271":{"body":"use jacs::agent::document::DocumentTraits; // Update creates a new version\nlet updated_doc = agent.update_document( \"doc-id:version-id\", // original document key &modified_json_string, // new content None, // optional attachments None, // embed flag\n)?;","breadcrumbs":"Rust Library API » Updating Documents","id":"271","title":"Updating Documents"},"272":{"body":"use jacs::agent::document::DocumentTraits; // Verify document signature with agent's public key\nagent.verify_document_signature( \"doc-id:version-id\", None, // signature key (uses default) None, // fields to verify None, // public key (uses agent's) None, // key encoding type\n)?; // Verify using external public key\nagent.verify_external_document_signature(\"doc-id:version-id\")?;","breadcrumbs":"Rust Library API » Verifying Documents","id":"272","title":"Verifying Documents"},"273":{"body":"use jacs::agent::document::DocumentTraits; // Save document to filesystem\nagent.save_document( \"doc-id:version-id\", Some(\"output.json\".to_string()), // output filename Some(true), // export embedded files None, // extract only\n)?;","breadcrumbs":"Rust Library API » Saving Documents","id":"273","title":"Saving Documents"},"274":{"body":"use jacs::{get_empty_agent, create_task}; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a task let task_json = create_task( &mut agent, \"Review Code\".to_string(), \"Review pull request #123\".to_string(), )?; println!(\"Task created: {}\", task_json); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Tasks","id":"274","title":"Creating Tasks"},"275":{"body":"","breadcrumbs":"Rust Library API » Signing and Verification","id":"275","title":"Signing and Verification"},"276":{"body":"The agent's signing_procedure method creates cryptographic signatures: use serde_json::json; let document = json!({ \"title\": \"Contract\", \"terms\": \"...\"\n}); // Sign the document\nlet signature = agent.signing_procedure( &document, None, // fields to sign (None = all) \"jacsSignature\" // placement key\n)?;","breadcrumbs":"Rust Library API » Signing Documents","id":"276","title":"Signing Documents"},"277":{"body":"// Verify self-signature (agent document)\nagent.verify_self_signature()?; // Verify hash integrity\nagent.verify_hash(&document)?; // Full signature verification\nagent.signature_verification_procedure( &document, None, // fields \"jacsSignature\", // signature key public_key, // public key bytes Some(\"ring-Ed25519\".to_string()), // algorithm None, // original public key hash None, // signature override\n)?;","breadcrumbs":"Rust Library API » Verification","id":"277","title":"Verification"},"278":{"body":"// Load custom schemas\nagent.load_custom_schemas(&[ \"./schemas/invoice.schema.json\".to_string(), \"https://example.com/schemas/contract.schema.json\".to_string(),\n])?; // Validate document against custom schema\nagent.validate_document_with_custom_schema( \"./schemas/invoice.schema.json\", &document_value,\n)?;","breadcrumbs":"Rust Library API » Custom Schema Validation","id":"278","title":"Custom Schema Validation"},"279":{"body":"","breadcrumbs":"Rust Library API » Configuration","id":"279","title":"Configuration"},"28":{"body":"A Document is any JSON object that includes: JACS header fields (ID, version, creator, etc.) A cryptographic signature A hash for integrity verification Business logic specific to the document type","breadcrumbs":"What is JACS? » Documents","id":"28","title":"Documents"},"280":{"body":"use jacs::config::{load_config, find_config, Config}; // Load from specific path\nlet config = load_config(\"./jacs.config.json\")?; // Find config in directory\nlet config = find_config(\"./\".to_string())?; // Create programmatically\nlet config = Config::new( Some(\"false\".to_string()), // use_security Some(\"./jacs_data\".to_string()), // data_directory Some(\"./jacs_keys\".to_string()), // key_directory Some(\"private_key.pem\".to_string()), // private key filename Some(\"public_key.pem\".to_string()), // public key filename Some(\"ring-Ed25519\".to_string()), // key algorithm Some(\"password\".to_string()), // private key password None, // agent ID and version Some(\"fs\".to_string()), // storage type\n);","breadcrumbs":"Rust Library API » Loading Configuration","id":"280","title":"Loading Configuration"},"281":{"body":"// Get key algorithm\nlet algorithm = config.get_key_algorithm()?; // Access config fields\nlet data_dir = config.jacs_data_directory();\nlet key_dir = config.jacs_key_directory();\nlet storage_type = config.jacs_default_storage();","breadcrumbs":"Rust Library API » Accessing Configuration","id":"281","title":"Accessing Configuration"},"282":{"body":"","breadcrumbs":"Rust Library API » Observability","id":"282","title":"Observability"},"283":{"body":"use jacs::init_default_observability; fn main() -> Result<(), Box> { // Set up file-based logging init_default_observability()?; // Your application code... Ok(())\n}","breadcrumbs":"Rust Library API » Initialize Default Observability","id":"283","title":"Initialize Default Observability"},"284":{"body":"use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://localhost:4317\".to_string(), headers: None, }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Rust Library API » Custom Observability Configuration","id":"284","title":"Custom Observability Configuration"},"285":{"body":"JACS supports multiple storage backends: use jacs::storage::MultiStorage; // Filesystem storage (default)\nlet storage = MultiStorage::new(\"fs\".to_string())?; // In-memory storage\nlet storage = MultiStorage::new(\"memory\".to_string())?; // S3 storage\nlet storage = MultiStorage::new(\"s3\".to_string())?;","breadcrumbs":"Rust Library API » Storage Backends","id":"285","title":"Storage Backends"},"286":{"body":"JACS functions return Result>: use jacs::get_empty_agent; fn main() { match get_empty_agent().load_by_config(\"./jacs.config.json\".to_string()) { Ok(()) => println!(\"Agent loaded successfully\"), Err(e) => eprintln!(\"Failed to load agent: {}\", e), }\n}","breadcrumbs":"Rust Library API » Error Handling","id":"286","title":"Error Handling"},"287":{"body":"The Agent struct uses internal mutexes for thread-safe access to: Document schemas (Arc>>) Storage operations For concurrent usage: use std::sync::{Arc, Mutex};\nuse jacs::get_empty_agent; let agent = Arc::new(Mutex::new(get_empty_agent())); // Clone Arc for threads\nlet agent_clone = Arc::clone(&agent);\nstd::thread::spawn(move || { let mut agent = agent_clone.lock().unwrap(); // Use agent...\n});","breadcrumbs":"Rust Library API » Thread Safety","id":"287","title":"Thread Safety"},"288":{"body":"use jacs::{get_empty_agent, create_task};\nuse jacs::agent::document::DocumentTraits;\nuse serde_json::json; fn main() -> Result<(), Box> { // Initialize agent let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document let doc_json = json!({ \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000 }); let doc = agent.create_document_and_load( &doc_json.to_string(), None, None )?; println!(\"Created document: {}\", doc.getkey()); // Verify the document agent.verify_document_signature(&doc.getkey(), None, None, None, None)?; println!(\"Document verified successfully\"); // Save to file agent.save_document(&doc.getkey(), Some(\"proposal.json\".to_string()), None, None)?; // Create a task let task = create_task( &mut agent, \"Review Proposal\".to_string(), \"Review and approve the project proposal\".to_string(), )?; println!(\"Task created\"); Ok(())\n}","breadcrumbs":"Rust Library API » Complete Example","id":"288","title":"Complete Example"},"289":{"body":"Observability - Logging and metrics setup Storage Backends - Configure different storage Custom Schemas - Define custom document types","breadcrumbs":"Rust Library API » Next Steps","id":"289","title":"Next Steps"},"29":{"body":"A Task is a special document type representing: Work to be performed Success/failure criteria Input/output specifications Delegation and completion tracking","breadcrumbs":"What is JACS? » Tasks","id":"29","title":"Tasks"},"290":{"body":"JACS provides comprehensive observability features including logging, metrics, and distributed tracing. This chapter covers configuring and using these features in your applications.","breadcrumbs":"Observability » Observability","id":"290","title":"Observability"},"291":{"body":"JACS observability is built on the OpenTelemetry standard, providing: Logging : Structured logging with multiple destinations Metrics : Counters, gauges, and histograms for monitoring Tracing : Distributed tracing for request flows","breadcrumbs":"Observability » Overview","id":"291","title":"Overview"},"292":{"body":"Enable observability features in your Cargo.toml: [dependencies]\njacs = { version = \"0.3\", features = [\"observability\"] } Feature Description observability Core observability support observability-convenience Helper functions for recording operations otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support","breadcrumbs":"Observability » Feature Flags","id":"292","title":"Feature Flags"},"293":{"body":"","breadcrumbs":"Observability » Quick Start","id":"293","title":"Quick Start"},"294":{"body":"The simplest way to enable observability: use jacs::init_default_observability; fn main() -> Result<(), Box> { init_default_observability()?; // Your application code... Ok(())\n} This sets up: File-based logging to ./logs/ with daily rotation Metrics disabled by default Tracing disabled by default","breadcrumbs":"Observability » Default Configuration","id":"294","title":"Default Configuration"},"295":{"body":"For more control, use init_custom_observability: use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Observability » Custom Configuration","id":"295","title":"Custom Configuration"},"296":{"body":"","breadcrumbs":"Observability » Logging","id":"296","title":"Logging"},"297":{"body":"Supported log levels (from most to least verbose): trace debug info warn error","breadcrumbs":"Observability » Log Levels","id":"297","title":"Log Levels"},"298":{"body":"Stderr (Default) LogDestination::Stderr Logs to standard error. Useful for development and containerized environments. File LogDestination::File { path: \"./logs\".to_string(),\n} Logs to rotating files with daily rotation. Creates files like app.log.2024-01-15. OTLP LogDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports logs via OpenTelemetry Protocol. Requires otlp-logs feature. Null LogDestination::Null Disables logging completely.","breadcrumbs":"Observability » Log Destinations","id":"298","title":"Log Destinations"},"299":{"body":"JACS uses the tracing crate for logging: use tracing::{info, debug, warn, error}; fn process_document() { info!(\"Processing document\"); debug!(\"Document details: {:?}\", doc); if let Err(e) = verify() { error!(\"Verification failed: {}\", e); }\n}","breadcrumbs":"Observability » Using Logs","id":"299","title":"Using Logs"},"3":{"body":"JACS is available in three languages, each with its own strengths:","breadcrumbs":"Introduction » Available Implementations","id":"3","title":"Available Implementations"},"30":{"body":"An Agreement is a mechanism for: Multiple agents to consent to terms Tracking signatures from all required parties Ensuring all participants have signed before proceeding Creating binding commitments between agents","breadcrumbs":"What is JACS? » Agreements","id":"30","title":"Agreements"},"300":{"body":"","breadcrumbs":"Observability » Metrics","id":"300","title":"Metrics"},"301":{"body":"MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None,\n}","breadcrumbs":"Observability » Enabling Metrics","id":"301","title":"Enabling Metrics"},"302":{"body":"OTLP MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports to an OpenTelemetry collector. Requires otlp-metrics feature. Prometheus (via Collector) MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None,\n} Note: Direct Prometheus export requires routing through an OTLP collector. File MetricsDestination::File { path: \"./metrics.txt\".to_string(),\n} Writes metrics to a file. Stdout MetricsDestination::Stdout Prints metrics to standard output. Useful for testing.","breadcrumbs":"Observability » Metrics Destinations","id":"302","title":"Metrics Destinations"},"303":{"body":"JACS provides convenience functions for common metrics: use jacs::observability::metrics::{increment_counter, set_gauge, record_histogram};\nuse std::collections::HashMap; // Increment a counter\nlet mut tags = HashMap::new();\ntags.insert(\"operation\".to_string(), \"sign\".to_string());\nincrement_counter(\"jacs_operations_total\", 1, Some(tags)); // Set a gauge value\nset_gauge(\"jacs_documents_active\", 42.0, None); // Record a histogram value (e.g., latency)\nlet mut tags = HashMap::new();\ntags.insert(\"method\".to_string(), \"verify\".to_string());\nrecord_histogram(\"jacs_operation_duration_ms\", 150.0, Some(tags));","breadcrumbs":"Observability » Recording Metrics","id":"303","title":"Recording Metrics"},"304":{"body":"When observability-convenience feature is enabled, JACS automatically records: jacs_agent_operations - Count of agent operations jacs_signature_verifications - Signature verification results jacs_document_operations - Document create/update/verify counts","breadcrumbs":"Observability » Built-in Metrics","id":"304","title":"Built-in Metrics"},"305":{"body":"","breadcrumbs":"Observability » Distributed Tracing","id":"305","title":"Distributed Tracing"},"306":{"body":"use jacs::{TracingConfig, TracingDestination, SamplingConfig, ResourceConfig};\nuse std::collections::HashMap; let config = ObservabilityConfig { // ... logs and metrics config ... tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 1.0, // Sample all traces parent_based: true, rate_limit: None, }, resource: Some(ResourceConfig { service_name: \"my-jacs-app\".to_string(), service_version: Some(\"1.0.0\".to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }), }),\n};","breadcrumbs":"Observability » Enabling Tracing","id":"306","title":"Enabling Tracing"},"307":{"body":"OTLP TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Jaeger TracingDestination::Jaeger { endpoint: \"http://localhost:14268/api/traces\".to_string(), headers: None,\n}","breadcrumbs":"Observability » Tracing Destinations","id":"307","title":"Tracing Destinations"},"308":{"body":"Control how many traces are captured: SamplingConfig { ratio: 0.1, // Sample 10% of traces parent_based: true, // Inherit parent sampling decision rate_limit: Some(100), // Max 100 samples per second\n}","breadcrumbs":"Observability » Sampling Configuration","id":"308","title":"Sampling Configuration"},"309":{"body":"use tracing::{instrument, info_span}; #[instrument]\nfn sign_document(doc: &Document) -> Result<(), Error> { // Automatically creates a span named \"sign_document\" // with doc as a field\n} fn manual_span() { let span = info_span!(\"verify_chain\", doc_count = 5); let _guard = span.enter(); // Operations within this span\n}","breadcrumbs":"Observability » Using Tracing Spans","id":"309","title":"Using Tracing Spans"},"31":{"body":"graph TD A[Agent A] -->|Creates Task| T[JACS Task Document] T -->|Contains| S[Digital Signature] T -->|Contains| H[SHA256 Hash] T -->|Contains| M[Metadata] A -->|Sends to| B[Agent B] B -->|Verifies| T B -->|Signs Agreement| AG[Agreement Document] AG -->|Returns to| A Agent A creates a task document with their requirements The document is signed with Agent A's private key A hash is calculated for integrity verification Agent B receives and verifies the signature and hash Agent B can create an agreement to accept the task Both agents have a verifiable record of the interaction","breadcrumbs":"What is JACS? » How JACS Works","id":"31","title":"How JACS Works"},"310":{"body":"You can configure observability via jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"file\": { \"path\": \"./logs\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-service\", \"service_version\": \"1.0.0\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n}","breadcrumbs":"Observability » Configuration File","id":"310","title":"Configuration File"},"311":{"body":"For production use, route telemetry through an OpenTelemetry Collector: # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: loglevel: debug prometheus: endpoint: \"0.0.0.0:9090\" jaeger: endpoint: jaeger:14250 service: pipelines: logs: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus] traces: receivers: [otlp] processors: [batch] exporters: [jaeger]","breadcrumbs":"Observability » OpenTelemetry Collector Setup","id":"311","title":"OpenTelemetry Collector Setup"},"312":{"body":"For testing or reinitialization: use jacs::observability::{reset_observability, flush_observability, force_reset_for_tests}; // Flush pending data\nflush_observability(); // Reset configuration\nreset_observability(); // Force reset for tests (clears all state)\nforce_reset_for_tests();","breadcrumbs":"Observability » Reset and Cleanup","id":"312","title":"Reset and Cleanup"},"313":{"body":"","breadcrumbs":"Observability » Best Practices","id":"313","title":"Best Practices"},"314":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None,\n};","breadcrumbs":"Observability » Development","id":"314","title":"Development"},"315":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, export_interval_seconds: Some(30), headers: None, }, tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 0.1, // Sample 10% in production parent_based: true, rate_limit: Some(1000), }, resource: Some(ResourceConfig { service_name: \"jacs-production\".to_string(), service_version: Some(env!(\"CARGO_PKG_VERSION\").to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }), }),\n};","breadcrumbs":"Observability » Production","id":"315","title":"Production"},"316":{"body":"","breadcrumbs":"Observability » Troubleshooting","id":"316","title":"Troubleshooting"},"317":{"body":"Check that logging is enabled: logs.enabled: true Verify log level includes your log statements For file logging, ensure the directory is writable","breadcrumbs":"Observability » Logs Not Appearing","id":"317","title":"Logs Not Appearing"},"318":{"body":"Verify otlp-metrics feature is enabled Check endpoint connectivity Confirm metrics are enabled: metrics.enabled: true","breadcrumbs":"Observability » Metrics Not Exporting","id":"318","title":"Metrics Not Exporting"},"319":{"body":"Verify otlp-tracing feature is enabled Check sampling ratio isn't filtering all traces Ensure spans are properly instrumented","breadcrumbs":"Observability » Traces Missing","id":"319","title":"Traces Missing"},"32":{"body":"","breadcrumbs":"What is JACS? » Real-World Examples","id":"32","title":"Real-World Examples"},"320":{"body":"Rust Library API - Use observability in your code Configuration Reference - Full config options Advanced Topics - Security considerations","breadcrumbs":"Observability » Next Steps","id":"320","title":"Next Steps"},"321":{"body":"The JACS Node.js package (@hai.ai/jacs) provides JavaScript/TypeScript bindings to the JACS Rust library, making it easy to integrate JACS into web applications, servers, and Node.js projects.","breadcrumbs":"Installation » Node.js Installation","id":"321","title":"Node.js Installation"},"322":{"body":"Node.js : Version 16.0 or higher npm or yarn : For package management Operating System : macOS, Linux, or Windows with WSL","breadcrumbs":"Installation » Requirements","id":"322","title":"Requirements"},"323":{"body":"","breadcrumbs":"Installation » Installation","id":"323","title":"Installation"},"324":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Installation » Using npm","id":"324","title":"Using npm"},"325":{"body":"yarn add @hai.ai/jacs","breadcrumbs":"Installation » Using yarn","id":"325","title":"Using yarn"},"326":{"body":"pnpm add @hai.ai/jacs","breadcrumbs":"Installation » Using pnpm","id":"326","title":"Using pnpm"},"327":{"body":"Create a simple test to verify everything is working: // test.js\nimport { JacsAgent } from '@hai.ai/jacs'; console.log('JACS Node.js bindings loaded successfully!'); // Test basic functionality\ntry { const agent = new JacsAgent(); agent.load('./jacs.config.json'); console.log('Agent loaded successfully!');\n} catch (error) { console.error('Error loading agent:', error);\n} Run the test: node test.js","breadcrumbs":"Installation » Verify Installation","id":"327","title":"Verify Installation"},"328":{"body":"The @hai.ai/jacs package includes several modules:","breadcrumbs":"Installation » Package Structure","id":"328","title":"Package Structure"},"329":{"body":"import { JacsAgent, JacsConfig, JacsDocument, JacsError\n} from '@hai.ai/jacs';","breadcrumbs":"Installation » Core Module (@hai.ai/jacs)","id":"329","title":"Core Module (@hai.ai/jacs)"},"33":{"body":"Content Agent → Research Agent → Review Agent → Publishing Agent Each handoff includes signed task documents with clear requirements and deliverables.","breadcrumbs":"What is JACS? » 🤖 AI Content Pipeline","id":"33","title":"🤖 AI Content Pipeline"},"330":{"body":"import { JacsMcpServer, createJacsMiddleware } from '@hai.ai/jacs/mcp';","breadcrumbs":"Installation » MCP Integration (@hai.ai/jacs/mcp)","id":"330","title":"MCP Integration (@hai.ai/jacs/mcp)"},"331":{"body":"import { JacsHttpServer, createJacsRouter } from '@hai.ai/jacs/http';","breadcrumbs":"Installation » HTTP Server (@hai.ai/jacs/http)","id":"331","title":"HTTP Server (@hai.ai/jacs/http)"},"332":{"body":"The package includes full TypeScript definitions: import { JacsAgent, createConfig, hashString } from '@hai.ai/jacs'; // Create an agent instance\nconst agent: JacsAgent = new JacsAgent(); // Load configuration from file\nagent.load('./jacs.config.json'); // Use utility functions\nconst hash: string = hashString('some data'); // Create a configuration string\nconst configJson: string = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // jacs_agent_private_key_filename undefined, // jacs_agent_public_key_filename 'ring-Ed25519', // jacs_agent_key_algorithm undefined, // jacs_private_key_password undefined, // jacs_agent_id_and_version 'fs' // jacs_default_storage\n);","breadcrumbs":"Installation » TypeScript Support","id":"332","title":"TypeScript Support"},"333":{"body":"","breadcrumbs":"Installation » Configuration","id":"333","title":"Configuration"},"334":{"body":"const config = { // Required fields jacs_data_directory: \"./jacs_data\", // Where documents are stored jacs_key_directory: \"./jacs_keys\", // Where keys are stored jacs_default_storage: \"fs\", // Storage backend jacs_agent_key_algorithm: \"ring-Ed25519\", // Signing algorithm // Optional fields jacs_agent_id_and_version: null, // Existing agent to load jacs_agent_private_key_filename: \"private.pem\", jacs_agent_public_key_filename: \"public.pem\"\n};","breadcrumbs":"Installation » Basic Configuration","id":"334","title":"Basic Configuration"},"335":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Load the configuration: import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Installation » Configuration File","id":"335","title":"Configuration File"},"336":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"336","title":"Environment Variables"},"337":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"337","title":"Storage Backends"},"338":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"338","title":"File System (Default)"},"339":{"body":"{ \"jacs_default_storage\": \"s3\"\n} S3 credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » S3 Storage","id":"339","title":"S3 Storage"},"34":{"body":"Data Ingestion Agent → Processing Agent → Validation Agent → Storage Agent Each step is tracked with verifiable completion certificates and quality metrics.","breadcrumbs":"What is JACS? » 📊 Data Processing Workflow","id":"34","title":"📊 Data Processing Workflow"},"340":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"340","title":"Memory Storage (Testing)"},"341":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"341","title":"Cryptographic Algorithms"},"342":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"342","title":"ring-Ed25519 (Recommended)"},"343":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"343","title":"RSA-PSS"},"344":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"344","title":"pq-dilithium (Post-Quantum)"},"345":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"345","title":"pq2025 (Post-Quantum Hybrid)"},"346":{"body":"","breadcrumbs":"Installation » Development Setup","id":"346","title":"Development Setup"},"347":{"body":"my-jacs-project/\n├── package.json\n├── jacs.config.json\n├── src/\n│ ├── agent.js\n│ ├── tasks.js\n│ └── agreements.js\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n└── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Installation » Project Structure","id":"347","title":"Project Structure"},"348":{"body":"{ \"name\": \"my-jacs-app\", \"version\": \"1.0.0\", \"type\": \"module\", \"dependencies\": { \"@hai.ai/jacs\": \"^0.6.0\", \"express\": \"^4.18.0\" }, \"scripts\": { \"start\": \"node src/app.js\", \"test\": \"node test/test.js\", \"dev\": \"nodemon src/app.js\" }\n}","breadcrumbs":"Installation » Package.json Setup","id":"348","title":"Package.json Setup"},"349":{"body":"// src/app.js\nimport { JacsAgent } from '@hai.ai/jacs'; // Create and load agent\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create a document\nconst documentJson = JSON.stringify({ title: \"My First Document\", content: \"Hello from Node.js!\"\n}); const signedDoc = agent.createDocument(documentJson);\nconsole.log('Document created:', signedDoc); // Verify the document\nconst isValid = agent.verifyDocument(signedDoc);\nconsole.log('Document valid:', isValid); console.log('JACS agent ready!');","breadcrumbs":"Installation » Basic Application","id":"349","title":"Basic Application"},"35":{"body":"Query Agent → Research Agent → Analysis Agent → Reporting Agent Complex analysis tasks are broken down with clear accountability for each step.","breadcrumbs":"What is JACS? » 🔍 Multi-Agent Analysis","id":"35","title":"🔍 Multi-Agent Analysis"},"350":{"body":"","breadcrumbs":"Installation » Common Issues","id":"350","title":"Common Issues"},"351":{"body":"If you get Module not found errors: # Check Node.js version\nnode --version # Should be 16+ # Clear node_modules and reinstall\nrm -rf node_modules package-lock.json\nnpm install","breadcrumbs":"Installation » Module Not Found","id":"351","title":"Module Not Found"},"352":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"352","title":"Permission Errors"},"353":{"body":"If you get binary compatibility errors: # Rebuild native modules\nnpm rebuild # Or reinstall\nnpm uninstall @hai.ai/jacs\nnpm install @hai.ai/jacs","breadcrumbs":"Installation » Binary Compatibility","id":"353","title":"Binary Compatibility"},"354":{"body":"If TypeScript can't find definitions: // tsconfig.json\n{ \"compilerOptions\": { \"moduleResolution\": \"node\", \"esModuleInterop\": true, \"allowSyntheticDefaultImports\": true }\n}","breadcrumbs":"Installation » TypeScript Issues","id":"354","title":"TypeScript Issues"},"355":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support HTTP Server - Create JACS HTTP APIs Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"355","title":"Next Steps"},"356":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Express.js middleware integration MCP server implementation","breadcrumbs":"Installation » Examples","id":"356","title":"Examples"},"357":{"body":"The simplified API (@hai.ai/jacs/simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"357","title":"Simplified API"},"358":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load your agent\nconst agent = jacs.load('./jacs.config.json'); // Sign a message\nconst signed = jacs.signMessage({ action: 'approve', amount: 100 });\nconsole.log(`Document ID: ${signed.documentId}`); // Verify it\nconst result = jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}`);","breadcrumbs":"Simplified API » Quick Start","id":"358","title":"Quick Start"},"359":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"359","title":"When to Use the Simplified API"},"36":{"body":"Feature JACS Traditional APIs General Signing Agent Identity ✅ Built-in ❌ Custom implementation ❌ Not agent-focused Task Management ✅ Native support ❌ Application-specific ❌ Not applicable Multi-Party Agreements ✅ Core feature ❌ Complex to implement ⚠️ Possible but difficult Audit Trails ✅ Automatic ❌ Manual logging ⚠️ Basic signing only Schema Validation ✅ JSON Schema ❌ Custom validation ❌ No structure Versioning ✅ Built-in ❌ Manual versioning ❌ Not supported Cross-Platform ✅ JSON everywhere ⚠️ Protocol dependent ⚠️ Format dependent","breadcrumbs":"What is JACS? » Benefits Over Alternatives","id":"36","title":"Benefits Over Alternatives"},"360":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"360","title":"API Reference"},"361":{"body":"Load an agent from a configuration file. This must be called before any other operations. Parameters: configPath (string, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: AgentInfo object const info = jacs.load('./jacs.config.json');\nconsole.log(`Agent ID: ${info.agentId}`);\nconsole.log(`Config: ${info.configPath}`);","breadcrumbs":"Simplified API » load(configPath?)","id":"361","title":"load(configPath?)"},"362":{"body":"Check if an agent is currently loaded. Returns: boolean if (!jacs.isLoaded()) { jacs.load('./jacs.config.json');\n}","breadcrumbs":"Simplified API » isLoaded()","id":"362","title":"isLoaded()"},"363":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or null if no agent is loaded const info = jacs.getAgentInfo();\nif (info) { console.log(`Agent: ${info.agentId}`);\n}","breadcrumbs":"Simplified API » getAgentInfo()","id":"363","title":"getAgentInfo()"},"364":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Throws: Error if no agent is loaded const result = jacs.verifySelf();\nif (result.valid) { console.log('Agent integrity verified');\n} else { console.log('Errors:', result.errors);\n}","breadcrumbs":"Simplified API » verifySelf()","id":"364","title":"verifySelf()"},"365":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Object, array, string, or any JSON-serializable value Returns: SignedDocument Throws: Error if no agent is loaded // Sign an object\nconst signed = jacs.signMessage({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); console.log(`Document ID: ${signed.documentId}`);\nconsole.log(`Signed by: ${signed.agentId}`);\nconsole.log(`Timestamp: ${signed.timestamp}`);\nconsole.log(`Raw JSON: ${signed.raw}`);","breadcrumbs":"Simplified API » signMessage(data)","id":"365","title":"signMessage(data)"},"366":{"body":"Sign a file with optional content embedding. Parameters: filePath (string): Path to the file to sign embed (boolean, optional): If true, embed file content in the document (default: false) Returns: SignedDocument Throws: Error if file not found or no agent loaded // Reference only (stores hash)\nconst signed = jacs.signFile('contract.pdf', false); // Embed content (creates portable document)\nconst embedded = jacs.signFile('contract.pdf', true);","breadcrumbs":"Simplified API » signFile(filePath, embed?)","id":"366","title":"signFile(filePath, embed?)"},"367":{"body":"Verify a signed document and extract its content. Parameters: signedDocument (string): The JSON string of the signed document Returns: VerificationResult Throws: Error if no agent is loaded const result = jacs.verify(signedJson); if (result.valid) { console.log(`Signed by: ${result.signerId}`); console.log(`Timestamp: ${result.timestamp}`); console.log(`Data: ${JSON.stringify(result.data)}`);\n} else { console.log(`Invalid: ${result.errors.join(', ')}`);\n}","breadcrumbs":"Simplified API » verify(signedDocument)","id":"367","title":"verify(signedDocument)"},"368":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Does not use the global agent. Parameters: signedDocument (string): The signed JACS document JSON options (object, optional): { keyResolution?, dataDirectory?, keyDirectory? } Returns: VerificationResult (same shape as verify()) const result = jacs.verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './keys' });\nconsole.log(result.valid, result.signerId);","breadcrumbs":"Simplified API » verifyStandalone(signedDocument, options?)","id":"368","title":"verifyStandalone(signedDocument, options?)"},"369":{"body":"Run a read-only security audit and health checks. Returns an object with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. Parameters: options (object, optional): { configPath?, recentN? } Returns: Object with risks, health_checks, summary, overall_status, etc. See Security Model — Security Audit for full details and options. const result = jacs.audit();\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`);","breadcrumbs":"Simplified API » audit(options?)","id":"369","title":"audit(options?)"},"37":{"body":"✅ Perfect for: Multi-agent AI systems Task delegation and tracking Audit trail requirements Cross-organization AI collaboration Compliance-critical AI applications Research environments with multiple AI models ⚠️ Consider alternatives for: Simple single-agent systems Real-time streaming data High-frequency micro-transactions Systems where trust is not a concern","breadcrumbs":"What is JACS? » When to Use JACS","id":"37","title":"When to Use JACS"},"370":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use exportAgent() to get the current document, modify it, then pass it here. Parameters: newAgentData (object|string): Complete agent document as JSON string or object Returns: string - The updated and re-signed agent document Throws: Error if no agent loaded or validation fails // Get current agent document\nconst agentDoc = JSON.parse(jacs.exportAgent()); // Modify fields\nagentDoc.jacsAgentType = 'hybrid';\nagentDoc.jacsContacts = [{ contactFirstName: 'Jane', contactLastName: 'Doe' }]; // Update (creates new version, re-signs, re-hashes)\nconst updated = jacs.updateAgent(agentDoc);\nconst newDoc = JSON.parse(updated); console.log(`New version: ${newDoc.jacsVersion}`);\nconsole.log(`Previous: ${newDoc.jacsPreviousVersion}`); Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » updateAgent(newAgentData)","id":"370","title":"updateAgent(newAgentData)"},"371":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without noSave: true). Parameters: documentId (string): The document ID (jacsId) to update newDocumentData (object|string): Updated document as JSON string or object attachments (string[], optional): Array of file paths to attach embed (boolean, optional): If true, embed attachment contents Returns: SignedDocument with the updated document Throws: Error if document not found, no agent loaded, or validation fails // Create a document (must be saved to disk)\nconst original = jacs.signMessage({ status: 'pending', amount: 100 }); // Later, update it\nconst doc = JSON.parse(original.raw);\ndoc.content.status = 'approved'; const updated = jacs.updateDocument(original.documentId, doc);\nconst newDoc = JSON.parse(updated.raw); console.log(`New version: ${newDoc.jacsVersion}`);\nconsole.log(`Previous: ${newDoc.jacsPreviousVersion}`);","breadcrumbs":"Simplified API » updateDocument(documentId, newDocumentData, attachments?, embed?)","id":"371","title":"updateDocument(documentId, newDocumentData, attachments?, embed?)"},"372":{"body":"Export the current agent document for sharing or inspection. Returns: string - The agent JSON document Throws: Error if no agent loaded const agentDoc = jacs.exportAgent();\nconsole.log(agentDoc); // Parse to inspect\nconst agent = JSON.parse(agentDoc);\nconsole.log(`Agent type: ${agent.jacsAgentType}`);","breadcrumbs":"Simplified API » exportAgent()","id":"372","title":"exportAgent()"},"373":{"body":"Register the loaded agent with HAI.ai. Requires a loaded agent and an API key (options.apiKey or HAI_API_KEY). Parameters: options (object, optional): { apiKey?, haiUrl?, preview? } Returns: Promise with agentId, jacsId, dnsVerified, signatures","breadcrumbs":"Simplified API » registerWithHai(options?)","id":"373","title":"registerWithHai(options?)"},"374":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Parameters: domain (string), ttl (number, optional, default 3600) Returns: string","breadcrumbs":"Simplified API » getDnsRecord(domain, ttl?)","id":"374","title":"getDnsRecord(domain, ttl?)"},"375":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: object","breadcrumbs":"Simplified API » getWellKnownJson()","id":"375","title":"getWellKnownJson()"},"376":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: string - PEM-encoded public key Throws: Error if no agent loaded const pem = jacs.getPublicKey();\nconsole.log(pem);\n// -----BEGIN PUBLIC KEY-----\n// ...\n// -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » getPublicKey()","id":"376","title":"getPublicKey()"},"377":{"body":"","breadcrumbs":"Simplified API » Type Definitions","id":"377","title":"Type Definitions"},"378":{"body":"interface AgentInfo { agentId: string; // Agent's UUID name: string; // Agent name from config publicKeyPath: string; // Path to public key file configPath: string; // Path to loaded config\n}","breadcrumbs":"Simplified API » AgentInfo","id":"378","title":"AgentInfo"},"379":{"body":"interface SignedDocument { raw: string; // Full JSON document with signature documentId: string; // Document's UUID (jacsId) agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp\n}","breadcrumbs":"Simplified API » SignedDocument","id":"379","title":"SignedDocument"},"38":{"body":"Ready to dive deeper? Continue with: Core Concepts - Learn about agents, documents, and agreements Quick Start - Get hands-on experience Implementation guides for Rust , Node.js , or Python","breadcrumbs":"What is JACS? » Next Steps","id":"38","title":"Next Steps"},"380":{"body":"interface VerificationResult { valid: boolean; // True if signature verified data?: any; // Extracted document content signerId: string; // Agent who signed timestamp: string; // When it was signed attachments: Attachment[]; // File attachments errors: string[]; // Error messages if invalid\n}","breadcrumbs":"Simplified API » VerificationResult","id":"380","title":"VerificationResult"},"381":{"body":"interface Attachment { filename: string; // Original filename mimeType: string; // MIME type hash: string; // SHA-256 hash embedded: boolean; // True if content is embedded content?: Buffer; // Embedded content (if available)\n}","breadcrumbs":"Simplified API » Attachment","id":"381","title":"Attachment"},"382":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load agent\nconst agent = jacs.load('./jacs.config.json');\nconsole.log(`Loaded agent: ${agent.agentId}`); // Verify agent integrity\nconst selfCheck = jacs.verifySelf();\nif (!selfCheck.valid) { throw new Error('Agent integrity check failed');\n} // Sign a transaction\nconst transaction = { type: 'payment', from: agent.agentId, to: 'recipient-agent-uuid', amount: 250.00, currency: 'USD', memo: 'Q1 Service Payment'\n}; const signed = jacs.signMessage(transaction);\nconsole.log(`Transaction signed: ${signed.documentId}`); // Verify the transaction (simulating recipient)\nconst verification = jacs.verify(signed.raw); if (verification.valid) { console.log(`Payment verified from: ${verification.signerId}`); console.log(`Amount: ${verification.data.amount} ${verification.data.currency}`);\n} else { console.log(`Verification failed: ${verification.errors.join(', ')}`);\n} // Sign a file\nconst contractSigned = jacs.signFile('./contract.pdf', true);\nconsole.log(`Contract signed: ${contractSigned.documentId}`); // Update agent metadata\nconst agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'ai';\nif (!agentDoc.jacsContacts || agentDoc.jacsContacts.length === 0) { agentDoc.jacsContacts = [{ contactFirstName: 'AI', contactLastName: 'Agent' }];\n}\nconst updatedAgent = jacs.updateAgent(agentDoc);\nconsole.log('Agent metadata updated'); // Share public key\nconst publicKey = jacs.getPublicKey();\nconsole.log('Share this public key for verification:');\nconsole.log(publicKey);","breadcrumbs":"Simplified API » Complete Example","id":"382","title":"Complete Example"},"383":{"body":"The simplified API works well with MCP tool implementations: const { Server } = require('@modelcontextprotocol/sdk/server/index.js');\nconst jacs = require('@hai.ai/jacs/simple'); // Load agent once at startup\njacs.load('./jacs.config.json'); // Define a signed tool\nserver.setRequestHandler('tools/call', async (request) => { const { name, arguments: args } = request.params; if (name === 'approve_request') { const signed = jacs.signMessage({ action: 'approve', requestId: args.requestId, approvedBy: jacs.getAgentInfo().agentId }); return { content: [{ type: 'text', text: signed.raw }] }; }\n});","breadcrumbs":"Simplified API » MCP Integration","id":"383","title":"MCP Integration"},"384":{"body":"const jacs = require('@hai.ai/jacs/simple'); try { jacs.load('./missing-config.json');\n} catch (e) { console.error('Config not found:', e.message);\n} try { // Will fail if no agent loaded jacs.signMessage({ data: 'test' });\n} catch (e) { console.error('No agent:', e.message);\n} try { jacs.signFile('/nonexistent/file.pdf');\n} catch (e) { console.error('File not found:', e.message);\n} // Verification doesn't throw - check result.valid\nconst result = jacs.verify('invalid json');\nif (!result.valid) { console.error('Verification errors:', result.errors);\n}","breadcrumbs":"Simplified API » Error Handling","id":"384","title":"Error Handling"},"385":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"385","title":"See Also"},"386":{"body":"This chapter covers fundamental JACS operations in Node.js, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"386","title":"Basic Usage"},"387":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"387","title":"Initializing an Agent"},"388":{"body":"import { JacsAgent } from '@hai.ai/jacs'; // Create a new agent instance\nconst agent = new JacsAgent(); // Load configuration from file\nagent.load('./jacs.config.json');","breadcrumbs":"Basic Usage » Create and Load Agent","id":"388","title":"Create and Load Agent"},"389":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"389","title":"Configuration File"},"39":{"body":"Understanding JACS requires familiarity with several key concepts that work together to create a secure, verifiable communication framework for AI agents.","breadcrumbs":"Core Concepts » Core Concepts","id":"39","title":"Core Concepts"},"390":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"390","title":"Creating Documents"},"391":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create a document from JSON\nconst documentData = { title: \"Project Proposal\", content: \"Quarterly development plan\", budget: 50000\n}; const signedDocument = agent.createDocument(JSON.stringify(documentData));\nconsole.log('Signed document:', signedDocument);","breadcrumbs":"Basic Usage » Basic Document Creation","id":"391","title":"Basic Document Creation"},"392":{"body":"Validate against a custom JSON Schema: const signedDocument = agent.createDocument( JSON.stringify(documentData), './schemas/proposal.schema.json' // custom schema path\n);","breadcrumbs":"Basic Usage » With Custom Schema","id":"392","title":"With Custom Schema"},"393":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema './output/proposal.json' // output filename\n);","breadcrumbs":"Basic Usage » With Output File","id":"393","title":"With Output File"},"394":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename true // noSave = true\n);","breadcrumbs":"Basic Usage » Without Saving","id":"394","title":"Without Saving"},"395":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename false, // save the document './attachments/report.pdf', // attachment path true // embed files\n);","breadcrumbs":"Basic Usage » With Attachments","id":"395","title":"With Attachments"},"396":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"396","title":"Verifying Documents"},"397":{"body":"// Verify a document's signature and hash\nconst isValid = agent.verifyDocument(signedDocumentJson);\nconsole.log('Document valid:', isValid);","breadcrumbs":"Basic Usage » Verify Document Signature","id":"397","title":"Verify Document Signature"},"398":{"body":"// Verify with a custom signature field\nconst isValid = agent.verifySignature( signedDocumentJson, 'jacsSignature' // signature field name\n);","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"398","title":"Verify Specific Signature Field"},"399":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"399","title":"Updating Documents"},"4":{"body":"Performance : Fastest implementation with native performance CLI Tool : Complete command-line interface for agent and document management Library : Full-featured Rust library for embedded applications Observability : Advanced logging and metrics with OpenTelemetry support","breadcrumbs":"Introduction » 🦀 Rust (Core Library + CLI)","id":"4","title":"🦀 Rust (Core Library + CLI)"},"40":{"body":"An Agent is the fundamental entity in JACS - an autonomous participant that can create, sign, and verify documents.","breadcrumbs":"Core Concepts » Agents","id":"40","title":"Agents"},"400":{"body":"// Original document key format: \"id:version\"\nconst documentKey = 'doc-uuid:version-uuid'; // Modified document content\nconst updatedData = { jacsId: 'doc-uuid', jacsVersion: 'version-uuid', title: \"Updated Proposal\", content: \"Revised quarterly plan\", budget: 75000\n}; const updatedDocument = agent.updateDocument( documentKey, JSON.stringify(updatedData)\n); console.log('Updated document:', updatedDocument);","breadcrumbs":"Basic Usage » Update Existing Document","id":"400","title":"Update Existing Document"},"401":{"body":"const updatedDocument = agent.updateDocument( documentKey, JSON.stringify(updatedData), ['./new-report.pdf'], // new attachments true // embed files\n);","breadcrumbs":"Basic Usage » Update with New Attachments","id":"401","title":"Update with New Attachments"},"402":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"402","title":"Signing and Verification"},"403":{"body":"// Sign any string data\nconst signature = agent.signString('Important message to sign');\nconsole.log('Signature:', signature);","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"403","title":"Sign Arbitrary Data"},"404":{"body":"// Verify a signature on string data\nconst isValid = agent.verifyString( 'Important message to sign', // original data signatureBase64, // base64 signature publicKeyBuffer, // public key as Buffer 'ring-Ed25519' // algorithm\n);","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"404","title":"Verify Arbitrary Data"},"405":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"405","title":"Working with Agreements"},"406":{"body":"// Add agreement requiring multiple agent signatures\nconst documentWithAgreement = agent.createAgreement( signedDocumentJson, ['agent1-uuid', 'agent2-uuid'], // required signers 'Do you agree to these terms?', // question 'Q1 2024 service contract', // context 'jacsAgreement' // field name\n);","breadcrumbs":"Basic Usage » Create an Agreement","id":"406","title":"Create an Agreement"},"407":{"body":"// Sign the agreement as the current agent\nconst signedAgreement = agent.signAgreement( documentWithAgreementJson, 'jacsAgreement' // agreement field name\n);","breadcrumbs":"Basic Usage » Sign an Agreement","id":"407","title":"Sign an Agreement"},"408":{"body":"// Check which agents have signed\nconst status = agent.checkAgreement( documentWithAgreementJson, 'jacsAgreement'\n); console.log('Agreement status:', JSON.parse(status));","breadcrumbs":"Basic Usage » Check Agreement Status","id":"408","title":"Check Agreement Status"},"409":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"409","title":"Agent Operations"},"41":{"body":"{ \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsType\": \"agent\", \"name\": \"Content Creation Agent\", \"description\": \"Specialized in creating marketing content\"\n} Key Properties: jacsId : Permanent UUID identifying the agent jacsVersion : UUID that changes with each update Cryptographic Keys : Ed25519, RSA, or post-quantum key pairs Services : Capabilities the agent offers Contacts : How to reach the agent","breadcrumbs":"Core Concepts » Agent Identity","id":"41","title":"Agent Identity"},"410":{"body":"// Verify the loaded agent's signature\nconst isValid = agent.verifyAgent();\nconsole.log('Agent valid:', isValid); // Verify a specific agent file\nconst isValidOther = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Basic Usage » Verify Agent","id":"410","title":"Verify Agent"},"411":{"body":"// Update agent document\nconst updatedAgentJson = agent.updateAgent(JSON.stringify({ jacsId: 'agent-uuid', jacsVersion: 'version-uuid', name: 'Updated Agent Name', description: 'Updated description'\n}));","breadcrumbs":"Basic Usage » Update Agent","id":"411","title":"Update Agent"},"412":{"body":"// Sign another agent's document with registration signature\nconst signedAgentJson = agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"Basic Usage » Sign External Agent","id":"412","title":"Sign External Agent"},"413":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"413","title":"Request/Response Signing"},"414":{"body":"// Sign request parameters as a JACS document\nconst signedRequest = agent.signRequest({ method: 'GET', path: '/api/resource', timestamp: new Date().toISOString(), body: { query: 'data' }\n});","breadcrumbs":"Basic Usage » Sign a Request","id":"414","title":"Sign a Request"},"415":{"body":"// Verify a signed response\nconst result = agent.verifyResponse(signedResponseJson);\nconsole.log('Response valid:', result); // Verify and get signer's agent ID\nconst resultWithId = agent.verifyResponseWithAgentId(signedResponseJson);\nconsole.log('Signer ID:', resultWithId);","breadcrumbs":"Basic Usage » Verify a Response","id":"415","title":"Verify a Response"},"416":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"416","title":"Utility Functions"},"417":{"body":"import { hashString } from '@hai.ai/jacs'; // SHA-256 hash of a string\nconst hash = hashString('data to hash');\nconsole.log('Hash:', hash);","breadcrumbs":"Basic Usage » Hash String","id":"417","title":"Hash String"},"418":{"body":"import { createConfig } from '@hai.ai/jacs'; // Programmatically create a config JSON string\nconst configJson = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // key algorithm undefined, // private key password undefined, // agent id and version 'fs' // default storage\n); console.log('Config:', configJson);","breadcrumbs":"Basic Usage » Create Configuration","id":"418","title":"Create Configuration"},"419":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent(); try { agent.load('./jacs.config.json');\n} catch (error) { console.error('Failed to load agent:', error.message);\n} try { const doc = agent.createDocument(JSON.stringify({ data: 'test' })); console.log('Document created');\n} catch (error) { console.error('Failed to create document:', error.message);\n} try { const isValid = agent.verifyDocument(invalidJson);\n} catch (error) { console.error('Verification failed:', error.message);\n}","breadcrumbs":"Basic Usage » Error Handling","id":"419","title":"Error Handling"},"42":{"body":"Creation : Generate keys and initial agent document Registration : Store public keys for verification Operation : Create and sign documents Updates : Version changes while maintaining identity Verification : Other agents validate signatures","breadcrumbs":"Core Concepts » Agent Lifecycle","id":"42","title":"Agent Lifecycle"},"420":{"body":"import { JacsAgent, hashString } from '@hai.ai/jacs'; async function main() { // Initialize agent const agent = new JacsAgent(); agent.load('./jacs.config.json'); // Create a task document const task = { title: 'Code Review', description: 'Review pull request #123', assignee: 'developer-uuid', deadline: '2024-02-01' }; const signedTask = agent.createDocument(JSON.stringify(task)); console.log('Task created'); // Verify the task if (agent.verifyDocument(signedTask)) { console.log('Task signature valid'); } // Create agreement for task acceptance const taskWithAgreement = agent.createAgreement( signedTask, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ); // Sign the agreement const signedAgreement = agent.signAgreement(taskWithAgreement); console.log('Agreement signed'); // Check agreement status const status = agent.checkAgreement(signedAgreement); console.log('Status:', status); // Hash some data for reference const taskHash = hashString(signedTask); console.log('Task hash:', taskHash);\n} main().catch(console.error);","breadcrumbs":"Basic Usage » Complete Example","id":"420","title":"Complete Example"},"421":{"body":"MCP Integration - Model Context Protocol support HTTP Server - Create HTTP APIs Express Middleware - Express.js integration API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"421","title":"Next Steps"},"422":{"body":"JACS provides native integration with the Model Context Protocol (MCP) , enabling secure agent communication within AI systems. JACS uses a transport proxy pattern that wraps any MCP transport with cryptographic signing and verification.","breadcrumbs":"MCP Integration » Model Context Protocol (MCP) Integration","id":"422","title":"Model Context Protocol (MCP) Integration"},"423":{"body":"Model Context Protocol is a standard for AI models to securely access external tools, data, and services. JACS enhances MCP by adding: Cryptographic verification of all messages Agent identity for all operations Transparent encryption of MCP JSON-RPC traffic Audit trails of all MCP interactions","breadcrumbs":"MCP Integration » What is MCP?","id":"423","title":"What is MCP?"},"424":{"body":"JACS provides a transport proxy that sits between your MCP server/client and the underlying transport (STDIO, SSE, WebSocket). The proxy: Outgoing messages : Signs JSON-RPC messages with the JACS agent's key using signRequest() Incoming messages : Verifies signatures using verifyResponse() and extracts the payload Fallback : If verification fails, passes messages through as plain JSON (graceful degradation)","breadcrumbs":"MCP Integration » How JACS MCP Works","id":"424","title":"How JACS MCP Works"},"425":{"body":"","breadcrumbs":"MCP Integration » Quick Start","id":"425","title":"Quick Start"},"426":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; const JACS_CONFIG_PATH = \"./jacs.config.json\"; async function main() { // Create the base STDIO transport const baseTransport = new StdioServerTransport(); // Wrap with JACS encryption const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG_PATH, \"server\" ); // Create MCP server const server = new McpServer({ name: \"my-jacs-server\", version: \"1.0.0\" }); // Register tools server.tool(\"add\", { a: z.number().describe(\"First number\"), b: z.number().describe(\"Second number\") }, async ({ a, b }) => { return { content: [{ type: \"text\", text: `${a} + ${b} = ${a + b}` }] }; }); // Connect with JACS encryption await server.connect(secureTransport); console.error(\"JACS MCP Server running with encryption enabled\");\n} main();","breadcrumbs":"MCP Integration » Basic MCP Server with JACS","id":"426","title":"Basic MCP Server with JACS"},"427":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const JACS_CONFIG_PATH = \"./jacs.config.json\"; async function main() { // Create base transport to connect to MCP server const baseTransport = new StdioClientTransport({ command: 'node', args: ['my-jacs-server.js'] }); // Wrap with JACS encryption const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG_PATH, \"client\" ); // Create MCP client const client = new Client({ name: \"my-jacs-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); // Connect with JACS encryption await client.connect(secureTransport); // List available tools const tools = await client.listTools(); console.log('Available tools:', tools.tools.map(t => t.name)); // Call a tool (message will be JACS-signed) const result = await client.callTool({ name: \"add\", arguments: { a: 5, b: 3 } }); console.log('Result:', result.content);\n} main();","breadcrumbs":"MCP Integration » MCP Client with JACS","id":"427","title":"MCP Client with JACS"},"428":{"body":"","breadcrumbs":"MCP Integration » API Reference","id":"428","title":"API Reference"},"429":{"body":"The main class that wraps MCP transports with JACS encryption. import { JACSTransportProxy } from '@hai.ai/jacs/mcp'; const proxy = new JACSTransportProxy( transport, // Any MCP transport (Stdio, SSE, WebSocket) role, // \"server\" or \"client\" jacsConfigPath // Path to jacs.config.json\n);","breadcrumbs":"MCP Integration » JACSTransportProxy","id":"429","title":"JACSTransportProxy"},"43":{"body":"When consuming signed documents, you can verify in two ways: With a loaded agent (load(config) first): Call verify(signedDocument). The loaded agent uses its config (trust store, key resolution) to resolve the signer’s public key and verify the signature. Use this when your process already has a JACS config (e.g. it also signs) or when you want to use a specific key directory and resolution order. Without loading an agent (one-off verification): Call verify_standalone(signedDocument, options) (or the language equivalent: verifyStandalone, VerifyStandalone). This verifies the document using only the options you pass (e.g. keyResolution, keyDirectory). No config file or persistent agent state is required. Use this in lightweight services that only need to verify incoming documents.","breadcrumbs":"Core Concepts » Verification: load() vs verify_standalone()","id":"43","title":"Verification: load() vs verify_standalone()"},"430":{"body":"Factory function for creating a transport proxy. import { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const secureTransport = createJACSTransportProxy( baseTransport, // The underlying MCP transport configPath, // Path to jacs.config.json role // \"server\" or \"client\"\n);","breadcrumbs":"MCP Integration » createJACSTransportProxy","id":"430","title":"createJACSTransportProxy"},"431":{"body":"Async factory that waits for JACS to be fully loaded before returning. import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( baseTransport, configPath, role\n);","breadcrumbs":"MCP Integration » createJACSTransportProxyAsync","id":"431","title":"createJACSTransportProxyAsync"},"432":{"body":"","breadcrumbs":"MCP Integration » Transport Options","id":"432","title":"Transport Options"},"433":{"body":"Best for CLI tools and subprocess communication: import { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); Important : When using STDIO transport, all debug logging goes to stderr to keep stdout clean for JSON-RPC messages.","breadcrumbs":"MCP Integration » STDIO Transport","id":"433","title":"STDIO Transport"},"434":{"body":"For web-based MCP servers: import { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport express from 'express'; const app = express(); app.get('/sse', (req, res) => { const baseTransport = new SSEServerTransport('/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\" ); // Connect your MCP server to secureTransport server.connect(secureTransport);\n}); // Handle POST messages with JACS decryption\napp.post('/messages', express.text(), async (req, res) => { await secureTransport.handlePostMessage(req, res, req.body);\n}); app.listen(3000);","breadcrumbs":"MCP Integration » SSE Transport (HTTP)","id":"434","title":"SSE Transport (HTTP)"},"435":{"body":"","breadcrumbs":"MCP Integration » Configuration","id":"435","title":"Configuration"},"436":{"body":"Create a jacs.config.json for your MCP server/client: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"MCP Integration » JACS Config File","id":"436","title":"JACS Config File"},"437":{"body":"Enable debug logging (not recommended for STDIO): export JACS_MCP_DEBUG=true","breadcrumbs":"MCP Integration » Environment Variables","id":"437","title":"Environment Variables"},"438":{"body":"","breadcrumbs":"MCP Integration » How Messages Are Signed","id":"438","title":"How Messages Are Signed"},"439":{"body":"When the MCP SDK sends a message, the proxy intercepts it and: Serializes the JSON-RPC message Calls jacs.signRequest(message) to create a JACS artifact Sends the signed artifact to the transport // Original MCP message\n{ \"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"tools/call\", \"params\": { \"name\": \"add\", \"arguments\": { \"a\": 5, \"b\": 3 } }\n} // Becomes a JACS-signed artifact with jacsId, jacsSignature, etc.","breadcrumbs":"MCP Integration » Outgoing Messages","id":"439","title":"Outgoing Messages"},"44":{"body":"A Document is any JSON object that follows JACS conventions for identity, versioning, and cryptographic integrity.","breadcrumbs":"Core Concepts » Documents","id":"44","title":"Documents"},"440":{"body":"When the transport receives a message, the proxy: Attempts to verify it as a JACS artifact using jacs.verifyResponse() If valid, extracts the original JSON-RPC payload If not valid JACS, parses as plain JSON (fallback mode) Passes the clean message to the MCP SDK","breadcrumbs":"MCP Integration » Incoming Messages","id":"440","title":"Incoming Messages"},"441":{"body":"","breadcrumbs":"MCP Integration » Complete Example","id":"441","title":"Complete Example"},"442":{"body":"#!/usr/bin/env node\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; async function main() { console.error(\"JACS MCP Server starting...\"); // Create transport with JACS encryption const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.server.config.json\", \"server\" ); // Create MCP server const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called with: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"add\", { a: z.number().describe(\"First number\"), b: z.number().describe(\"Second number\") }, async ({ a, b }) => { console.error(`Add called with: ${a}, ${b}`); return { content: [{ type: \"text\", text: `Result: ${a + b}` }] }; }); // Register resources server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: \"JACS-secured MCP Server\", mimeType: \"text/plain\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"MCP Integration » Server (mcp.server.js)","id":"442","title":"Server (mcp.server.js)"},"443":{"body":"#!/usr/bin/env node\nimport { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; async function main() { console.log(\"JACS MCP Client starting...\"); // Connect to the server const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp.server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.client.config.json\", \"client\" ); const client = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await client.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await client.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo tool const echoResult = await client.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo result:\", echoResult.content[0].text); // Call add tool const addResult = await client.callTool({ name: \"add\", arguments: { a: 10, b: 20 } }); console.log(\"Add result:\", addResult.content[0].text); await client.close();\n} main().catch(console.error);","breadcrumbs":"MCP Integration » Client (mcp.client.js)","id":"443","title":"Client (mcp.client.js)"},"444":{"body":"","breadcrumbs":"MCP Integration » Security Considerations","id":"444","title":"Security Considerations"},"445":{"body":"All JACS-signed messages include: jacsId - Unique document identifier jacsVersion - Version tracking jacsSignature - Cryptographic signature jacsHash - Content hash for integrity","breadcrumbs":"MCP Integration » Message Verification","id":"445","title":"Message Verification"},"446":{"body":"If JACS cannot verify an incoming message, it falls back to plain JSON parsing. This allows: Gradual migration to JACS-secured communication Interoperability with non-JACS MCP clients/servers To require JACS verification (no fallback), implement custom validation in your tools.","breadcrumbs":"MCP Integration » Passthrough Mode","id":"446","title":"Passthrough Mode"},"447":{"body":"Each MCP server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file","breadcrumbs":"MCP Integration » Key Management","id":"447","title":"Key Management"},"448":{"body":"","breadcrumbs":"MCP Integration » Debugging","id":"448","title":"Debugging"},"449":{"body":"export JACS_MCP_DEBUG=true This outputs detailed logs about message signing and verification.","breadcrumbs":"MCP Integration » Enable Debug Logging","id":"449","title":"Enable Debug Logging"},"45":{"body":"{ \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsType\": \"task\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"previous-version-uuid\", \"title\": \"Analyze Q4 Sales Data\", \"description\": \"Generate insights from sales data\", \"jacsSha256\": \"hash-of-document-content\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\"] }\n}","breadcrumbs":"Core Concepts » Document Structure","id":"45","title":"Document Structure"},"450":{"body":"For STDIO transports, debug logs go to stderr to prevent contaminating the JSON-RPC stream on stdout.","breadcrumbs":"MCP Integration » STDIO Debug Note","id":"450","title":"STDIO Debug Note"},"451":{"body":"\"JACS not operational\" : Check that your config file path is correct and the agent is properly initialized. Verification failures : Ensure both server and client are using compatible JACS versions and valid keys. Empty responses : The proxy removes null values from messages to prevent MCP schema validation issues.","breadcrumbs":"MCP Integration » Common Issues","id":"451","title":"Common Issues"},"452":{"body":"HTTP Server - Create HTTP APIs with JACS Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"MCP Integration » Next Steps","id":"452","title":"Next Steps"},"453":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing. This enables secure communication between JACS agents over HTTP.","breadcrumbs":"HTTP Server » HTTP Server","id":"453","title":"HTTP Server"},"454":{"body":"JACS HTTP integration provides: Request signing : Sign outgoing HTTP requests with your agent's key Request verification : Verify incoming requests were signed by a valid agent Response signing : Automatically sign responses before sending Response verification : Verify server responses on the client side Framework middleware : Ready-to-use middleware for Express and Koa","breadcrumbs":"HTTP Server » Overview","id":"454","title":"Overview"},"455":{"body":"","breadcrumbs":"HTTP Server » Core Concepts","id":"455","title":"Core Concepts"},"456":{"body":"Client Server | | |-- signRequest(payload) -----> | | |-- verifyResponse() --> payload | |-- process payload | |-- signResponse(result) |<-- verifyResponse(result) ---| | All messages are cryptographically signed, ensuring: Message integrity (no tampering) Agent identity (verified sender) Non-repudiation (proof of origin)","breadcrumbs":"HTTP Server » Request/Response Flow","id":"456","title":"Request/Response Flow"},"457":{"body":"","breadcrumbs":"HTTP Server » HTTP Client","id":"457","title":"HTTP Client"},"458":{"body":"import jacs from '@hai.ai/jacs';\nimport http from 'http'; async function main() { // Load JACS agent await jacs.load('./jacs.config.json'); // Prepare payload const payload = { message: \"Hello, secure server!\", data: { id: 123, value: \"some data\" }, timestamp: new Date().toISOString() }; // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await sendRequest(signedRequest, 'localhost', 3000, '/api/echo'); // Verify the response const verifiedResponse = await jacs.verifyResponse(response); console.log('Verified payload:', verifiedResponse.payload);\n} function sendRequest(body, host, port, path) { return new Promise((resolve, reject) => { const options = { hostname: host, port: port, path: path, method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Length': Buffer.byteLength(body), }, }; const req = http.request(options, (res) => { let data = ''; res.on('data', chunk => data += chunk); res.on('end', () => { if (res.statusCode >= 200 && res.statusCode < 300) { resolve(data); } else { reject(new Error(`HTTP ${res.statusCode}: ${data}`)); } }); }); req.on('error', reject); req.write(body); req.end(); });\n} main();","breadcrumbs":"HTTP Server » Basic Client Usage","id":"458","title":"Basic Client Usage"},"459":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { await jacs.load('./jacs.config.json'); // Sign the payload const signedRequest = await jacs.signRequest(payload); // Send request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"HTTP Server » Using Fetch","id":"459","title":"Using Fetch"},"46":{"body":"Field Purpose Example $schema JSON Schema reference URL to schema jacsId Permanent document identifier UUID v4 jacsVersion Version identifier (changes on update) UUID v4 jacsType Document type \"agent\", \"task\", \"message\" jacsVersionDate When this version was created RFC 3339 timestamp jacsOriginalVersion Original version UUID UUID v4 jacsOriginalDate Original creation timestamp RFC 3339 timestamp jacsLevel Data level/intent \"raw\", \"config\", \"artifact\", \"derived\" jacsPreviousVersion Previous version UUID (optional) UUID v4 or null jacsSha256 Hash of document content SHA-256 hex string jacsSignature Cryptographic signature Signature object","breadcrumbs":"Core Concepts » Required JACS Fields","id":"46","title":"Required JACS Fields"},"460":{"body":"","breadcrumbs":"HTTP Server » Express Server","id":"460","title":"Express Server"},"461":{"body":"JACS provides JACSExpressMiddleware that automatically: Verifies incoming JACS requests Attaches the verified payload to req.jacsPayload Signs outgoing responses when you call res.send() with an object import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // IMPORTANT: Use express.text() BEFORE JACS middleware\n// This ensures req.body is a string for JACS verification\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware to API routes\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.post('/api/echo', (req, res) => { // Access verified payload from req.jacsPayload const payload = req.jacsPayload; if (!payload) { return res.status(400).send('JACS payload missing'); } console.log('Received verified payload:', payload); // Send response object - middleware will sign it automatically res.send({ echo: \"Server says hello!\", received: payload, timestamp: new Date().toISOString() });\n}); app.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Express Middleware","id":"461","title":"Using Express Middleware"},"462":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"HTTP Server » Middleware Configuration","id":"462","title":"Middleware Configuration"},"463":{"body":"For more control, you can handle signing manually: import express from 'express';\nimport jacs from '@hai.ai/jacs'; const app = express(); // Initialize JACS once at startup\nawait jacs.load('./jacs.config.json'); app.use(express.text({ type: '*/*' })); app.post('/api/process', async (req, res) => { try { // Manually verify incoming request const verified = await jacs.verifyResponse(req.body); const payload = verified.payload; // Process the request const result = { success: true, data: processData(payload), timestamp: new Date().toISOString() }; // Manually sign the response const signedResponse = await jacs.signResponse(result); res.type('text/plain').send(signedResponse); } catch (error) { console.error('JACS verification failed:', error); res.status(400).send('Invalid JACS request'); }\n});","breadcrumbs":"HTTP Server » Manual Request/Response Handling","id":"463","title":"Manual Request/Response Handling"},"464":{"body":"","breadcrumbs":"HTTP Server » Koa Server","id":"464","title":"Koa Server"},"465":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa();\nconst PORT = 3000; // Apply JACS Koa middleware\n// Handles raw body reading, verification, and response signing\napp.use(JACSKoaMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.use(async (ctx) => { if (ctx.path === '/api/echo' && ctx.method === 'POST') { // Access verified payload from ctx.state.jacsPayload or ctx.jacsPayload const payload = ctx.state.jacsPayload || ctx.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = 'JACS payload missing'; return; } console.log('Received verified payload:', payload); // Set response object - middleware will sign it automatically ctx.body = { echo: \"Koa server says hello!\", received: payload, timestamp: new Date().toISOString() }; } else { ctx.status = 404; ctx.body = 'Not Found. Try POST to /api/echo'; }\n}); app.listen(PORT, () => { console.log(`JACS Koa server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Koa Middleware","id":"465","title":"Using Koa Middleware"},"466":{"body":"","breadcrumbs":"HTTP Server » API Reference","id":"466","title":"API Reference"},"467":{"body":"Sign an object as a JACS request. const signedRequest = await jacs.signRequest({ method: 'getData', params: { id: 123 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signRequest(payload)","id":"467","title":"jacs.signRequest(payload)"},"468":{"body":"Verify a JACS-signed response and extract the payload. const result = await jacs.verifyResponse(jacsResponseString);\n// Returns: { payload: {...}, jacsId: '...', ... } const payload = result.payload;","breadcrumbs":"HTTP Server » jacs.verifyResponse(responseString)","id":"468","title":"jacs.verifyResponse(responseString)"},"469":{"body":"Sign an object as a JACS response. const signedResponse = await jacs.signResponse({ success: true, data: { result: 42 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signResponse(payload)","id":"469","title":"jacs.signResponse(payload)"},"47":{"body":"Agent Documents Define agent identity and capabilities Contain service definitions and contact information Self-signed by the agent Task Documents Describe work to be performed Include success/failure criteria Can be delegated between agents Message Documents General communication between agents Can include attachments and metadata Support threaded conversations Agreement Documents Multi-party consent mechanisms Track required and actual signatures Enforce completion before proceeding","breadcrumbs":"Core Concepts » Document Types","id":"47","title":"Document Types"},"470":{"body":"Express middleware for JACS request/response handling. import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use(JACSExpressMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads req.body as a JACS string Verifies the signature Attaches payload to req.jacsPayload On failure, sends 400 response Response Processing: Intercepts res.send() calls If body is an object, signs it as JACS Sends signed string to client","breadcrumbs":"HTTP Server » JACSExpressMiddleware(options)","id":"470","title":"JACSExpressMiddleware(options)"},"471":{"body":"Koa middleware for JACS request/response handling. import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads raw request body Verifies JACS signature Attaches payload to ctx.state.jacsPayload and ctx.jacsPayload Response Processing: Signs ctx.body if it's an object Converts to JACS string before sending","breadcrumbs":"HTTP Server » JACSKoaMiddleware(options)","id":"471","title":"JACSKoaMiddleware(options)"},"472":{"body":"","breadcrumbs":"HTTP Server » Complete Example","id":"472","title":"Complete Example"},"473":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // JACS middleware for /api routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Echo endpoint\napp.post('/api/echo', (req, res) => { const payload = req.jacsPayload; res.send({ echo: payload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = a / b; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); app.listen(3000, () => console.log('Server running on port 3000'));","breadcrumbs":"HTTP Server » Server (server.js)","id":"473","title":"Server (server.js)"},"474":{"body":"import jacs from '@hai.ai/jacs'; async function main() { await jacs.load('./jacs.client.config.json'); // Call echo endpoint const echoResult = await callApi('/api/echo', { message: 'Hello, server!' }); console.log('Echo result:', echoResult); // Call calculate endpoint const calcResult = await callApi('/api/calculate', { operation: 'multiply', a: 7, b: 6 }); console.log('Calculate result:', calcResult);\n} async function callApi(path, payload) { const signedRequest = await jacs.signRequest(payload); const response = await fetch(`http://localhost:3000${path}`, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} main().catch(console.error);","breadcrumbs":"HTTP Server » Client (client.js)","id":"474","title":"Client (client.js)"},"475":{"body":"","breadcrumbs":"HTTP Server » Security Considerations","id":"475","title":"Security Considerations"},"476":{"body":"JACS requests should use text/plain content type since they are signed JSON strings, not raw JSON.","breadcrumbs":"HTTP Server » Content-Type","id":"476","title":"Content-Type"},"477":{"body":"Always handle verification failures gracefully: try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"HTTP Server » Error Handling","id":"477","title":"Error Handling"},"478":{"body":"Each server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file pointing to the keys","breadcrumbs":"HTTP Server » Agent Keys","id":"478","title":"Agent Keys"},"479":{"body":"For Express, ensure express.text() comes before JACSExpressMiddleware: // Correct order\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong - JACS middleware won't receive string body\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"HTTP Server » Middleware Order","id":"479","title":"Middleware Order"},"48":{"body":"Tasks represent work that can be delegated, tracked, and verified between agents.","breadcrumbs":"Core Concepts » Tasks","id":"48","title":"Tasks"},"480":{"body":"Express Middleware - More Express integration patterns MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"HTTP Server » Next Steps","id":"480","title":"Next Steps"},"481":{"body":"This chapter covers advanced Express.js integration patterns with JACS, building on the basics covered in HTTP Server .","breadcrumbs":"Express Middleware » Express Middleware","id":"481","title":"Express Middleware"},"482":{"body":"JACS provides JACSExpressMiddleware for seamless integration with Express.js applications: Automatic request verification Automatic response signing Access to verified payloads via req.jacsPayload Error handling for invalid requests","breadcrumbs":"Express Middleware » Overview","id":"482","title":"Overview"},"483":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // Required: Parse body as text before JACS middleware\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Routes automatically get verified payloads and signed responses\napp.post('/api/data', (req, res) => { const payload = req.jacsPayload; res.send({ received: payload, status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » Quick Start","id":"483","title":"Quick Start"},"484":{"body":"","breadcrumbs":"Express Middleware » Middleware Configuration","id":"484","title":"Middleware Configuration"},"485":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"Express Middleware » Basic Configuration","id":"485","title":"Basic Configuration"},"486":{"body":"Apply JACS to specific routes: const app = express(); // Non-JACS routes (public endpoints)\napp.get('/health', (req, res) => res.send({ status: 'ok' }));\napp.get('/public/info', (req, res) => res.send({ name: 'My API' })); // JACS-protected routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/secure', (req, res) => { // Only JACS-signed requests reach here res.send({ data: 'secure response' });\n});","breadcrumbs":"Express Middleware » Per-Route Configuration","id":"486","title":"Per-Route Configuration"},"487":{"body":"Use different JACS agents for different routes: // Admin routes with admin agent\napp.use('/admin', express.text({ type: '*/*' }));\napp.use('/admin', JACSExpressMiddleware({ configPath: './jacs.admin.config.json'\n})); // User routes with user agent\napp.use('/user', express.text({ type: '*/*' }));\napp.use('/user', JACSExpressMiddleware({ configPath: './jacs.user.config.json'\n}));","breadcrumbs":"Express Middleware » Multiple JACS Agents","id":"487","title":"Multiple JACS Agents"},"488":{"body":"","breadcrumbs":"Express Middleware » Request Handling","id":"488","title":"Request Handling"},"489":{"body":"The middleware attaches the verified payload to req.jacsPayload: app.post('/api/process', (req, res) => { // req.jacsPayload contains the verified, decrypted payload const { action, data, timestamp } = req.jacsPayload; console.log('Action:', action); console.log('Data:', data); console.log('Request timestamp:', timestamp); res.send({ processed: true });\n});","breadcrumbs":"Express Middleware » Accessing Verified Payload","id":"489","title":"Accessing Verified Payload"},"49":{"body":"{ \"jacsType\": \"task\", \"title\": \"Generate Marketing Copy\", \"description\": \"Create compelling copy for product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Research competitors\", \"description\": \"Analyze competitor messaging\", \"success\": \"Complete competitive analysis report\", \"failure\": \"Unable to access competitor data\" } ], \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"signature\": \"customer-signature\" }\n}","breadcrumbs":"Core Concepts » Task Structure","id":"49","title":"Task Structure"},"490":{"body":"If JACS verification fails, req.jacsPayload will be undefined: app.post('/api/secure', (req, res) => { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request' }); } // Process verified payload res.send({ success: true });\n});","breadcrumbs":"Express Middleware » Handling Missing Payload","id":"490","title":"Handling Missing Payload"},"491":{"body":"Create a reusable validation middleware: function requireJacsPayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'JACS verification failed', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Apply to routes\napp.post('/api/secure', requireJacsPayload, (req, res) => { // Guaranteed to have valid req.jacsPayload res.send({ data: req.jacsPayload });\n});","breadcrumbs":"Express Middleware » Validation Helper","id":"491","title":"Validation Helper"},"492":{"body":"","breadcrumbs":"Express Middleware » Response Handling","id":"492","title":"Response Handling"},"493":{"body":"When you call res.send() with an object, the middleware automatically signs it: app.post('/api/data', (req, res) => { // This object will be automatically JACS-signed res.send({ result: 'success', data: { value: 42 }, timestamp: new Date().toISOString() });\n});","breadcrumbs":"Express Middleware » Automatic Signing","id":"493","title":"Automatic Signing"},"494":{"body":"To bypass automatic signing, send a string directly: app.post('/api/raw', (req, res) => { // String responses are not signed res.type('text/plain').send('Raw text response');\n});","breadcrumbs":"Express Middleware » Sending Unsigned Responses","id":"494","title":"Sending Unsigned Responses"},"495":{"body":"app.post('/api/custom', (req, res) => { const response = { success: true, payload: { action: 'completed', result: processRequest(req.jacsPayload) }, metadata: { serverTime: new Date().toISOString(), requestId: generateRequestId() } }; // Automatically signed before sending res.send(response);\n});","breadcrumbs":"Express Middleware » Custom Response Format","id":"495","title":"Custom Response Format"},"496":{"body":"","breadcrumbs":"Express Middleware » Error Handling","id":"496","title":"Error Handling"},"497":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/process', (req, res, next) => { try { if (!req.jacsPayload) { throw new Error('Missing JACS payload'); } const result = processData(req.jacsPayload); res.send({ result }); } catch (error) { next(error); }\n}); // Global error handler\napp.use((error, req, res, next) => { console.error('Error:', error.message); res.status(500).send({ error: 'Internal server error', message: error.message });\n});","breadcrumbs":"Express Middleware » Global Error Handler","id":"497","title":"Global Error Handler"},"498":{"body":"class JacsValidationError extends Error { constructor(message) { super(message); this.name = 'JacsValidationError'; this.statusCode = 400; }\n} app.post('/api/validate', (req, res, next) => { try { if (!req.jacsPayload) { throw new JacsValidationError('Invalid JACS request'); } const { requiredField } = req.jacsPayload; if (!requiredField) { throw new JacsValidationError('Missing required field'); } res.send({ valid: true }); } catch (error) { next(error); }\n}); // Error handler\napp.use((error, req, res, next) => { const statusCode = error.statusCode || 500; res.status(statusCode).send({ error: error.name, message: error.message });\n});","breadcrumbs":"Express Middleware » Typed Errors","id":"498","title":"Typed Errors"},"499":{"body":"","breadcrumbs":"Express Middleware » Advanced Patterns","id":"499","title":"Advanced Patterns"},"5":{"body":"Web Integration : Perfect for web servers and Express.js applications MCP Support : Native Model Context Protocol integration HTTP Server : Built-in HTTP server capabilities NPM Package : Easy installation and integration","breadcrumbs":"Introduction » 🟢 Node.js (@hai.ai/jacs)","id":"5","title":"🟢 Node.js (@hai.ai/jacs)"},"50":{"body":"Creation : Customer agent creates task with requirements Delegation : Task sent to service provider agent Agreement : Provider signs agreement to accept task Execution : Provider performs the work Completion : Provider creates completion document Verification : Customer verifies and accepts results","breadcrumbs":"Core Concepts » Task Lifecycle","id":"50","title":"Task Lifecycle"},"500":{"body":"import { Router } from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Create a JACS-enabled router\nfunction createJacsRouter(configPath) { const router = Router(); router.use(express.text({ type: '*/*' })); router.use(JACSExpressMiddleware({ configPath })); return router;\n} // Usage\nconst apiRouter = createJacsRouter('./jacs.config.json'); apiRouter.post('/users', (req, res) => { res.send({ users: getUserList() });\n}); apiRouter.post('/orders', (req, res) => { res.send({ orders: getOrders(req.jacsPayload.userId) });\n}); app.use('/api', apiRouter);","breadcrumbs":"Express Middleware » Router-Level Middleware","id":"500","title":"Router-Level Middleware"},"501":{"body":"Combine JACS with other middleware: import rateLimit from 'express-rate-limit';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const limiter = rateLimit({ windowMs: 15 * 60 * 1000, // 15 minutes max: 100 // limit each IP to 100 requests per windowMs\n}); // Apply multiple middleware in order\napp.use('/api', limiter, // Rate limiting first express.text({ type: '*/*' }), // Parse body as text JACSExpressMiddleware({ configPath: './jacs.config.json' }) // JACS verification\n);","breadcrumbs":"Express Middleware » Middleware Composition","id":"501","title":"Middleware Composition"},"502":{"body":"Log JACS requests for auditing: function jacsLogger(req, res, next) { if (req.jacsPayload) { console.log(JSON.stringify({ timestamp: new Date().toISOString(), method: req.method, path: req.path, jacsPayload: req.jacsPayload, ip: req.ip })); } next();\n} app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' }));\napp.use('/api', jacsLogger); // After JACS middleware","breadcrumbs":"Express Middleware » Logging Middleware","id":"502","title":"Logging Middleware"},"503":{"body":"Combine JACS with user authentication: // JACS middleware first\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); // Then authentication check\nfunction requireAuth(req, res, next) { const payload = req.jacsPayload; if (!payload || !payload.userId) { return res.status(401).send({ error: 'Authentication required' }); } // Attach user to request req.user = { id: payload.userId }; next();\n} app.post('/api/protected', requireAuth, (req, res) => { res.send({ message: `Hello, user ${req.user.id}`, data: req.jacsPayload.data });\n});","breadcrumbs":"Express Middleware » Authentication Integration","id":"503","title":"Authentication Integration"},"504":{"body":"","breadcrumbs":"Express Middleware » Testing","id":"504","title":"Testing"},"505":{"body":"import request from 'supertest';\nimport jacs from '@hai.ai/jacs'; describe('JACS API', () => { beforeAll(async () => { await jacs.load('./jacs.test.config.json'); }); it('should accept valid JACS requests', async () => { const payload = { action: 'test', data: 'hello' }; const signedRequest = await jacs.signRequest(payload); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); // Verify response is JACS-signed const verified = await jacs.verifyResponse(response.text); expect(verified.payload.echo).toEqual(payload); }); it('should reject unsigned requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Express Middleware » Unit Testing Routes","id":"505","title":"Unit Testing Routes"},"506":{"body":"// test/mocks/jacs.js\nexport const mockJacs = { payload: null, setPayload(p) { this.payload = p; }, reset() { this.payload = null; }\n}; // Mock middleware for testing\nexport function mockJacsMiddleware(req, res, next) { req.jacsPayload = mockJacs.payload; next();\n} // In tests\ndescribe('API without real JACS', () => { beforeEach(() => { mockJacs.setPayload({ userId: 'test-user', action: 'test' }); }); afterEach(() => { mockJacs.reset(); }); it('processes payload correctly', async () => { const response = await request(testApp) .post('/api/process') .send('test'); expect(response.status).toBe(200); });\n});","breadcrumbs":"Express Middleware » Mock JACS for Testing","id":"506","title":"Mock JACS for Testing"},"507":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // Health check (no JACS)\napp.get('/health', (req, res) => res.send({ status: 'healthy' })); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } next();\n} // Routes\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload });\n}); app.post('/api/users', requirePayload, (req, res) => { const { name, email } = req.jacsPayload; if (!name || !email) { return res.status(400).send({ error: 'Name and email required' }); } const user = createUser({ name, email }); res.send({ user, created: true });\n}); app.post('/api/documents', requirePayload, async (req, res) => { const { title, content } = req.jacsPayload; const document = await createDocument({ title, content }); res.send({ document });\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); // Start server\nconst PORT = process.env.PORT || 3000;\napp.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"Express Middleware » Complete Application Example","id":"507","title":"Complete Application Example"},"508":{"body":"","breadcrumbs":"Express Middleware » Troubleshooting","id":"508","title":"Troubleshooting"},"509":{"body":"Problem : req.jacsPayload is always undefined Solution : Ensure express.text() comes before JACS middleware: // Correct\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"Express Middleware » Body Parsing Issues","id":"509","title":"Body Parsing Issues"},"51":{"body":"Actions : Individual steps within a task id : Unique identifier within the task name : Human-readable action name description : Detailed requirements success : Definition of successful completion failure : What constitutes failure Services : Required capabilities type : Service category requirements : Specific needs constraints : Limitations or restrictions","breadcrumbs":"Core Concepts » Task Components","id":"51","title":"Task Components"},"510":{"body":"Problem : Using express.json() interferes with JACS Solution : Use route-specific middleware: // JSON for non-JACS routes\napp.use('/public', express.json()); // Text for JACS routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));","breadcrumbs":"Express Middleware » JSON Body Parser Conflict","id":"510","title":"JSON Body Parser Conflict"},"511":{"body":"Problem : Responses are plain JSON, not JACS-signed Solution : Ensure you're sending an object, not a string: // Will be signed\nres.send({ data: 'value' }); // Will NOT be signed\nres.send(JSON.stringify({ data: 'value' }));","breadcrumbs":"Express Middleware » Response Not Signed","id":"511","title":"Response Not Signed"},"512":{"body":"HTTP Server - Core HTTP integration concepts MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"Express Middleware » Next Steps","id":"512","title":"Next Steps"},"513":{"body":"Complete API documentation for the @hai.ai/jacs Node.js package.","breadcrumbs":"API Reference » API Reference","id":"513","title":"API Reference"},"514":{"body":"npm install @hai.ai/jacs","breadcrumbs":"API Reference » Installation","id":"514","title":"Installation"},"515":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';","breadcrumbs":"API Reference » Core Module","id":"515","title":"Core Module"},"516":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"516","title":"JacsAgent Class"},"517":{"body":"new JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"API Reference » Constructor","id":"517","title":"Constructor"},"518":{"body":"Load and initialize the agent from a configuration file. Parameters: configPath (string): Path to the JACS configuration file Returns: string - The loaded agent's JSON Example: const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconsole.log('Agent loaded:', JSON.parse(agentJson).jacsId);","breadcrumbs":"API Reference » agent.load(configPath)","id":"518","title":"agent.load(configPath)"},"519":{"body":"Create and sign a new JACS document. Parameters: documentString (string): JSON string of the document content customSchema (string, optional): Path to a custom JSON Schema for validation outputFilename (string, optional): Filename to save the document noSave (boolean, optional): If true, don't save to storage (default: false) attachments (string, optional): Path to file attachments embed (boolean, optional): If true, embed attachments in the document Returns: string - The signed document as a JSON string Example: // Basic document creation\nconst doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Hello, World!'\n})); // With custom schema\nconst validatedDoc = agent.createDocument( JSON.stringify({ title: 'Validated', amount: 100 }), './schemas/invoice.schema.json'\n); // Without saving\nconst tempDoc = agent.createDocument( JSON.stringify({ data: 'temporary' }), null, null, true // noSave = true\n); // With attachments\nconst docWithFile = agent.createDocument( JSON.stringify({ report: 'Monthly Report' }), null, null, false, './report.pdf', true // embed = true\n);","breadcrumbs":"API Reference » agent.createDocument(documentString, customSchema?, outputFilename?, noSave?, attachments?, embed?)","id":"519","title":"agent.createDocument(documentString, customSchema?, outputFilename?, noSave?, attachments?, embed?)"},"52":{"body":"Agreements enable multi-party consent and coordination between agents.","breadcrumbs":"Core Concepts » Agreements","id":"52","title":"Agreements"},"520":{"body":"Verify a document's signature and hash integrity. Parameters: documentString (string): The signed document JSON string Returns: boolean - True if the document is valid Example: const isValid = agent.verifyDocument(signedDocumentJson);\nif (isValid) { console.log('Document signature verified');\n} else { console.log('Document verification failed');\n}","breadcrumbs":"API Reference » agent.verifyDocument(documentString)","id":"520","title":"agent.verifyDocument(documentString)"},"521":{"body":"Verify a document's signature with an optional custom signature field. Parameters: documentString (string): The signed document JSON string signatureField (string, optional): Name of the signature field (default: 'jacsSignature') Returns: boolean - True if the signature is valid Example: // Verify default signature field\nconst isValid = agent.verifySignature(docJson); // Verify custom signature field\nconst isValidCustom = agent.verifySignature(docJson, 'customSignature');","breadcrumbs":"API Reference » agent.verifySignature(documentString, signatureField?)","id":"521","title":"agent.verifySignature(documentString, signatureField?)"},"522":{"body":"Update an existing document, creating a new version. Parameters: documentKey (string): The document key in format \"id:version\" newDocumentString (string): The modified document as JSON string attachments (Array, optional): Array of attachment file paths embed (boolean, optional): If true, embed attachments Returns: string - The updated document as a JSON string Example: // Parse existing document to get key\nconst doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; // Update the document\nconst updatedDoc = agent.updateDocument( documentKey, JSON.stringify({ ...doc, title: 'Updated Title', content: 'Modified content' })\n);","breadcrumbs":"API Reference » agent.updateDocument(documentKey, newDocumentString, attachments?, embed?)","id":"522","title":"agent.updateDocument(documentKey, newDocumentString, attachments?, embed?)"},"523":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: documentString (string): The document JSON string agentIds (Array): Array of agent IDs required to sign question (string, optional): The agreement question context (string, optional): Additional context for the agreement agreementFieldName (string, optional): Field name for the agreement (default: 'jacsAgreement') Returns: string - The document with agreement as a JSON string Example: const docWithAgreement = agent.createAgreement( signedDocumentJson, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], 'Do you agree to these terms?', 'Q1 2024 Service Agreement', 'jacsAgreement'\n);","breadcrumbs":"API Reference » agent.createAgreement(documentString, agentIds, question?, context?, agreementFieldName?)","id":"523","title":"agent.createAgreement(documentString, agentIds, question?, context?, agreementFieldName?)"},"524":{"body":"Sign an agreement as the current agent. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name of the agreement (default: 'jacsAgreement') Returns: string - The document with this agent's signature added Example: const signedAgreement = agent.signAgreement( docWithAgreementJson, 'jacsAgreement'\n);","breadcrumbs":"API Reference » agent.signAgreement(documentString, agreementFieldName?)","id":"524","title":"agent.signAgreement(documentString, agreementFieldName?)"},"525":{"body":"Check the status of an agreement (which agents have signed). Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name of the agreement (default: 'jacsAgreement') Returns: string - JSON string with agreement status Example: const statusJson = agent.checkAgreement(signedAgreementJson);\nconst status = JSON.parse(statusJson); console.log('Required signers:', status.required);\nconsole.log('Signatures received:', status.signed);\nconsole.log('Complete:', status.complete);","breadcrumbs":"API Reference » agent.checkAgreement(documentString, agreementFieldName?)","id":"525","title":"agent.checkAgreement(documentString, agreementFieldName?)"},"526":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (string): The data to sign Returns: string - Base64-encoded signature Example: const signature = agent.signString('Important message');\nconsole.log('Signature:', signature);","breadcrumbs":"API Reference » agent.signString(data)","id":"526","title":"agent.signString(data)"},"527":{"body":"Verify a signature on arbitrary string data. Parameters: data (string): The original data signatureBase64 (string): The base64-encoded signature publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm (e.g., 'ring-Ed25519') Returns: boolean - True if the signature is valid Example: const isValid = agent.verifyString( 'Important message', signatureBase64, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"API Reference » agent.verifyString(data, signatureBase64, publicKey, publicKeyEncType)","id":"527","title":"agent.verifyString(data, signatureBase64, publicKey, publicKeyEncType)"},"528":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload object Returns: string - JACS-signed request as a JSON string Example: const signedRequest = agent.signRequest({ method: 'GET', path: '/api/data', timestamp: new Date().toISOString(), body: { query: 'value' }\n});","breadcrumbs":"API Reference » agent.signRequest(params)","id":"528","title":"agent.signRequest(params)"},"529":{"body":"Verify a JACS-signed response and extract the payload. Parameters: documentString (string): The JACS-signed response Returns: object - Object containing the verified payload Example: const result = agent.verifyResponse(jacsResponseString);\nconst payload = result.payload;\nconsole.log('Verified payload:', payload);","breadcrumbs":"API Reference » agent.verifyResponse(documentString)","id":"529","title":"agent.verifyResponse(documentString)"},"53":{"body":"{ \"jacsType\": \"agreement\", \"title\": \"Task Acceptance Agreement\", \"question\": \"Do you agree to complete the marketing copy task?\", \"context\": \"Task ID: abc123, Deadline: 2024-01-20\", \"agents\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"jacsAgreement\": { \"agent-1-uuid\": { \"agentID\": \"agent-1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\" }, \"agent-2-uuid\": { \"agentID\": \"agent-2-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T11:15:00Z\" } // agent-3-uuid has not signed yet }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Core Concepts » Agreement Structure","id":"53","title":"Agreement Structure"},"530":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: documentString (string): The JACS-signed response Returns: object - Object with payload and agent ID Example: const result = agent.verifyResponseWithAgentId(jacsResponseString);\nconsole.log('Payload:', result.payload);\nconsole.log('Signed by agent:', result.agentId);","breadcrumbs":"API Reference » agent.verifyResponseWithAgentId(documentString)","id":"530","title":"agent.verifyResponseWithAgentId(documentString)"},"531":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agentFile (string, optional): Path to an agent file to verify Returns: boolean - True if the agent is valid Example: // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"API Reference » agent.verifyAgent(agentFile?)","id":"531","title":"agent.verifyAgent(agentFile?)"},"532":{"body":"Update the agent document with new data. Parameters: newAgentString (string): The modified agent document as JSON string Returns: string - The updated agent document Example: const currentAgent = JSON.parse(agent.load('./jacs.config.json'));\nconst updatedAgent = agent.updateAgent(JSON.stringify({ ...currentAgent, description: 'Updated description'\n}));","breadcrumbs":"API Reference » agent.updateAgent(newAgentString)","id":"532","title":"agent.updateAgent(newAgentString)"},"533":{"body":"Sign another agent's document with a registration signature. Parameters: agentString (string): The agent document to sign publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm Returns: string - The signed agent document Example: const signedAgent = agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"API Reference » agent.signAgent(agentString, publicKey, publicKeyEncType)","id":"533","title":"agent.signAgent(agentString, publicKey, publicKeyEncType)"},"534":{"body":"","breadcrumbs":"API Reference » Utility Functions","id":"534","title":"Utility Functions"},"535":{"body":"Hash a string using SHA-256. Parameters: data (string): The string to hash Returns: string - Hexadecimal hash string Example: import { hashString } from '@hai.ai/jacs'; const hash = hashString('data to hash');\nconsole.log('SHA-256:', hash);","breadcrumbs":"API Reference » hashString(data)","id":"535","title":"hashString(data)"},"536":{"body":"Create a JACS configuration JSON string programmatically. Parameters: jacsUseSecurity (string, optional): Enable security features jacsDataDirectory (string, optional): Directory for data storage jacsKeyDirectory (string, optional): Directory for key storage jacsAgentPrivateKeyFilename (string, optional): Private key filename jacsAgentPublicKeyFilename (string, optional): Public key filename jacsAgentKeyAlgorithm (string, optional): Signing algorithm jacsPrivateKeyPassword (string, optional): Password for private key jacsAgentIdAndVersion (string, optional): Agent ID and version to load jacsDefaultStorage (string, optional): Storage backend ('fs', 's3', 'memory') Returns: string - Configuration as JSON string Example: import { createConfig } from '@hai.ai/jacs'; const configJson = createConfig( undefined, // jacsUseSecurity './jacs_data', // jacsDataDirectory './jacs_keys', // jacsKeyDirectory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // algorithm undefined, // password undefined, // agent id 'fs' // storage\n); // Write to file\nfs.writeFileSync('jacs.config.json', configJson);","breadcrumbs":"API Reference » createConfig(options)","id":"536","title":"createConfig(options)"},"537":{"body":"import { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http';","breadcrumbs":"API Reference » HTTP Module","id":"537","title":"HTTP Module"},"538":{"body":"Express middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Express middleware function Example: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); app.post('/api/data', (req, res) => { // req.jacsPayload contains verified payload res.send({ received: req.jacsPayload });\n});","breadcrumbs":"API Reference » JACSExpressMiddleware(options)","id":"538","title":"JACSExpressMiddleware(options)"},"539":{"body":"Koa middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Koa middleware function Example: import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json'\n})); app.use(async (ctx) => { // ctx.state.jacsPayload contains verified payload ctx.body = { received: ctx.state.jacsPayload };\n});","breadcrumbs":"API Reference » JACSKoaMiddleware(options)","id":"539","title":"JACSKoaMiddleware(options)"},"54":{"body":"Creation : Initial agent creates agreement with required participants Distribution : Agreement sent to all required agents Review : Each agent reviews terms and conditions Signing : Agents add their signatures if they consent Completion : Agreement becomes binding when all parties have signed Verification : Any party can verify all signatures","breadcrumbs":"Core Concepts » Agreement Process","id":"54","title":"Agreement Process"},"540":{"body":"import { JACSTransportProxy, createJACSTransportProxy, createJACSTransportProxyAsync\n} from '@hai.ai/jacs/mcp';","breadcrumbs":"API Reference » MCP Module","id":"540","title":"MCP Module"},"541":{"body":"Class that wraps MCP transports with JACS encryption. Constructor: new JACSTransportProxy(transport, role, jacsConfigPath) Parameters: transport: Any MCP transport (Stdio, SSE, WebSocket) role (string): 'server' or 'client' jacsConfigPath (string): Path to JACS configuration file","breadcrumbs":"API Reference » JACSTransportProxy","id":"541","title":"JACSTransportProxy"},"542":{"body":"Factory function for creating a transport proxy. Parameters: transport: The underlying MCP transport configPath (string): Path to JACS configuration file role (string): 'server' or 'client' Returns: JACSTransportProxy instance Example: import { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);","breadcrumbs":"API Reference » createJACSTransportProxy(transport, configPath, role)","id":"542","title":"createJACSTransportProxy(transport, configPath, role)"},"543":{"body":"Async factory that waits for JACS to be fully loaded. Parameters: Same as createJACSTransportProxy Returns: Promise Example: const secureTransport = await createJACSTransportProxyAsync( baseTransport, './jacs.config.json', 'server'\n);","breadcrumbs":"API Reference » createJACSTransportProxyAsync(transport, configPath, role)","id":"543","title":"createJACSTransportProxyAsync(transport, configPath, role)"},"544":{"body":"The package includes full TypeScript definitions. Import types as needed: import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs'; const agent: JacsAgent = new JacsAgent();\nconst hash: string = hashString('data');\nconst config: string = createConfig( undefined, './data', './keys'\n);","breadcrumbs":"API Reference » TypeScript Support","id":"544","title":"TypeScript Support"},"545":{"body":"The following module-level functions are deprecated. Use new JacsAgent() and instance methods instead: load() - Use agent.load() signAgent() - Use agent.signAgent() verifyString() - Use agent.verifyString() signString() - Use agent.signString() verifyAgent() - Use agent.verifyAgent() updateAgent() - Use agent.updateAgent() verifyDocument() - Use agent.verifyDocument() updateDocument() - Use agent.updateDocument() verifySignature() - Use agent.verifySignature() createAgreement() - Use agent.createAgreement() signAgreement() - Use agent.signAgreement() createDocument() - Use agent.createDocument() checkAgreement() - Use agent.checkAgreement() signRequest() - Use agent.signRequest() verifyResponse() - Use agent.verifyResponse() verifyResponseWithAgentId() - Use agent.verifyResponseWithAgentId() Migration Example: // Old (deprecated)\nimport jacs from '@hai.ai/jacs';\nawait jacs.load('./jacs.config.json');\nconst doc = jacs.createDocument(JSON.stringify({ data: 'test' })); // New (recommended)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json');\nconst doc = agent.createDocument(JSON.stringify({ data: 'test' }));","breadcrumbs":"API Reference » Deprecated Functions","id":"545","title":"Deprecated Functions"},"546":{"body":"All methods may throw errors. Use try/catch for error handling: try { const agent = new JacsAgent(); agent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ data: 'test' }));\n} catch (error) { console.error('JACS error:', error.message);\n}","breadcrumbs":"API Reference » Error Handling","id":"546","title":"Error Handling"},"547":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol HTTP Server - HTTP integration Express Middleware - Express.js patterns","breadcrumbs":"API Reference » See Also","id":"547","title":"See Also"},"548":{"body":"The JACS Python package (jacs) provides Python bindings to the JACS Rust library, making it easy to integrate JACS into AI/ML workflows, data science projects, and Python applications.","breadcrumbs":"Installation » Python Installation","id":"548","title":"Python Installation"},"549":{"body":"Python : Version 3.10 or higher pip : For package management Operating System : Linux, macOS, or Windows with WSL Architecture : x86_64 or ARM64","breadcrumbs":"Installation » Requirements","id":"549","title":"Requirements"},"55":{"body":"Task Agreements : Consent to perform specific work Service Agreements : Long-term service provision contracts Data Sharing Agreements : Permission to access or use data Update Agreements : Consent to system or process changes","breadcrumbs":"Core Concepts » Agreement Types","id":"55","title":"Agreement Types"},"550":{"body":"","breadcrumbs":"Installation » Installation","id":"550","title":"Installation"},"551":{"body":"pip install jacs","breadcrumbs":"Installation » Using pip","id":"551","title":"Using pip"},"552":{"body":"conda install -c conda-forge jacs","breadcrumbs":"Installation » Using conda","id":"552","title":"Using conda"},"553":{"body":"poetry add jacs","breadcrumbs":"Installation » Using poetry","id":"553","title":"Using poetry"},"554":{"body":"# Clone the repository\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacspy # Create virtual environment\npython -m venv .venv\nsource .venv/bin/activate # On Windows: .venv\\Scripts\\activate # Install in development mode\npip install -e .","breadcrumbs":"Installation » Development Installation","id":"554","title":"Development Installation"},"555":{"body":"Create a simple test to verify everything is working: # test.py\nimport jacs print('JACS Python bindings loaded successfully!') # Test basic functionality\ntry: agent = jacs.JacsAgent() agent.load('./jacs.config.json') print('Agent loaded successfully!')\nexcept Exception as error: print(f'Error loading agent: {error}') Run the test: python test.py","breadcrumbs":"Installation » Verify Installation","id":"555","title":"Verify Installation"},"556":{"body":"The jacs package provides Python bindings to the JACS Rust library:","breadcrumbs":"Installation » Package Structure","id":"556","title":"Package Structure"},"557":{"body":"import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Utility functions\nhash_value = jacs.hash_string(\"data to hash\")\nconfig_json = jacs.create_config( jacs_data_directory=\"./data\", jacs_key_directory=\"./keys\", jacs_agent_key_algorithm=\"ring-Ed25519\"\n)","breadcrumbs":"Installation » Core Module","id":"557","title":"Core Module"},"558":{"body":"# Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration\nagent.load('./jacs.config.json') # Document operations\nsigned_doc = agent.create_document(json_string)\nis_valid = agent.verify_document(document_string) # Signing operations\nsignature = agent.sign_string(\"data to sign\")","breadcrumbs":"Installation » JacsAgent Methods","id":"558","title":"JacsAgent Methods"},"559":{"body":"","breadcrumbs":"Installation » Configuration","id":"559","title":"Configuration"},"56":{"body":"JACS uses industry-standard cryptographic primitives for security.","breadcrumbs":"Core Concepts » Cryptographic Security","id":"56","title":"Cryptographic Security"},"560":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Installation » Configuration File","id":"560","title":"Configuration File"},"561":{"body":"import jacs # Create agent and load configuration\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Installation » Load Configuration in Python","id":"561","title":"Load Configuration in Python"},"562":{"body":"import jacs # Create a configuration JSON string programmatically\nconfig_json = jacs.create_config( jacs_data_directory=\"./jacs_data\", jacs_key_directory=\"./jacs_keys\", jacs_agent_key_algorithm=\"ring-Ed25519\", jacs_default_storage=\"fs\"\n)","breadcrumbs":"Installation » Programmatic Configuration","id":"562","title":"Programmatic Configuration"},"563":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"563","title":"Environment Variables"},"564":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"564","title":"Storage Backends"},"565":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"565","title":"File System (Default)"},"566":{"body":"{ \"jacs_default_storage\": \"s3\"\n} S3 credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » S3 Storage","id":"566","title":"S3 Storage"},"567":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"567","title":"Memory Storage (Testing)"},"568":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"568","title":"Cryptographic Algorithms"},"569":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"569","title":"ring-Ed25519 (Recommended)"},"57":{"body":"Current Standards ring-Ed25519 : Fast elliptic curve signatures using the ring library (recommended) RSA-PSS : Traditional RSA with probabilistic signature scheme Post-Quantum pq-dilithium : NIST-standardized post-quantum signatures","breadcrumbs":"Core Concepts » Supported Algorithms","id":"57","title":"Supported Algorithms"},"570":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"570","title":"RSA-PSS"},"571":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"571","title":"pq-dilithium (Post-Quantum)"},"572":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"572","title":"pq2025 (Post-Quantum Hybrid)"},"573":{"body":"","breadcrumbs":"Installation » Development Setup","id":"573","title":"Development Setup"},"574":{"body":"my-jacs-project/\n├── requirements.txt\n├── jacs.config.json\n├── src/\n│ ├── agent.py\n│ ├── tasks.py\n│ └── agreements.py\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n├── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── tests/ └── test_jacs.py","breadcrumbs":"Installation » Project Structure","id":"574","title":"Project Structure"},"575":{"body":"jacs>=0.1.0\nfastapi>=0.100.0 # For FastMCP integration\nuvicorn>=0.23.0 # For ASGI server\npydantic>=2.0.0 # For data validation","breadcrumbs":"Installation » Requirements.txt Setup","id":"575","title":"Requirements.txt Setup"},"576":{"body":"# src/app.py\nimport jacs\nimport json def main(): # Create and load agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a document document_data = { \"title\": \"My First Document\", \"content\": \"Hello from Python!\" } signed_doc = agent.create_document(json.dumps(document_data)) print('Document created') # Verify the document is_valid = agent.verify_document(signed_doc) print(f'Document valid: {is_valid}') print('JACS agent ready!') return agent if __name__ == \"__main__\": agent = main()","breadcrumbs":"Installation » Basic Application","id":"576","title":"Basic Application"},"577":{"body":"","breadcrumbs":"Installation » Virtual Environment Setup","id":"577","title":"Virtual Environment Setup"},"578":{"body":"# Create virtual environment\npython -m venv jacs-env # Activate (Linux/macOS)\nsource jacs-env/bin/activate # Activate (Windows)\njacs-env\\Scripts\\activate # Install JACS\npip install jacs","breadcrumbs":"Installation » Using venv","id":"578","title":"Using venv"},"579":{"body":"# Create conda environment\nconda create -n jacs-env python=3.11 # Activate environment\nconda activate jacs-env # Install JACS\npip install jacs","breadcrumbs":"Installation » Using conda","id":"579","title":"Using conda"},"58":{"body":"Content Extraction : Specific fields are extracted for signing Canonicalization : Fields are sorted and formatted consistently Hashing : SHA-256 hash of the canonical content Signing : Private key signs the hash Verification : Public key verifies the signature","breadcrumbs":"Core Concepts » Signature Process","id":"58","title":"Signature Process"},"580":{"body":"# Initialize poetry project\npoetry init # Add JACS dependency\npoetry add jacs # Install dependencies\npoetry install # Activate shell\npoetry shell","breadcrumbs":"Installation » Using poetry","id":"580","title":"Using poetry"},"581":{"body":"# Install Jupyter in your JACS environment\npip install jupyter # Start Jupyter\njupyter notebook # In your notebook\nimport jacs\nimport json # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a simple document\ndoc = agent.create_document(json.dumps({ \"title\": \"Notebook Analysis\", \"data\": [1, 2, 3, 4, 5]\n})) print(\"Document created!\")\nprint(\"JACS ready for notebook use!\")","breadcrumbs":"Installation » Jupyter Notebook Setup","id":"581","title":"Jupyter Notebook Setup"},"582":{"body":"","breadcrumbs":"Installation » Common Issues","id":"582","title":"Common Issues"},"583":{"body":"If you get ModuleNotFoundError: No module named 'jacs': # Check Python version\npython --version # Should be 3.10+ # Check if jacs is installed\npip list | grep jacs # Reinstall if needed\npip uninstall jacs\npip install jacs","breadcrumbs":"Installation » Module Not Found","id":"583","title":"Module Not Found"},"584":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"584","title":"Permission Errors"},"585":{"body":"If you get binary compatibility errors: # Update pip and reinstall\npip install --upgrade pip\npip uninstall jacs\npip install jacs --no-cache-dir","breadcrumbs":"Installation » Binary Compatibility","id":"585","title":"Binary Compatibility"},"586":{"body":"On Windows, you may need Visual C++ Build Tools: # Install Visual C++ Build Tools\n# Or use conda-forge\nconda install -c conda-forge jacs","breadcrumbs":"Installation » Windows Issues","id":"586","title":"Windows Issues"},"587":{"body":"JACS is built with Rust and PyO3, providing Python bindings: import jacs\nimport json # Create agent instance\nagent: jacs.JacsAgent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create and verify documents\nsigned_doc: str = agent.create_document(json.dumps({\"title\": \"Test\"}))\nis_valid: bool = agent.verify_document(signed_doc)","breadcrumbs":"Installation » Type Hints and IDE Support","id":"587","title":"Type Hints and IDE Support"},"588":{"body":"# tests/test_jacs.py\nimport unittest\nimport jacs\nimport json class TestJACS(unittest.TestCase): def setUp(self): # Requires a valid jacs.config.json file self.agent = jacs.JacsAgent() self.agent.load('./jacs.config.json') def test_document_creation(self): doc_data = {\"title\": \"Test Document\", \"content\": \"Test content\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) # Document should be a valid JSON string parsed = json.loads(signed_doc) self.assertIn(\"jacsId\", parsed) self.assertIn(\"jacsSignature\", parsed) def test_document_verification(self): doc_data = {\"title\": \"Verify Test\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) is_valid = self.agent.verify_document(signed_doc) self.assertTrue(is_valid) def test_sign_string(self): signature = self.agent.sign_string(\"test data\") self.assertIsInstance(signature, str) self.assertTrue(len(signature) > 0) if __name__ == \"__main__\": unittest.main()","breadcrumbs":"Installation » Testing Setup","id":"588","title":"Testing Setup"},"589":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"589","title":"Next Steps"},"59":{"body":"Agent Keys : Each agent has a unique key pair Public Key Distribution : Public keys shared through secure channels Key Rotation : Agents can update keys while maintaining identity Key Verification : Public key hashes ensure integrity","breadcrumbs":"Core Concepts » Key Management","id":"59","title":"Key Management"},"590":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Jupyter notebook workflows FastMCP server implementation AI/ML pipeline integration","breadcrumbs":"Installation » Examples","id":"590","title":"Examples"},"591":{"body":"The simplified API (jacs.simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"591","title":"Simplified API"},"592":{"body":"import jacs.simple as jacs # Load your agent\nagent = jacs.load(\"./jacs.config.json\") # Sign a message\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nprint(f\"Document ID: {signed.document_id}\") # Verify it\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}\")","breadcrumbs":"Simplified API » Quick Start","id":"592","title":"Quick Start"},"593":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"593","title":"When to Use the Simplified API"},"594":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"594","title":"API Reference"},"595":{"body":"Load an agent from a configuration file. This must be called before any other operations. Parameters: config_path (str, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: AgentInfo dataclass Raises: JacsError if config not found or invalid info = jacs.load(\"./jacs.config.json\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config: {info.config_path}\")","breadcrumbs":"Simplified API » load(config_path=None)","id":"595","title":"load(config_path=None)"},"596":{"body":"Check if an agent is currently loaded. Returns: bool if not jacs.is_loaded(): jacs.load(\"./jacs.config.json\")","breadcrumbs":"Simplified API » is_loaded()","id":"596","title":"is_loaded()"},"597":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or None if no agent is loaded info = jacs.get_agent_info()\nif info: print(f\"Agent: {info.agent_id}\")","breadcrumbs":"Simplified API » get_agent_info()","id":"597","title":"get_agent_info()"},"598":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify_self()\nif result.valid: print(\"Agent integrity verified\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Simplified API » verify_self()","id":"598","title":"verify_self()"},"599":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Dict, list, string, or any JSON-serializable value Returns: SignedDocument Raises: AgentNotLoadedError if no agent is loaded # Sign a dict\nsigned = jacs.sign_message({ \"action\": \"transfer\", \"amount\": 500, \"recipient\": \"agent-123\"\n}) print(f\"Document ID: {signed.document_id}\")\nprint(f\"Signed by: {signed.agent_id}\")\nprint(f\"Timestamp: {signed.timestamp}\")\nprint(f\"Raw JSON: {signed.raw}\")","breadcrumbs":"Simplified API » sign_message(data)","id":"599","title":"sign_message(data)"},"6":{"body":"AI/ML Integration : Ideal for AI and machine learning workflows MCP Support : Authenticated MCP server patterns PyPI Package : Simple pip install integration Data Science : Perfect for Jupyter notebooks and data pipelines","breadcrumbs":"Introduction » 🐍 Python (jacs)","id":"6","title":"🐍 Python (jacs)"},"60":{"body":"JACS provides comprehensive versioning for tracking document evolution.","breadcrumbs":"Core Concepts » Versioning and Audit Trails","id":"60","title":"Versioning and Audit Trails"},"600":{"body":"Sign a file with optional content embedding. Parameters: file_path (str): Path to the file to sign embed (bool, optional): If True, embed file content in the document (default: False) Returns: SignedDocument Raises: JacsError if file not found or no agent loaded # Reference only (stores hash)\nsigned = jacs.sign_file(\"contract.pdf\", embed=False) # Embed content (creates portable document)\nembedded = jacs.sign_file(\"contract.pdf\", embed=True)","breadcrumbs":"Simplified API » sign_file(file_path, embed=False)","id":"600","title":"sign_file(file_path, embed=False)"},"601":{"body":"Verify a signed document and extract its content. Parameters: signed_document (str): The JSON string of the signed document Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify(signed_json) if result.valid: print(f\"Signed by: {result.signer_id}\") print(f\"Timestamp: {result.timestamp}\")\nelse: print(f\"Invalid: {', '.join(result.errors)}\")","breadcrumbs":"Simplified API » verify(signed_document)","id":"601","title":"verify(signed_document)"},"602":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Parameters: document (str|dict), key_resolution (str), data_directory (str, optional), key_directory (str, optional) Returns: VerificationResult","breadcrumbs":"Simplified API » verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)","id":"602","title":"verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)"},"603":{"body":"Run a read-only security audit and health checks. Returns a dict with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. See Security Model — Security Audit for full details and options. result = jacs.audit()\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\")","breadcrumbs":"Simplified API » audit(config_path=None, recent_n=None)","id":"603","title":"audit(config_path=None, recent_n=None)"},"604":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use export_agent() to get the current document, modify it, then pass it here. Parameters: new_agent_data (dict|str): Complete agent document as JSON string or dict Returns: str - The updated and re-signed agent document Raises: AgentNotLoadedError if no agent loaded, JacsError if validation fails import json # Get current agent document\nagent_doc = json.loads(jacs.export_agent()) # Modify fields\nagent_doc[\"jacsAgentType\"] = \"hybrid\"\nagent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"Jane\", \"contactLastName\": \"Doe\"}] # Update (creates new version, re-signs, re-hashes)\nupdated = jacs.update_agent(agent_doc)\nnew_doc = json.loads(updated) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\") Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » update_agent(new_agent_data)","id":"604","title":"update_agent(new_agent_data)"},"605":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without no_save=True). Parameters: document_id (str): The document ID (jacsId) to update new_document_data (dict|str): Updated document as JSON string or dict attachments (list, optional): List of file paths to attach embed (bool, optional): If True, embed attachment contents Returns: SignedDocument with the updated document Raises: JacsError if document not found, no agent loaded, or validation fails import json # Create a document (must be saved to disk)\noriginal = jacs.sign_message({\"status\": \"pending\", \"amount\": 100}) # Later, update it\ndoc = json.loads(original.raw)\ndoc[\"content\"][\"status\"] = \"approved\" updated = jacs.update_document(original.document_id, doc)\nnew_doc = json.loads(updated.raw) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\")","breadcrumbs":"Simplified API » update_document(document_id, new_document_data, attachments=None, embed=False)","id":"605","title":"update_document(document_id, new_document_data, attachments=None, embed=False)"},"606":{"body":"Export the current agent document for sharing or inspection. Returns: str - The agent JSON document Raises: AgentNotLoadedError if no agent loaded agent_doc = jacs.export_agent()\nprint(agent_doc) # Parse to inspect\nagent = json.loads(agent_doc)\nprint(f\"Agent type: {agent['jacsAgentType']}\")","breadcrumbs":"Simplified API » export_agent()","id":"606","title":"export_agent()"},"607":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Returns: str","breadcrumbs":"Simplified API » get_dns_record(domain, ttl=3600)","id":"607","title":"get_dns_record(domain, ttl=3600)"},"608":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: dict","breadcrumbs":"Simplified API » get_well_known_json()","id":"608","title":"get_well_known_json()"},"609":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: str - PEM-encoded public key Raises: AgentNotLoadedError if no agent loaded pem = jacs.get_public_key()\nprint(pem)\n# -----BEGIN PUBLIC KEY-----\n# ...\n# -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » get_public_key()","id":"609","title":"get_public_key()"},"61":{"body":"Immutable IDs : jacsId never changes for a document Version IDs : jacsVersion changes with each update Previous Versions : jacsPreviousVersion creates a chain Timestamps : jacsVersionDate provides chronological order","breadcrumbs":"Core Concepts » Version Management","id":"61","title":"Version Management"},"610":{"body":"All types are Python dataclasses for convenient access:","breadcrumbs":"Simplified API » Type Definitions","id":"610","title":"Type Definitions"},"611":{"body":"@dataclass\nclass AgentInfo: agent_id: str # Agent's UUID config_path: str # Path to loaded config public_key_path: Optional[str] = None # Path to public key file","breadcrumbs":"Simplified API » AgentInfo","id":"611","title":"AgentInfo"},"612":{"body":"@dataclass\nclass SignedDocument: raw: str # Full JSON document with signature document_id: str # Document's UUID (jacsId) agent_id: str # Signing agent's ID timestamp: str # ISO 8601 timestamp","breadcrumbs":"Simplified API » SignedDocument","id":"612","title":"SignedDocument"},"613":{"body":"@dataclass\nclass VerificationResult: valid: bool # True if signature verified signer_id: Optional[str] # Agent who signed timestamp: Optional[str] # When it was signed attachments: List[Attachment] # File attachments errors: List[str] # Error messages if invalid","breadcrumbs":"Simplified API » VerificationResult","id":"613","title":"VerificationResult"},"614":{"body":"@dataclass\nclass Attachment: filename: str # Original filename mime_type: str # MIME type hash: str # SHA-256 hash embedded: bool # True if content is embedded content: Optional[bytes] = None # Embedded content (if available)","breadcrumbs":"Simplified API » Attachment","id":"614","title":"Attachment"},"615":{"body":"class JacsError(Exception): \"\"\"Base exception for JACS errors.\"\"\" pass class AgentNotLoadedError(JacsError): \"\"\"Raised when an operation requires a loaded agent.\"\"\" pass","breadcrumbs":"Simplified API » Exceptions","id":"615","title":"Exceptions"},"616":{"body":"import json\nimport jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError # Load agent\nagent = jacs.load(\"./jacs.config.json\")\nprint(f\"Loaded agent: {agent.agent_id}\") # Verify agent integrity\nself_check = jacs.verify_self()\nif not self_check.valid: raise RuntimeError(\"Agent integrity check failed\") # Sign a transaction\ntransaction = { \"type\": \"payment\", \"from\": agent.agent_id, \"to\": \"recipient-agent-uuid\", \"amount\": 250.00, \"currency\": \"USD\", \"memo\": \"Q1 Service Payment\"\n} signed = jacs.sign_message(transaction)\nprint(f\"Transaction signed: {signed.document_id}\") # Verify the transaction (simulating recipient)\nverification = jacs.verify(signed.raw) if verification.valid: doc = json.loads(signed.raw) print(f\"Payment verified from: {verification.signer_id}\") print(f\"Amount: {doc['content']['amount']} {doc['content']['currency']}\")\nelse: print(f\"Verification failed: {', '.join(verification.errors)}\") # Sign a file\ncontract_signed = jacs.sign_file(\"./contract.pdf\", embed=True)\nprint(f\"Contract signed: {contract_signed.document_id}\") # Update agent metadata\nagent_doc = json.loads(jacs.export_agent())\nagent_doc[\"jacsAgentType\"] = \"ai\"\nif not agent_doc.get(\"jacsContacts\") or len(agent_doc[\"jacsContacts\"]) == 0: agent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"AI\", \"contactLastName\": \"Agent\"}]\nupdated_agent = jacs.update_agent(agent_doc)\nprint(\"Agent metadata updated\") # Share public key\npublic_key = jacs.get_public_key()\nprint(\"Share this public key for verification:\")\nprint(public_key)","breadcrumbs":"Simplified API » Complete Example","id":"616","title":"Complete Example"},"617":{"body":"The simplified API works well with FastMCP tool implementations: from fastmcp import FastMCP\nimport jacs.simple as jacs mcp = FastMCP(\"My Server\") # Load agent once at startup\njacs.load(\"./jacs.config.json\") @mcp.tool()\ndef approve_request(request_id: str) -> dict: \"\"\"Approve a request with cryptographic signature.\"\"\" signed = jacs.sign_message({ \"action\": \"approve\", \"request_id\": request_id, \"approved_by\": jacs.get_agent_info().agent_id }) return {\"signed_approval\": signed.raw} @mcp.tool()\ndef verify_approval(signed_json: str) -> dict: \"\"\"Verify a signed approval.\"\"\" result = jacs.verify(signed_json) return { \"valid\": result.valid, \"signer\": result.signer_id, \"errors\": result.errors }","breadcrumbs":"Simplified API » MCP Integration","id":"617","title":"MCP Integration"},"618":{"body":"import jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError try: jacs.load(\"./missing-config.json\")\nexcept JacsError as e: print(f\"Config not found: {e}\") try: # Will fail if no agent loaded jacs.sign_message({\"data\": \"test\"})\nexcept AgentNotLoadedError as e: print(f\"No agent: {e}\") try: jacs.sign_file(\"/nonexistent/file.pdf\")\nexcept JacsError as e: print(f\"File not found: {e}\") # Verification doesn't throw - check result.valid\nresult = jacs.verify(\"invalid json\")\nif not result.valid: print(f\"Verification errors: {result.errors}\")","breadcrumbs":"Simplified API » Error Handling","id":"618","title":"Error Handling"},"619":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"619","title":"See Also"},"62":{"body":"Complete History : Track all changes to any document Attribution : Know exactly who made each change Verification : Cryptographic proof of authenticity Compliance : Meet regulatory audit requirements","breadcrumbs":"Core Concepts » Audit Trail Benefits","id":"62","title":"Audit Trail Benefits"},"620":{"body":"This chapter covers fundamental JACS operations in Python, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"620","title":"Basic Usage"},"621":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"621","title":"Initializing an Agent"},"622":{"body":"import jacs # Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration from file\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Create and Load Agent","id":"622","title":"Create and Load Agent"},"623":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"623","title":"Configuration File"},"624":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"624","title":"Creating Documents"},"625":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a document from JSON\ndocument_data = { \"title\": \"Project Proposal\", \"content\": \"Quarterly development plan\", \"budget\": 50000\n} signed_document = agent.create_document(json.dumps(document_data))\nprint('Signed document:', signed_document)","breadcrumbs":"Basic Usage » Basic Document Creation","id":"625","title":"Basic Document Creation"},"626":{"body":"Validate against a custom JSON Schema: signed_document = agent.create_document( json.dumps(document_data), './schemas/proposal.schema.json' # custom schema path\n)","breadcrumbs":"Basic Usage » With Custom Schema","id":"626","title":"With Custom Schema"},"627":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema './output/proposal.json' # output filename\n)","breadcrumbs":"Basic Usage » With Output File","id":"627","title":"With Output File"},"628":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename True # no_save = True\n)","breadcrumbs":"Basic Usage » Without Saving","id":"628","title":"Without Saving"},"629":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename False, # save the document './attachments/report.pdf', # attachment path True # embed files\n)","breadcrumbs":"Basic Usage » With Attachments","id":"629","title":"With Attachments"},"63":{"body":"JACS documents are designed to be storage and transport agnostic.","breadcrumbs":"Core Concepts » Storage and Transport","id":"63","title":"Storage and Transport"},"630":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"630","title":"Verifying Documents"},"631":{"body":"# Verify a document's signature and hash\nis_valid = agent.verify_document(signed_document_json)\nprint('Document valid:', is_valid)","breadcrumbs":"Basic Usage » Verify Document Signature","id":"631","title":"Verify Document Signature"},"632":{"body":"# Verify with a custom signature field\nis_valid = agent.verify_signature( signed_document_json, 'jacsSignature' # signature field name\n)","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"632","title":"Verify Specific Signature Field"},"633":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"633","title":"Updating Documents"},"634":{"body":"# Original document key format: \"id:version\"\ndocument_key = 'doc-uuid:version-uuid' # Modified document content (must include jacsId and jacsVersion)\nupdated_data = { \"jacsId\": \"doc-uuid\", \"jacsVersion\": \"version-uuid\", \"title\": \"Updated Proposal\", \"content\": \"Revised quarterly plan\", \"budget\": 75000\n} updated_document = agent.update_document( document_key, json.dumps(updated_data)\n) print('Updated document:', updated_document)","breadcrumbs":"Basic Usage » Update Existing Document","id":"634","title":"Update Existing Document"},"635":{"body":"updated_document = agent.update_document( document_key, json.dumps(updated_data), ['./new-report.pdf'], # new attachments True # embed files\n)","breadcrumbs":"Basic Usage » Update with New Attachments","id":"635","title":"Update with New Attachments"},"636":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"636","title":"Signing and Verification"},"637":{"body":"# Sign any string data\nsignature = agent.sign_string('Important message to sign')\nprint('Signature:', signature)","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"637","title":"Sign Arbitrary Data"},"638":{"body":"# Verify a signature on string data\nis_valid = agent.verify_string( 'Important message to sign', # original data signature_base64, # base64 signature public_key_bytes, # public key as bytes 'ring-Ed25519' # algorithm\n)","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"638","title":"Verify Arbitrary Data"},"639":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"639","title":"Working with Agreements"},"64":{"body":"File System : Simple JSON files Databases : Store as JSON/JSONB fields Object Storage : S3, Azure Blob, Google Cloud Storage Version Control : Git repositories for change tracking","breadcrumbs":"Core Concepts » Storage Options","id":"64","title":"Storage Options"},"640":{"body":"# Add agreement requiring multiple agent signatures\ndocument_with_agreement = agent.create_agreement( signed_document_json, ['agent1-uuid', 'agent2-uuid'], # required signers 'Do you agree to these terms?', # question 'Q1 2024 service contract', # context 'jacsAgreement' # field name\n)","breadcrumbs":"Basic Usage » Create an Agreement","id":"640","title":"Create an Agreement"},"641":{"body":"# Sign the agreement as the current agent\nsigned_agreement = agent.sign_agreement( document_with_agreement_json, 'jacsAgreement' # agreement field name\n)","breadcrumbs":"Basic Usage » Sign an Agreement","id":"641","title":"Sign an Agreement"},"642":{"body":"# Check which agents have signed\nstatus = agent.check_agreement( document_with_agreement_json, 'jacsAgreement'\n) print('Agreement status:', json.loads(status))","breadcrumbs":"Basic Usage » Check Agreement Status","id":"642","title":"Check Agreement Status"},"643":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"643","title":"Agent Operations"},"644":{"body":"# Verify the loaded agent's signature\nis_valid = agent.verify_agent()\nprint('Agent valid:', is_valid) # Verify a specific agent file\nis_valid_other = agent.verify_agent('./other-agent.json')","breadcrumbs":"Basic Usage » Verify Agent","id":"644","title":"Verify Agent"},"645":{"body":"# Update agent document\nupdated_agent_json = agent.update_agent(json.dumps({ \"jacsId\": \"agent-uuid\", \"jacsVersion\": \"version-uuid\", \"name\": \"Updated Agent Name\", \"description\": \"Updated description\"\n}))","breadcrumbs":"Basic Usage » Update Agent","id":"645","title":"Update Agent"},"646":{"body":"# Sign another agent's document with registration signature\nsigned_agent_json = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"Basic Usage » Sign External Agent","id":"646","title":"Sign External Agent"},"647":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"647","title":"Request/Response Signing"},"648":{"body":"# Sign request parameters as a JACS document\nsigned_request = agent.sign_request({ \"method\": \"GET\", \"path\": \"/api/resource\", \"timestamp\": datetime.now().isoformat(), \"body\": {\"query\": \"data\"}\n})","breadcrumbs":"Basic Usage » Sign a Request","id":"648","title":"Sign a Request"},"649":{"body":"# Verify a signed response\nresult = agent.verify_response(signed_response_json)\nprint('Response valid:', result) # Verify and get signer's agent ID\nresult_with_id = agent.verify_response_with_agent_id(signed_response_json)\nprint('Signer ID:', result_with_id)","breadcrumbs":"Basic Usage » Verify a Response","id":"649","title":"Verify a Response"},"65":{"body":"HTTP APIs : RESTful or GraphQL endpoints Message Queues : RabbitMQ, Kafka, SQS Email : Documents as attachments Direct Transfer : USB drives, file sharing","breadcrumbs":"Core Concepts » Transport Mechanisms","id":"65","title":"Transport Mechanisms"},"650":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"650","title":"Utility Functions"},"651":{"body":"import jacs # SHA-256 hash of a string\nhash_value = jacs.hash_string('data to hash')\nprint('Hash:', hash_value)","breadcrumbs":"Basic Usage » Hash String","id":"651","title":"Hash String"},"652":{"body":"import jacs # Programmatically create a config JSON string\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) print('Config:', config_json)","breadcrumbs":"Basic Usage » Create Configuration","id":"652","title":"Create Configuration"},"653":{"body":"import jacs agent = jacs.JacsAgent() try: agent.load('./jacs.config.json')\nexcept Exception as error: print(f'Failed to load agent: {error}') try: doc = agent.create_document(json.dumps({'data': 'test'})) print('Document created')\nexcept Exception as error: print(f'Failed to create document: {error}') try: is_valid = agent.verify_document(invalid_json)\nexcept Exception as error: print(f'Verification failed: {error}')","breadcrumbs":"Basic Usage » Error Handling","id":"653","title":"Error Handling"},"654":{"body":"import jacs\nimport json def main(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a task document task = { \"title\": \"Code Review\", \"description\": \"Review pull request #123\", \"assignee\": \"developer-uuid\", \"deadline\": \"2024-02-01\" } signed_task = agent.create_document(json.dumps(task)) print('Task created') # Verify the task if agent.verify_document(signed_task): print('Task signature valid') # Create agreement for task acceptance task_with_agreement = agent.create_agreement( signed_task, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ) # Sign the agreement signed_agreement = agent.sign_agreement(task_with_agreement) print('Agreement signed') # Check agreement status status = agent.check_agreement(signed_agreement) print('Status:', status) # Hash some data for reference task_hash = jacs.hash_string(signed_task) print('Task hash:', task_hash) if __name__ == \"__main__\": main()","breadcrumbs":"Basic Usage » Complete Example","id":"654","title":"Complete Example"},"655":{"body":"","breadcrumbs":"Basic Usage » Working with Document Data","id":"655","title":"Working with Document Data"},"656":{"body":"import json # Create and sign a document\ndoc_data = {\"title\": \"My Document\", \"content\": \"Hello, World!\"}\nsigned_doc = agent.create_document(json.dumps(doc_data)) # Parse the signed document to access JACS fields\nparsed = json.loads(signed_doc)\nprint('Document ID:', parsed.get('jacsId'))\nprint('Document Version:', parsed.get('jacsVersion'))\nprint('Signature:', parsed.get('jacsSignature'))","breadcrumbs":"Basic Usage » Parse Signed Documents","id":"656","title":"Parse Signed Documents"},"657":{"body":"# Document keys combine ID and version\ndoc_id = parsed['jacsId']\ndoc_version = parsed['jacsVersion']\ndocument_key = f\"{doc_id}:{doc_version}\" # Use the key for updates\nupdated_doc = agent.update_document(document_key, json.dumps({ **parsed, \"content\": \"Updated content\"\n}))","breadcrumbs":"Basic Usage » Document Key Format","id":"657","title":"Document Key Format"},"658":{"body":"","breadcrumbs":"Basic Usage » Configuration Management","id":"658","title":"Configuration Management"},"659":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Load from File","id":"659","title":"Load from File"},"66":{"body":"JSON : Universal compatibility across all systems Schema Validation : Ensures consistent structure Self-Contained : All necessary information in the document Human Readable : Can be inspected and debugged easily","breadcrumbs":"Core Concepts » Format Compatibility","id":"66","title":"Format Compatibility"},"660":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Basic Usage » Environment Variables","id":"660","title":"Environment Variables"},"661":{"body":"import jacs\nimport json\nimport os # Create config programmatically\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) # Write to file\nwith open('jacs.config.json', 'w') as f: f.write(config_json) # Then load it\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Programmatic Configuration","id":"661","title":"Programmatic Configuration"},"662":{"body":"MCP Integration - Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"662","title":"Next Steps"},"663":{"body":"JACS provides seamless integration with the Model Context Protocol (MCP), enabling cryptographically signed and verified communication between AI agents and MCP servers. This integration ensures that all tool calls, resource requests, and prompt interactions are authenticated and tamper-proof.","breadcrumbs":"MCP Integration » MCP Integration","id":"663","title":"MCP Integration"},"664":{"body":"JACS MCP integration provides: Cryptographic Authentication : All MCP messages are signed and verified FastMCP Support : Native integration with FastMCP servers HTTP & SSE Transports : Support for Server-Sent Events transport Transparent Security : Existing MCP code works with minimal changes","breadcrumbs":"MCP Integration » Overview","id":"664","title":"Overview"},"665":{"body":"","breadcrumbs":"MCP Integration » Quick Start","id":"665","title":"Quick Start"},"666":{"body":"import jacs\nimport os\nfrom pathlib import Path\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Setup JACS configuration\ncurrent_dir = Path(__file__).parent.absolute()\njacs_config_path = current_dir / \"jacs.config.json\" # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(str(jacs_config_path)) # Create FastMCP server with JACS authentication\nmcp = JACSMCPServer(FastMCP(\"Authenticated Echo Server\")) @mcp.tool()\ndef echo_tool(text: str) -> str: \"\"\"Echo the input text with server prefix\"\"\" return f\"SERVER SAYS: {text}\" @mcp.resource(\"echo://static\")\ndef echo_resource() -> str: return \"Echo!\" @mcp.prompt(\"echo\")\ndef echo_prompt(text: str) -> str: return f\"Echo prompt: {text}\" # Get the ASGI app with JACS middleware\nsse_app_with_middleware = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS-enabled MCP server...\") uvicorn.run(sse_app_with_middleware, host=\"localhost\", port=8000)","breadcrumbs":"MCP Integration » Basic MCP Server with JACS","id":"666","title":"Basic MCP Server with JACS"},"667":{"body":"import asyncio\nimport os\nfrom pathlib import Path\nimport jacs\nfrom jacs.mcp import JACSMCPClient # Setup JACS configuration\ncurrent_dir = Path(__file__).parent.absolute()\njacs_config_path = current_dir / \"jacs.client.config.json\" # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(str(jacs_config_path)) async def main(): server_url = \"http://localhost:8000/sse\" try: client = JACSMCPClient(server_url) async with client: # Call authenticated tool result = await client.call_tool(\"echo_tool\", { \"text\": \"Hello from authenticated client!\" }) print(f\"Tool result: {result}\") # Read authenticated resource resource = await client.read_resource(\"echo://static\") print(f\"Resource: {resource}\") except Exception as e: print(f\"Error: {e}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"MCP Integration » Basic MCP Client with JACS","id":"667","title":"Basic MCP Client with JACS"},"668":{"body":"","breadcrumbs":"MCP Integration » How It Works","id":"668","title":"How It Works"},"669":{"body":"The JACSMCPServer wrapper adds JACS middleware to a FastMCP server: Incoming Requests : Intercepts JSON-RPC requests and verifies them using jacs.verify_request() Outgoing Responses : Signs JSON-RPC responses using jacs.sign_response() from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP # Create FastMCP server\nbase_server = FastMCP(\"My Server\") # Wrap with JACS authentication\nauthenticated_server = JACSMCPServer(base_server) # All decorators work normally\n@authenticated_server.tool()\ndef my_tool(data: str) -> str: return f\"Processed: {data}\" # Get ASGI app with JACS middleware\napp = authenticated_server.sse_app()","breadcrumbs":"MCP Integration » JACSMCPServer","id":"669","title":"JACSMCPServer"},"67":{"body":"Now that you understand the core concepts: Quick Start - Try JACS hands-on Choose Implementation : Rust CLI for command-line usage Node.js for web applications Python for AI/ML workflows Examples - See real-world usage patterns","breadcrumbs":"Core Concepts » Next Steps","id":"67","title":"Next Steps"},"670":{"body":"The JACSMCPClient wrapper adds interceptors to a FastMCP client: Outgoing Messages : Signs messages using jacs.sign_request() Incoming Messages : Verifies messages using jacs.verify_response() from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: result = await client.call_tool(\"my_tool\", {\"data\": \"test\"})","breadcrumbs":"MCP Integration » JACSMCPClient","id":"670","title":"JACSMCPClient"},"671":{"body":"","breadcrumbs":"MCP Integration » Configuration","id":"671","title":"Configuration"},"672":{"body":"Create a jacs.config.json file for your server and client: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"MCP Integration » JACS Configuration File","id":"672","title":"JACS Configuration File"},"673":{"body":"Before using MCP integration, initialize your JACS agent: import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Agent is now ready for MCP operations","breadcrumbs":"MCP Integration » Initializing the Agent","id":"673","title":"Initializing the Agent"},"674":{"body":"","breadcrumbs":"MCP Integration » Integration Patterns","id":"674","title":"Integration Patterns"},"675":{"body":"from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport jacs # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Create and wrap server\nserver = FastMCP(\"My Server\")\nauthenticated_server = JACSMCPServer(server) @authenticated_server.tool()\ndef secure_tool(input_data: str) -> str: \"\"\"A tool that processes signed input\"\"\" return f\"Securely processed: {input_data}\" # Run server\nif __name__ == \"__main__\": import uvicorn app = authenticated_server.sse_app() uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"MCP Integration » FastMCP with JACS Middleware","id":"675","title":"FastMCP with JACS Middleware"},"676":{"body":"For custom integrations, you can use the module-level functions directly: import jacs # Initialize agent first\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Sign a request\nsigned_request = jacs.sign_request({ \"method\": \"tools/call\", \"params\": {\"name\": \"my_tool\", \"arguments\": {\"data\": \"test\"}}\n}) # Verify a response\nverified_response = jacs.verify_response(signed_response_string)\npayload = verified_response.get(\"payload\")","breadcrumbs":"MCP Integration » Manual Request/Response Signing","id":"676","title":"Manual Request/Response Signing"},"677":{"body":"","breadcrumbs":"MCP Integration » Error Handling","id":"677","title":"Error Handling"},"678":{"body":"import jacs\nfrom jacs.mcp import JACSMCPClient async def robust_mcp_client(): try: agent = jacs.JacsAgent() agent.load(\"./jacs.config.json\") client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: result = await client.call_tool(\"my_tool\", {\"data\": \"test\"}) return result except FileNotFoundError as e: print(f\"Configuration file not found: {e}\") except ConnectionError as e: print(f\"MCP connection failed: {e}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"MCP Integration » Common Errors","id":"678","title":"Common Errors"},"679":{"body":"Enable logging to debug authentication issues: import logging # Enable detailed logging\nlogging.basicConfig(level=logging.DEBUG) # Your MCP code here...","breadcrumbs":"MCP Integration » Debugging","id":"679","title":"Debugging"},"68":{"body":"This guide will get you up and running with JACS in under 10 minutes. We'll create an agent, generate a task, and demonstrate the core workflow across all three implementations.","breadcrumbs":"Quick Start » Quick Start Guide","id":"68","title":"Quick Start Guide"},"680":{"body":"","breadcrumbs":"MCP Integration » Production Deployment","id":"680","title":"Production Deployment"},"681":{"body":"Key Management : Store private keys securely Environment Variables : Use environment variables for sensitive paths Network Security : Use TLS for network transport Key Rotation : Implement key rotation policies import os\nimport jacs # Production initialization\nconfig_path = os.getenv(\"JACS_CONFIG_PATH\", \"/etc/jacs/config.json\") agent = jacs.JacsAgent()\nagent.load(config_path)","breadcrumbs":"MCP Integration » Security Best Practices","id":"681","title":"Security Best Practices"},"682":{"body":"FROM python:3.11-slim WORKDIR /app # Install dependencies\nCOPY requirements.txt .\nRUN pip install -r requirements.txt # Copy application\nCOPY . . # Create secure key directory\nRUN mkdir -p /secure/keys && chmod 700 /secure/keys # Set environment variables\nENV JACS_CONFIG_PATH=/app/jacs.config.json # Run MCP server\nCMD [\"python\", \"mcp_server.py\"]","breadcrumbs":"MCP Integration » Docker Deployment","id":"682","title":"Docker Deployment"},"683":{"body":"","breadcrumbs":"MCP Integration » Testing","id":"683","title":"Testing"},"684":{"body":"import pytest\nimport jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nfrom fastmcp.client import Client\nfrom fastmcp.client.transports import FastMCPTransport @pytest.fixture\ndef jacs_agent(): agent = jacs.JacsAgent() agent.load(\"./test.config.json\") return agent @pytest.fixture\ndef jacs_mcp_server(jacs_agent): server = FastMCP(\"Test Server\") return JACSMCPServer(server) async def test_authenticated_tool(jacs_mcp_server): @jacs_mcp_server.tool() def echo(text: str) -> str: return f\"Echo: {text}\" # Test the tool directly result = echo(\"test\") assert \"test\" in result","breadcrumbs":"MCP Integration » Unit Testing MCP Tools","id":"684","title":"Unit Testing MCP Tools"},"685":{"body":"","breadcrumbs":"MCP Integration » API Reference","id":"685","title":"API Reference"},"686":{"body":"Wraps a FastMCP server with JACS authentication middleware. Parameters: mcp_server: A FastMCP server instance Returns: The wrapped server with JACS middleware Example: from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP server = FastMCP(\"My Server\")\nauthenticated = JACSMCPServer(server)\napp = authenticated.sse_app()","breadcrumbs":"MCP Integration » JACSMCPServer(mcp_server)","id":"686","title":"JACSMCPServer(mcp_server)"},"687":{"body":"Creates a FastMCP client with JACS authentication interceptors. Parameters: url: The MCP server SSE endpoint URL **kwargs: Additional arguments passed to the FastMCP Client Returns: A FastMCP Client with JACS interceptors Example: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\")\nasync with client: result = await client.call_tool(\"my_tool\", {\"arg\": \"value\"})","breadcrumbs":"MCP Integration » JACSMCPClient(url, **kwargs)","id":"687","title":"JACSMCPClient(url, **kwargs)"},"688":{"body":"These functions are used internally by the MCP integration: jacs.sign_request(data) - Sign a request payload jacs.verify_request(data) - Verify an incoming request jacs.sign_response(data) - Sign a response payload jacs.verify_response(data) - Verify an incoming response","breadcrumbs":"MCP Integration » Module Functions","id":"688","title":"Module Functions"},"689":{"body":"FastMCP Integration - Advanced FastMCP patterns API Reference - Complete API documentation Examples - More complex examples","breadcrumbs":"MCP Integration » Next Steps","id":"689","title":"Next Steps"},"69":{"body":"Select the implementation that best fits your needs: 🦀 Rust CLI","breadcrumbs":"Quick Start » Choose Your Implementation","id":"69","title":"Choose Your Implementation"},"690":{"body":"Complete API documentation for the jacs Python package.","breadcrumbs":"API Reference » API Reference","id":"690","title":"API Reference"},"691":{"body":"pip install jacs","breadcrumbs":"API Reference » Installation","id":"691","title":"Installation"},"692":{"body":"import jacs\nfrom jacs import JacsAgent","breadcrumbs":"API Reference » Core Module","id":"692","title":"Core Module"},"693":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"693","title":"JacsAgent Class"},"694":{"body":"JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"API Reference » Constructor","id":"694","title":"Constructor"},"695":{"body":"Load and initialize the agent from a configuration file. Parameters: config_path (str): Path to the JACS configuration file Returns: str - The loaded agent's JSON Example: agent = jacs.JacsAgent()\nagent_json = agent.load('./jacs.config.json')\nprint('Agent loaded:', json.loads(agent_json)['jacsId'])","breadcrumbs":"API Reference » agent.load(config_path)","id":"695","title":"agent.load(config_path)"},"696":{"body":"Create and sign a new JACS document. Parameters: document_string (str): JSON string of the document content custom_schema (str, optional): Path to a custom JSON Schema for validation output_filename (str, optional): Filename to save the document no_save (bool, optional): If True, don't save to storage (default: False) attachments (str, optional): Path to file attachments embed (bool, optional): If True, embed attachments in the document Returns: str - The signed document as a JSON string Example: # Basic document creation\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Hello, World!'\n})) # With custom schema\nvalidated_doc = agent.create_document( json.dumps({'title': 'Validated', 'amount': 100}), custom_schema='./schemas/invoice.schema.json'\n) # Without saving\ntemp_doc = agent.create_document( json.dumps({'data': 'temporary'}), no_save=True\n) # With attachments\ndoc_with_file = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n)","breadcrumbs":"API Reference » agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)","id":"696","title":"agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)"},"697":{"body":"Verify a document's signature and hash integrity. Parameters: document_string (str): The signed document JSON string Returns: bool - True if the document is valid Example: is_valid = agent.verify_document(signed_document_json)\nif is_valid: print('Document signature verified')\nelse: print('Document verification failed')","breadcrumbs":"API Reference » agent.verify_document(document_string)","id":"697","title":"agent.verify_document(document_string)"},"698":{"body":"Verify a document's signature with an optional custom signature field. Parameters: document_string (str): The signed document JSON string signature_field (str, optional): Name of the signature field (default: 'jacsSignature') Returns: bool - True if the signature is valid Example: # Verify default signature field\nis_valid = agent.verify_signature(doc_json) # Verify custom signature field\nis_valid_custom = agent.verify_signature(doc_json, 'customSignature')","breadcrumbs":"API Reference » agent.verify_signature(document_string, signature_field=None)","id":"698","title":"agent.verify_signature(document_string, signature_field=None)"},"699":{"body":"Update an existing document, creating a new version. Parameters: document_key (str): The document key in format \"id:version\" new_document_string (str): The modified document as JSON string attachments (list, optional): List of attachment file paths embed (bool, optional): If True, embed attachments Returns: str - The updated document as a JSON string Example: # Parse existing document to get key\ndoc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" # Update the document\nupdated_doc = agent.update_document( document_key, json.dumps({ **doc, 'title': 'Updated Title', 'content': 'Modified content' })\n)","breadcrumbs":"API Reference » agent.update_document(document_key, new_document_string, attachments=None, embed=False)","id":"699","title":"agent.update_document(document_key, new_document_string, attachments=None, embed=False)"},"7":{"body":"Choose your implementation and get started in minutes:","breadcrumbs":"Introduction » Quick Start","id":"7","title":"Quick Start"},"70":{"body":"# Install from crates.io (--features cli is required for the binary)\ncargo install jacs --features cli\n# Upgrade to latest: cargo install jacs --features cli --force # Or build from source\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacs\ncargo install --path . --features cli","breadcrumbs":"Quick Start » Install Rust CLI","id":"70","title":"Install Rust CLI"},"700":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: document_string (str): The document JSON string agent_ids (list): List of agent IDs required to sign question (str, optional): The agreement question context (str, optional): Additional context for the agreement agreement_field_name (str, optional): Field name for the agreement (default: 'jacsAgreement') Returns: str - The document with agreement as a JSON string Example: doc_with_agreement = agent.create_agreement( signed_document_json, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], question='Do you agree to these terms?', context='Q1 2024 Service Agreement', agreement_field_name='jacsAgreement'\n)","breadcrumbs":"API Reference » agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)","id":"700","title":"agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)"},"701":{"body":"Sign an agreement as the current agent. Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - The document with this agent's signature added Example: signed_agreement = agent.sign_agreement( doc_with_agreement_json, 'jacsAgreement'\n)","breadcrumbs":"API Reference » agent.sign_agreement(document_string, agreement_field_name=None)","id":"701","title":"agent.sign_agreement(document_string, agreement_field_name=None)"},"702":{"body":"Check the status of an agreement (which agents have signed). Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - JSON string with agreement status Example: status_json = agent.check_agreement(signed_agreement_json)\nstatus = json.loads(status_json) print('Required signers:', status['required'])\nprint('Signatures received:', status['signed'])\nprint('Complete:', status['complete'])","breadcrumbs":"API Reference » agent.check_agreement(document_string, agreement_field_name=None)","id":"702","title":"agent.check_agreement(document_string, agreement_field_name=None)"},"703":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (str): The data to sign Returns: str - Base64-encoded signature Example: signature = agent.sign_string('Important message')\nprint('Signature:', signature)","breadcrumbs":"API Reference » agent.sign_string(data)","id":"703","title":"agent.sign_string(data)"},"704":{"body":"Verify a signature on arbitrary string data. Parameters: data (str): The original data signature_base64 (str): The base64-encoded signature public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm (e.g., 'ring-Ed25519') Returns: bool - True if the signature is valid Example: is_valid = agent.verify_string( 'Important message', signature_base64, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.verify_string(data, signature_base64, public_key, public_key_enc_type)","id":"704","title":"agent.verify_string(data, signature_base64, public_key, public_key_enc_type)"},"705":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload (will be JSON serialized) Returns: str - JACS-signed request as a JSON string Example: signed_request = agent.sign_request({ 'method': 'GET', 'path': '/api/data', 'timestamp': datetime.now().isoformat(), 'body': {'query': 'value'}\n})","breadcrumbs":"API Reference » agent.sign_request(params)","id":"705","title":"agent.sign_request(params)"},"706":{"body":"Verify a JACS-signed response and extract the payload. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary containing the verified payload Example: result = agent.verify_response(jacs_response_string)\npayload = result.get('payload')\nprint('Verified payload:', payload)","breadcrumbs":"API Reference » agent.verify_response(document_string)","id":"706","title":"agent.verify_response(document_string)"},"707":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary with payload and agent ID Example: result = agent.verify_response_with_agent_id(jacs_response_string)\nprint('Payload:', result['payload'])\nprint('Signed by agent:', result['agentId'])","breadcrumbs":"API Reference » agent.verify_response_with_agent_id(document_string)","id":"707","title":"agent.verify_response_with_agent_id(document_string)"},"708":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agent_file (str, optional): Path to an agent file to verify Returns: bool - True if the agent is valid Example: # Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_other_valid = agent.verify_agent('./other-agent.json')","breadcrumbs":"API Reference » agent.verify_agent(agent_file=None)","id":"708","title":"agent.verify_agent(agent_file=None)"},"709":{"body":"Update the agent document with new data. Parameters: new_agent_string (str): The modified agent document as JSON string Returns: str - The updated agent document Example: current_agent = json.loads(agent.load('./jacs.config.json'))\nupdated_agent = agent.update_agent(json.dumps({ **current_agent, 'description': 'Updated description'\n}))","breadcrumbs":"API Reference » agent.update_agent(new_agent_string)","id":"709","title":"agent.update_agent(new_agent_string)"},"71":{"body":"# Create configuration and agent in one step\njacs init # This creates:\n# - ~/.jacs/config.json\n# - Agent keys and documents\n# - Basic directory structure","breadcrumbs":"Quick Start » Initialize JACS","id":"71","title":"Initialize JACS"},"710":{"body":"Sign another agent's document with a registration signature. Parameters: agent_string (str): The agent document to sign public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm Returns: str - The signed agent document Example: signed_agent = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.sign_agent(agent_string, public_key, public_key_enc_type)","id":"710","title":"agent.sign_agent(agent_string, public_key, public_key_enc_type)"},"711":{"body":"These functions operate on a global agent singleton and are maintained for backwards compatibility. New code should use the JacsAgent class instead.","breadcrumbs":"API Reference » Module-Level Functions","id":"711","title":"Module-Level Functions"},"712":{"body":"Load the global agent from a configuration file. import jacs\njacs.load('./jacs.config.json')","breadcrumbs":"API Reference » jacs.load(config_path)","id":"712","title":"jacs.load(config_path)"},"713":{"body":"Sign a request using the global agent. signed = jacs.sign_request({'method': 'tools/call', 'params': {...}})","breadcrumbs":"API Reference » jacs.sign_request(data)","id":"713","title":"jacs.sign_request(data)"},"714":{"body":"Verify an incoming request using the global agent. payload = jacs.verify_request(incoming_request_string)","breadcrumbs":"API Reference » jacs.verify_request(data)","id":"714","title":"jacs.verify_request(data)"},"715":{"body":"Sign a response using the global agent. signed = jacs.sign_response({'result': 'success'})","breadcrumbs":"API Reference » jacs.sign_response(data)","id":"715","title":"jacs.sign_response(data)"},"716":{"body":"Verify an incoming response using the global agent. result = jacs.verify_response(response_string)\npayload = result.get('payload')","breadcrumbs":"API Reference » jacs.verify_response(data)","id":"716","title":"jacs.verify_response(data)"},"717":{"body":"from jacs.mcp import JACSMCPServer, JACSMCPClient","breadcrumbs":"API Reference » MCP Module","id":"717","title":"MCP Module"},"718":{"body":"Wraps a FastMCP server with JACS authentication middleware. Parameters: mcp_server: A FastMCP server instance Returns: The wrapped server with JACS middleware Example: from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP server = FastMCP(\"My Server\")\nauthenticated = JACSMCPServer(server)\napp = authenticated.sse_app()","breadcrumbs":"API Reference » JACSMCPServer(mcp_server)","id":"718","title":"JACSMCPServer(mcp_server)"},"719":{"body":"Creates a FastMCP client with JACS authentication interceptors. Parameters: url: The MCP server SSE endpoint URL **kwargs: Additional arguments passed to the FastMCP Client Returns: A FastMCP Client with JACS interceptors Example: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\")\nasync with client: result = await client.call_tool(\"my_tool\", {\"arg\": \"value\"})","breadcrumbs":"API Reference » JACSMCPClient(url, **kwargs)","id":"719","title":"JACSMCPClient(url, **kwargs)"},"72":{"body":"# Create an agent (if not done via jacs init)\n# Agent type is defined in the input JSON file or default template\njacs agent create --create-keys true # Or provide a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Verify your agent was created correctly\njacs agent verify","breadcrumbs":"Quick Start » Create Your First Agent","id":"72","title":"Create Your First Agent"},"720":{"body":"","breadcrumbs":"API Reference » Configuration","id":"720","title":"Configuration"},"721":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"API Reference » Configuration File Format","id":"721","title":"Configuration File Format"},"722":{"body":"Field Type Description jacs_agent_id_and_version string Agent ID and version in format \"id:version\" jacs_agent_key_algorithm string Signing algorithm: \"ring-Ed25519\", \"RSA-PSS\", \"pq-dilithium\", \"pq2025\" jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_data_directory string Directory for data storage jacs_key_directory string Directory for key storage jacs_default_storage string Storage backend: \"fs\", \"s3\", \"memory\"","breadcrumbs":"API Reference » Configuration Options","id":"722","title":"Configuration Options"},"723":{"body":"All methods may raise exceptions. Use try/except for error handling: try: agent = jacs.JacsAgent() agent.load('./jacs.config.json') doc = agent.create_document(json.dumps({'data': 'test'}))\nexcept FileNotFoundError as e: print(f'Configuration file not found: {e}')\nexcept ValueError as e: print(f'Invalid configuration: {e}')\nexcept Exception as e: print(f'JACS error: {e}')","breadcrumbs":"API Reference » Error Handling","id":"723","title":"Error Handling"},"724":{"body":"Exception Description FileNotFoundError Configuration file or key file not found ValueError Invalid configuration or document format RuntimeError Agent not loaded or cryptographic operation failed","breadcrumbs":"API Reference » Common Exceptions","id":"724","title":"Common Exceptions"},"725":{"body":"The package supports type hints for better IDE integration: from jacs import JacsAgent\nimport json def process_document(agent: JacsAgent, data: dict) -> str: \"\"\"Create and return a signed document.\"\"\" doc_string = json.dumps(data) return agent.create_document(doc_string) def verify_and_extract(agent: JacsAgent, doc: str) -> dict: \"\"\"Verify document and extract content.\"\"\" if agent.verify_document(doc): return json.loads(doc) raise ValueError(\"Document verification failed\")","breadcrumbs":"API Reference » Type Hints","id":"725","title":"Type Hints"},"726":{"body":"JacsAgent instances use internal locking and are thread-safe. You can safely use the same agent instance across multiple threads: import threading\nfrom jacs import JacsAgent agent = JacsAgent()\nagent.load('./jacs.config.json') def worker(data): # Safe to call from multiple threads doc = agent.create_document(json.dumps(data)) return doc threads = [ threading.Thread(target=worker, args=({'id': i},)) for i in range(10)\n]\nfor t in threads: t.start()\nfor t in threads: t.join()","breadcrumbs":"API Reference » Thread Safety","id":"726","title":"Thread Safety"},"727":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol Examples - More complex examples","breadcrumbs":"API Reference » See Also","id":"727","title":"See Also"},"728":{"body":"JACS uses JSON Schema (Draft-07) to define the structure and validation rules for all documents in the system. These schemas ensure consistency, enable validation, and provide a contract for interoperability between agents.","breadcrumbs":"JSON Schemas » JSON Schemas","id":"728","title":"JSON Schemas"},"729":{"body":"JACS schemas follow a hierarchical composition pattern: ┌─────────────────────────────────────────────────────────┐\n│ Document Schemas │\n│ (agent.schema.json, task.schema.json, message.schema.json) │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Header Schema │\n│ (header.schema.json) │\n│ Base fields: jacsId, jacsVersion, jacsSignature, etc. │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Component Schemas │\n│ signature.schema.json, agreement.schema.json, │\n│ files.schema.json, embedding.schema.json, etc. │\n└─────────────────────────────────────────────────────────┘","breadcrumbs":"JSON Schemas » Schema Architecture","id":"729","title":"Schema Architecture"},"73":{"body":"# Create a task document with name and description\njacs task create \\ -n \"Write Product Description\" \\ -d \"Create compelling copy for new product launch\" # The task is automatically signed by your agent 🟢 Node.js","breadcrumbs":"Quick Start » Create and Sign a Task","id":"73","title":"Create and Sign a Task"},"730":{"body":"","breadcrumbs":"JSON Schemas » Schema Categories","id":"730","title":"Schema Categories"},"731":{"body":"Schema Purpose jacs.config.schema.json Agent configuration file format","breadcrumbs":"JSON Schemas » Configuration Schema","id":"731","title":"Configuration Schema"},"732":{"body":"Schema Purpose header/v1/header.schema.json Base fields for all JACS documents agent/v1/agent.schema.json Agent identity and capabilities task/v1/task.schema.json Task workflow and state management message/v1/message.schema.json Inter-agent messages node/v1/node.schema.json Graph node representation program/v1/program.schema.json Executable program definitions eval/v1/eval.schema.json Evaluation and assessment records agentstate/v1/agentstate.schema.json Signed agent state files (memory, skills, plans, configs, hooks, other) commitment/v1/commitment.schema.json Shared, signed agreements between agents todo/v1/todo.schema.json Private, signed todo lists with inline items","breadcrumbs":"JSON Schemas » Document Schemas","id":"732","title":"Document Schemas"},"733":{"body":"Schema Purpose signature/v1/signature.schema.json Cryptographic signatures agreement/v1/agreement.schema.json Multi-party agreements files/v1/files.schema.json File attachments embedding/v1/embedding.schema.json Vector embeddings contact/v1/contact.schema.json Contact information service/v1/service.schema.json Service definitions tool/v1/tool.schema.json Tool capabilities action/v1/action.schema.json Action definitions unit/v1/unit.schema.json Unit of measurement todoitem/v1/todoitem.schema.json Inline todo item (goal or task)","breadcrumbs":"JSON Schemas » Component Schemas","id":"733","title":"Component Schemas"},"734":{"body":"Schemas are available at: HTTPS URLs : https://hai.ai/schemas/... Local files : jacs/schemas/... Example schema URLs: https://hai.ai/schemas/jacs.config.schema.json\nhttps://hai.ai/schemas/header/v1/header.schema.json\nhttps://hai.ai/schemas/agent/v1/agent.schema.json\nhttps://hai.ai/schemas/components/signature/v1/signature.schema.json","breadcrumbs":"JSON Schemas » Schema Locations","id":"734","title":"Schema Locations"},"735":{"body":"","breadcrumbs":"JSON Schemas » Using Schemas","id":"735","title":"Using Schemas"},"736":{"body":"Every JACS document must include a $schema field: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsType\": \"agent\", ...\n}","breadcrumbs":"JSON Schemas » In Documents","id":"736","title":"In Documents"},"737":{"body":"Reference the config schema for IDE support: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", ...\n}","breadcrumbs":"JSON Schemas » In Configuration Files","id":"737","title":"In Configuration Files"},"738":{"body":"Validate documents against custom schemas: import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create document with custom schema\ndoc = agent.create_document( json.dumps({'invoice_id': 'INV-001', 'amount': 100.00}), custom_schema='./schemas/invoice.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create document with custom schema\nconst doc = agent.createDocument( JSON.stringify({ invoice_id: 'INV-001', amount: 100.00 }), './schemas/invoice.schema.json'\n);","breadcrumbs":"JSON Schemas » Custom Schema Validation","id":"738","title":"Custom Schema Validation"},"739":{"body":"JACS schemas include a custom hai property that categorizes fields: Value Description meta Metadata fields (IDs, dates, versions) base Core cryptographic fields (hashes, signatures) agent Agent-controlled content fields This categorization helps determine which fields should be included in hash calculations and signature operations.","breadcrumbs":"JSON Schemas » HAI Extensions","id":"739","title":"HAI Extensions"},"74":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Quick Start » Install Node.js Package","id":"74","title":"Install Node.js Package"},"740":{"body":"Schemas are versioned using directory paths: schemas/\n├── header/\n│ └── v1/\n│ └── header.schema.json\n├── agent/\n│ └── v1/\n│ └── agent.schema.json\n└── components/ └── signature/ └── v1/ └── signature.schema.json Configuration options allow specifying schema versions: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"JSON Schemas » Versioning","id":"740","title":"Versioning"},"741":{"body":"Document schemas use JSON Schema's allOf to compose the header with type-specific fields: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"jacsAgentType\": { ... }, \"jacsServices\": { ... } } } ]\n} This ensures all documents share common header fields while allowing type-specific extensions.","breadcrumbs":"JSON Schemas » Schema Composition","id":"741","title":"Schema Composition"},"742":{"body":"Create custom schemas that extend JACS schemas: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0, \"description\": \"Invoice amount\" }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"], \"default\": \"USD\" }, \"lineItems\": { \"type\": \"array\", \"items\": { \"type\": \"object\", \"properties\": { \"description\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"unitPrice\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"description\", \"quantity\", \"unitPrice\"] } } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"JSON Schemas » Creating Custom Schemas","id":"742","title":"Creating Custom Schemas"},"743":{"body":"","breadcrumbs":"JSON Schemas » Validation Rules","id":"743","title":"Validation Rules"},"744":{"body":"All JACS documents require these header fields: jacsId - Unique document identifier (UUID v4) jacsType - Document type identifier jacsVersion - Version identifier (UUID v4) jacsVersionDate - Version timestamp (ISO 8601) jacsOriginalVersion - First version identifier jacsOriginalDate - Creation timestamp jacsLevel - Document level (raw, config, artifact, derived) $schema - Schema reference URL","breadcrumbs":"JSON Schemas » Required Fields","id":"744","title":"Required Fields"},"745":{"body":"Fields use JSON Schema format keywords: uuid - UUID v4 format date-time - ISO 8601 date-time format uri - Valid URI format","breadcrumbs":"JSON Schemas » Format Validation","id":"745","title":"Format Validation"},"746":{"body":"Many fields have enumerated valid values: { \"jacsLevel\": { \"enum\": [\"raw\", \"config\", \"artifact\", \"derived\"] }, \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }, \"jacs_agent_key_algorithm\": { \"enum\": [\"RSA-PSS\", \"ring-Ed25519\", \"pq-dilithium\", \"pq2025\"] }\n}","breadcrumbs":"JSON Schemas » Enum Constraints","id":"746","title":"Enum Constraints"},"747":{"body":"For detailed documentation on specific schemas: Agent Schema - Agent identity and capabilities Document Schema - Document header and structure Task Schema - Task workflow management Agent State Schema - Signed agent state documents Commitment Schema - Shared agreements between agents Todo List Schema - Private task tracking with inline items Conversation Schema - Message threading and ordering Configuration - Configuration file format","breadcrumbs":"JSON Schemas » Schema Reference","id":"747","title":"Schema Reference"},"748":{"body":"Custom Schemas - Creating custom document types Security Model - How schemas relate to security API Reference - Using schemas in code","breadcrumbs":"JSON Schemas » See Also","id":"748","title":"See Also"},"749":{"body":"The Agent Schema defines the structure for agent identity documents in JACS. Agents represent entities that can sign documents, participate in agreements, and provide services.","breadcrumbs":"Agent Schema » Agent Schema","id":"749","title":"Agent Schema"},"75":{"body":"import { JacsAgent, createConfig } from '@hai.ai/jacs';\nimport fs from 'fs'; // Create configuration\nconst config = { jacs_agent_id_and_version: null, jacs_data_directory: \"./jacs_data\", jacs_key_directory: \"./jacs_keys\", jacs_default_storage: \"fs\", jacs_agent_key_algorithm: \"ring-Ed25519\"\n}; // Save config\nfs.writeFileSync('./jacs.config.json', JSON.stringify(config, null, 2)); // Create agent instance and load configuration\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Quick Start » Basic Setup","id":"75","title":"Basic Setup"},"750":{"body":"https://hai.ai/schemas/agent/v1/agent.schema.json","breadcrumbs":"Agent Schema » Schema Location","id":"750","title":"Schema Location"},"751":{"body":"Agent documents describe: Identity : Unique identifiers and versioning Type : Human, organizational, hybrid, or AI classification Services : Capabilities the agent offers Contacts : How to reach human or hybrid agents Domain : Optional DNS-based verification","breadcrumbs":"Agent Schema » Overview","id":"751","title":"Overview"},"752":{"body":"The agent schema extends the Header Schema using JSON Schema composition: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"title\": \"Agent\", \"description\": \"General schema for human, hybrid, and AI agents\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Agent Schema » Schema Structure","id":"752","title":"Schema Structure"},"753":{"body":"The jacsAgentType field classifies the agent: Type Description human A biological entity (individual person) human-org A group of people (organization, company) hybrid Combination of human and AI components ai Fully artificial intelligence { \"jacsAgentType\": { \"type\": \"string\", \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }\n}","breadcrumbs":"Agent Schema » Agent Types","id":"753","title":"Agent Types"},"754":{"body":"Human and hybrid agents must provide contact information: { \"if\": { \"properties\": { \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\"] } } }, \"then\": { \"required\": [\"jacsContacts\"] }\n}","breadcrumbs":"Agent Schema » Contact Requirements","id":"754","title":"Contact Requirements"},"755":{"body":"","breadcrumbs":"Agent Schema » Agent Properties","id":"755","title":"Agent Properties"},"756":{"body":"All agents inherit these header fields: Field Type Required Description jacsId string (UUID) Yes Unique agent identifier jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version timestamp jacsType string Yes Set to \"agent\" jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Creation timestamp jacsLevel string Yes Document level jacsSignature object No Cryptographic signature jacsSha256 string No Content hash","breadcrumbs":"Agent Schema » Core Fields (from Header)","id":"756","title":"Core Fields (from Header)"},"757":{"body":"Field Type Required Description jacsAgentType string Yes Agent classification jacsAgentDomain string No Domain for DNS verification jacsServices array Yes Services the agent provides jacsContacts array Conditional Contact information (required for human/hybrid)","breadcrumbs":"Agent Schema » Agent-Specific Fields","id":"757","title":"Agent-Specific Fields"},"758":{"body":"Services describe capabilities the agent offers: { \"jacsServices\": [{ \"name\": \"Document Signing Service\", \"serviceDescription\": \"Sign and verify JACS documents\", \"successDescription\": \"Documents are signed with valid signatures\", \"failureDescription\": \"Invalid documents or signing errors\", \"costDescription\": \"Free for basic usage, paid tiers available\", \"idealCustomerDescription\": \"Developers building secure agent systems\", \"termsOfService\": \"https://example.com/tos\", \"privacyPolicy\": \"https://example.com/privacy\", \"isDev\": false, \"tools\": [...] }]\n}","breadcrumbs":"Agent Schema » Services","id":"758","title":"Services"},"759":{"body":"Field Type Required Description name string No Service name serviceDescription string Yes What the service does successDescription string Yes What success looks like failureDescription string Yes What failure looks like costDescription string No Pricing information idealCustomerDescription string No Target customer profile termsOfService string No Legal terms URL or text privacyPolicy string No Privacy policy URL or text copyright string No Usage rights for provided data eula string No End-user license agreement isDev boolean No Whether this is a dev/test service tools array No Tool definitions piiDesired array No Types of sensitive data needed","breadcrumbs":"Agent Schema » Service Schema Fields","id":"759","title":"Service Schema Fields"},"76":{"body":"// Create agent with services\nconst agentData = { name: \"Content Creator Bot\", description: \"AI agent specialized in content creation\", services: [ { type: \"content_generation\", name: \"Product Description Writer\", description: \"Creates compelling product descriptions\", success: \"Engaging copy that converts visitors\", failure: \"Generic or low-quality content\" } ]\n}; // Generate keys and create agent\nawait agent.generateKeys();\nconst agentDoc = await agent.createAgent(agentData);\nconsole.log('Agent created:', agentDoc.jacsId);","breadcrumbs":"Quick Start » Create Agent Document","id":"76","title":"Create Agent Document"},"760":{"body":"Services can declare what personally identifiable information they need: { \"piiDesired\": [\"email\", \"phone\", \"address\"]\n} Valid PII types: signature - Digital signatures cryptoaddress - Cryptocurrency addresses creditcard - Payment card numbers govid - Government identification social - Social security numbers email - Email addresses phone - Phone numbers address - Physical addresses zip - Postal codes PHI - Protected health information MHI - Mental health information identity - Identity documents political - Political affiliation bankaddress - Banking information income - Income data","breadcrumbs":"Agent Schema » PII Types","id":"760","title":"PII Types"},"761":{"body":"Contact information for human and hybrid agents: { \"jacsContacts\": [{ \"firstName\": \"Jane\", \"lastName\": \"Smith\", \"email\": \"jane@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true, \"mailAddress\": \"123 Main St\", \"mailState\": \"CA\", \"mailZip\": \"94102\", \"mailCountry\": \"USA\" }]\n}","breadcrumbs":"Agent Schema » Contacts","id":"761","title":"Contacts"},"762":{"body":"Field Type Description firstName string First name lastName string Last name addressName string Location name phone string Phone number email string (email) Email address mailName string Name at address mailAddress string Street address mailAddressTwo string Address line 2 mailState string State/province mailZip string Postal code mailCountry string Country isPrimary boolean Primary contact flag","breadcrumbs":"Agent Schema » Contact Schema Fields","id":"762","title":"Contact Schema Fields"},"763":{"body":"Agents can link to a domain for DNSSEC-validated verification: { \"jacsAgentDomain\": \"example.com\"\n} The domain should have a DNS TXT record at _v1.agent.jacs.example.com. containing the agent's public key fingerprint. See the DNS chapter for complete setup instructions.","breadcrumbs":"Agent Schema » DNS Verification","id":"763","title":"DNS Verification"},"764":{"body":"","breadcrumbs":"Agent Schema » Complete Example","id":"764","title":"Complete Example"},"765":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"ai\", \"jacsServices\": [{ \"name\": \"Code Review Service\", \"serviceDescription\": \"Automated code review and analysis\", \"successDescription\": \"Review completed with actionable feedback\", \"failureDescription\": \"Unable to process or analyze code\", \"isDev\": false }], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature...\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"jacsServices\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Agent Schema » AI Agent","id":"765","title":"AI Agent"},"766":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsVersionDate\": \"2024-01-15T11:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsOriginalDate\": \"2024-01-15T11:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human\", \"jacsAgentDomain\": \"smith.example.com\", \"jacsServices\": [{ \"name\": \"Consulting\", \"serviceDescription\": \"Technical consulting services\", \"successDescription\": \"Project goals achieved\", \"failureDescription\": \"Unable to meet requirements\", \"termsOfService\": \"https://smith.example.com/tos\" }], \"jacsContacts\": [{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@smith.example.com\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Human Agent","id":"766","title":"Human Agent"},"767":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"770e8400-e29b-41d4-a716-446655440002\", \"jacsVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsVersionDate\": \"2024-01-15T12:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsOriginalDate\": \"2024-01-15T12:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human-org\", \"jacsAgentDomain\": \"acme.com\", \"jacsServices\": [{ \"name\": \"Enterprise Software\", \"serviceDescription\": \"Enterprise software solutions\", \"successDescription\": \"Software deployed and operational\", \"failureDescription\": \"Deployment or integration failure\", \"privacyPolicy\": \"https://acme.com/privacy\", \"piiDesired\": [\"email\", \"phone\"] }], \"jacsContacts\": [{ \"addressName\": \"Acme Corporation\", \"email\": \"contact@acme.com\", \"phone\": \"+1-800-555-ACME\", \"mailAddress\": \"1 Corporate Plaza\", \"mailState\": \"NY\", \"mailZip\": \"10001\", \"mailCountry\": \"USA\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Organization Agent","id":"767","title":"Organization Agent"},"768":{"body":"","breadcrumbs":"Agent Schema » Creating Agents","id":"768","title":"Creating Agents"},"769":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # The agent is created during configuration setup\n# Agent document is available after loading\nagent_json = agent.load('./jacs.config.json')\nagent_doc = json.loads(agent_json) print(f\"Agent ID: {agent_doc['jacsId']}\")\nprint(f\"Agent Type: {agent_doc['jacsAgentType']}\")","breadcrumbs":"Agent Schema » Python","id":"769","title":"Python"},"77":{"body":"// Create task document\nconst task = { title: \"Write Product Description\", description: \"Create compelling copy for new product launch\", actions: [ { id: \"research\", name: \"Product Research\", description: \"Analyze product features and benefits\", success: \"Complete understanding of product value\", failure: \"Insufficient product knowledge\" }, { id: \"write\", name: \"Write Copy\", description: \"Create engaging product description\", success: \"200-word compelling description\", failure: \"Generic or unconvincing copy\" } ]\n}; // Sign and create task\nconst signedTask = await agent.createTask(task);\nconsole.log('Task created:', signedTask.jacsId); 🐍 Python","breadcrumbs":"Quick Start » Create a Task","id":"77","title":"Create a Task"},"770":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconst agentDoc = JSON.parse(agentJson); console.log(`Agent ID: ${agentDoc.jacsId}`);\nconsole.log(`Agent Type: ${agentDoc.jacsAgentType}`);","breadcrumbs":"Agent Schema » Node.js","id":"770","title":"Node.js"},"771":{"body":"# Create a new agent\njacs agent create # View agent details\njacs agent show","breadcrumbs":"Agent Schema » CLI","id":"771","title":"CLI"},"772":{"body":"# Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_valid = agent.verify_agent('./other-agent.json') // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Agent Schema » Verifying Agents","id":"772","title":"Verifying Agents"},"773":{"body":"Document Schema - Header fields documentation Task Schema - Task workflow schema DNS Verification - Setting up domain verification Creating an Agent - Agent creation guide","breadcrumbs":"Agent Schema » See Also","id":"773","title":"See Also"},"774":{"body":"The Document Schema (Header Schema) defines the base structure for all JACS documents. Every JACS document type (agents, tasks, messages, etc.) extends this schema.","breadcrumbs":"Document Schema » Document Schema","id":"774","title":"Document Schema"},"775":{"body":"https://hai.ai/schemas/header/v1/header.schema.json","breadcrumbs":"Document Schema » Schema Location","id":"775","title":"Schema Location"},"776":{"body":"The header schema provides: Unique Identification : Every document has a unique ID and version Version Tracking : Full history with previous version references Cryptographic Integrity : Signatures and hashes for verification File Attachments : Support for embedded or linked files Vector Embeddings : Pre-computed embeddings for semantic search Agreements : Multi-party signature support","breadcrumbs":"Document Schema » Overview","id":"776","title":"Overview"},"777":{"body":"","breadcrumbs":"Document Schema » Core Fields","id":"777","title":"Core Fields"},"778":{"body":"Field Type Required Description $schema string Yes Schema URL for validation jacsId string (UUID) Yes Unique document identifier jacsType string Yes Document type (agent, task, etc.) { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\"\n}","breadcrumbs":"Document Schema » Identification","id":"778","title":"Identification"},"779":{"body":"Field Type Required Description jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version creation timestamp jacsPreviousVersion string (UUID) No Previous version (if not first) jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Document creation timestamp jacsBranch string (UUID) No Branch identifier for JACS databases { \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"e36ac10b-58cc-4372-a567-0e02b2c3d478\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d476\", \"jacsOriginalDate\": \"2024-01-01T09:00:00Z\"\n}","breadcrumbs":"Document Schema » Versioning","id":"779","title":"Versioning"},"78":{"body":"pip install jacs","breadcrumbs":"Quick Start » Install Python Package","id":"78","title":"Install Python Package"},"780":{"body":"The jacsLevel field indicates the intended use: Level Description raw Raw data that should not change config Configuration meant to be updated artifact Generated content that may be updated derived Computed from other documents { \"jacsLevel\": \"artifact\"\n}","breadcrumbs":"Document Schema » Document Level","id":"780","title":"Document Level"},"781":{"body":"","breadcrumbs":"Document Schema » Cryptographic Fields","id":"781","title":"Cryptographic Fields"},"782":{"body":"The jacsSignature field contains the creator's cryptographic signature: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature-string\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsType\", \"content\"] }\n} Signature Schema Fields Field Type Required Description agentID string (UUID) Yes Signing agent's ID agentVersion string (UUID) Yes Signing agent's version date string (date-time) Yes Signing timestamp signature string Yes Base64-encoded signature publicKeyHash string Yes Hash of public key used signingAlgorithm string No Algorithm used (ring-Ed25519, RSA-PSS, pq-dilithium) fields array Yes Fields included in signature response string No Text response with signature responseType string No agree, disagree, or reject","breadcrumbs":"Document Schema » Signature","id":"782","title":"Signature"},"783":{"body":"The jacsRegistration field contains a signature from a registration authority: { \"jacsRegistration\": { \"agentID\": \"registrar-agent-id\", \"agentVersion\": \"registrar-version\", \"date\": \"2024-01-15T10:35:00Z\", \"signature\": \"registrar-signature\", \"publicKeyHash\": \"registrar-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsSignature\"] }\n}","breadcrumbs":"Document Schema » Registration","id":"783","title":"Registration"},"784":{"body":"The jacsSha256 field contains a SHA-256 hash of all document content (excluding this field): { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Document Schema » Hash","id":"784","title":"Hash"},"785":{"body":"Documents can include multi-party agreements using jacsAgreement: { \"jacsAgreement\": { \"agentIDs\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"question\": \"Do you agree to these terms?\", \"context\": \"Q1 2024 Service Agreement\", \"signatures\": [ { \"agentID\": \"agent-1-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T11:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-of-content-at-agreement-time\"\n}","breadcrumbs":"Document Schema » Agreements","id":"785","title":"Agreements"},"786":{"body":"Field Type Required Description agentIDs array Yes Required signers question string No What parties are agreeing to context string No Additional context signatures array No Collected signatures","breadcrumbs":"Document Schema » Agreement Schema Fields","id":"786","title":"Agreement Schema Fields"},"787":{"body":"Documents can include file attachments using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./documents/contract.pdf\", \"embed\": true, \"contents\": \"base64-encoded-file-contents\", \"sha256\": \"file-content-hash\" }, { \"mimetype\": \"image/png\", \"path\": \"./images/diagram.png\", \"embed\": false, \"sha256\": \"file-content-hash\" } ]\n}","breadcrumbs":"Document Schema » File Attachments","id":"787","title":"File Attachments"},"788":{"body":"Field Type Required Description mimetype string Yes MIME type of the file path string Yes File location (local path) embed boolean Yes Whether to embed contents contents string No Base64-encoded file contents sha256 string No Hash for content verification","breadcrumbs":"Document Schema » File Schema Fields","id":"788","title":"File Schema Fields"},"789":{"body":"Documents can include pre-computed embeddings for semantic search: { \"jacsEmbedding\": [ { \"llm\": \"text-embedding-ada-002\", \"vector\": [0.0023, -0.0089, 0.0156, ...] } ]\n}","breadcrumbs":"Document Schema » Vector Embeddings","id":"789","title":"Vector Embeddings"},"79":{"body":"import jacs\nimport json\nimport os # Create configuration\nconfig = { \"jacs_agent_id_and_version\": None, \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} # Ensure directories exist\nos.makedirs(\"./jacs_data\", exist_ok=True)\nos.makedirs(\"./jacs_keys\", exist_ok=True) # Save config\nwith open('jacs.config.json', 'w') as f: json.dump(config, f, indent=2) # Create agent instance and load configuration\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\")","breadcrumbs":"Quick Start » Basic Setup","id":"79","title":"Basic Setup"},"790":{"body":"Field Type Required Description llm string Yes Model used for embedding vector array Yes Vector of numbers","breadcrumbs":"Document Schema » Embedding Schema Fields","id":"790","title":"Embedding Schema Fields"},"791":{"body":"{ \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"title\": \"Sample Document\", \"content\": \"This is the document content.\", \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./attachment.pdf\", \"embed\": false, \"sha256\": \"abc123...\" } ], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"signature-base64...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"title\", \"content\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Document Schema » Complete Example","id":"791","title":"Complete Example"},"792":{"body":"Fields include a hai property indicating their category: Category Description Examples meta Metadata (IDs, dates) jacsId, jacsVersion, jacsVersionDate base Cryptographic data jacsSha256, signature agent Agent-controlled content Custom content fields This categorization determines which fields are included in hash and signature calculations.","breadcrumbs":"Document Schema » HAI Field Categories","id":"792","title":"HAI Field Categories"},"793":{"body":"","breadcrumbs":"Document Schema » Working with Documents","id":"793","title":"Working with Documents"},"794":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a basic document\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Document content here'\n})) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Document content here'\n}));","breadcrumbs":"Document Schema » Creating Documents","id":"794","title":"Creating Documents"},"795":{"body":"is_valid = agent.verify_document(doc_json) const isValid = agent.verifyDocument(docJson);","breadcrumbs":"Document Schema » Verifying Documents","id":"795","title":"Verifying Documents"},"796":{"body":"doc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" updated = agent.update_document( document_key, json.dumps({**doc, 'content': 'Updated content'})\n) const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; const updated = agent.updateDocument( documentKey, JSON.stringify({...doc, content: 'Updated content'})\n);","breadcrumbs":"Document Schema » Updating Documents","id":"796","title":"Updating Documents"},"797":{"body":"doc = agent.create_document( json.dumps({'title': 'Report'}), attachments='./report.pdf', embed=True\n) const doc = agent.createDocument( JSON.stringify({ title: 'Report' }), null, // custom_schema null, // output_filename false, // no_save './report.pdf', // attachments true // embed\n);","breadcrumbs":"Document Schema » Adding Attachments","id":"797","title":"Adding Attachments"},"798":{"body":"Documents maintain a version chain: Original (v1) ← Previous (v2) ← Current (v3) │ └── jacsOriginalVersion points here for all versions Each version: Has its own jacsVersion UUID References jacsPreviousVersion (except the first) All share the same jacsId and jacsOriginalVersion","breadcrumbs":"Document Schema » Version History","id":"798","title":"Version History"},"799":{"body":"Agent Schema - Agent document structure Task Schema - Task document structure Working with Documents - Document operations guide Agreements - Multi-party agreements","breadcrumbs":"Document Schema » See Also","id":"799","title":"See Also"},"8":{"body":"cargo install jacs --features cli\n# Upgrade to latest: cargo install jacs --features cli --force\njacs init # Create config, keys, and agent Or step by step: jacs config create\njacs agent create --create-keys true","breadcrumbs":"Introduction » Rust CLI","id":"8","title":"Rust CLI"},"80":{"body":"# Define agent capabilities\nagent_data = { \"name\": \"Content Creator Bot\", \"description\": \"AI agent specialized in content creation\", \"services\": [ { \"type\": \"content_generation\", \"name\": \"Product Description Writer\", \"description\": \"Creates compelling product descriptions\", \"success\": \"Engaging copy that converts visitors\", \"failure\": \"Generic or low-quality content\" } ]\n} # Generate keys and create agent\nagent.generate_keys()\nagent_doc = agent.create_agent(agent_data)\nprint(f'Agent created: {agent_doc[\"jacsId\"]}')","breadcrumbs":"Quick Start » Create Agent Document","id":"80","title":"Create Agent Document"},"800":{"body":"The Task Schema defines the structure for task documents in JACS. Tasks represent work items with defined states, assigned agents, and completion criteria.","breadcrumbs":"Task Schema » Task Schema","id":"800","title":"Task Schema"},"801":{"body":"https://hai.ai/schemas/task/v1/task.schema.json","breadcrumbs":"Task Schema » Schema Location","id":"801","title":"Schema Location"},"802":{"body":"Task documents manage: Workflow States : From creation through completion Agent Assignment : Customer and assigned agent tracking Actions : Desired outcomes and completion criteria Agreements : Start and end agreements between parties Relationships : Sub-tasks, copies, and merges","breadcrumbs":"Task Schema » Overview","id":"802","title":"Overview"},"803":{"body":"The task schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/task/v1/task-schema.json\", \"title\": \"Task\", \"description\": \"General schema for stateful resources.\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Task Schema » Schema Structure","id":"803","title":"Schema Structure"},"804":{"body":"Tasks progress through defined workflow states: State Description creating Task is being drafted rfp Request for proposal - seeking agents proposal Agent has submitted a proposal negotiation Terms being negotiated started Work has begun review Work submitted for review completed Task is finished { \"jacsTaskState\": \"started\"\n}","breadcrumbs":"Task Schema » Task States","id":"804","title":"Task States"},"805":{"body":"creating → rfp → proposal → negotiation → started → review → completed ↑_______________| (may cycle back for renegotiation)","breadcrumbs":"Task Schema » State Transitions","id":"805","title":"State Transitions"},"806":{"body":"","breadcrumbs":"Task Schema » Task Properties","id":"806","title":"Task Properties"},"807":{"body":"Tasks inherit all document header fields plus task-specific fields.","breadcrumbs":"Task Schema » Core Fields (from Header)","id":"807","title":"Core Fields (from Header)"},"808":{"body":"Field Type Required Description jacsTaskName string No Human-readable task name jacsTaskSuccess string No Description of success criteria jacsTaskState string Yes Current workflow state jacsTaskCustomer object Yes Customer agent signature jacsTaskAgent object No Assigned agent signature jacsTaskStartDate string (date-time) No When work started jacsTaskCompleteDate string (date-time) No When work completed jacsTaskActionsDesired array Yes Required actions jacsStartAgreement object No Agreement to begin work jacsEndAgreement object No Agreement that work is complete","breadcrumbs":"Task Schema » Task-Specific Fields","id":"808","title":"Task-Specific Fields"},"809":{"body":"Field Type Description jacsTaskSubTaskOf array Parent task IDs jacsTaskCopyOf array Source task IDs (branching) jacsTaskMergedTasks array Tasks folded into this one","breadcrumbs":"Task Schema » Relationship Fields","id":"809","title":"Relationship Fields"},"81":{"body":"# Define task\ntask = { \"title\": \"Write Product Description\", \"description\": \"Create compelling copy for new product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Product Research\", \"description\": \"Analyze product features and benefits\", \"success\": \"Complete understanding of product value\", \"failure\": \"Insufficient product knowledge\" }, { \"id\": \"write\", \"name\": \"Write Copy\", \"description\": \"Create engaging product description\", \"success\": \"200-word compelling description\", \"failure\": \"Generic or unconvincing copy\" } ]\n} # Sign and create task\nsigned_task = agent.create_task(task)\nprint(f'Task created: {signed_task[\"jacsId\"]}')","breadcrumbs":"Quick Start » Create a Task","id":"81","title":"Create a Task"},"810":{"body":"Actions define what needs to be accomplished: { \"jacsTaskActionsDesired\": [ { \"name\": \"Create API Endpoint\", \"description\": \"Build REST endpoint for user registration\", \"cost\": { \"value\": 500, \"unit\": \"USD\" }, \"duration\": { \"value\": 8, \"unit\": \"hours\" }, \"completionAgreementRequired\": true, \"tools\": [...] } ]\n}","breadcrumbs":"Task Schema » Actions","id":"810","title":"Actions"},"811":{"body":"Field Type Required Description name string Yes Action name description string Yes What needs to be done tools array No Tools that can be used cost object No Cost estimate duration object No Time estimate completionAgreementRequired boolean No Requires sign-off","breadcrumbs":"Task Schema » Action Schema Fields","id":"811","title":"Action Schema Fields"},"812":{"body":"Costs and durations use the unit schema: { \"cost\": { \"value\": 100, \"unit\": \"USD\" }, \"duration\": { \"value\": 2, \"unit\": \"days\" }\n}","breadcrumbs":"Task Schema » Unit Schema","id":"812","title":"Unit Schema"},"813":{"body":"Tasks can include start and end agreements:","breadcrumbs":"Task Schema » Agreements","id":"813","title":"Agreements"},"814":{"body":"Signed when parties agree to begin work: { \"jacsStartAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree to begin this work?\", \"context\": \"Project XYZ - Phase 1\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » Start Agreement","id":"814","title":"Start Agreement"},"815":{"body":"Signed when parties agree work is complete: { \"jacsEndAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree this work is complete?\", \"context\": \"Final deliverables reviewed\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » End Agreement","id":"815","title":"End Agreement"},"816":{"body":"{ \"$schema\": \"https://hai.ai/schemas/task/v1/task.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"task\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsTaskName\": \"Build Authentication System\", \"jacsTaskSuccess\": \"Users can register, login, and manage sessions\", \"jacsTaskState\": \"started\", \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"customer-signature...\", \"publicKeyHash\": \"customer-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskAgent\": { \"agentID\": \"assigned-agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"date\": \"2024-01-16T09:00:00Z\", \"signature\": \"agent-signature...\", \"publicKeyHash\": \"agent-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskStartDate\": \"2024-01-16T09:00:00Z\", \"jacsStartAgreement\": { \"agentIDs\": [\"customer-agent-uuid\", \"assigned-agent-uuid\"], \"question\": \"Do you agree to begin work on this task?\", \"signatures\": [ { \"agentID\": \"customer-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:00:00Z\" }, { \"agentID\": \"assigned-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:05:00Z\" } ] }, \"jacsTaskActionsDesired\": [ { \"name\": \"User Registration\", \"description\": \"Implement user registration with email verification\", \"duration\": { \"value\": 4, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"User Login\", \"description\": \"Implement secure login with password hashing\", \"duration\": { \"value\": 3, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"Session Management\", \"description\": \"Implement JWT-based session tokens\", \"duration\": { \"value\": 2, \"unit\": \"hours\" }, \"completionAgreementRequired\": false } ], \"jacsSignature\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"document-signature...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsTaskName\", \"jacsTaskActionsDesired\"] }\n}","breadcrumbs":"Task Schema » Complete Example","id":"816","title":"Complete Example"},"817":{"body":"","breadcrumbs":"Task Schema » Task Relationships","id":"817","title":"Task Relationships"},"818":{"body":"Break large tasks into smaller units: { \"jacsTaskSubTaskOf\": [\"parent-task-uuid\"]\n}","breadcrumbs":"Task Schema » Sub-Tasks","id":"818","title":"Sub-Tasks"},"819":{"body":"Create variations or branches: { \"jacsTaskCopyOf\": [\"original-task-uuid\"]\n}","breadcrumbs":"Task Schema » Task Copies (Branching)","id":"819","title":"Task Copies (Branching)"},"82":{"body":"For scripts, CI/CD, and server environments, all bindings support fully programmatic agent creation without interactive prompts: Python import jacs.simple as jacs agent = jacs.create( name=\"my-agent\", password=\"Str0ng-P@ssw0rd!\", # or set JACS_PRIVATE_KEY_PASSWORD algorithm=\"pq2025\",\n)\nprint(f\"Agent: {agent.agent_id}\") Node.js const jacs = require('@hai.ai/jacs/simple'); const agent = jacs.create({ name: 'my-agent', password: process.env.JACS_PRIVATE_KEY_PASSWORD, algorithm: 'pq2025',\n});\nconsole.log(`Agent: ${agent.agentId}`); Go info, err := jacs.Create(\"my-agent\", &jacs.CreateAgentOptions{ Password: os.Getenv(\"JACS_PRIVATE_KEY_PASSWORD\"), Algorithm: \"pq2025\",\n}) Rust use jacs::simple::{CreateAgentParams, SimpleAgent}; let params = CreateAgentParams { name: \"my-agent\".into(), password: std::env::var(\"JACS_PRIVATE_KEY_PASSWORD\").unwrap(), algorithm: \"pq2025\".into(), ..Default::default()\n};\nlet (agent, info) = SimpleAgent::create_with_params(params)?; Password requirements : At least 8 characters, with uppercase, lowercase, a digit, and a special character. Algorithm note : pq-dilithium is deprecated in v0.6.0. Use pq2025 (ML-DSA-87, FIPS-204) instead.","breadcrumbs":"Quick Start » Non-Interactive Agent Creation (v0.6.0+)","id":"82","title":"Non-Interactive Agent Creation (v0.6.0+)"},"820":{"body":"Combine completed tasks: { \"jacsTaskMergedTasks\": [ \"subtask-1-uuid\", \"subtask-2-uuid\" ]\n}","breadcrumbs":"Task Schema » Merged Tasks","id":"820","title":"Merged Tasks"},"821":{"body":"","breadcrumbs":"Task Schema » Task Workflow","id":"821","title":"Task Workflow"},"822":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') task = agent.create_document(json.dumps({ 'jacsTaskName': 'Build Feature X', 'jacsTaskSuccess': 'Feature is deployed and tested', 'jacsTaskState': 'creating', 'jacsTaskActionsDesired': [ { 'name': 'Implementation', 'description': 'Write the code', 'completionAgreementRequired': True } ]\n}), custom_schema='https://hai.ai/schemas/task/v1/task.schema.json')","breadcrumbs":"Task Schema » 1. Creating a Task","id":"822","title":"1. Creating a Task"},"823":{"body":"When an agent accepts the task, add their signature to jacsTaskAgent and update state to started.","breadcrumbs":"Task Schema » 2. Assigning an Agent","id":"823","title":"2. Assigning an Agent"},"824":{"body":"Both parties sign the start agreement to confirm work begins.","breadcrumbs":"Task Schema » 3. Signing Start Agreement","id":"824","title":"3. Signing Start Agreement"},"825":{"body":"Update state to review, then both parties sign the end agreement.","breadcrumbs":"Task Schema » 4. Completing Work","id":"825","title":"4. Completing Work"},"826":{"body":"After end agreement is signed by all parties, update state to completed.","breadcrumbs":"Task Schema » 5. Final Completion","id":"826","title":"5. Final Completion"},"827":{"body":"Current State Valid Next States creating rfp rfp proposal, creating proposal negotiation, rfp negotiation started, proposal started review review completed, started completed (terminal)","breadcrumbs":"Task Schema » State Machine Rules","id":"827","title":"State Machine Rules"},"828":{"body":"Document Schema - Base document fields Agent Schema - Agent structure Agreements - Working with agreements JSON Schemas Overview - Schema architecture","breadcrumbs":"Task Schema » See Also","id":"828","title":"See Also"},"829":{"body":"The Agent State Schema defines the structure for signed agent state documents in JACS. Agent state documents wrap and cryptographically sign any agent configuration file -- memory files, skills, plans, configs, hooks, or any other document an agent wants to verify.","breadcrumbs":"Agent State Schema » Agent State Schema","id":"829","title":"Agent State Schema"},"83":{"body":"When you completed the quick start, several important things occurred:","breadcrumbs":"Quick Start » Understanding What Happened","id":"83","title":"Understanding What Happened"},"830":{"body":"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json","breadcrumbs":"Agent State Schema » Schema Location","id":"830","title":"Schema Location"},"831":{"body":"Agent state documents provide: Signed state files : Cryptographically sign MEMORY.md, skill files, plans, configs, hooks, or any file File integrity : SHA-256 hashes verify file contents haven't been tampered with Origin tracking : Record whether state was authored, adopted, generated, or imported Framework tagging : Identify which agent framework (claude-code, langchain, etc.) the state belongs to General-purpose signing : Use type other to sign any document an agent wants to verify All documents are stored within the JACS data directory for security.","breadcrumbs":"Agent State Schema » Overview","id":"831","title":"Overview"},"832":{"body":"The agent state schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"title\": \"Agent State Document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" } ], \"properties\": { \"jacsAgentStateType\": { \"type\": \"string\", \"enum\": [\"memory\", \"skill\", \"plan\", \"config\", \"hook\", \"other\"] }, \"jacsAgentStateName\": { \"type\": \"string\" } }, \"required\": [\"jacsAgentStateType\", \"jacsAgentStateName\"]\n}","breadcrumbs":"Agent State Schema » Schema Structure","id":"832","title":"Schema Structure"},"833":{"body":"Type Description Example memory Agent memory/knowledge files MEMORY.md, context files skill Agent skill definitions Coding patterns, domain knowledge plan Agent plans and strategies Implementation plans, workflows config Agent configuration files Settings, preferences hook Agent hooks and triggers (always embedded) Pre-commit hooks, event handlers other Any document the agent wants to sign and verify Reports, artifacts, custom files","breadcrumbs":"Agent State Schema » State Types","id":"833","title":"State Types"},"834":{"body":"","breadcrumbs":"Agent State Schema » Properties","id":"834","title":"Properties"},"835":{"body":"Field Type Description jacsAgentStateType string (enum) Type of agent state: memory, skill, plan, config, hook, other jacsAgentStateName string Human-readable name for this state document","breadcrumbs":"Agent State Schema » Required Fields","id":"835","title":"Required Fields"},"836":{"body":"Field Type Description jacsAgentStateDescription string Description of what this state contains jacsAgentStateFramework string Agent framework (e.g., \"claude-code\", \"langchain\") jacsAgentStateVersion string Content version (distinct from jacsVersion) jacsAgentStateContentType string MIME type (text/markdown, application/json, etc.) jacsAgentStateContent string Inline content (used when embedding) jacsAgentStateTags string[] Tags for categorization and search jacsAgentStateOrigin string (enum) How created: authored, adopted, generated, imported jacsAgentStateSourceUrl string (uri) Where content was obtained from","breadcrumbs":"Agent State Schema » Optional Fields","id":"836","title":"Optional Fields"},"837":{"body":"Every agent state document can track its provenance: Origin Meaning authored Created by the signing agent adopted Found unsigned, signed by adopting agent generated Produced by AI/automation imported Brought from another JACS installation","breadcrumbs":"Agent State Schema » Origin Tracking","id":"837","title":"Origin Tracking"},"838":{"body":"Agent state documents can reference external files using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"text/markdown\", \"path\": \"MEMORY.md\", \"embed\": true, \"sha256\": \"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9\", \"contents\": \"base64-encoded-gzipped-content\" } ]\n} When embed is true, the file content is stored inline in the document. Hook-type documents always embed content for security (prevents time-of-check/time-of-use attacks).","breadcrumbs":"Agent State Schema » File References","id":"838","title":"File References"},"839":{"body":"","breadcrumbs":"Agent State Schema » Examples","id":"839","title":"Examples"},"84":{"body":"A unique identity (UUID) was generated for your agent Cryptographic key pair was created for signing Agent document was created and self-signed Public key was stored for verification","breadcrumbs":"Quick Start » 1. Agent Creation","id":"84","title":"1. Agent Creation"},"840":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"Project Memory\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Minimal Agent State","id":"840","title":"Minimal Agent State"},"841":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"JACS Project Memory\", \"jacsAgentStateDescription\": \"Agent memory for the JACS project workspace\", \"jacsAgentStateFramework\": \"claude-code\", \"jacsAgentStateOrigin\": \"authored\", \"jacsAgentStateContentType\": \"text/markdown\", \"jacsAgentStateContent\": \"# MEMORY.md\\n\\n## Project: JACS\\n- Location: /home/agent/jacs\\n- Rust library for cryptographic signing\\n\", \"jacsAgentStateTags\": [\"jacs\", \"rust\", \"crypto\"], \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Memory File with Embedding","id":"841","title":"Memory File with Embedding"},"842":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"skill\", \"jacsAgentStateName\": \"JSON Schema Validation\", \"jacsAgentStateOrigin\": \"adopted\", \"jacsAgentStateSourceUrl\": \"https://agentskills.io/skills/json-schema\", \"jacsAgentStateVersion\": \"2.1.0\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Adopted Skill","id":"842","title":"Adopted Skill"},"843":{"body":"Use type other to sign any document: { \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"other\", \"jacsAgentStateName\": \"Q1 Financial Report\", \"jacsAgentStateDescription\": \"Quarterly financial summary for verification\", \"jacsAgentStateContentType\": \"application/json\", \"jacsAgentStateContent\": \"{\\\"revenue\\\": 150000, \\\"expenses\\\": 120000}\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » General-Purpose Signed Document","id":"843","title":"General-Purpose Signed Document"},"844":{"body":"","breadcrumbs":"Agent State Schema » Rust API","id":"844","title":"Rust API"},"845":{"body":"use jacs::schema::agentstate_crud::*; // Minimal state\nlet doc = create_minimal_agentstate(\"memory\", \"Project Memory\", Some(\"Agent memory file\"))?; // With file reference\nlet doc = create_agentstate_with_file(\"skill\", \"Rust Patterns\", \"./skills/rust.md\", true)?; // With inline content\nlet doc = create_agentstate_with_content( \"config\", \"Agent Settings\", \"{\\\"theme\\\": \\\"dark\\\"}\", \"application/json\"\n)?; // General-purpose signing\nlet doc = create_agentstate_with_content( \"other\", \"Audit Report\", \"Report contents here...\", \"text/plain\"\n)?; // Set metadata\nlet mut doc = create_minimal_agentstate(\"memory\", \"My Memory\", None)?;\nset_agentstate_framework(&mut doc, \"claude-code\")?;\nset_agentstate_origin(&mut doc, \"authored\", None)?;\nset_agentstate_tags(&mut doc, vec![\"project\", \"notes\"])?;\nset_agentstate_version(&mut doc, \"1.0.0\")?;","breadcrumbs":"Agent State Schema » Creating Agent State Documents","id":"845","title":"Creating Agent State Documents"},"846":{"body":"// Create, sign, and store\nlet doc_string = serde_json::to_string(&doc)?;\nlet signed_doc = agent.create_document_and_load(&doc_string, None, None)?; // Verify file integrity\nlet hash_valid = verify_agentstate_file_hash(&doc)?;","breadcrumbs":"Agent State Schema » Signing and Verification","id":"846","title":"Signing and Verification"},"847":{"body":"Six MCP tools are available for agent state operations: Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document's signature jacs_load_state Load an agent state document by key jacs_update_state Update and re-sign an agent state document jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state","breadcrumbs":"Agent State Schema » MCP Tools","id":"847","title":"MCP Tools"},"848":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"memory\", \"name\": \"Project Memory\", \"content\": \"# My Agent Memory\\n\\nKey facts about the project...\", \"content_type\": \"text/markdown\", \"framework\": \"claude-code\", \"tags\": [\"project\", \"memory\"] }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign a Memory File","id":"848","title":"MCP Example: Sign a Memory File"},"849":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"other\", \"name\": \"Verification Report\", \"content\": \"{\\\"status\\\": \\\"passed\\\", \\\"checks\\\": 42}\", \"content_type\": \"application/json\" }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign Any Document","id":"849","title":"MCP Example: Sign Any Document"},"85":{"body":"Storage directories were configured Cryptographic algorithm was selected Agent identity was linked to configuration","breadcrumbs":"Quick Start » 2. Configuration Setup","id":"85","title":"2. Configuration Setup"},"850":{"body":"All agent state documents are stored within the JACS data directory for security Hook-type documents always embed content to prevent TOCTOU attacks File hashes (SHA-256) are verified on load to detect tampering Origin tracking provides provenance auditing Documents are signed with the agent's private key, providing non-repudiation","breadcrumbs":"Agent State Schema » Security Notes","id":"850","title":"Security Notes"},"851":{"body":"JSON Schemas - Schema architecture overview Working with Documents - General document operations MCP Integration - MCP server setup Security Model - Cryptographic details","breadcrumbs":"Agent State Schema » See Also","id":"851","title":"See Also"},"852":{"body":"Commitments are shared, signed agreements between agents. They represent what an agent commits to doing, optionally within a conversation or linked to a task or todo item. Key design : Commitments work standalone. They do not require goals, tasks, conversations, or any other document type to be created first.","breadcrumbs":"Commitment Schema » Commitment Schema","id":"852","title":"Commitment Schema"},"853":{"body":"ID : https://hai.ai/schemas/commitment/v1/commitment.schema.json Type : jacsType: \"commitment\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf","breadcrumbs":"Commitment Schema » Schema","id":"853","title":"Schema"},"854":{"body":"Field Type Description jacsCommitmentDescription string Human-readable description of the commitment jacsCommitmentStatus enum Lifecycle status","breadcrumbs":"Commitment Schema » Required Fields","id":"854","title":"Required Fields"},"855":{"body":"pending -> active -> completed -> failed -> renegotiated -> disputed -> revoked Status Meaning pending Created but not yet started active Work is underway completed Successfully fulfilled failed Could not be fulfilled renegotiated Terms changed, replaced by new commitment disputed One party contests the commitment revoked Withdrawn by the owner","breadcrumbs":"Commitment Schema » Status Lifecycle","id":"855","title":"Status Lifecycle"},"856":{"body":"Field Type Description jacsCommitmentTerms object Structured terms (deliverable, deadline, compensation, etc.) jacsCommitmentDisputeReason string Reason when status is disputed or revoked jacsCommitmentTaskId uuid Reference to a task document jacsCommitmentConversationRef uuid Thread ID of the conversation that produced this commitment jacsCommitmentTodoRef string Todo item reference in format list-uuid:item-uuid jacsCommitmentQuestion string Structured question prompt jacsCommitmentAnswer string Answer to the question jacsCommitmentCompletionQuestion string Question to verify completion jacsCommitmentCompletionAnswer string Answer verifying completion jacsCommitmentStartDate date-time When the commitment period begins jacsCommitmentEndDate date-time Deadline jacsCommitmentRecurrence object Recurrence pattern (frequency + interval) jacsCommitmentOwner signature Single-agent owner signature","breadcrumbs":"Commitment Schema » Optional Fields","id":"856","title":"Optional Fields"},"857":{"body":"Commitments can link to other document types: Conversation : jacsCommitmentConversationRef holds a thread UUID Todo item : jacsCommitmentTodoRef uses format list-uuid:item-uuid Task : jacsCommitmentTaskId holds a task document UUID These references are optional. Commitments work independently.","breadcrumbs":"Commitment Schema » Cross-References","id":"857","title":"Cross-References"},"858":{"body":"Commitments use the standard JACS agreement mechanism from the header schema. Two or more agents can co-sign a commitment using jacsAgreement.","breadcrumbs":"Commitment Schema » Multi-Agent Agreements","id":"858","title":"Multi-Agent Agreements"},"859":{"body":"{ \"$schema\": \"https://hai.ai/schemas/commitment/v1/commitment.schema.json\", \"jacsCommitmentDescription\": \"Deliver Q1 analytics report by March 15\", \"jacsCommitmentStatus\": \"active\", \"jacsCommitmentTerms\": { \"deliverable\": \"PDF report with charts\", \"deadline\": \"2026-03-15T00:00:00Z\" }, \"jacsCommitmentStartDate\": \"2026-01-15T00:00:00Z\", \"jacsCommitmentEndDate\": \"2026-03-15T00:00:00Z\", \"jacsType\": \"commitment\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Commitment Schema » Example","id":"859","title":"Example"},"86":{"body":"Task document was structured according to JACS schema Document was signed with your agent's private key SHA-256 hash was calculated for integrity Signature metadata was embedded in the document","breadcrumbs":"Quick Start » 3. Task Creation","id":"86","title":"3. Task Creation"},"860":{"body":"use jacs::schema::commitment_crud::*; // Create\nlet commitment = create_minimal_commitment(\"Deliver report\").unwrap(); // With structured terms\nlet commitment = create_commitment_with_terms( \"Weekly standup\", serde_json::json!({\"frequency\": \"weekly\"}),\n).unwrap(); // Update status\nupdate_commitment_status(&mut commitment, \"active\").unwrap(); // Dispute\ndispute_commitment(&mut commitment, \"Terms not met\").unwrap(); // Cross-references\nset_conversation_ref(&mut commitment, &thread_id).unwrap();\nset_todo_ref(&mut commitment, \"list-uuid:item-uuid\").unwrap();\nset_task_ref(&mut commitment, &task_id).unwrap();","breadcrumbs":"Commitment Schema » Rust API","id":"860","title":"Rust API"},"861":{"body":"Since commitments use jacsLevel: \"config\", they can be updated. Each update creates a new jacsVersion linked to the previous via jacsPreviousVersion. This provides a full audit trail of status changes and modifications.","breadcrumbs":"Commitment Schema » Versioning","id":"861","title":"Versioning"},"862":{"body":"Todo List Schema - Private task tracking Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Commitment Schema » See Also","id":"862","title":"See Also"},"863":{"body":"Todo lists are private, signed documents belonging to a single agent. They contain inline items (goals and tasks) and are re-signed as a whole when any item changes.","breadcrumbs":"Todo List Schema » Todo List Schema","id":"863","title":"Todo List Schema"},"864":{"body":"ID : https://hai.ai/schemas/todo/v1/todo.schema.json Type : jacsType: \"todo\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf Component : todoitem.schema.json for inline items","breadcrumbs":"Todo List Schema » Schema","id":"864","title":"Schema"},"865":{"body":"Field Type Description jacsTodoName string Human-readable name for this list jacsTodoItems array Inline todo items","breadcrumbs":"Todo List Schema » Required Fields","id":"865","title":"Required Fields"},"866":{"body":"Field Type Description jacsTodoArchiveRefs uuid[] UUIDs of archived todo lists","breadcrumbs":"Todo List Schema » Optional Fields","id":"866","title":"Optional Fields"},"867":{"body":"Each item in jacsTodoItems is an inline object following todoitem.schema.json.","breadcrumbs":"Todo List Schema » Todo Items","id":"867","title":"Todo Items"},"868":{"body":"Field Type Description itemId uuid Stable UUID that does not change on re-signing itemType enum \"goal\" (broad objective) or \"task\" (specific action) description string Human-readable description status enum \"pending\", \"in-progress\", \"completed\", \"abandoned\"","breadcrumbs":"Todo List Schema » Required Item Fields","id":"868","title":"Required Item Fields"},"869":{"body":"Field Type Description priority enum \"low\", \"medium\", \"high\", \"critical\" childItemIds uuid[] Sub-goals or tasks under this item relatedCommitmentId uuid Commitment that formalizes this item relatedConversationThread uuid Conversation thread related to this item completedDate date-time When the item was completed assignedAgent uuid Agent assigned to this item tags string[] Tags for categorization","breadcrumbs":"Todo List Schema » Optional Item Fields","id":"869","title":"Optional Item Fields"},"87":{"body":"Let's verify that the documents are properly signed and can be validated: 🦀 Rust # Verify agent signature\njacs agent verify # Verify a specific document\njacs document verify -f ./jacs_data/[document-id].json # Sign a document\njacs document sign -f ./jacs_data/[document-id].json 🟢 Node.js // Verify agent signature\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent signature valid:', isValid); // List all documents\nconst documents = await agent.listDocuments();\nconsole.log('Documents:', documents.length); // Verify task signature\nconst taskValid = await agent.verifyDocument(signedTask);\nconsole.log('Task signature valid:', taskValid); // Get document details\nconst taskDetails = await agent.getDocument(signedTask.jacsId);\nconsole.log('Task details:', taskDetails); 🐍 Python # Verify agent signature\nis_valid = agent.verify_agent()\nprint(f'Agent signature valid: {is_valid}') # List all documents\ndocuments = agent.list_documents()\nprint(f'Documents: {len(documents)}') # Verify task signature task_valid = agent.verify_document(signed_task)\nprint(f'Task signature valid: {task_valid}') # Get document details\ntask_details = agent.get_document(signed_task[\"jacsId\"])\nprint(f'Task details: {task_details}')","breadcrumbs":"Quick Start » Verify Everything Works","id":"87","title":"Verify Everything Works"},"870":{"body":"Todo items can link to other document types: Commitment : relatedCommitmentId links an item to a commitment Conversation : relatedConversationThread links an item to a message thread References use the list-uuid:item-uuid format when referenced FROM other documents (e.g., jacsCommitmentTodoRef on a commitment). Use build_todo_item_ref() and parse_todo_item_ref() from reference_utils for this format.","breadcrumbs":"Todo List Schema » Cross-References","id":"870","title":"Cross-References"},"871":{"body":"Items support parent-child relationships via childItemIds: Goal: \"Ship Q1 release\" ├── Task: \"Write documentation\" ├── Task: \"Run integration tests\" └── Goal: \"Performance optimization\" ├── Task: \"Profile database queries\" └── Task: \"Add caching layer\"","breadcrumbs":"Todo List Schema » Item Hierarchy","id":"871","title":"Item Hierarchy"},"872":{"body":"{ \"$schema\": \"https://hai.ai/schemas/todo/v1/todo.schema.json\", \"jacsTodoName\": \"Q1 Sprint\", \"jacsTodoItems\": [ { \"itemId\": \"550e8400-e29b-41d4-a716-446655440001\", \"itemType\": \"goal\", \"description\": \"Ship analytics dashboard\", \"status\": \"in-progress\", \"priority\": \"high\", \"childItemIds\": [ \"550e8400-e29b-41d4-a716-446655440002\" ] }, { \"itemId\": \"550e8400-e29b-41d4-a716-446655440002\", \"itemType\": \"task\", \"description\": \"Build chart components\", \"status\": \"pending\", \"priority\": \"medium\", \"relatedCommitmentId\": \"660e8400-e29b-41d4-a716-446655440000\", \"tags\": [\"frontend\", \"charts\"] } ], \"jacsType\": \"todo\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Todo List Schema » Example","id":"872","title":"Example"},"873":{"body":"use jacs::schema::todo_crud::*; // Create a list\nlet mut list = create_minimal_todo_list(\"Sprint Work\").unwrap(); // Add items\nlet goal_id = add_todo_item(&mut list, \"goal\", \"Ship Q1\", Some(\"high\")).unwrap();\nlet task_id = add_todo_item(&mut list, \"task\", \"Write tests\", None).unwrap(); // Build hierarchy\nadd_child_to_item(&mut list, &goal_id, &task_id).unwrap(); // Progress tracking\nupdate_todo_item_status(&mut list, &task_id, \"in-progress\").unwrap();\nmark_todo_item_complete(&mut list, &task_id).unwrap(); // Cross-references\nset_item_commitment_ref(&mut list, &task_id, &commitment_id).unwrap();\nset_item_conversation_ref(&mut list, &task_id, &thread_id).unwrap(); // Archive completed items\nlet completed = remove_completed_items(&mut list).unwrap();","breadcrumbs":"Todo List Schema » Rust API","id":"873","title":"Rust API"},"874":{"body":"Since todo lists use jacsLevel: \"config\", each modification creates a new signed version. The itemId fields remain stable across versions, enabling consistent cross-referencing even as items are added, updated, or removed.","breadcrumbs":"Todo List Schema » Versioning","id":"874","title":"Versioning"},"875":{"body":"Commitment Schema - Shared agreements Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Todo List Schema » See Also","id":"875","title":"See Also"},"876":{"body":"Conversations use the existing message schema enhanced with thread tracking and message ordering. There is no separate \"conversation\" schema - conversations are sequences of signed messages sharing a thread ID.","breadcrumbs":"Conversation Schema » Conversation Schema","id":"876","title":"Conversation Schema"},"877":{"body":"ID : https://hai.ai/schemas/message/v1/message.schema.json Type : jacsType: \"message\" Level : jacsLevel: \"raw\" (immutable once signed) Extends : header.schema.json via allOf","breadcrumbs":"Conversation Schema » Schema","id":"877","title":"Schema"},"878":{"body":"","breadcrumbs":"Conversation Schema » Message Fields","id":"878","title":"Message Fields"},"879":{"body":"Field Type Description to string[] Recipient agent identifiers from string[] Sender agent identifiers content object Message body (free-form object)","breadcrumbs":"Conversation Schema » Required","id":"879","title":"Required"},"88":{"body":"Now let's create a second agent and demonstrate inter-agent communication: 🦀 Rust # Create a second agent configuration\ncp jacs.config.json reviewer.config.json\n# Edit reviewer.config.json to set jacs_agent_id_and_version to null # Create reviewer agent (uses JACS_CONFIG_PATH environment variable)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agent create --create-keys true # Create an agreement on a document\njacs agreement create -f ./document.json \\ --agents [agent-1-id],[agent-2-id] \\ --question \"Do you agree to collaborate on this content task?\" # Sign the agreement as first agent\njacs agreement sign -f ./document.json # Sign as second agent (using reviewer config)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agreement sign -f ./document.json # Verify agreement is complete\njacs agreement check -f ./document.json 🟢 Node.js // Create second agent with separate config file\nconst reviewerConfig = { ...config };\nreviewerConfig.jacs_agent_id_and_version = null; fs.writeFileSync('./reviewer.config.json', JSON.stringify(reviewerConfig, null, 2)); const reviewer = new JacsAgent();\nreviewer.load('./reviewer.config.json');\nawait reviewer.generateKeys(); const reviewerDoc = await reviewer.createAgent({ name: \"Content Reviewer Bot\", description: \"AI agent specialized in content review\"\n}); // Create agreement between agents\nconst agreement = { title: \"Content Collaboration Agreement\", question: \"Do you agree to collaborate on this content task?\", context: `Task: ${signedTask.jacsId}`, agents: [agentDoc.jacsId, reviewerDoc.jacsId]\n}; const signedAgreement = await agent.createAgreement(agreement); // Both agents sign the agreement\nawait agent.signAgreement(signedAgreement.jacsId);\nawait reviewer.signAgreement(signedAgreement.jacsId); // Verify all signatures\nconst agreementValid = await agent.verifyAgreement(signedAgreement.jacsId);\nconsole.log('Agreement complete:', agreementValid); 🐍 Python # Create second agent with separate config file\nreviewer_config = config.copy()\nreviewer_config[\"jacs_agent_id_and_version\"] = None with open('reviewer.config.json', 'w') as f: json.dump(reviewer_config, f, indent=2) reviewer = jacs.JacsAgent()\nreviewer.load(\"./reviewer.config.json\")\nreviewer.generate_keys() reviewer_doc = reviewer.create_agent({ \"name\": \"Content Reviewer Bot\", \"description\": \"AI agent specialized in content review\"\n}) # Create agreement between agents\nagreement = { \"title\": \"Content Collaboration Agreement\", \"question\": \"Do you agree to collaborate on this content task?\", \"context\": f\"Task: {signed_task['jacsId']}\", \"agents\": [agent_doc[\"jacsId\"], reviewer_doc[\"jacsId\"]]\n} signed_agreement = agent.create_agreement(agreement) # Both agents sign the agreement\nagent.sign_agreement(signed_agreement[\"jacsId\"])\nreviewer.sign_agreement(signed_agreement[\"jacsId\"]) # Verify all signatures\nagreement_valid = agent.verify_agreement(signed_agreement[\"jacsId\"])\nprint(f'Agreement complete: {agreement_valid}')","breadcrumbs":"Quick Start » Next Steps: Multi-Agent Workflow","id":"88","title":"Next Steps: Multi-Agent Workflow"},"880":{"body":"Field Type Description threadID string UUID of the conversation thread jacsMessagePreviousId uuid UUID of the previous message in this thread attachments array File attachments","breadcrumbs":"Conversation Schema » Optional","id":"880","title":"Optional"},"881":{"body":"Messages form a thread via two fields: threadID - All messages in a conversation share the same thread ID jacsMessagePreviousId - Each message references the previous one, creating an ordered chain Message 1 (threadID: \"abc-123\", previousId: null) └── Message 2 (threadID: \"abc-123\", previousId: msg1.jacsId) └── Message 3 (threadID: \"abc-123\", previousId: msg2.jacsId)","breadcrumbs":"Conversation Schema » Threading Model","id":"881","title":"Threading Model"},"882":{"body":"Messages use jacsLevel: \"raw\", making them immutable once signed. To continue a conversation, create a new message referencing the previous one. This ensures the integrity of the conversation history.","breadcrumbs":"Conversation Schema » Immutability","id":"882","title":"Immutability"},"883":{"body":"{ \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"threadID\": \"550e8400-e29b-41d4-a716-446655440000\", \"content\": { \"body\": \"I agree to the proposed terms.\", \"subject\": \"Re: Q1 Deliverables\" }, \"to\": [\"agent-b-uuid\"], \"from\": [\"agent-a-uuid\"], \"jacsMessagePreviousId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsType\": \"message\", \"jacsLevel\": \"raw\"\n}","breadcrumbs":"Conversation Schema » Example","id":"883","title":"Example"},"884":{"body":"use jacs::schema::conversation_crud::*; // Start a new conversation (generates thread ID)\nlet (first_msg, thread_id) = start_new_conversation( serde_json::json!({\"body\": \"Hello, let's discuss terms.\"}), vec![\"agent-b\".to_string()], vec![\"agent-a\".to_string()],\n).unwrap(); // Continue the conversation\nlet reply = create_conversation_message( &thread_id, serde_json::json!({\"body\": \"Sounds good. Here are my terms.\"}), vec![\"agent-a\".to_string()], vec![\"agent-b\".to_string()], Some(&previous_message_jacs_id),\n).unwrap(); // Extract thread info\nlet tid = get_thread_id(&message).unwrap();\nlet prev = get_previous_message_id(&message);","breadcrumbs":"Conversation Schema » Rust API","id":"884","title":"Rust API"},"885":{"body":"Conversations can be referenced by other document types: Commitment : jacsCommitmentConversationRef stores the thread UUID Todo item : relatedConversationThread stores the thread UUID This allows tracking which conversation led to a commitment or is related to a work item.","breadcrumbs":"Conversation Schema » Cross-References","id":"885","title":"Cross-References"},"886":{"body":"Commitment Schema - Agreements arising from conversations Todo List Schema - Private task tracking Document Schema - Header fields and signing","breadcrumbs":"Conversation Schema » See Also","id":"886","title":"See Also"},"887":{"body":"The JACS configuration file (jacs.config.json) defines agent settings, key locations, storage backends, and observability options.","breadcrumbs":"Configuration » Configuration","id":"887","title":"Configuration"},"888":{"body":"https://hai.ai/schemas/jacs.config.schema.json","breadcrumbs":"Configuration » Schema Location","id":"888","title":"Schema Location"},"889":{"body":"Create a minimal configuration file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Configuration » Quick Start","id":"889","title":"Quick Start"},"89":{"body":"Congratulations! You've successfully: ✅ Created JACS agents with cryptographic identities ✅ Generated and signed documents with verifiable integrity ✅ Established multi-agent agreements with cryptographic consent ✅ Verified signatures and document authenticity ✅ Created an audit trail of all interactions","breadcrumbs":"Quick Start » What You've Accomplished","id":"89","title":"What You've Accomplished"},"890":{"body":"Field Type Description jacs_data_directory string Path to store documents and agents jacs_key_directory string Path to store cryptographic keys jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_agent_key_algorithm string Signing algorithm jacs_default_storage string Storage backend","breadcrumbs":"Configuration » Required Fields","id":"890","title":"Required Fields"},"891":{"body":"","breadcrumbs":"Configuration » Configuration Options","id":"891","title":"Configuration Options"},"892":{"body":"jacs_agent_key_algorithm Specifies the cryptographic algorithm for signing: Value Description ring-Ed25519 Ed25519 signatures (recommended) RSA-PSS RSA with PSS padding pq-dilithium Post-quantum Dilithium pq2025 Post-quantum composite { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} jacs_agent_private_key_filename Name of the private key file in the key directory: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} If the key is encrypted, it will have .enc appended automatically when loading. jacs_agent_public_key_filename Name of the public key file: { \"jacs_agent_public_key_filename\": \"public.pem\"\n} jacs_private_key_password Password for encrypted private keys: { \"jacs_private_key_password\": \"your-password\"\n} Warning : Do not store passwords in config files for production. Use the JACS_PRIVATE_KEY_PASSWORD environment variable instead.","breadcrumbs":"Configuration » Key Configuration","id":"892","title":"Key Configuration"},"893":{"body":"jacs_default_storage Specifies where documents are stored: Value Description fs Local filesystem aws AWS S3 storage hai HAI cloud storage { \"jacs_default_storage\": \"fs\"\n} jacs_data_directory Path for storing documents and agents: { \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Configuration » Storage Configuration","id":"893","title":"Storage Configuration"},"894":{"body":"jacs_agent_id_and_version Load an existing agent by ID and version: { \"jacs_agent_id_and_version\": \"550e8400-e29b-41d4-a716-446655440000:f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n}","breadcrumbs":"Configuration » Agent Identity","id":"894","title":"Agent Identity"},"895":{"body":"Specify which schema versions to use: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"Configuration » Schema Versions","id":"895","title":"Schema Versions"},"896":{"body":"For DNSSEC-based agent verification: jacs_agent_domain Domain for DNS-based public key verification: { \"jacs_agent_domain\": \"example.com\"\n} jacs_dns_validate Enable DNS TXT fingerprint validation: { \"jacs_dns_validate\": true\n} jacs_dns_strict Require DNSSEC validation (no fallback): { \"jacs_dns_strict\": true\n} jacs_dns_required Require domain and DNS validation: { \"jacs_dns_required\": true\n}","breadcrumbs":"Configuration » DNS Configuration","id":"896","title":"DNS Configuration"},"897":{"body":"jacs_use_security Enable strict security features: { \"jacs_use_security\": \"1\"\n} Values: \"0\", \"1\", or \"false\", \"true\"","breadcrumbs":"Configuration » Security","id":"897","title":"Security"},"898":{"body":"JACS supports comprehensive observability through logs, metrics, and tracing.","breadcrumbs":"Configuration » Observability Configuration","id":"898","title":"Observability Configuration"},"899":{"body":"{ \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"stderr\" } } }\n} Log Levels Level Description trace Most verbose debug Debug information info General information warn Warnings error Errors only Log Destinations stderr (default): { \"destination\": { \"type\": \"stderr\" }\n} File : { \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/app.log\" }\n} OTLP (OpenTelemetry): { \"destination\": { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" } }\n} Null (disabled): { \"destination\": { \"type\": \"null\" }\n}","breadcrumbs":"Configuration » Logs Configuration","id":"899","title":"Logs Configuration"},"9":{"body":"npm install @hai.ai/jacs import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./config.json');","breadcrumbs":"Introduction » Node.js","id":"9","title":"Node.js"},"90":{"body":"Everything is verifiable : All documents have cryptographic signatures Agents are autonomous : Each has its own identity and keys Agreements enable trust : Multi-party consent before proceeding Audit trails are automatic : Complete history of all interactions JSON is universal : Documents work everywhere","breadcrumbs":"Quick Start » Key Takeaways","id":"90","title":"Key Takeaways"},"900":{"body":"{ \"observability\": { \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\" }, \"export_interval_seconds\": 60 } }\n} Metrics Destinations Prometheus : { \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\" }\n} OTLP : { \"destination\": { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\" }\n} File : { \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.json\" }\n} stdout : { \"destination\": { \"type\": \"stdout\" }\n}","breadcrumbs":"Configuration » Metrics Configuration","id":"900","title":"Metrics Configuration"},"901":{"body":"{ \"observability\": { \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"my-jacs-agent\", \"service_version\": \"1.0.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"backend\" } } } }\n} Sampling Options Field Type Description ratio number (0-1) Percentage of traces to sample parent_based boolean Follow parent span's sampling decision rate_limit integer Max traces per second","breadcrumbs":"Configuration » Tracing Configuration","id":"901","title":"Tracing Configuration"},"902":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\", \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\", \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": false, \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/agent.log\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://prometheus:9090/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-agent\", \"service_version\": \"1.0.0\", \"environment\": \"production\" } } }\n}","breadcrumbs":"Configuration » Complete Configuration Example","id":"902","title":"Complete Configuration Example"},"903":{"body":"Configuration can be overridden with environment variables: Variable Config Field JACS_PRIVATE_KEY_PASSWORD jacs_private_key_password JACS_DATA_DIRECTORY jacs_data_directory JACS_KEY_DIRECTORY jacs_key_directory export JACS_PRIVATE_KEY_PASSWORD=\"secure-password\"","breadcrumbs":"Configuration » Environment Variables","id":"903","title":"Environment Variables"},"904":{"body":"","breadcrumbs":"Configuration » Loading Configuration","id":"904","title":"Loading Configuration"},"905":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Configuration » Python","id":"905","title":"Python"},"906":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Configuration » Node.js","id":"906","title":"Node.js"},"907":{"body":"jacs --config ./jacs.config.json agent show","breadcrumbs":"Configuration » CLI","id":"907","title":"CLI"},"908":{"body":"Never commit private keys - Keep keys out of version control Use environment variables for secrets - Don't store passwords in config files Enable observability - Configure logs and metrics for monitoring Use DNS validation - Enable jacs_dns_validate for additional security Secure key directories - Restrict file permissions on key directories chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Configuration » Production Best Practices","id":"908","title":"Production Best Practices"},"909":{"body":"JSON Schemas Overview - Schema architecture Observability - Monitoring guide DNS Verification - Domain-based verification Quick Start - Getting started guide","breadcrumbs":"Configuration » See Also","id":"909","title":"See Also"},"91":{"body":"Now that you have the basics working: Rust Deep Dive - Learn the full Rust API Node.js Integration - Add MCP support Python MCP - Build authenticated MCP servers Production Security - Harden runtime settings and key management Real Examples - See production patterns","breadcrumbs":"Quick Start » Where to Go Next","id":"91","title":"Where to Go Next"},"910":{"body":"JACS implements a comprehensive security model designed to ensure authenticity, integrity, and non-repudiation for all agent communications and documents.","breadcrumbs":"Security Model » Security Model","id":"910","title":"Security Model"},"911":{"body":"Passwords : The private key password must be set only via the JACS_PRIVATE_KEY_PASSWORD environment variable. It is never stored in config files. Keys : Private keys are encrypted at rest (AES-256-GCM with PBKDF2, 600k iterations). Public keys and config may be stored on disk. Path validation : All paths built from untrusted input (e.g. publicKeyHash, filenames) are validated via require_relative_path_safe() to prevent directory traversal. This single validation function is used in data and key directory path builders and the trust store. It rejects empty segments, ., .., null bytes, and Windows drive-prefixed paths. Trust ID canonicalization : Trust-store operations normalize canonical agent docs (jacsId + jacsVersion) into a safe UUID:VERSION_UUID identifier before filesystem use, preserving path-safety checks while supporting standard agent document layout. Filesystem schema policy : Local schema loading is disabled by default and requires JACS_ALLOW_FILESYSTEM_SCHEMAS=true. When enabled, schema paths must remain within configured roots (JACS_DATA_DIRECTORY and/or JACS_SCHEMA_DIRECTORY) after normalized/canonical path checks. Network endpoint policy : HAI registration verification requires HTTPS for HAI_API_URL (localhost HTTP is allowed for local testing only). No secrets in config : Config files must not contain passwords or other secrets. The example config (jacs.config.example.json) does not include jacs_private_key_password. Dependency auditing : Run cargo audit (Rust), npm audit (Node.js), or pip audit (Python) to check for known vulnerabilities.","breadcrumbs":"Security Model » Security Model (v0.6.0)","id":"911","title":"Security Model (v0.6.0)"},"912":{"body":"","breadcrumbs":"Security Model » Core Security Principles","id":"912","title":"Core Security Principles"},"913":{"body":"Every JACS agent has a unique cryptographic identity: Key Pair : Each agent possesses a private/public key pair Agent ID : Unique UUID identifying the agent Public Key Hash : SHA-256 hash of the public key for verification { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\" }\n}","breadcrumbs":"Security Model » 1. Cryptographic Identity","id":"913","title":"1. Cryptographic Identity"},"914":{"body":"All documents include cryptographic guarantees: Signature : Cryptographic signature over specified fields Hash : SHA-256 hash of document contents Version Tracking : Immutable version history","breadcrumbs":"Security Model » 2. Document Integrity","id":"914","title":"2. Document Integrity"},"915":{"body":"Signatures provide proof of origin: Agents cannot deny signing a document Timestamps record when signatures were made Public keys enable independent verification","breadcrumbs":"Security Model » 3. Non-Repudiation","id":"915","title":"3. Non-Repudiation"},"916":{"body":"JACS provides a read-only security audit that checks configuration, directories, secrets, trust store, storage, quarantine/failed files, and optionally re-verifies recent documents. It does not modify state. Purpose : Surface misconfiguration, missing keys, unexpected paths, and verification failures in one report. Options (all optional): config_path: Path to jacs.config.json (default: 12-factor load) data_directory / key_directory: Override paths recent_verify_count: Number of recent documents to re-verify (default 10, max 100) Return structure : AuditResult with overall_status, risks (list of AuditRisk), health_checks (list of ComponentHealth), summary, checked_at, and optional quarantine_entries / failed_entries. Rust : use jacs::audit::{audit, AuditOptions}; let result = audit(AuditOptions::default())?;\nprintln!(\"{}\", jacs::format_audit_report(&result)); Python : import jacs.simple as jacs result = jacs.audit() # dict with risks, health_checks, summary, overall_status\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\") Node.js : import * as jacs from '@hai.ai/jacs/simple'; const result = jacs.audit({ recentN: 5 });\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`); Available in all bindings and as an MCP tool (jacs_audit) for automation.","breadcrumbs":"Security Model » Security Audit (audit())","id":"916","title":"Security Audit (audit())"},"917":{"body":"","breadcrumbs":"Security Model » Threat Model","id":"917","title":"Threat Model"},"918":{"body":"Threat Protection Tampering Content hashes detect modifications Impersonation Cryptographic signatures verify identity Replay Attacks Timestamps and version IDs ensure freshness; future timestamps rejected; optional signature expiration via JACS_MAX_SIGNATURE_AGE_SECONDS Man-in-the-Middle DNS verification via DNSSEC; TLS certificate validation Key Compromise Key rotation through versioning Weak Passwords Minimum 28-bit entropy enforcement (35-bit for single class)","breadcrumbs":"Security Model » Protected Against","id":"918","title":"Protected Against"},"919":{"body":"Private keys are kept secure Cryptographic algorithms are sound DNS infrastructure (when used) is trustworthy","breadcrumbs":"Security Model » Trust Assumptions","id":"919","title":"Trust Assumptions"},"92":{"body":"Agent creation fails : Check that the data and key directories exist and are writable Signature verification fails : Ensure public keys are properly stored and accessible Agreement signing fails : Verify all agent IDs are correct and agents exist Documents not found : Check the data directory configuration Need help? Check the GitHub issues or review the detailed implementation guides.","breadcrumbs":"Quick Start » Troubleshooting","id":"92","title":"Troubleshooting"},"920":{"body":"","breadcrumbs":"Security Model » Signature Process","id":"920","title":"Signature Process"},"921":{"body":"Field Selection : Determine which fields to sign Canonicalization : Serialize fields deterministically Signature Generation : Sign with private key Hash Computation : Compute SHA-256 of signed document import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create signed document\ndoc = agent.create_document(json.dumps({ 'title': 'Confidential Report', 'content': 'Sensitive data here'\n})) # Document now includes jacsSignature and jacsSha256","breadcrumbs":"Security Model » Signing a Document","id":"921","title":"Signing a Document"},"922":{"body":"Hash Verification : Recompute hash and compare Signature Verification : Verify signature with public key Agent Verification : Optionally verify agent identity via DNS is_valid = agent.verify_document(doc_json)\nis_signature_valid = agent.verify_signature(doc_json)","breadcrumbs":"Security Model » Verifying a Document","id":"922","title":"Verifying a Document"},"923":{"body":"","breadcrumbs":"Security Model » Key Management","id":"923","title":"Key Management"},"924":{"body":"JACS generates cryptographic key pairs during agent creation: # Keys are created in the configured key directory\njacs_keys/\n├── private.pem # Private key (keep secure!)\n└── public.pem # Public key (can be shared)","breadcrumbs":"Security Model » Key Generation","id":"924","title":"Key Generation"},"925":{"body":"Encryption at Rest : Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC-SHA256 (600,000 iterations). Never store the password in config files. # Set via environment variable only\nexport JACS_PRIVATE_KEY_PASSWORD=\"secure-password\" Important : The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable. Password Entropy Requirements : JACS enforces password entropy minimums for private key encryption. Password validation is performed at encryption time, and weak passwords are rejected with helpful error messages: Minimum 28-bit entropy for passwords with 2+ character classes (mixed case, numbers, symbols) Minimum 35-bit entropy for single-character-class passwords (e.g., all lowercase) Entropy is calculated based on character class diversity and length Weak passwords result in immediate rejection during key encryption Error messages guide users toward stronger password choices Example of rejected weak passwords: password - Too common and predictable 12345678 - Insufficient character diversity abc - Too short File Permissions : chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » Key Protection","id":"925","title":"Key Protection"},"926":{"body":"Update agent version to rotate keys: Generate new key pair Create new agent version Sign new version with old key Update configuration to use new keys","breadcrumbs":"Security Model » Key Rotation","id":"926","title":"Key Rotation"},"927":{"body":"JACS includes configurable TLS certificate validation for secure network communication.","breadcrumbs":"Security Model » TLS Certificate Validation","id":"927","title":"TLS Certificate Validation"},"928":{"body":"By default, JACS warns about invalid TLS certificates but accepts them to facilitate development environments with self-signed certificates: WARNING: Invalid TLS certificate detected. Set JACS_STRICT_TLS=true for production.","breadcrumbs":"Security Model » Default Behavior (Development)","id":"928","title":"Default Behavior (Development)"},"929":{"body":"For production deployments, enable strict TLS validation: export JACS_STRICT_TLS=true When enabled, JACS will: Reject connections with invalid, expired, or self-signed certificates Enforce proper certificate chain validation Fail fast with clear error messages for certificate issues Implementation : Certificate validation logic is located in jacs/src/schema/utils.rs.","breadcrumbs":"Security Model » Production Configuration","id":"929","title":"Production Configuration"},"93":{"body":"JACS supports a wide range of workflows: proving where data came from, protecting who runs an agent, registering with a platform, enforcing provenance in your app, and proving that a specific agent sent a message. This page summarizes five common use cases; each links to the full fictional scenario and technical flow in the repository. For detailed narratives (scenario, technical flow, outcome), see USECASES.md in the JACS repo.","breadcrumbs":"Use cases » Use cases","id":"93","title":"Use cases"},"930":{"body":"Mode Behavior Use Case Default (dev) Warn on invalid certs, allow connection Local development, testing Strict (JACS_STRICT_TLS=true) Reject invalid certs Production, staging For HAI registration verification endpoints, HAI_API_URL must use HTTPS. HTTP is only allowed for localhost test endpoints.","breadcrumbs":"Security Model » Security Implications","id":"930","title":"Security Implications"},"931":{"body":"JACS signatures include timestamps to prevent replay attacks and ensure temporal integrity.","breadcrumbs":"Security Model » Signature Timestamp Validation","id":"931","title":"Signature Timestamp Validation"},"932":{"body":"Timestamp Inclusion : Every signature includes a UTC timestamp recording when it was created Future Timestamp Rejection : Signatures with timestamps more than 5 minutes in the future are rejected Optional Signature Expiration : Configurable via JACS_MAX_SIGNATURE_AGE_SECONDS (disabled by default since JACS documents are designed to be eternal) Validation : Timestamp validation occurs during signature verification","breadcrumbs":"Security Model » How It Works","id":"932","title":"How It Works"},"933":{"body":"By default, signatures do not expire. JACS documents are designed to be idempotent and eternal. For use cases that require expiration: # Enable expiration (e.g., 90 days)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=7776000 # Default: no expiration (0)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=0","breadcrumbs":"Security Model » Configuring Signature Expiration","id":"933","title":"Configuring Signature Expiration"},"934":{"body":"The 5-minute future tolerance window: Allows for reasonable clock skew between systems Prevents attackers from creating signatures with future timestamps Ensures signatures cannot be pre-generated for later fraudulent use { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"signature\": \"...\", \"date\": \"2024-01-15T10:30:00Z\" // Must be within 5 min of verifier's clock }\n}","breadcrumbs":"Security Model » Protection Against Replay Attacks","id":"934","title":"Protection Against Replay Attacks"},"935":{"body":"For reliable timestamp validation across distributed systems: Ensure all agents use NTP or similar time synchronization Monitor for clock drift in production environments Consider the 5-minute tolerance when debugging verification failures","breadcrumbs":"Security Model » Clock Synchronization","id":"935","title":"Clock Synchronization"},"936":{"body":"Agents can claim a verification level that determines security requirements. This follows the principle: \"If you claim it, you must prove it.\"","breadcrumbs":"Security Model » Verification Claims","id":"936","title":"Verification Claims"},"937":{"body":"Claim Required Conditions Behavior unverified (default) None Relaxed DNS/TLS settings allowed; self-asserted identity verified Domain with DNSSEC Strict TLS, strict DNS with DNSSEC validation required verified-hai.ai Above + HAI.ai registration Must be registered and verified with HAI.ai","breadcrumbs":"Security Model » Claim Levels","id":"937","title":"Claim Levels"},"938":{"body":"Add the jacsVerificationClaim field to your agent definition: { \"jacsAgentType\": \"ai\", \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n}","breadcrumbs":"Security Model » Setting a Verification Claim","id":"938","title":"Setting a Verification Claim"},"939":{"body":"When an agent claims verified or verified-hai.ai: Domain Required : The jacsAgentDomain field must be set Strict DNS : DNS lookup uses DNSSEC validation (no insecure fallback) DNS Required : Public key fingerprint must match DNS TXT record Strict TLS : TLS certificate validation is mandatory (no self-signed certs) For verified-hai.ai claims, additional enforcement: HAI.ai Registration : Agent must be registered at hai.ai Public Key Match : Registered public key must match the agent's key Network Required : Verification fails if HAI.ai API is unreachable","breadcrumbs":"Security Model » Claim Enforcement","id":"939","title":"Claim Enforcement"},"94":{"body":"Summary. You have a pipeline or service that emits JSON (configs, reports, compliance data). Consumers need to trust that a given file or payload was produced by that program and not modified. With JACS, the program has one agent identity: it signs each artifact with sign_message or sign_file at emission; consumers verify with verify() or verify_by_id() (local storage), or use verify_standalone() for one-off verification without loading an agent. No central server is required. See USECASES.md § 1 for the full scenario.","breadcrumbs":"Use cases » 1. Verifying that JSON came from a specific program","id":"94","title":"1. Verifying that JSON came from a specific program"},"940":{"body":"Agents without jacsVerificationClaim are treated as unverified Existing agents continue to work with their current DNS settings No breaking changes for agents that don't opt into verified status","breadcrumbs":"Security Model » Backward Compatibility","id":"940","title":"Backward Compatibility"},"941":{"body":"If verification fails, clear error messages explain what's wrong: Verification claim 'verified' failed: Verified agents must have jacsAgentDomain set.\nAgents claiming 'verified' must meet the required security conditions. Verification claim 'verified-hai.ai' failed: Agent 'uuid' is not registered with HAI.ai.\nAgents claiming 'verified-hai.ai' must be registered at https://hai.ai","breadcrumbs":"Security Model » Error Messages","id":"941","title":"Error Messages"},"942":{"body":"No Downgrade : Once an agent claims verified, it cannot be verified with relaxed settings Claim Changes : Changing the claim requires creating a new agent version Network Dependency : verified-hai.ai requires network access to HAI.ai Audit Trail : Verification claim and enforcement results are logged","breadcrumbs":"Security Model » Security Considerations","id":"942","title":"Security Considerations"},"943":{"body":"JACS supports DNSSEC-validated identity verification:","breadcrumbs":"Security Model » DNS-Based Verification","id":"943","title":"DNS-Based Verification"},"944":{"body":"Agent publishes public key fingerprint in DNS TXT record Verifier queries DNS for _v1.agent.jacs.. DNSSEC validates the response authenticity Fingerprint is compared against agent's public key","breadcrumbs":"Security Model » How It Works","id":"944","title":"How It Works"},"945":{"body":"{ \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": true\n}","breadcrumbs":"Security Model » Configuration","id":"945","title":"Configuration"},"946":{"body":"Mode Description jacs_dns_validate: false No DNS verification jacs_dns_validate: true Attempt DNS verification, allow fallback jacs_dns_strict: true Require DNSSEC validation jacs_dns_required: true Fail if domain not present","breadcrumbs":"Security Model » Security Levels","id":"946","title":"Security Levels"},"947":{"body":"JACS maintains a trust store for managing trusted agent relationships.","breadcrumbs":"Security Model » Trust Store Management","id":"947","title":"Trust Store Management"},"948":{"body":"Before trusting an agent, JACS performs public key hash verification: # Trust an agent after verifying their public key hash\nagent.trust_agent(agent_id, public_key_hash)","breadcrumbs":"Security Model » Trusting Agents","id":"948","title":"Trusting Agents"},"949":{"body":"The untrust_agent() method properly handles the case when an agent is not in the trust store: try: agent.untrust_agent(agent_id)\nexcept AgentNotTrusted as e: # Agent was not in the trust store print(f\"Agent {agent_id} was not trusted: {e}\")","breadcrumbs":"Security Model » Untrusting Agents","id":"949","title":"Untrusting Agents"},"95":{"body":"Summary. You run a public-facing agent and want its messages to be verifiable (signed) without exposing who operates it. JACS supports this by keeping signing internal-only and publishing only the public key (via DNS and optionally HAI). Recipients use verify() (core JACS) or jacs_verify_auto (OpenClaw/moltyjacs) to confirm origin and integrity; they never learn who runs the agent. See USECASES.md § 2 for the full scenario.","breadcrumbs":"Use cases » 2. Protecting your agent's identity on the internet","id":"95","title":"2. Protecting your agent's identity on the internet"},"950":{"body":"Operation Validation trust_agent() UUID format validation, path traversal rejection, public key hash verification, self-signature verification before adding untrust_agent() UUID format validation, path containment check, returns AgentNotTrusted error if agent not found get_trusted_agent() UUID format validation, path containment check is_trusted() UUID format validation, safe lookup without side effects Key cache (load_public_key_from_cache) require_relative_path_safe() rejects traversal in publicKeyHash Key cache (save_public_key_to_cache) require_relative_path_safe() rejects traversal in publicKeyHash Path Traversal Protection (v0.6.0) : All trust store operations that construct file paths from agent IDs or key hashes use defense-in-depth: UUID format validation : Agent IDs must match UUID:UUID format (rejects special characters) Path character rejection : Explicit rejection of .., /, \\, and null bytes Path containment check : For existing files, canonicalized paths are verified to stay within the trust store directory require_relative_path_safe() : Key hashes are validated to prevent traversal before constructing cache file paths","breadcrumbs":"Security Model » Trust Store Security","id":"950","title":"Trust Store Security"},"951":{"body":"Verify Before Trust : Always verify an agent's public key hash through an out-of-band channel before trusting Audit Trust Changes : Log all trust store modifications for security auditing Periodic Review : Regularly review and prune the trust store","breadcrumbs":"Security Model » Best Practices","id":"951","title":"Best Practices"},"952":{"body":"Multi-party agreements provide additional security:","breadcrumbs":"Security Model » Agreement Security","id":"952","title":"Agreement Security"},"953":{"body":"{ \"jacsAgreement\": { \"agentIDs\": [\"agent-1\", \"agent-2\", \"agent-3\"], \"signatures\": [ { \"agentID\": \"agent-1\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T10:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-at-agreement-time\"\n}","breadcrumbs":"Security Model » Agreement Structure","id":"953","title":"Agreement Structure"},"954":{"body":"Content Lock : jacsAgreementHash ensures all parties agreed to same content Individual Consent : Each signature records explicit agreement Response Types : Support for agree, disagree, or reject Timestamp : Records when each party signed","breadcrumbs":"Security Model » Agreement Guarantees","id":"954","title":"Agreement Guarantees"},"955":{"body":"For MCP and HTTP communication:","breadcrumbs":"Security Model » Request/Response Security","id":"955","title":"Request/Response Security"},"956":{"body":"signed_request = agent.sign_request({ 'method': 'tools/call', 'params': {'name': 'echo', 'arguments': {'text': 'hello'}}\n}) The signed request includes: Full JACS document structure Agent signature Timestamp Content hash","breadcrumbs":"Security Model » Request Signing","id":"956","title":"Request Signing"},"957":{"body":"result = agent.verify_response(response_string)\npayload = result.get('payload')\nagent_id = result.get('agentId') # Who signed the response","breadcrumbs":"Security Model » Response Verification","id":"957","title":"Response Verification"},"958":{"body":"","breadcrumbs":"Security Model » Algorithm Security","id":"958","title":"Algorithm Security"},"959":{"body":"Algorithm Type Security Level ring-Ed25519 Elliptic Curve High (recommended) RSA-PSS RSA High pq-dilithium Post-Quantum Quantum-resistant pq2025 Composite Transitional","breadcrumbs":"Security Model » Supported Algorithms","id":"959","title":"Supported Algorithms"},"96":{"body":"Summary. You want to register your JACS agent with HAI.ai for attestation and discoverability, and to test verification before going live. Use the HAI registration flow: from Node registerWithHai() (@hai.ai/jacs), from Go RegisterWithHai() (jacsgo), from Python register_with_hai / register_new_agent() (jacspy), or openclaw jacs register (moltyjacs). Set HAI_API_KEY, then check attestation and run verification with JACS_KEY_RESOLUTION=local,hai. See USECASES.md § 3 for the full scenario.","breadcrumbs":"Use cases » 3. Registering and testing your agent on HAI.ai","id":"96","title":"3. Registering and testing your agent on HAI.ai"},"960":{"body":"Choose based on requirements: General Use : ring-Ed25519 - fast, secure, small signatures Legacy Systems : RSA-PSS - widely supported Future-Proofing : pq-dilithium - quantum-resistant Transition : pq2025 - hybrid classical/post-quantum","breadcrumbs":"Security Model » Algorithm Selection","id":"960","title":"Algorithm Selection"},"961":{"body":"","breadcrumbs":"Security Model » Security Best Practices","id":"961","title":"Security Best Practices"},"962":{"body":"# Never commit keys to version control\necho \"jacs_keys/\" >> .gitignore # Secure file permissions\nchmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » 1. Key Storage","id":"962","title":"1. Key Storage"},"963":{"body":"# Use environment variables\nexport JACS_PRIVATE_KEY_PASSWORD=\"$(pass show jacs/key-password)\"","breadcrumbs":"Security Model » 2. Password Handling","id":"963","title":"2. Password Handling"},"964":{"body":"Always use TLS for network communication: # HTTPS for web transport\nclient = JACSMCPClient(\"https://localhost:8000/sse\") # Good\n# client = JACSMCPClient(\"http://localhost:8000/sse\") # Avoid in production","breadcrumbs":"Security Model » 3. Transport Security","id":"964","title":"3. Transport Security"},"965":{"body":"{ \"jacs_dns_strict\": true, \"jacs_dns_required\": true, \"jacs_enable_filesystem_quarantine\": \"true\"\n}","breadcrumbs":"Security Model » 4. Verification Policies","id":"965","title":"4. Verification Policies"},"966":{"body":"Enable observability for security auditing: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" } }\n}","breadcrumbs":"Security Model » 5. Audit Logging","id":"966","title":"5. Audit Logging"},"967":{"body":"","breadcrumbs":"Security Model » Security Checklist","id":"967","title":"Security Checklist"},"968":{"body":"Generate unique keys for each environment Never commit private keys Use test keys separate from production","breadcrumbs":"Security Model » Development","id":"968","title":"Development"},"969":{"body":"Encrypt private keys at rest Use environment variables for secrets (never store jacs_private_key_password in config) Enable DNS verification Configure strict security mode Enable audit logging Use TLS for all network transport Restrict key file permissions (0600 for keys, 0700 for key directory) Implement key rotation policy Set JACS_STRICT_TLS=true for certificate validation Use strong passwords (28+ bit entropy, 35+ for single character class) Enable signature timestamp validation Verify public key hashes before trusting agents Run cargo audit / npm audit / pip audit regularly for dependency vulnerabilities","breadcrumbs":"Security Model » Production","id":"969","title":"Production"},"97":{"body":"Summary. Your agent (in Go, Node, or Python) must prove the origin and integrity of every important output for compliance. Use the simple API in jacspy, jacsnpm, or jacsgo: load(config), sign_message(payload) for each output, and verify(signed.raw) (or verify_standalone() for one-off verification without agent setup) wherever you consume signed data. Keys stay local; use JACS_KEY_RESOLUTION for external signers or air-gapped use. See USECASES.md § 4 for the full scenario.","breadcrumbs":"Use cases » 4. A Go, Node, or Python agent with strong data provenance","id":"97","title":"4. A Go, Node, or Python agent with strong data provenance"},"970":{"body":"Always verify documents before trusting Verify agent signatures Check agreement completeness Validate DNS records when required","breadcrumbs":"Security Model » Verification","id":"970","title":"Verification"},"971":{"body":"","breadcrumbs":"Security Model » Security Considerations","id":"971","title":"Security Considerations"},"972":{"body":"Verify JACS packages are from official sources Use package checksums Keep dependencies updated","breadcrumbs":"Security Model » Supply Chain","id":"972","title":"Supply Chain"},"973":{"body":"Use constant-time comparison for signatures Protect against timing attacks Secure memory handling for keys","breadcrumbs":"Security Model » Side Channels","id":"973","title":"Side Channels"},"974":{"body":"Backup key material securely Document key recovery procedures Plan for key compromise scenarios","breadcrumbs":"Security Model » Recovery","id":"974","title":"Recovery"},"975":{"body":"","breadcrumbs":"Security Model » Troubleshooting Verification Claims","id":"975","title":"Troubleshooting Verification Claims"},"976":{"body":"\"Verified agents must have jacsAgentDomain set\" Problem : You set jacsVerificationClaim to verified but didn't specify a domain. Solution : Either add a domain or use unverified: // Option 1: Add a domain (recommended for production)\n{ \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} // Option 2: Use unverified if DNS verification isn't needed\n{ \"jacsVerificationClaim\": \"unverified\"\n} \"Agent is not registered with HAI.ai\" Problem : You're using verified-hai.ai but the agent isn't registered. Solution : Register your agent at hai.ai Or use verified for DNS-only verification: { \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} \"Cannot downgrade from 'verified' to 'unverified'\" Problem : You're trying to change an existing agent's claim to a lower level. Solution : Verification claims cannot be downgraded for security. Options: Keep the current claim level Create a new agent with the desired claim level If this is a test/development scenario, start fresh # Create a new agent instead\njacs create --type ai --claim unverified \"DNS fingerprint mismatch\" Problem : The public key hash in DNS doesn't match your agent's key. Solution : Regenerate the DNS record with your current keys: jacs dns-record Update your DNS TXT record with the new value Wait for DNS propagation (can take up to 48 hours) \"Strict DNSSEC validation failed\" Problem : Your domain doesn't have DNSSEC enabled. Solution : Enable DNSSEC with your domain registrar Publish DS records at the parent zone Or use verified with non-strict DNS (development only)","breadcrumbs":"Security Model » Common Issues and Solutions","id":"976","title":"Common Issues and Solutions"},"977":{"body":"Claim Security Level Requirements unverified 0 (lowest) None - self-asserted identity verified 1 Domain + DNS TXT record + DNSSEC verified-hai.ai 2 (highest) Above + HAI.ai registration","breadcrumbs":"Security Model » Claim Level Reference","id":"977","title":"Claim Level Reference"},"978":{"body":"Upgrades allowed : unverified → verified → verified-hai.ai Downgrades blocked : Cannot go from higher to lower claim Same level allowed : Can update agent while keeping same claim","breadcrumbs":"Security Model » Upgrade vs Downgrade Rules","id":"978","title":"Upgrade vs Downgrade Rules"},"979":{"body":"# Check your agent's current claim\njacs info | grep jacsVerificationClaim # Verify DNS record is correct\njacs dns-check # Test verification\njacs verify --agent your-agent-id:version","breadcrumbs":"Security Model » Quick Diagnostic Commands","id":"979","title":"Quick Diagnostic Commands"},"98":{"body":"Summary. You use OpenClaw with the moltyjacs plugin and need cryptographic proof that a specific message came from your agent. The agent signs outbound messages with jacs_sign; the recipient verifies with jacs_verify_auto. The signature travels with the message; no custom PKI is required. See USECASES.md § 5 for the full scenario.","breadcrumbs":"Use cases » 5. OpenClaw (moltyjacs): proving your agent sent a message","id":"98","title":"5. OpenClaw (moltyjacs): proving your agent sent a message"},"980":{"body":"Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity Configuration - Security configuration Agreements - Multi-party agreements","breadcrumbs":"Security Model » See Also","id":"980","title":"See Also"},"981":{"body":"Key rotation is the process of replacing an agent's cryptographic keys while preserving the ability to verify documents signed with previous keys. JACS implements version-aware key management to support secure key lifecycle operations.","breadcrumbs":"Key Rotation » Key Rotation","id":"981","title":"Key Rotation"},"982":{"body":"","breadcrumbs":"Key Rotation » Why Key Rotation Matters","id":"982","title":"Why Key Rotation Matters"},"983":{"body":"When a private key is compromised, the agent must be able to: Generate new keys and continue operating Revoke trust in the compromised key Maintain verifiability of documents signed before the compromise","breadcrumbs":"Key Rotation » Key Compromise Recovery","id":"983","title":"Key Compromise Recovery"},"984":{"body":"Cryptographic algorithms evolve. Key rotation enables: Migration from older algorithms to newer ones Transition to post-quantum cryptography when needed Algorithm upgrades without breaking existing signatures","breadcrumbs":"Key Rotation » Cryptographic Agility","id":"984","title":"Cryptographic Agility"},"985":{"body":"Many security standards require periodic key rotation: PCI-DSS mandates regular key changes SOC 2 requires key management policies NIST guidelines recommend rotation schedules","breadcrumbs":"Key Rotation » Compliance Requirements","id":"985","title":"Compliance Requirements"},"986":{"body":"JACS uses a versioned identity model where each key rotation creates a new agent version.","breadcrumbs":"Key Rotation » Agent Versioning","id":"986","title":"Agent Versioning"},"987":{"body":"Agent identifiers follow the format: {agent_id}:{version_uuid} jacsId : The stable agent identity (UUID v4) - never changes jacsVersion : Current version UUID - changes on each update jacsPreviousVersion : Links to the prior version jacsOriginalVersion : The first version ever created { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"7c9e6679-7425-40de-944b-e07fc1f90ae7\", \"jacsPreviousVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"jacsOriginalVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"\n}","breadcrumbs":"Key Rotation » Version Format","id":"987","title":"Version Format"},"988":{"body":"Each version forms a linked chain back to the original: Original (v1) <-- Previous (v2) <-- Current (v3) | | | key-A key-B key-C This chain provides an audit trail of all key changes and allows verification of any version.","breadcrumbs":"Key Rotation » Version Chain","id":"988","title":"Version Chain"},"989":{"body":"The critical insight enabling key rotation is that signatures contain both the agent ID and the version that created them.","breadcrumbs":"Key Rotation » Version-Aware Verification","id":"989","title":"Version-Aware Verification"},"99":{"body":"This guide covers installing the JACS Rust CLI and library.","breadcrumbs":"Installation » Installation","id":"99","title":"Installation"},"990":{"body":"{ \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"publicKeyHash\": \"sha256-of-public-key-A\", \"signingAlgorithm\": \"ring-Ed25519\", \"signature\": \"base64-encoded-signature\", \"date\": \"2024-01-15T10:00:00Z\" }\n}","breadcrumbs":"Key Rotation » Signature Structure","id":"990","title":"Signature Structure"},"991":{"body":"When verifying a signature: Extract agentVersion and publicKeyHash from the signature Look up the public key that was active for that version Verify the signature using that historical key // Pseudocode for version-aware verification\nfn verify_signature(doc: &Document) -> Result<()> { let sig = &doc.jacs_signature; // Find the key that was active for this version let public_key = resolve_key_for_version( &sig.agent_id, &sig.agent_version, &sig.public_key_hash, )?; // Verify with the historical key verify_with_key(&doc, &sig, &public_key)\n}","breadcrumbs":"Key Rotation » Key Resolution Process","id":"991","title":"Key Resolution Process"},"992":{"body":"The verification system tries multiple sources: Local cache by hash - Fastest, key already stored locally Trust store by version - Most accurate for known agents Trust store by hash - Fallback for legacy entries DNS lookup - External verification, authoritative Fail - Key not found, verification impossible","breadcrumbs":"Key Rotation » Key Lookup Priority","id":"992","title":"Key Lookup Priority"},"993":{"body":"","breadcrumbs":"Key Rotation » Key Rotation Process","id":"993","title":"Key Rotation Process"},"994":{"body":"Generate new key pair with the desired algorithm Create new agent version with updated key information Sign new version with old key (transition signature) Update DNS records to include new key fingerprint Store old public key for future verifications","breadcrumbs":"Key Rotation » Step-by-Step Rotation","id":"994","title":"Step-by-Step Rotation"},"995":{"body":"The transition signature proves the key rotation was authorized by the holder of the old key: JACS_KEY_ROTATION:{agent_id}:{old_key_hash}:{new_key_hash}:{timestamp} This signed message: Proves continuity of ownership Provides an audit trail Binds old and new keys together cryptographically","breadcrumbs":"Key Rotation » Transition Signature","id":"995","title":"Transition Signature"},"996":{"body":"Note : These CLI commands are planned for a future release. Currently, key rotation must be performed programmatically using the Rust API. # Rotate keys with default algorithm (Coming Soon)\njacs agent rotate-keys # Rotate to post-quantum algorithm (Coming Soon)\njacs agent rotate-keys --algorithm pq2025 # List key history (Coming Soon)\njacs agent keys list # Revoke a compromised key (Coming Soon)\njacs agent keys revoke ","breadcrumbs":"Key Rotation » CLI Commands (Planned)","id":"996","title":"CLI Commands (Planned)"},"997":{"body":"Time T0: Agent created - jacsId: \"abc-123\" - jacsVersion: \"v1-uuid\" - jacsCurrentKeyHash: \"hash-A\" Time T1: Agent signs document D1 - D1.jacsSignature.agentVersion: \"v1-uuid\" - D1.jacsSignature.publicKeyHash: \"hash-A\" Time T2: Key rotation - New keys generated with hash-B - jacsVersion: \"v2-uuid\" - jacsKeyHistory: [{ hash: \"hash-A\", status: \"rotated\" }] - jacsCurrentKeyHash: \"hash-B\" Time T3: Verify D1 - Extract agentVersion \"v1-uuid\" and hash \"hash-A\" - Look up key: find \"hash-A\" with status \"rotated\" - Verification succeeds (old key still valid for old docs) Time T4: Agent signs document D2 - D2.jacsSignature.agentVersion: \"v2-uuid\" - D2.jacsSignature.publicKeyHash: \"hash-B\"","breadcrumbs":"Key Rotation » Example Rotation Flow","id":"997","title":"Example Rotation Flow"},"998":{"body":"The trust store maintains a history of all public keys for each trusted agent.","breadcrumbs":"Key Rotation » Trust Store with Version History","id":"998","title":"Trust Store with Version History"},"999":{"body":"{ \"agent_id\": \"550e8400-e29b-41d4-a716-446655440000\", \"name\": \"Example Agent\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"current_key_hash\": \"abc123...\", \"domain\": \"agent.example.com\", \"key_history\": [ { \"public_key_hash\": \"xyz789...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-01T00:00:00Z\", \"first_version\": \"11111111-1111-1111-1111-111111111111\", \"last_version\": \"22222222-2222-2222-2222-222222222222\", \"status\": \"rotated\" }, { \"public_key_hash\": \"abc123...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"first_version\": \"33333333-3333-3333-3333-333333333333\", \"last_version\": null, \"status\": \"active\" } ]\n}","breadcrumbs":"Key Rotation » TrustedAgent Structure","id":"999","title":"TrustedAgent Structure"}},"length":1532,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"3":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1441":{"tf":1.0}}},"5":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":1,"docs":{"1441":{"tf":1.0}}},"1":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":5,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1437":{"tf":1.0},"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.0}}},"2":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":8,"docs":{"1112":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":2,"docs":{"157":{"tf":1.0},"761":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1003":{"tf":1.0},"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"298":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"654":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"859":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"779":{"tf":1.0}}}},"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":6,"docs":{"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}},"3":{"df":3,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"859":{"tf":1.4142135623730951}}},"6":{"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1432":{"tf":1.0},"728":{"tf":1.0}}},"df":27,"docs":{"1084":{"tf":1.4142135623730951},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1129":{"tf":1.0},"1307":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1362":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"382":{"tf":1.0},"588":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"897":{"tf":1.0},"901":{"tf":1.0},"933":{"tf":1.0},"977":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"779":{"tf":1.0}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":9,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":15,"docs":{"1134":{"tf":1.0},"1179":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.0},"1401":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"845":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1441":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0}}},"3":{"df":2,"docs":{"1015":{"tf":1.4142135623730951},"1030":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1329":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":2,"docs":{"1169":{"tf":1.0},"1403":{"tf":1.4142135623730951}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}},"1":{"df":1,"docs":{"767":{"tf":1.0}}},"df":5,"docs":{"1116":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"198":{"tf":1.0},"501":{"tf":1.0}}},"df":16,"docs":{"1048":{"tf":1.0},"1390":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"501":{"tf":1.4142135623730951},"519":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"812":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"k":{"df":1,"docs":{"1253":{"tf":1.0}}}},"df":15,"docs":{"1071":{"tf":1.0},"1079":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1441":{"tf":1.7320508075688772},"308":{"tf":1.0},"315":{"tf":1.0},"443":{"tf":1.0},"68":{"tf":1.0},"916":{"tf":1.0}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1024":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"196":{"tf":1.0},"365":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"599":{"tf":1.0},"654":{"tf":1.0},"761":{"tf":1.0},"881":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0}}},"d":{"3":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1079":{"tf":1.0},"1215":{"tf":1.0},"916":{"tf":1.0}}},"4":{"df":1,"docs":{"1087":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0}}},"df":3,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0}}},"df":5,"docs":{"1003":{"tf":1.0},"1336":{"tf":1.0},"298":{"tf":1.0},"501":{"tf":1.4142135623730951},"859":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":15,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.0},"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"783":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"785":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"767":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"351":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"1071":{"tf":1.0}}},"8":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":76,"docs":{"1048":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1072":{"tf":1.0},"1079":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.0},"1168":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1202":{"tf":1.0},"1242":{"tf":1.0},"1248":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":2.23606797749979},"1302":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1312":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1392":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1512":{"tf":1.0},"1522":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"303":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"700":{"tf":1.0},"742":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"814":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"962":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0}}},"5":{"df":3,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"1149":{"tf":1.0},"1271":{"tf":1.0},"1379":{"tf":1.0},"458":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"1071":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":37,"docs":{"100":{"tf":1.0},"1045":{"tf":1.0},"115":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1403":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"176":{"tf":1.0},"180":{"tf":2.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":4,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1048":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.0}}},"df":2,"docs":{"443":{"tf":1.0},"53":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{"c":{"d":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"d":{"3":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1003":{"tf":1.0},"1015":{"tf":1.0},"1024":{"tf":1.0},"1046":{"tf":1.0},"1228":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.4142135623730951},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1346":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":62,"docs":{"1048":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1203":{"tf":1.0},"1242":{"tf":1.0},"1248":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"1437":{"tf":1.0},"144":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"357":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"591":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"762":{"tf":1.0},"785":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"881":{"tf":1.0},"914":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.0},"963":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0}}},"3":{".":{"1":{"0":{"df":2,"docs":{"549":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":8,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.0},"458":{"tf":1.0}}},"df":5,"docs":{"1079":{"tf":1.0},"1399":{"tf":1.0},"1445":{"tf":1.0},"310":{"tf":1.0},"902":{"tf":1.0}}},"1":{"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}},"2":{"df":2,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.4142135623730951}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"6":{"0":{"0":{"df":9,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"1307":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"1030":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1204":{"tf":1.0},"1248":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.4142135623730951},"581":{"tf":1.0},"700":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.0},"824":{"tf":1.0},"86":{"tf":1.0},"881":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1268":{"tf":1.0},"1271":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0}}},"4":{"df":1,"docs":{"465":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"987":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"1226":{"tf":1.0}}}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1273":{"tf":1.0},"1274":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"493":{"tf":1.0},"849":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"1":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"2":{"df":2,"docs":{"767":{"tf":1.0},"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}},"df":21,"docs":{"1171":{"tf":1.0},"1185":{"tf":1.0},"1205":{"tf":1.0},"1248":{"tf":1.0},"1287":{"tf":1.0},"1301":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"581":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":8,"docs":{"1305":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"625":{"tf":1.0}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":4,"docs":{"365":{"tf":1.0},"498":{"tf":1.0},"599":{"tf":1.0},"810":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":23,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.7320508075688772},"883":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"157":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"1185":{"tf":1.0},"1186":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"581":{"tf":1.0},"826":{"tf":1.0},"916":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1505":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1105":{"tf":1.0},"1528":{"tf":1.0},"250":{"tf":1.0},"352":{"tf":1.0},"584":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}},"k":{"df":1,"docs":{"911":{"tf":1.0}}}},"df":6,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.0},"255":{"tf":1.0},"501":{"tf":1.0},"900":{"tf":1.0}}},"4":{"df":3,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0}}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"7":{"0":{"0":{"df":5,"docs":{"1105":{"tf":1.0},"682":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"5":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"8":{"'":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"9":{"df":0,"docs":{},"f":{"b":{"9":{"d":{"8":{"8":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"1270":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1522":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1507":{"tf":1.0},"933":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1119":{"tf":1.0}}},"6":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1001":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1161":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1247":{"tf":1.0},"944":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1250":{"tf":1.0},"1251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1003":{"tf":1.4142135623730951},"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1333":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"374":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":3,"docs":{"1247":{"tf":1.0},"1248":{"tf":1.0},"31":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"1211":{"tf":1.4142135623730951},"1212":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1214":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1227":{"tf":1.0},"1234":{"tf":1.0},"1244":{"tf":1.0}}},"df":1,"docs":{"1145":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{"df":3,"docs":{"53":{"tf":1.0},"791":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"881":{"tf":1.7320508075688772},"925":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"981":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"937":{"tf":1.0},"977":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1102":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1149":{"tf":1.0},"1214":{"tf":1.0},"1290":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.4142135623730951},"823":{"tf":1.0},"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1490":{"tf":1.0}}}}}},"df":30,"docs":{"1061":{"tf":1.0},"1066":{"tf":1.0},"1092":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1174":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1477":{"tf":1.0},"1528":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.0},"352":{"tf":1.0},"423":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"584":{"tf":1.0},"610":{"tf":1.0},"656":{"tf":1.0},"92":{"tf":1.0},"942":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"810":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1070":{"tf":1.0},"1194":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":3,"docs":{"1154":{"tf":1.0},"151":{"tf":1.0},"992":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"766":{"tf":1.0}}}}}},"m":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"767":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":34,"docs":{"1071":{"tf":1.0},"1149":{"tf":1.0},"1158":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.0},"1403":{"tf":2.449489742783178},"1485":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"21":{"tf":1.0},"237":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.4142135623730951},"599":{"tf":1.0},"617":{"tf":1.0},"733":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"868":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1004":{"tf":1.0},"1012":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1476":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.0},"991":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1148":{"tf":1.0},"1194":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"789":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"d":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":47,"docs":{"106":{"tf":1.0},"1109":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1165":{"tf":1.0},"1180":{"tf":1.0},"1186":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1420":{"tf":1.0},"1480":{"tf":1.0},"1510":{"tf":1.0},"1526":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"473":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"553":{"tf":1.0},"580":{"tf":1.4142135623730951},"589":{"tf":1.0},"640":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"823":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0},"938":{"tf":1.0},"976":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1051":{"tf":1.0},"1083":{"tf":1.0},"1249":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1420":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"523":{"tf":1.0},"687":{"tf":1.0},"700":{"tf":1.0},"719":{"tf":1.0},"786":{"tf":1.0},"908":{"tf":1.0},"939":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0},"760":{"tf":2.23606797749979},"762":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"443":{"tf":1.0}}}}}}}}},"df":14,"docs":{"1166":{"tf":1.0},"1175":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"173":{"tf":1.0},"258":{"tf":1.0},"423":{"tf":1.0},"524":{"tf":1.0},"701":{"tf":1.0},"797":{"tf":1.0},"874":{"tf":1.0},"950":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1209":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"847":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"1118":{"tf":1.0},"320":{"tf":1.0},"4":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.0},"1069":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1002":{"tf":1.0},"1007":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}},"s":{"2":{"5":{"6":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1450":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1477":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1032":{"tf":1.0},"1254":{"tf":1.0},"1333":{"tf":1.0},"1427":{"tf":1.0},"178":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"918":{"tf":1.0},"934":{"tf":1.0},"944":{"tf":1.0},"973":{"tf":1.0}}}}}}},"df":2,"docs":{"1507":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":51,"docs":{"1006":{"tf":1.0},"1177":{"tf":1.0},"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1245":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"1423":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"454":{"tf":1.0},"518":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"695":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.4142135623730951},"850":{"tf":1.0},"86":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"981":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"616":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"382":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"642":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1385":{"tf":1.0},"654":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1363":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1362":{"tf":1.0},"420":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":4,"docs":{"1384":{"tf":1.0},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1088":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"581":{"tf":1.0},"696":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"921":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"587":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"653":{"tf":1.0},"723":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"558":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"846":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":2,"docs":{"269":{"tf":1.0},"288":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1361":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"523":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":14,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"545":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0},"419":{"tf":1.0},"519":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"794":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1517":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.7320508075688772},"143":{"tf":1.0},"241":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"347":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1213":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"1515":{"tf":1.0},"201":{"tf":1.0},"242":{"tf":2.23606797749979},"410":{"tf":1.0},"531":{"tf":1.0},"644":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1356":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1518":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.0},"738":{"tf":1.4142135623730951},"75":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"794":{"tf":1.4142135623730951},"822":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1148":{"tf":1.0},"1149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1047":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1140":{"tf":1.0},"1394":{"tf":1.4142135623730951},"681":{"tf":1.0},"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1140":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1399":{"tf":1.0},"518":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1302":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":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":{"545":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"641":{"tf":1.0},"701":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"648":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"558":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1021":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"637":{"tf":1.0},"703":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"412":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":3,"docs":{"407":{"tf":1.0},"524":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1362":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1148":{"tf":1.0},"1405":{"tf":1.0},"414":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"526":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1047":{"tf":1.0},"645":{"tf":1.0},"709":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"657":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"411":{"tf":1.0},"532":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1353":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"522":{"tf":1.0},"545":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"795":{"tf":1.0},"922":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"1375":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0}}}}}},"df":1,"docs":{"725":{"tf":1.0}},"u":{"df":1,"docs":{"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"558":{"tf":1.0},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"576":{"tf":1.0},"587":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"631":{"tf":1.0},"697":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"654":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"957":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"632":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"698":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"545":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1401":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"795":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1352":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":1,"docs":{"1401":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"419":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1369":{"tf":1.0},"349":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"520":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"420":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1356":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"527":{"tf":1.0},"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"142":{"tf":1.0},"1484":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"406":{"tf":1.0},"640":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1329":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"217":{"tf":1.0},"406":{"tf":1.0},"640":{"tf":1.0}}},":":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"1204":{"tf":1.0}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1332":{"tf":1.0},"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"606":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"=":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"287":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"769":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"604":{"tf":1.0},"606":{"tf":1.0},"616":{"tf":1.0},"769":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"708":{"tf":1.0}}}}},"i":{"d":{"df":14,"docs":{"1081":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1384":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"700":{"tf":1.4142135623730951},"949":{"tf":1.0},"957":{"tf":1.0},"999":{"tf":1.0}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"264":{"tf":1.0},"695":{"tf":1.0},"769":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"770":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.4142135623730951}},"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":1,"docs":{"382":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"76":{"tf":1.0},"770":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"76":{"tf":1.0},"770":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":566,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.0},"10":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1004":{"tf":1.0},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"1112":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.23606797749979},"1143":{"tf":1.4142135623730951},"1145":{"tf":2.449489742783178},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1166":{"tf":1.0},"117":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1175":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1194":{"tf":2.23606797749979},"1196":{"tf":1.0},"120":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1206":{"tf":2.6457513110645907},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.0},"1216":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.7320508075688772},"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1242":{"tf":1.7320508075688772},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1247":{"tf":2.6457513110645907},"1248":{"tf":2.6457513110645907},"1249":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1263":{"tf":1.0},"127":{"tf":2.449489742783178},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1277":{"tf":2.0},"128":{"tf":3.3166247903554},"129":{"tf":2.8284271247461903},"13":{"tf":1.4142135623730951},"130":{"tf":2.0},"1302":{"tf":1.0},"1318":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"1320":{"tf":1.0},"1321":{"tf":2.23606797749979},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1332":{"tf":2.8284271247461903},"1333":{"tf":3.3166247903554},"1334":{"tf":2.6457513110645907},"134":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"1390":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"1399":{"tf":3.4641016151377544},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":2.0},"1417":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"143":{"tf":2.0},"1430":{"tf":1.0},"1432":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"1460":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"147":{"tf":1.7320508075688772},"1476":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"1499":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":2.449489742783178},"1515":{"tf":1.7320508075688772},"1518":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"1530":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"172":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"223":{"tf":1.4142135623730951},"226":{"tf":2.6457513110645907},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"242":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"261":{"tf":2.6457513110645907},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.449489742783178},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":2.23606797749979},"327":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":2.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"35":{"tf":2.23606797749979},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":2.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":2.0},"436":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"478":{"tf":1.7320508075688772},"48":{"tf":1.0},"487":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"52":{"tf":1.0},"523":{"tf":2.23606797749979},"524":{"tf":1.0},"525":{"tf":1.0},"53":{"tf":3.0},"530":{"tf":1.7320508075688772},"531":{"tf":2.23606797749979},"532":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"54":{"tf":2.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":2.23606797749979},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"590":{"tf":1.0},"592":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.4142135623730951},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":2.449489742783178},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":2.6457513110645907},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.7320508075688772},"623":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.4142135623730951},"645":{"tf":2.0},"646":{"tf":1.0},"649":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"672":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.4142135623730951},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"700":{"tf":2.23606797749979},"701":{"tf":1.0},"702":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":2.23606797749979},"709":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":2.8284271247461903},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":2.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":2.23606797749979},"749":{"tf":2.0},"75":{"tf":1.4142135623730951},"751":{"tf":1.7320508075688772},"752":{"tf":1.7320508075688772},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.7320508075688772},"758":{"tf":1.4142135623730951},"76":{"tf":2.0},"761":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"769":{"tf":1.7320508075688772},"770":{"tf":1.0},"771":{"tf":2.0},"772":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":2.0},"79":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.1622776601683795},"82":{"tf":2.8284271247461903},"822":{"tf":1.0},"823":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":2.449489742783178},"831":{"tf":1.7320508075688772},"832":{"tf":1.4142135623730951},"833":{"tf":2.449489742783178},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.7320508075688772},"838":{"tf":1.0},"84":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.4142135623730951},"847":{"tf":2.6457513110645907},"848":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.4142135623730951},"863":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"879":{"tf":1.4142135623730951},"88":{"tf":4.47213595499958},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"896":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.4142135623730951},"913":{"tf":2.0},"915":{"tf":1.0},"92":{"tf":1.7320508075688772},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"953":{"tf":2.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.7320508075688772},"970":{"tf":1.0},"976":{"tf":2.449489742783178},"978":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"989":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":2.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}},"i":{"d":{"df":40,"docs":{"1045":{"tf":1.0},"1130":{"tf":1.0},"1186":{"tf":1.0},"1196":{"tf":1.0},"1226":{"tf":1.0},"1242":{"tf":1.0},"1245":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1361":{"tf":1.4142135623730951},"138":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1486":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"523":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"791":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.449489742783178},"913":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.4142135623730951},"990":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{":":{"'":{")":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"611":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"518":{"tf":1.0},"770":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0},"1399":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"615":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"990":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.0},"984":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"1143":{"tf":1.0},"1242":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"883":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1486":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1328":{"tf":2.0},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.0},"219":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":115,"docs":{"1":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1143":{"tf":2.449489742783178},"1144":{"tf":2.0},"1145":{"tf":1.7320508075688772},"118":{"tf":1.0},"1194":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1328":{"tf":2.6457513110645907},"1329":{"tf":3.605551275463989},"1330":{"tf":3.3166247903554},"1360":{"tf":1.0},"1361":{"tf":2.23606797749979},"1362":{"tf":2.0},"1363":{"tf":1.0},"138":{"tf":2.8284271247461903},"1383":{"tf":1.0},"1384":{"tf":2.23606797749979},"1385":{"tf":2.0},"1386":{"tf":1.0},"1398":{"tf":1.0},"1399":{"tf":2.0},"142":{"tf":2.6457513110645907},"1423":{"tf":3.1622776601683795},"145":{"tf":1.4142135623730951},"1483":{"tf":1.0},"1484":{"tf":2.23606797749979},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1487":{"tf":1.7320508075688772},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"256":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"420":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"523":{"tf":2.449489742783178},"524":{"tf":1.7320508075688772},"525":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"654":{"tf":1.7320508075688772},"700":{"tf":2.449489742783178},"701":{"tf":1.7320508075688772},"702":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":2.0},"786":{"tf":1.0},"799":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"852":{"tf":1.0},"858":{"tf":1.4142135623730951},"875":{"tf":1.0},"88":{"tf":3.872983346207417},"886":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"980":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"548":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1226":{"tf":1.0},"13":{"tf":1.0},"1332":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":2.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.4142135623730951},"663":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"938":{"tf":1.0},"976":{"tf":1.0}},"r":{"df":2,"docs":{"1060":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"1003":{"tf":1.0},"1250":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"1472":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":79,"docs":{"1010":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1028":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1038":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1044":{"tf":1.0},"1045":{"tf":1.0},"1047":{"tf":2.0},"1048":{"tf":1.0},"1050":{"tf":2.23606797749979},"1053":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1227":{"tf":1.0},"1230":{"tf":1.0},"1245":{"tf":1.0},"1254":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":2.449489742783178},"1472":{"tf":2.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":2.0},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"334":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"375":{"tf":1.0},"404":{"tf":1.0},"418":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"608":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":1.0},"980":{"tf":1.4142135623730951},"984":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.7320508075688772}}}}}}}}},"i":{"a":{"df":1,"docs":{"1343":{"tf":2.0}}},"c":{"df":1,"docs":{"1305":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"w":{"df":19,"docs":{"1054":{"tf":1.0},"1071":{"tf":1.0},"1108":{"tf":1.0},"1209":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"446":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"934":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"978":{"tf":1.4142135623730951},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1447":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1485":{"tf":2.0},"43":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}},"n":{"df":3,"docs":{"112":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1085":{"tf":1.0},"1151":{"tf":1.0},"1163":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1455":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"477":{"tf":1.0},"509":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"951":{"tf":1.0},"964":{"tf":1.0},"970":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1451":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"1111":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"1480":{"tf":1.0},"198":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.0},"519":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"182":{"tf":1.0},"35":{"tf":1.7320508075688772},"49":{"tf":1.0},"581":{"tf":1.0},"765":{"tf":1.0}}},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.0}}},"z":{"df":7,"docs":{"1256":{"tf":1.0},"156":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"241":{"tf":1.0},"412":{"tf":1.0},"531":{"tf":1.4142135623730951},"533":{"tf":1.0},"646":{"tf":1.0},"708":{"tf":1.4142135623730951},"710":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1194":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"528":{"tf":1.0},"705":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"414":{"tf":1.0},"648":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":65,"docs":{"1042":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1172":{"tf":2.0},"1179":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1276":{"tf":1.0},"1290":{"tf":1.0},"1355":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":2.23606797749979},"1402":{"tf":2.23606797749979},"1437":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1525":{"tf":1.0},"1526":{"tf":1.0},"257":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"428":{"tf":1.0},"452":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"486":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"594":{"tf":1.0},"602":{"tf":1.0},"617":{"tf":1.0},"619":{"tf":1.4142135623730951},"65":{"tf":1.0},"662":{"tf":1.4142135623730951},"685":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"748":{"tf":1.0},"810":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0},"91":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1276":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1276":{"tf":1.0},"486":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"434":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1149":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1355":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"1267":{"tf":1.0},"1526":{"tf":1.0},"483":{"tf":1.0},"493":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":4,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"507":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":5,"docs":{"1148":{"tf":1.0},"1355":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1281":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1526":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1526":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":2.0},"1287":{"tf":1.4142135623730951},"1288":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"479":{"tf":2.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"509":{"tf":2.0},"510":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":33,"docs":{"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"348":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"186":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1082":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1279":{"tf":1.0},"1358":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"186":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"1032":{"tf":1.0},"1086":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"257":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"548":{"tf":1.0},"576":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}},"df":11,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1482":{"tf":1.0},"192":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"501":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"1042":{"tf":1.0},"1137":{"tf":1.0},"1295":{"tf":1.0},"21":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1116":{"tf":1.0},"1194":{"tf":1.0},"204":{"tf":1.0}}}}},"v":{"df":12,"docs":{"11":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"288":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"617":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"115":{"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":10,"docs":{"365":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"599":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"287":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"109":{"tf":1.0},"1176":{"tf":1.0},"1210":{"tf":1.0},"1294":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"549":{"tf":1.0},"729":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"866":{"tf":1.0},"873":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1186":{"tf":1.0},"1345":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"676":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"956":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"886":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":1,"docs":{"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"s":{"3":{":":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1071":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1130":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"742":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"790":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1197":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1237":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"575":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1151":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1217":{"tf":1.0},"1392":{"tf":2.6457513110645907},"684":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"420":{"tf":1.0},"654":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"808":{"tf":1.0},"816":{"tf":1.7320508075688772},"823":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1336":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":59,"docs":{"1148":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1301":{"tf":2.23606797749979},"1305":{"tf":2.23606797749979},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.23606797749979},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1378":{"tf":2.23606797749979},"1382":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.6457513110645907},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0},"383":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"1148":{"tf":1.0},"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":47,"docs":{"1059":{"tf":1.0},"1067":{"tf":1.0},"1323":{"tf":2.8284271247461903},"134":{"tf":2.449489742783178},"135":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.449489742783178},"1421":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":2.449489742783178},"1432":{"tf":1.0},"1433":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.449489742783178},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"206":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"371":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":2.23606797749979},"522":{"tf":2.0},"605":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"65":{"tf":1.0},"696":{"tf":2.0},"699":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1326":{"tf":1.0},"194":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"395":{"tf":1.0},"629":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":8,"docs":{"1032":{"tf":1.0},"1254":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.4142135623730951},"973":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"440":{"tf":1.0},"946":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1194":{"tf":1.0},"1208":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0},"62":{"tf":1.0},"901":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":32,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1403":{"tf":2.6457513110645907},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"423":{"tf":1.0},"502":{"tf":1.0},"60":{"tf":1.0},"603":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"845":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.7320508075688772},"942":{"tf":1.0},"951":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"969":{"tf":2.0},"988":{"tf":1.0},"995":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":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":{"1403":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":35,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1206":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1442":{"tf":2.23606797749979},"1455":{"tf":1.0},"147":{"tf":1.0},"1474":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"503":{"tf":2.0},"6":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.7320508075688772},"669":{"tf":1.0},"679":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"816":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"944":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1194":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1486":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"783":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"899":{"tf":1.0},"995":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1109":{"tf":1.0}}}}}}}}},"df":1,"docs":{"181":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1295":{"tf":1.0},"1432":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.0},"495":{"tf":1.0},"73":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0}}}},"df":3,"docs":{"255":{"tf":1.0},"765":{"tf":1.0},"916":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":20,"docs":{"1055":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1087":{"tf":1.0},"1089":{"tf":1.0},"1092":{"tf":1.0},"1220":{"tf":1.0},"1451":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.4142135623730951},"381":{"tf":1.0},"427":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"847":{"tf":1.0},"916":{"tf":1.0}}}}},"df":1,"docs":{"1097":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1287":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":71,"docs":{"1148":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":2.449489742783178},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.3166247903554},"1305":{"tf":2.6457513110645907},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.6457513110645907},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1359":{"tf":2.23606797749979},"1361":{"tf":1.7320508075688772},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":2.23606797749979},"1369":{"tf":2.449489742783178},"1378":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1399":{"tf":3.7416573867739413},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.3166247903554},"1405":{"tf":2.23606797749979},"1515":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"458":{"tf":2.0},"459":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":2.6457513110645907},"477":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}},"r":{"df":3,"docs":{"981":{"tf":1.0},"989":{"tf":1.0},"991":{"tf":1.0}}}},"df":23,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.4142135623730951},"1065":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":2.449489742783178},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1512":{"tf":2.0},"1513":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":2.23606797749979},"255":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0},"893":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1066":{"tf":1.0},"1454":{"tf":1.0},"1512":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}}}}}},"s":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1452":{"tf":1.0},"1454":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.0},"64":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"1197":{"tf":1.0},"1422":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0},"805":{"tf":1.0},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"1054":{"tf":1.4142135623730951},"1055":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1057":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.449489742783178},"1489":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1511":{"tf":1.0},"1528":{"tf":1.0},"1531":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"536":{"tf":1.0},"564":{"tf":1.0},"722":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"901":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1011":{"tf":1.0},"1061":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1510":{"tf":1.0},"1520":{"tf":1.0},"171":{"tf":1.4142135623730951},"974":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1503":{"tf":1.0},"711":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1312":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1119":{"tf":1.0}}}}}},"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"760":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":30,"docs":{"1021":{"tf":1.0},"1045":{"tf":1.0},"1091":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"129":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"404":{"tf":1.0},"45":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"53":{"tf":1.4142135623730951},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":47,"docs":{"1013":{"tf":1.0},"1015":{"tf":1.0},"1029":{"tf":1.0},"1077":{"tf":1.0},"110":{"tf":1.0},"1108":{"tf":1.0},"1119":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1192":{"tf":1.0},"1196":{"tf":1.0},"1249":{"tf":1.0},"1261":{"tf":1.0},"1333":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"1482":{"tf":1.0},"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"244":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"607":{"tf":1.0},"615":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"739":{"tf":1.0},"751":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"925":{"tf":1.0},"943":{"tf":1.0},"960":{"tf":1.0},"980":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":46,"docs":{"107":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.0},"1324":{"tf":1.0},"1334":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"1381":{"tf":1.0},"1425":{"tf":1.0},"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"188":{"tf":1.0},"216":{"tf":1.0},"327":{"tf":1.0},"334":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"519":{"tf":1.0},"547":{"tf":1.0},"555":{"tf":1.0},"576":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"75":{"tf":1.0},"758":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":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":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1315":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1390":{"tf":1.7320508075688772},"206":{"tf":1.0},"237":{"tf":1.0},"311":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1033":{"tf":1.0}}}}}},"df":30,"docs":{"1145":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1206":{"tf":1.0},"1247":{"tf":1.7320508075688772},"1248":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1355":{"tf":2.6457513110645907},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.0},"1361":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1384":{"tf":1.0},"226":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"426":{"tf":2.0},"427":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.0},"883":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"899":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"173":{"tf":1.0},"21":{"tf":1.0},"439":{"tf":1.0},"54":{"tf":1.0}}}}},"df":1,"docs":{"804":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":36,"docs":{"1140":{"tf":1.0},"1161":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1292":{"tf":1.0},"1310":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.4142135623730951},"249":{"tf":1.0},"30":{"tf":1.0},"361":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"595":{"tf":1.0},"673":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"1310":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"856":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"804":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1215":{"tf":1.0},"1453":{"tf":1.0},"243":{"tf":1.0},"928":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1077":{"tf":1.0},"1295":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"831":{"tf":1.0},"863":{"tf":1.0}}}},"w":{"df":4,"docs":{"1295":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"1042":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1161":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1009":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1191":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1297":{"tf":1.0},"1311":{"tf":1.0},"1452":{"tf":2.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"433":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1306":{"tf":1.0},"250":{"tf":1.4142135623730951},"725":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1173":{"tf":1.0},"1417":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1502":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.4142135623730951},"934":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1083":{"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":1,"docs":{"1182":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1330":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1346":{"tf":1.0},"255":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"108":{"tf":1.0},"353":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"d":{"df":19,"docs":{"1194":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"321":{"tf":1.0},"327":{"tf":1.0},"54":{"tf":1.0},"548":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"753":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"978":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1305":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"879":{"tf":1.0},"883":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"1375":{"tf":1.0},"1404":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":23,"docs":{"1129":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"788":{"tf":1.0},"811":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1222":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"h":{"df":22,"docs":{"1007":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1036":{"tf":1.0},"1135":{"tf":1.0},"1145":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.4142135623730951},"125":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"15":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"451":{"tf":1.0},"530":{"tf":1.0},"707":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"88":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":12,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1154":{"tf":1.0},"779":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1080":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"473":{"tf":2.0},"818":{"tf":1.0},"940":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1035":{"tf":1.0},"35":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"837":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"1451":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1512":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1067":{"tf":1.4142135623730951},"1071":{"tf":1.4142135623730951},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"381":{"tf":1.0},"404":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"19":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":24,"docs":{"1":{"tf":1.0},"1078":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1296":{"tf":1.0},"1305":{"tf":1.0},"1409":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"453":{"tf":1.0},"481":{"tf":1.0},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"70":{"tf":1.0},"758":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":20,"docs":{"1069":{"tf":1.0},"1075":{"tf":1.0},"1136":{"tf":1.0},"1207":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"304":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.0},"587":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"1015":{"tf":1.7320508075688772},"1018":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1024":{"tf":1.0},"1080":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"277":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1101":{"tf":1.0},"1103":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"585":{"tf":1.0},"871":{"tf":1.0},"950":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"761":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1403":{"tf":1.0},"31":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":1,"docs":{"1379":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"474":{"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":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"1148":{"tf":1.0},"1174":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"361":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"517":{"tf":1.0},"595":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"694":{"tf":1.0},"726":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}}},"df":1,"docs":{"1356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"911":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"58":{"tf":1.0},"911":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"1083":{"tf":1.0},"1194":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1418":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}}}}}},"df":4,"docs":{"1213":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1244":{"tf":1.0},"760":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1106":{"tf":1.0},"249":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"258":{"tf":1.0},"292":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1154":{"tf":3.0},"1165":{"tf":2.449489742783178},"1296":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"911":{"tf":1.0},"969":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":25,"docs":{"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1108":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1295":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"1451":{"tf":1.0},"182":{"tf":1.0},"473":{"tf":2.0},"925":{"tf":1.0},"93":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":8,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"1339":{"tf":1.0},"1480":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"739":{"tf":1.4142135623730951},"792":{"tf":1.0},"836":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":3,"docs":{"51":{"tf":1.0},"730":{"tf":1.0},"792":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":31,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"104":{"tf":1.0},"1320":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":4,"docs":{"1095":{"tf":1.0},"552":{"tf":1.0},"586":{"tf":1.7320508075688772},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"261":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"930":{"tf":1.4142135623730951},"939":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"34":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"929":{"tf":2.0},"939":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1403":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1194":{"tf":1.0},"1212":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.0},"61":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"929":{"tf":1.0},"972":{"tf":1.0},"988":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"1011":{"tf":1.0},"1219":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1456":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1509":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"664":{"tf":1.0},"780":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"940":{"tf":1.0},"942":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1174":{"tf":1.0},"59":{"tf":1.0},"951":{"tf":1.0},"973":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1137":{"tf":1.0},"1221":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.0},"620":{"tf":1.0},"763":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1021":{"tf":1.0},"82":{"tf":1.4142135623730951},"925":{"tf":2.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1250":{"tf":1.0}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"1144":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":76,"docs":{"1109":{"tf":1.0},"1166":{"tf":1.0},"1200":{"tf":1.0},"1208":{"tf":1.0},"1260":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"142":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1494":{"tf":1.0},"1498":{"tf":1.0},"1528":{"tf":1.7320508075688772},"188":{"tf":1.0},"205":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"408":{"tf":1.4142135623730951},"420":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"603":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"642":{"tf":1.4142135623730951},"654":{"tf":1.0},"702":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"96":{"tf":1.0},"970":{"tf":1.0},"979":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1529":{"tf":1.0},"967":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1421":{"tf":1.0},"1433":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"871":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1105":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"682":{"tf":1.0},"908":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"960":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"24":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"i":{"/":{"c":{"d":{"df":3,"docs":{"1157":{"tf":1.0},"255":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":11,"docs":{"936":{"tf":1.7320508075688772},"937":{"tf":1.4142135623730951},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":2.0},"975":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.0}}}},"p":{"df":1,"docs":{"108":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":36,"docs":{"1152":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.0},"429":{"tf":1.0},"498":{"tf":1.0},"516":{"tf":1.4142135623730951},"541":{"tf":1.0},"588":{"tf":1.0},"593":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.4142135623730951},"619":{"tf":1.0},"693":{"tf":1.4142135623730951},"711":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"969":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"960":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1018":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"751":{"tf":1.0},"757":{"tf":1.0}},"i":{"df":3,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"753":{"tf":1.0}}}}}}},"u":{"d":{"df":5,"docs":{"831":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"1168":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"312":{"tf":1.0}}}}},"r":{"df":8,"docs":{"170":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"929":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1229":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1347":{"tf":1.7320508075688772},"139":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1497":{"tf":1.0},"1501":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.7320508075688772},"359":{"tf":1.0},"4":{"tf":1.4142135623730951},"433":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"771":{"tf":1.0},"8":{"tf":1.7320508075688772},"907":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.4142135623730951},"427":{"tf":1.0},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"667":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":44,"docs":{"1149":{"tf":1.0},"1152":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1265":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1359":{"tf":2.6457513110645907},"1379":{"tf":1.0},"1382":{"tf":2.23606797749979},"1493":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"427":{"tf":2.6457513110645907},"429":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":2.6457513110645907},"447":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"667":{"tf":2.0},"670":{"tf":1.7320508075688772},"672":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":2.23606797749979},"719":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"446":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"554":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"u":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1064":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1089":{"tf":1.0},"1439":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1310":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.0}}}}},"df":33,"docs":{"1154":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1345":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.4142135623730951},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"196":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"320":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.0},"679":{"tf":1.0},"711":{"tf":1.0},"748":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.7320508075688772},"822":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}}},"df":1,"docs":{"858":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1076":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"88":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1304":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.0},"213":{"tf":1.0},"786":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"302":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1396":{"tf":1.0},"152":{"tf":1.0},"345":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"572":{"tf":1.0},"657":{"tf":1.0},"753":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"479":{"tf":1.0},"509":{"tf":1.0},"996":{"tf":2.0}}},"m":{"a":{"df":3,"docs":{"138":{"tf":1.0},"1436":{"tf":1.0},"1479":{"tf":1.0}},"n":{"d":{"df":43,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"1333":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1359":{"tf":1.0},"138":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1458":{"tf":1.0},"1501":{"tf":1.0},"1524":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"255":{"tf":1.0},"4":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"67":{"tf":1.0},"979":{"tf":1.0},"996":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":25,"docs":{"1084":{"tf":1.0},"1194":{"tf":2.0},"169":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"747":{"tf":1.0},"833":{"tf":1.0},"852":{"tf":2.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"860":{"tf":2.6457513110645907},"861":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.7320508075688772},"875":{"tf":1.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1317":{"tf":1.0},"140":{"tf":1.0},"1424":{"tf":1.0},"1428":{"tf":1.0},"1443":{"tf":1.0},"1502":{"tf":1.0},"1528":{"tf":1.0},"207":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"451":{"tf":1.0},"547":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0},"678":{"tf":1.0},"724":{"tf":1.0},"727":{"tf":1.0},"741":{"tf":1.0},"925":{"tf":1.0},"93":{"tf":1.0},"976":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1020":{"tf":1.0},"1042":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"422":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"663":{"tf":1.0},"88":{"tf":1.0},"910":{"tf":1.0},"927":{"tf":1.0},"955":{"tf":1.0},"964":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1328":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"753":{"tf":1.0}}}},"r":{"df":3,"docs":{"231":{"tf":1.0},"922":{"tf":1.0},"944":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1048":{"tf":1.0},"973":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"1023":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1292":{"tf":1.0},"1432":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1528":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"353":{"tf":1.4142135623730951},"451":{"tf":1.0},"585":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"711":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"856":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1077":{"tf":1.0},"1078":{"tf":1.0},"1087":{"tf":1.0},"1296":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":106,"docs":{"11":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1256":{"tf":1.0},"1268":{"tf":1.0},"1312":{"tf":2.0},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1347":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1370":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":2.0},"1400":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1487":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"370":{"tf":1.4142135623730951},"382":{"tf":1.0},"385":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"480":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"604":{"tf":1.4142135623730951},"616":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"820":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"83":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0},"902":{"tf":1.0},"970":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":12,"docs":{"1086":{"tf":1.0},"1089":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.0},"1297":{"tf":1.0},"17":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"593":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"1010":{"tf":1.0},"1026":{"tf":1.0},"1033":{"tf":1.0},"11":{"tf":1.0},"1166":{"tf":1.0},"1421":{"tf":1.4142135623730951},"188":{"tf":1.0},"37":{"tf":1.0},"62":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1079":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"51":{"tf":1.0},"729":{"tf":1.0},"733":{"tf":1.0},"740":{"tf":1.0},"753":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"1161":{"tf":1.0},"741":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"501":{"tf":1.0},"729":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"0":{"tf":1.0},"1173":{"tf":1.0},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"290":{"tf":1.0},"60":{"tf":1.0},"898":{"tf":1.0},"910":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.0},"1010":{"tf":1.0},"1052":{"tf":1.7320508075688772},"918":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":2.0},"996":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1036":{"tf":1.0},"1254":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"789":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"455":{"tf":1.0},"512":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"552":{"tf":1.7320508075688772},"579":{"tf":2.0},"586":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1119":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"54":{"tf":1.0},"757":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0}}}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1051":{"tf":1.0},"1129":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1047":{"tf":1.0},"139":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.4142135623730951},"661":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1140":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.7320508075688772},"595":{"tf":1.0},"611":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"112":{"tf":1.0},"1140":{"tf":2.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1419":{"tf":1.0},"142":{"tf":1.0},"1428":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1460":{"tf":1.0},"1467":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"150":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"378":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.7320508075688772},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"485":{"tf":1.0},"544":{"tf":1.0},"595":{"tf":1.0},"611":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.4142135623730951},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":2.0},"892":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":2.23606797749979},"925":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":47,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1301":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1495":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"378":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"518":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":204,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1056":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1065":{"tf":1.0},"1070":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1139":{"tf":1.0},"116":{"tf":1.0},"1168":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"120":{"tf":1.0},"1206":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1292":{"tf":1.0},"1296":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.0},"1341":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.4142135623730951},"139":{"tf":1.0},"1394":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1430":{"tf":1.0},"1434":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":2.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":2.23606797749979},"1450":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1453":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1460":{"tf":2.0},"1461":{"tf":1.7320508075688772},"1467":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1489":{"tf":1.0},"149":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"150":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.4142135623730951},"160":{"tf":1.0},"182":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"361":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"462":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"564":{"tf":1.0},"595":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"71":{"tf":1.0},"712":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"737":{"tf":1.0},"740":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"769":{"tf":1.0},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"829":{"tf":1.0},"833":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.0},"887":{"tf":1.4142135623730951},"889":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"969":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"1012":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1475":{"tf":1.0},"318":{"tf":1.0},"824":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1082":{"tf":1.0},"1287":{"tf":1.0},"1522":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1480":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1084":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1179":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":2.23606797749979},"318":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"678":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"30":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"954":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1051":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1194":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"37":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1033":{"tf":1.0},"1039":{"tf":1.0},"1049":{"tf":1.0},"1062":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1104":{"tf":1.0},"1172":{"tf":1.0},"1279":{"tf":1.0},"1455":{"tf":1.0},"247":{"tf":1.0},"320":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"942":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1109":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"874":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":3,"docs":{"1358":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"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":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.0},"327":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"419":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}}},"j":{"a":{"c":{"df":4,"docs":{"1282":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"546":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1127":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"384":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"`":{"a":{"d":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"518":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":7,"docs":{"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"408":{"tf":1.0},"420":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"525":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"418":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":3,"docs":{"1365":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":8,"docs":{"1351":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"349":{"tf":1.4142135623730951},"397":{"tf":1.0},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"327":{"tf":1.0},"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"461":{"tf":1.0},"465":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"525":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"h":{"a":{"df":1,"docs":{"535":{"tf":1.0}},"r":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1351":{"tf":1.0},"1362":{"tf":1.0},"403":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}}}},"df":3,"docs":{"391":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1362":{"tf":1.0},"1399":{"tf":1.0},"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"420":{"tf":1.7320508075688772},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"400":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"458":{"tf":1.0},"529":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"770":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"358":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1355":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}}},"t":{"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":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"376":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1218":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"1352":{"tf":2.0},"1363":{"tf":2.0},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"973":{"tf":1.0}}}}},"df":171,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1140":{"tf":2.449489742783178},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1273":{"tf":2.23606797749979},"1276":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.4641016151377544},"1304":{"tf":1.0},"1305":{"tf":3.1622776601683795},"1306":{"tf":2.6457513110645907},"1307":{"tf":2.23606797749979},"1310":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1315":{"tf":2.0},"1349":{"tf":1.0},"1351":{"tf":2.0},"1352":{"tf":2.0},"1353":{"tf":2.23606797749979},"1355":{"tf":2.449489742783178},"1356":{"tf":2.6457513110645907},"1358":{"tf":2.0},"1359":{"tf":2.6457513110645907},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":2.0},"1365":{"tf":3.7416573867739413},"1367":{"tf":1.7320508075688772},"1369":{"tf":3.7416573867739413},"1399":{"tf":4.0},"1401":{"tf":3.872983346207417},"1403":{"tf":4.898979485566356},"1405":{"tf":3.3166247903554},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1522":{"tf":3.4641016151377544},"1524":{"tf":2.23606797749979},"1526":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":2.0},"358":{"tf":2.0},"361":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":3.1622776601683795},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":2.6457513110645907},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"443":{"tf":2.449489742783178},"458":{"tf":2.449489742783178},"459":{"tf":2.23606797749979},"461":{"tf":1.7320508075688772},"463":{"tf":2.23606797749979},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":2.449489742783178},"477":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"507":{"tf":2.449489742783178},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"770":{"tf":1.7320508075688772},"772":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"9":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1121":{"tf":1.0},"51":{"tf":1.0},"746":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1152":{"tf":1.0},"1399":{"tf":1.0},"517":{"tf":1.0},"541":{"tf":1.0},"694":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"766":{"tf":1.4142135623730951}}}},"m":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1332":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"170":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"733":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.4142135623730951},"757":{"tf":1.0},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1186":{"tf":1.0},"1422":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"185":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"489":{"tf":1.0},"529":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"66":{"tf":1.0},"706":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"836":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"950":{"tf":1.7320508075688772},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"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":{"1270":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":121,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1091":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":2.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"1374":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"167":{"tf":2.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"238":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.4142135623730951},"349":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"383":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"426":{"tf":1.0},"442":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"601":{"tf":1.0},"605":{"tf":1.0},"614":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"725":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"780":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":2.0},"788":{"tf":2.0},"791":{"tf":1.7320508075688772},"792":{"tf":1.4142135623730951},"794":{"tf":2.0},"796":{"tf":2.0},"80":{"tf":1.7320508075688772},"831":{"tf":1.0},"836":{"tf":1.7320508075688772},"838":{"tf":2.0},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":3.0},"883":{"tf":1.0},"914":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"855":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":34,"docs":{"108":{"tf":1.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"228":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"700":{"tf":1.4142135623730951},"727":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":9,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"209":{"tf":1.0},"38":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"940":{"tf":1.0},"983":{"tf":1.0},"995":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1323":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"616":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"1130":{"tf":1.4142135623730951},"1143":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1330":{"tf":3.605551275463989},"1336":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.449489742783178},"1404":{"tf":1.0},"209":{"tf":2.23606797749979},"217":{"tf":1.0},"224":{"tf":1.4142135623730951},"276":{"tf":1.0},"406":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"728":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"1399":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"463":{"tf":1.0},"593":{"tf":1.0},"64":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"610":{"tf":1.0}}},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"1236":{"tf":1.0},"1256":{"tf":1.0},"47":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":2.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.0}}},"t":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1261":{"tf":1.0},"172":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"1528":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"682":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.7320508075688772},"819":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"1447":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.0},"329":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"455":{"tf":1.0},"512":{"tf":1.0},"515":{"tf":1.0},"557":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"692":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"777":{"tf":1.0},"807":{"tf":1.0},"912":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1467":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1495":{"tf":1.0},"1528":{"tf":1.4142135623730951},"248":{"tf":1.0},"451":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1142":{"tf":1.0},"1493":{"tf":1.0},"1528":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1171":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1070":{"tf":1.0},"1102":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1083":{"tf":1.0},"1505":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1155":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1154":{"tf":2.8284271247461903},"1155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1153":{"tf":1.0},"1154":{"tf":2.23606797749979},"1155":{"tf":1.7320508075688772},"1156":{"tf":2.0},"1158":{"tf":1.0}}}},"df":12,"docs":{"1137":{"tf":1.0},"1219":{"tf":1.0},"1221":{"tf":1.0},"1298":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.4142135623730951},"620":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1510":{"tf":1.0},"1520":{"tf":1.0},"1530":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"1161":{"tf":1.0},"299":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":292,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1043":{"tf":1.0},"1047":{"tf":1.0},"1052":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1094":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.0},"1112":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"1124":{"tf":1.0},"1135":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"116":{"tf":1.0},"1161":{"tf":1.0},"1165":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.7320508075688772},"120":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"124":{"tf":1.7320508075688772},"1242":{"tf":1.0},"127":{"tf":3.1622776601683795},"1278":{"tf":1.0},"1300":{"tf":2.23606797749979},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1310":{"tf":2.0},"1318":{"tf":2.0},"132":{"tf":2.0},"1320":{"tf":1.4142135623730951},"1323":{"tf":3.872983346207417},"1325":{"tf":1.7320508075688772},"1328":{"tf":2.449489742783178},"1330":{"tf":2.449489742783178},"1332":{"tf":2.8284271247461903},"1336":{"tf":1.7320508075688772},"1338":{"tf":1.0},"134":{"tf":3.1622776601683795},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1346":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":2.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":2.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.449489742783178},"1405":{"tf":1.0},"141":{"tf":1.7320508075688772},"1410":{"tf":1.0},"1419":{"tf":3.872983346207417},"142":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1425":{"tf":1.7320508075688772},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1467":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"148":{"tf":1.0},"1484":{"tf":1.4142135623730951},"1487":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":2.23606797749979},"1500":{"tf":1.4142135623730951},"151":{"tf":2.0},"1512":{"tf":1.0},"1515":{"tf":2.0},"1517":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"192":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"327":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.7320508075688772},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.7320508075688772},"587":{"tf":1.4142135623730951},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"61":{"tf":1.0},"622":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"652":{"tf":1.4142135623730951},"653":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"71":{"tf":1.4142135623730951},"719":{"tf":1.0},"72":{"tf":2.6457513110645907},"721":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":2.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"748":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.449489742783178},"771":{"tf":1.4142135623730951},"773":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"8":{"tf":2.0},"80":{"tf":2.0},"804":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":3.3166247903554},"881":{"tf":1.0},"882":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.4142135623730951},"921":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"845":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1361":{"tf":1.4142135623730951},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.0}}}}}},"df":6,"docs":{"332":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"515":{"tf":1.0},"536":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.7320508075688772}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1151":{"tf":1.0},"507":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":18,"docs":{"1179":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"431":{"tf":1.7320508075688772},"540":{"tf":1.0},"543":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":32,"docs":{"1043":{"tf":1.0},"1140":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"356":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"590":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"696":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"782":{"tf":1.0}}},"df":4,"docs":{"1390":{"tf":1.0},"28":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1072":{"tf":1.0},"1278":{"tf":1.0},"1355":{"tf":1.0},"1490":{"tf":1.4142135623730951},"339":{"tf":1.0},"491":{"tf":1.0},"566":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"29":{"tf":1.0},"47":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1042":{"tf":1.0},"1052":{"tf":1.0},"1194":{"tf":1.0},"1450":{"tf":1.0},"1515":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1099":{"tf":1.0},"1154":{"tf":1.0},"1404":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"1119":{"tf":1.0},"841":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":100,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1173":{"tf":1.0},"1176":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.0},"1212":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1237":{"tf":1.0},"1262":{"tf":1.0},"127":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1415":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1432":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1458":{"tf":1.0},"1463":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"341":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.4142135623730951},"568":{"tf":1.0},"617":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"724":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"792":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"984":{"tf":1.4142135623730951},"995":{"tf":1.0}},"i":{"df":5,"docs":{"1010":{"tf":1.0},"1029":{"tf":1.0},"1254":{"tf":1.0},"24":{"tf":1.4142135623730951},"984":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"1268":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"465":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"1302":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"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":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}},"df":46,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1003":{"tf":1.0},"1011":{"tf":1.0},"1115":{"tf":1.0},"1213":{"tf":1.0},"1220":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1298":{"tf":1.0},"1328":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1423":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"15":{"tf":1.0},"1510":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"219":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"407":{"tf":1.0},"524":{"tf":1.0},"57":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.4142135623730951},"606":{"tf":1.0},"641":{"tf":1.0},"701":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"808":{"tf":1.0},"827":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"996":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1017":{"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":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1212":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"822":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1302":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":81,"docs":{"1044":{"tf":1.4142135623730951},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":2.0},"1124":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1197":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":2.0},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"134":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1441":{"tf":1.0},"1456":{"tf":1.0},"1460":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":1.7320508075688772},"284":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"446":{"tf":1.0},"49":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"593":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.4142135623730951},"72":{"tf":1.0},"738":{"tf":2.0},"739":{"tf":1.0},"742":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"759":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.8284271247461903},"833":{"tf":1.0},"98":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"f":{"df":2,"docs":{"1095":{"tf":1.0},"1097":{"tf":1.0}}}}},"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"294":{"tf":1.0},"298":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"845":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"238":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1140":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":2.0},"1078":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1087":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1295":{"tf":1.7320508075688772},"1296":{"tf":1.4142135623730951},"1297":{"tf":2.0},"1298":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1316":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"16":{"tf":1.0},"64":{"tf":1.0},"779":{"tf":1.0},"871":{"tf":1.0}},"e":{"(":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"595":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":114,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1067":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1093":{"tf":1.0},"11":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":2.449489742783178},"1149":{"tf":1.0},"116":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.0},"1256":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1290":{"tf":1.0},"1298":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1422":{"tf":1.0},"1430":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"21":{"tf":1.0},"312":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"46":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"532":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"548":{"tf":1.0},"55":{"tf":1.4142135623730951},"575":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.7320508075688772},"648":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"709":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.0},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1304":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"df":31,"docs":{"1045":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"1339":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"739":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.7320508075688772},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"808":{"tf":1.4142135623730951},"816":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"648":{"tf":1.0},"705":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1399":{"tf":1.0},"1507":{"tf":1.0},"812":{"tf":1.0},"933":{"tf":1.0}}}},"df":23,"docs":{"132":{"tf":2.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1530":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"73":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"420":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.0},"856":{"tf":1.4142135623730951},"859":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":20,"docs":{"1191":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1293":{"tf":1.0},"1428":{"tf":1.0},"1439":{"tf":1.0},"1444":{"tf":1.0},"1496":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"311":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"66":{"tf":1.0},"679":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"935":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"1041":{"tf":1.0},"11":{"tf":1.4142135623730951},"1441":{"tf":1.0},"21":{"tf":1.0},"308":{"tf":1.0},"901":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"1164":{"tf":1.0},"1166":{"tf":1.0},"1422":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"669":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1505":{"tf":1.0},"434":{"tf":1.0},"489":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"256":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":64,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1304":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1355":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.7320508075688772},"1440":{"tf":1.0},"1441":{"tf":1.0},"1449":{"tf":2.449489742783178},"1452":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772},"298":{"tf":1.0},"338":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"418":{"tf":1.0},"473":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.4142135623730951},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"565":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.4142135623730951},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"72":{"tf":1.0},"742":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"996":{"tf":1.0}}}}}},"df":46,"docs":{"1103":{"tf":1.0},"1120":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.7320508075688772},"1392":{"tf":2.23606797749979},"1394":{"tf":1.7320508075688772},"1402":{"tf":2.23606797749979},"1404":{"tf":3.3166247903554},"576":{"tf":1.0},"588":{"tf":2.0},"617":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":2.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1108":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1384":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"774":{"tf":1.0},"80":{"tf":1.0},"800":{"tf":1.4142135623730951},"804":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.0},"829":{"tf":1.0},"887":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"1120":{"tf":1.0},"127":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1453":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"332":{"tf":1.0},"354":{"tf":1.0},"377":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"610":{"tf":1.0},"72":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.4142135623730951},"759":{"tf":1.0},"833":{"tf":1.0},"938":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"1094":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1515":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"151":{"tf":1.0},"859":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"33":{"tf":1.0},"815":{"tf":1.0},"856":{"tf":1.0},"859":{"tf":1.0},"883":{"tf":1.0}},"i":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"246":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"116":{"tf":1.0},"1194":{"tf":1.0},"915":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"1011":{"tf":1.0},"106":{"tf":1.0},"1061":{"tf":1.0},"107":{"tf":1.0},"1087":{"tf":1.0},"1094":{"tf":1.0},"115":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"248":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"292":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"682":{"tf":1.0},"911":{"tf":1.0},"942":{"tf":1.0},"969":{"tf":1.0},"972":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":18,"docs":{"1054":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1175":{"tf":1.0},"1211":{"tf":1.0},"1215":{"tf":1.0},"1284":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"680":{"tf":1.0},"682":{"tf":1.0},"767":{"tf":1.4142135623730951},"822":{"tf":1.0},"929":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1135":{"tf":1.0},"1449":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1509":{"tf":1.0},"545":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"950":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"1253":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.0},"925":{"tf":1.0}}}}},"s":{"c":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"1211":{"tf":1.0},"47":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":108,"docs":{"1000":{"tf":1.0},"1055":{"tf":1.0},"108":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1115":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"1310":{"tf":1.0},"132":{"tf":2.449489742783178},"1323":{"tf":1.0},"1332":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"138":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.7320508075688772},"288":{"tf":1.0},"292":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"532":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.0},"709":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":2.0},"752":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.449489742783178},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"80":{"tf":2.0},"803":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"847":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.7320508075688772},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":1.0},"946":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"0":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"357":{"tf":1.0},"591":{"tf":1.0},"63":{"tf":1.0},"852":{"tf":1.0},"910":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}}},"r":{"df":3,"docs":{"802":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":21,"docs":{"1437":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1440":{"tf":2.0},"1442":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"899":{"tf":2.449489742783178},"900":{"tf":2.449489742783178},"902":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1013":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1347":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1406":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"603":{"tf":1.0},"679":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"851":{"tf":1.0},"87":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"980":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"1336":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1163":{"tf":1.0},"1175":{"tf":1.0},"1263":{"tf":1.0},"1432":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"928":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1450":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"921":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1454":{"tf":1.0}}}}}},"df":5,"docs":{"115":{"tf":1.0},"1343":{"tf":1.0},"1441":{"tf":1.0},"348":{"tf":1.0},"930":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":28,"docs":{"1":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1089":{"tf":1.0},"1194":{"tf":1.0},"1343":{"tf":1.0},"1444":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"250":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0},"346":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"573":{"tf":1.0},"625":{"tf":1.0},"654":{"tf":1.4142135623730951},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"968":{"tf":1.0},"976":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"t":{"df":1,"docs":{"979":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":18,"docs":{"1376":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.0},"1394":{"tf":2.0},"1402":{"tf":1.0},"1404":{"tf":2.8284271247461903},"599":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"617":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"725":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"706":{"tf":1.0},"707":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"1194":{"tf":1.0},"976":{"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":{"1014":{"tf":1.0},"1119":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"129":{"tf":1.0},"1298":{"tf":1.0},"1333":{"tf":1.0},"1343":{"tf":1.0},"1467":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"220":{"tf":1.4142135623730951},"289":{"tf":1.0},"487":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1475":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1014":{"tf":1.0},"1028":{"tf":1.0},"24":{"tf":1.0},"760":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":27,"docs":{"1015":{"tf":1.4142135623730951},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1031":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.4142135623730951},"57":{"tf":1.0},"571":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":2,"docs":{"1340":{"tf":1.0},"585":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"302":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1091":{"tf":1.0},"1156":{"tf":1.0},"1297":{"tf":1.0},"185":{"tf":1.0},"239":{"tf":1.0},"494":{"tf":1.0},"676":{"tf":1.0},"684":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":67,"docs":{"1043":{"tf":1.0},"1059":{"tf":1.0},"113":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.7320508075688772},"124":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.7320508075688772},"1340":{"tf":1.0},"136":{"tf":1.7320508075688772},"1369":{"tf":1.0},"137":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.7320508075688772},"1426":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1462":{"tf":2.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1528":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"43":{"tf":1.0},"536":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"79":{"tf":1.0},"831":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"924":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"128":{"tf":1.0},"1439":{"tf":1.0},"242":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":4,"docs":{"221":{"tf":1.0},"228":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1099":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1164":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}},"i":{"df":5,"docs":{"1212":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"884":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":6,"docs":{"1062":{"tf":1.0},"1101":{"tf":1.0},"1489":{"tf":1.0},"371":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"125":{"tf":1.0},"1498":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"836":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1062":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1208":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1452":{"tf":1.0},"214":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"935":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"256":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":86,"docs":{"1002":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.7320508075688772},"1006":{"tf":1.0},"1007":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1075":{"tf":1.0},"1196":{"tf":1.0},"1214":{"tf":1.0},"1235":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.7320508075688772},"1261":{"tf":1.4142135623730951},"128":{"tf":3.4641016151377544},"129":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"1333":{"tf":3.3166247903554},"1334":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1475":{"tf":1.7320508075688772},"1476":{"tf":2.23606797749979},"1477":{"tf":2.0},"165":{"tf":2.0},"169":{"tf":1.0},"172":{"tf":1.0},"202":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.0},"234":{"tf":2.449489742783178},"235":{"tf":2.6457513110645907},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":3.3166247903554},"243":{"tf":3.4641016151377544},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":2.449489742783178},"256":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.7320508075688772},"773":{"tf":1.0},"896":{"tf":2.0},"908":{"tf":1.0},"909":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":2.0},"940":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"95":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"976":{"tf":3.0},"977":{"tf":1.0},"979":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"f":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"937":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":28,"docs":{"1227":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1474":{"tf":2.23606797749979},"165":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":2.23606797749979},"246":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.4142135623730951},"918":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1361":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"522":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1351":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1352":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1342":{"tf":1.0},"139":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"179":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"1":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"2":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"588":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1302":{"tf":2.0},"657":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1094":{"tf":1.0},"288":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0},"725":{"tf":1.0},"846":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1143":{"tf":1.4142135623730951},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"df":83,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":2.0},"1151":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":1.0},"210":{"tf":1.4142135623730951},"224":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"419":{"tf":1.0},"45":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"581":{"tf":1.0},"605":{"tf":1.4142135623730951},"616":{"tf":1.0},"634":{"tf":1.4142135623730951},"653":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"723":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"845":{"tf":3.0},"911":{"tf":1.0},"921":{"tf":1.0},"997":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"682":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":13,"docs":{"1209":{"tf":1.0},"1421":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"379":{"tf":1.0},"397":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"612":{"tf":1.0},"631":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"847":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"134":{"tf":2.449489742783178},"1345":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"141":{"tf":1.0},"1419":{"tf":2.23606797749979},"142":{"tf":2.0},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"88":{"tf":2.0}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":2.449489742783178},"605":{"tf":1.0},"612":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"641":{"tf":1.0},"642":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":470,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"1007":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1027":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1086":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":2.0},"1103":{"tf":1.0},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"111":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1115":{"tf":1.0},"113":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":2.23606797749979},"1142":{"tf":2.0},"1143":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"122":{"tf":1.0},"1228":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1240":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1256":{"tf":1.0},"1260":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":2.23606797749979},"1298":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1301":{"tf":2.6457513110645907},"1302":{"tf":2.6457513110645907},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1307":{"tf":1.0},"1312":{"tf":2.449489742783178},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1318":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1322":{"tf":1.0},"1323":{"tf":3.605551275463989},"1324":{"tf":3.3166247903554},"1325":{"tf":2.6457513110645907},"1326":{"tf":2.449489742783178},"1328":{"tf":2.0},"1329":{"tf":2.0},"133":{"tf":1.0},"1330":{"tf":3.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"134":{"tf":3.3166247903554},"1340":{"tf":2.23606797749979},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":2.6457513110645907},"1350":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1352":{"tf":2.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.0},"136":{"tf":3.1622776601683795},"1361":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.0},"1369":{"tf":2.6457513110645907},"137":{"tf":2.23606797749979},"1370":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.7320508075688772},"1375":{"tf":2.0},"1376":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"138":{"tf":2.0},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":2.449489742783178},"139":{"tf":1.0},"1390":{"tf":3.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.8284271247461903},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"1415":{"tf":1.0},"1418":{"tf":1.7320508075688772},"1419":{"tf":4.0},"142":{"tf":2.23606797749979},"1420":{"tf":3.0},"1421":{"tf":3.1622776601683795},"1422":{"tf":3.1622776601683795},"1423":{"tf":3.1622776601683795},"1425":{"tf":2.8284271247461903},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"145":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.0},"1466":{"tf":1.0},"1469":{"tf":2.0},"147":{"tf":1.0},"1470":{"tf":2.0},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"1481":{"tf":2.0},"1482":{"tf":1.4142135623730951},"1484":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"149":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.7320508075688772},"1515":{"tf":2.0},"1517":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":1.0},"156":{"tf":2.23606797749979},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":2.6457513110645907},"372":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":2.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"480":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":2.449489742783178},"523":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"558":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.7320508075688772},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"593":{"tf":1.0},"599":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"604":{"tf":2.449489742783178},"605":{"tf":2.6457513110645907},"606":{"tf":1.4142135623730951},"61":{"tf":1.0},"612":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":2.0},"645":{"tf":1.0},"646":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":2.0},"657":{"tf":1.4142135623730951},"66":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"696":{"tf":2.6457513110645907},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"699":{"tf":2.449489742783178},"700":{"tf":1.7320508075688772},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.7320508075688772},"71":{"tf":1.0},"710":{"tf":1.7320508075688772},"724":{"tf":1.0},"725":{"tf":1.4142135623730951},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"741":{"tf":1.4142135623730951},"744":{"tf":2.0},"747":{"tf":2.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"751":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":2.0},"76":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":2.0},"776":{"tf":1.0},"778":{"tf":1.7320508075688772},"779":{"tf":1.0},"780":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":2.0},"793":{"tf":1.0},"794":{"tf":2.449489742783178},"795":{"tf":1.0},"796":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":2.0},"80":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.7320508075688772},"831":{"tf":1.7320508075688772},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"84":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"847":{"tf":2.0},"849":{"tf":1.0},"850":{"tf":1.7320508075688772},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":3.3166247903554},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"875":{"tf":1.0},"88":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"92":{"tf":1.0},"921":{"tf":2.0},"922":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"970":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.4142135623730951}},"i":{"d":{"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"371":{"tf":1.0},"379":{"tf":1.0}},"}":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"522":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"87":{"tf":1.0}}}}}}}}},"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"787":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0},"1309":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"407":{"tf":1.0},"408":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"852":{"tf":1.0}},"e":{"df":3,"docs":{"1404":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1456":{"tf":1.0},"1475":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"230":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"1109":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1239":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1259":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.0},"1333":{"tf":2.6457513110645907},"143":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"374":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.0},"833":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"1051":{"tf":1.0},"1088":{"tf":1.0},"1287":{"tf":1.0},"1323":{"tf":1.0},"1490":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0},"908":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"141":{"tf":1.0},"1456":{"tf":1.0},"72":{"tf":1.0},"811":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"942":{"tf":1.0},"976":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1513":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"1325":{"tf":1.0},"1432":{"tf":1.0},"728":{"tf":1.0},"804":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"1474":{"tf":1.4142135623730951},"253":{"tf":1.0},"976":{"tf":1.0}},"s":{"df":1,"docs":{"985":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1336":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1399":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1161":{"tf":1.0},"1309":{"tf":1.0},"1476":{"tf":1.0},"249":{"tf":1.0},"769":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1122":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1507":{"tf":1.0},"303":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.4142135623730951},"527":{"tf":1.0},"602":{"tf":1.0},"608":{"tf":1.0},"704":{"tf":1.0},"836":{"tf":1.0},"870":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1046":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"b":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":48,"docs":{"1003":{"tf":1.0},"11":{"tf":1.0},"1144":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1189":{"tf":1.0},"1206":{"tf":1.0},"1246":{"tf":1.0},"1285":{"tf":1.0},"1310":{"tf":1.0},"1330":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"693":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"874":{"tf":1.0},"881":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"954":{"tf":1.4142135623730951},"968":{"tf":1.0},"97":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"1061":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"548":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1381":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"1148":{"tf":1.0},"1330":{"tf":2.6457513110645907},"1338":{"tf":2.0},"1339":{"tf":2.8284271247461903},"1340":{"tf":2.0},"1345":{"tf":2.6457513110645907},"1346":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.7320508075688772},"956":{"tf":1.0},"962":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}}}},"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":{"1076":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":87,"docs":{"1015":{"tf":1.4142135623730951},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":2.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.4142135623730951},"389":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.0},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1164":{"tf":1.0},"1169":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0}}}}},"df":22,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.4142135623730951},"135":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.8284271247461903},"1402":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1420":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"384":{"tf":1.7320508075688772},"554":{"tf":1.0},"618":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.449489742783178},"723":{"tf":2.449489742783178},"949":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"950":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1130":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1309":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1381":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"1112":{"tf":2.23606797749979},"1116":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1332":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"507":{"tf":2.0},"65":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"816":{"tf":1.0}}}}},"b":{"df":29,"docs":{"1323":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":2.0},"185":{"tf":2.0},"206":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.7320508075688772},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":2.0},"522":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"797":{"tf":1.0},"838":{"tf":1.7320508075688772},"850":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":5,"docs":{"1092":{"tf":1.0},"600":{"tf":1.4142135623730951},"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":5,"docs":{"1091":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":26,"docs":{"1091":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1306":{"tf":1.0},"1326":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1422":{"tf":2.23606797749979},"1425":{"tf":1.0},"1433":{"tf":1.0},"1476":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.0},"273":{"tf":1.0},"366":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"4":{"tf":1.0},"600":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.7320508075688772},"789":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1169":{"tf":1.0},"1200":{"tf":1.0},"261":{"tf":1.0},"451":{"tf":1.0},"517":{"tf":1.0},"694":{"tf":1.0},"911":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1199":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.0},"1263":{"tf":1.0},"1296":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"169":{"tf":1.0},"212":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"536":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"679":{"tf":1.4142135623730951},"728":{"tf":1.0},"874":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"90":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"984":{"tf":1.0},"989":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}},"o":{"d":{"df":22,"docs":{"1045":{"tf":1.0},"1091":{"tf":1.0},"129":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"186":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.0},"376":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"609":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1457":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"1051":{"tf":1.0},"1106":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1505":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.4142135623730951},"541":{"tf":1.0},"892":{"tf":1.4142135623730951},"911":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1448":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":13,"docs":{"1263":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"225":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"813":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1102":{"tf":1.0},"1106":{"tf":1.0},"1149":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1243":{"tf":1.0},"1285":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":2.0},"1445":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"486":{"tf":1.0},"65":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"810":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1197":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"47":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"151":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1175":{"tf":1.0},"423":{"tf":1.0},"876":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"1":{"tf":1.0},"1109":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1421":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1465":{"tf":1.0},"1493":{"tf":1.0},"15":{"tf":1.0},"1528":{"tf":1.7320508075688772},"227":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"511":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"79":{"tf":1.0},"882":{"tf":1.0},"910":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"1175":{"tf":1.0},"767":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"1323":{"tf":1.0},"1334":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1226":{"tf":1.0},"1403":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}}}}},"y":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"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":{"1403":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1131":{"tf":1.0},"742":{"tf":1.0},"746":{"tf":2.0},"753":{"tf":1.0},"754":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"746":{"tf":1.0}}}}}},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1449":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1212":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"1050":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1066":{"tf":1.0},"1079":{"tf":1.0},"1086":{"tf":1.0},"113":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1215":{"tf":1.0},"125":{"tf":1.0},"1296":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.4142135623730951},"1430":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"160":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"37":{"tf":1.0},"437":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.0},"660":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"935":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1323":{"tf":1.4142135623730951},"1325":{"tf":2.0},"1328":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1338":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1027":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"286":{"tf":1.0},"299":{"tf":1.0}}},"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"442":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"382":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":2.23606797749979}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1356":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":12,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.0},"419":{"tf":1.7320508075688772},"477":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":126,"docs":{"1127":{"tf":1.0},"1149":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":2.23606797749979},"1282":{"tf":1.4142135623730951},"1344":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":3.605551275463989},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":2.449489742783178},"14":{"tf":1.0},"1401":{"tf":3.1622776601683795},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1439":{"tf":1.4142135623730951},"144":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1490":{"tf":1.7320508075688772},"1491":{"tf":1.4142135623730951},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1528":{"tf":1.4142135623730951},"243":{"tf":1.0},"261":{"tf":1.0},"286":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"419":{"tf":2.0},"442":{"tf":1.0},"463":{"tf":1.4142135623730951},"473":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.23606797749979},"498":{"tf":2.23606797749979},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"546":{"tf":2.23606797749979},"555":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"585":{"tf":1.0},"593":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"653":{"tf":2.6457513110645907},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"758":{"tf":1.0},"899":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"941":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1345":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1349":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1194":{"tf":1.4142135623730951},"21":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"811":{"tf":1.4142135623730951}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"681":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":14,"docs":{"1109":{"tf":1.0},"1160":{"tf":1.0},"1212":{"tf":1.0},"1298":{"tf":1.0},"1429":{"tf":1.4142135623730951},"28":{"tf":1.0},"369":{"tf":1.0},"439":{"tf":1.0},"729":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"932":{"tf":1.0},"933":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":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":{"255":{"tf":1.0}},"u":{"df":1,"docs":{"732":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1035":{"tf":1.0},"1085":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":2.0},"874":{"tf":1.0}},"t":{"df":5,"docs":{"1192":{"tf":1.0},"1205":{"tf":1.0},"1405":{"tf":1.7320508075688772},"664":{"tf":1.0},"833":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"1115":{"tf":1.0},"122":{"tf":1.0},"1462":{"tf":1.0},"327":{"tf":1.0},"555":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1114":{"tf":1.0},"60":{"tf":1.0}}}},"v":{"df":1,"docs":{"984":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1080":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":114,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1084":{"tf":1.0},"1128":{"tf":1.0},"1185":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1248":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1337":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1371":{"tf":1.4142135623730951},"1396":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1406":{"tf":2.449489742783178},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1454":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"19":{"tf":1.4142135623730951},"226":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"356":{"tf":1.7320508075688772},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"590":{"tf":1.7320508075688772},"616":{"tf":1.0},"654":{"tf":1.0},"67":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.4142135623730951},"734":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"902":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"997":{"tf":1.0},"999":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"129":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1126":{"tf":1.4142135623730951},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1378":{"tf":2.449489742783178},"1390":{"tf":2.0},"1394":{"tf":3.4641016151377544},"1402":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"618":{"tf":1.7320508075688772},"653":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.0},"723":{"tf":2.23606797749979},"724":{"tf":1.4142135623730951},"798":{"tf":1.0},"949":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"1161":{"tf":1.0},"1185":{"tf":1.0},"1219":{"tf":1.0},"1310":{"tf":1.0},"1449":{"tf":1.0},"255":{"tf":1.0},"50":{"tf":1.0},"732":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1042":{"tf":1.0},"1082":{"tf":1.0},"1094":{"tf":1.0},"1135":{"tf":1.0},"116":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1209":{"tf":1.0},"127":{"tf":1.0},"1298":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1332":{"tf":1.0},"135":{"tf":1.0},"1404":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"334":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"605":{"tf":1.0},"634":{"tf":1.0},"664":{"tf":1.0},"699":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"876":{"tf":1.0},"894":{"tf":1.0},"92":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0},"976":{"tf":1.0},"984":{"tf":1.0}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1345":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":4,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1471":{"tf":1.0},"1482":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1000":{"tf":1.0},"1507":{"tf":1.0},"918":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":2.23606797749979}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"941":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1436":{"tf":1.0},"950":{"tf":1.0},"954":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1214":{"tf":1.0},"234":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"606":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"372":{"tf":1.0}}}},"df":37,"docs":{"1066":{"tf":1.7320508075688772},"1079":{"tf":2.0},"1095":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1215":{"tf":2.0},"1234":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1440":{"tf":2.449489742783178},"1454":{"tf":2.23606797749979},"1456":{"tf":1.0},"1466":{"tf":1.0},"1497":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1520":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"298":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"336":{"tf":2.0},"372":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"506":{"tf":1.4142135623730951},"563":{"tf":2.0},"606":{"tf":1.0},"660":{"tf":2.0},"903":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"s":{"df":2,"docs":{"1194":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"1264":{"tf":1.0},"1267":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"547":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1287":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.7320508075688772},"510":{"tf":1.0},"538":{"tf":1.0}}}}}}},"df":36,"docs":{"1148":{"tf":2.0},"1192":{"tf":2.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.7320508075688772},"486":{"tf":1.0},"497":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":2.0},"538":{"tf":1.4142135623730951},"547":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1108":{"tf":1.0},"1111":{"tf":1.0},"1124":{"tf":1.0},"1367":{"tf":1.0},"498":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"1244":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"412":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1092":{"tf":1.0},"1174":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1405":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"206":{"tf":1.0},"272":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"646":{"tf":1.0},"838":{"tf":1.0},"847":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1080":{"tf":1.0},"1185":{"tf":1.0},"1300":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1326":{"tf":2.449489742783178},"1356":{"tf":1.0},"137":{"tf":2.23606797749979},"1379":{"tf":1.0},"1422":{"tf":2.8284271247461903},"1425":{"tf":1.4142135623730951},"1433":{"tf":1.0},"156":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"273":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"529":{"tf":1.0},"58":{"tf":1.4142135623730951},"601":{"tf":1.0},"706":{"tf":1.0},"725":{"tf":1.0},"884":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1148":{"tf":1.0},"1381":{"tf":1.0},"666":{"tf":1.0},"684":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"675":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}}},"{":{"a":{"df":1,"docs":{"1381":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"699":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1517":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"661":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1330":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1079":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":5,"docs":{"1182":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":67,"docs":{"1006":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1469":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1530":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":2.0},"253":{"tf":1.0},"299":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"520":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"653":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"855":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"929":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":21,"docs":{"1062":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1334":{"tf":1.0},"1346":{"tf":1.0},"1429":{"tf":1.4142135623730951},"155":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"759":{"tf":1.0},"76":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"916":{"tf":1.0},"935":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1177":{"tf":1.0},"1505":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1197":{"tf":1.0},"21":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0}}},"s":{"df":43,"docs":{"1001":{"tf":1.0},"1122":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"1194":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"1315":{"tf":1.0},"1332":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1449":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"185":{"tf":1.0},"206":{"tf":1.0},"295":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.4142135623730951},"600":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.0},"816":{"tf":1.0},"897":{"tf":1.0},"902":{"tf":1.0},"946":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1149":{"tf":1.7320508075688772},"1264":{"tf":1.0},"1270":{"tf":2.0},"1372":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"1018":{"tf":1.0},"1042":{"tf":1.0},"1061":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1030":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"992":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"617":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"684":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1148":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1381":{"tf":2.0},"1402":{"tf":1.4142135623730951},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"617":{"tf":1.7320508075688772},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":2.0},"670":{"tf":1.0},"675":{"tf":1.7320508075688772},"684":{"tf":1.4142135623730951},"686":{"tf":2.0},"687":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"718":{"tf":2.0},"719":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":77,"docs":{"1140":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"135":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"138":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1404":{"tf":2.23606797749979},"141":{"tf":1.4142135623730951},"1419":{"tf":2.449489742783178},"142":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.4142135623730951},"1425":{"tf":2.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"661":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"1055":{"tf":1.0},"107":{"tf":2.6457513110645907},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"110":{"tf":1.0},"1118":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"290":{"tf":1.4142135623730951},"292":{"tf":2.0},"298":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"536":{"tf":1.0},"70":{"tf":2.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"822":{"tf":1.4142135623730951},"897":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1336":{"tf":1.0},"765":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"1208":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"459":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":4,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"d":{"df":127,"docs":{"1045":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.0},"1126":{"tf":1.0},"1134":{"tf":1.0},"1136":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":2.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1450":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1471":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1515":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"334":{"tf":1.4142135623730951},"370":{"tf":1.0},"398":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"498":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"58":{"tf":1.4142135623730951},"604":{"tf":1.0},"632":{"tf":1.7320508075688772},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.0},"698":{"tf":2.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"773":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":2.449489742783178},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":2.0},"807":{"tf":1.7320508075688772},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"828":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.4142135623730951},"901":{"tf":1.0},"903":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"135":{"tf":1.0},"1420":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":198,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1090":{"tf":1.0},"1091":{"tf":1.7320508075688772},"1092":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"1112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.4142135623730951},"122":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"132":{"tf":2.23606797749979},"1323":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1336":{"tf":1.0},"1338":{"tf":2.0},"1339":{"tf":1.7320508075688772},"134":{"tf":3.0},"1340":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1345":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1420":{"tf":2.8284271247461903},"1421":{"tf":2.8284271247461903},"1422":{"tf":3.3166247903554},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":2.0},"1433":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.7320508075688772},"144":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1446":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1455":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1479":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"1528":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"317":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"478":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.7320508075688772},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"560":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.0},"584":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":2.0},"605":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"616":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.4142135623730951},"644":{"tf":1.0},"65":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.4142135623730951},"678":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"699":{"tf":1.0},"708":{"tf":1.7320508075688772},"712":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"747":{"tf":1.0},"772":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":2.23606797749979},"788":{"tf":2.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":2.0},"838":{"tf":1.7320508075688772},"841":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"850":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"925":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"962":{"tf":1.0},"969":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"519":{"tf":1.0},"536":{"tf":2.0},"614":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"722":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"911":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1365":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":24,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1097":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1105":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":1,"docs":{"319":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"815":{"tf":1.0},"826":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"1403":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1175":{"tf":1.0},"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1401":{"tf":1.0},"1460":{"tf":1.0},"1495":{"tf":1.0},"280":{"tf":1.0},"354":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"1046":{"tf":1.0},"1053":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1476":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"82":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"1001":{"tf":1.4142135623730951},"117":{"tf":1.0},"1320":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1410":{"tf":1.0},"142":{"tf":1.0},"1436":{"tf":1.0},"148":{"tf":1.0},"1484":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"23":{"tf":1.0},"349":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"576":{"tf":1.0},"676":{"tf":1.0},"72":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"987":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"x":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"1077":{"tf":1.0},"1087":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"292":{"tf":1.0},"762":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1264":{"tf":1.0},"1271":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1014":{"tf":1.0},"1054":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":9,"docs":{"1184":{"tf":1.0},"1247":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1441":{"tf":1.0},"291":{"tf":1.0},"456":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"997":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"df":18,"docs":{"1001":{"tf":1.4142135623730951},"1161":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.4142135623730951},"991":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1265":{"tf":1.0},"1333":{"tf":1.0},"139":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"545":{"tf":1.0},"729":{"tf":1.0},"867":{"tf":1.0},"901":{"tf":1.0},"936":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"c":{"df":4,"docs":{"1145":{"tf":1.0},"312":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0}}}}},"v":{"df":1,"docs":{"1194":{"tf":1.0}}}},"g":{"df":2,"docs":{"552":{"tf":1.0},"586":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"869":{"tf":1.0}}},"t":{"df":53,"docs":{"1011":{"tf":1.0},"1044":{"tf":1.7320508075688772},"1112":{"tf":1.0},"1116":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1166":{"tf":1.0},"129":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1421":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1471":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1528":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"400":{"tf":1.0},"495":{"tf":1.0},"522":{"tf":1.0},"58":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"634":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"731":{"tf":1.0},"745":{"tf":2.23606797749979},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"987":{"tf":1.4142135623730951}}}},"df":3,"docs":{"879":{"tf":1.0},"881":{"tf":1.0},"988":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":38,"docs":{"116":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":2.23606797749979},"1403":{"tf":1.0},"1404":{"tf":1.7320508075688772},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1495":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"351":{"tf":1.4142135623730951},"366":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"465":{"tf":1.0},"583":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"618":{"tf":1.4142135623730951},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"837":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"152":{"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":{"1441":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":10,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.4142135623730951},"13":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"454":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"848":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"934":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"758":{"tf":1.0},"879":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1103":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"1161":{"tf":1.0},"918":{"tf":1.0},"976":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"2":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1522":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1361":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":48,"docs":{"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1058":{"tf":1.0},"1089":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1461":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1115":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}},"l":{"df":29,"docs":{"109":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1214":{"tf":1.0},"1251":{"tf":1.0},"1296":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1436":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"4":{"tf":1.0},"544":{"tf":1.0},"603":{"tf":1.0},"612":{"tf":1.0},"776":{"tf":1.0},"861":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":6,"docs":{"1144":{"tf":1.0},"152":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"753":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":63,"docs":{"1164":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1278":{"tf":1.0},"1288":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0},"259":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"370":{"tf":1.0},"416":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"534":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":1.0},"650":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1103":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"=":{"1":{"0":{"0":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1138":{"tf":1.0},"146":{"tf":1.0},"386":{"tf":1.0},"40":{"tf":1.0},"620":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1014":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1254":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"960":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.4142135623730951},"1165":{"tf":2.6457513110645907},"1166":{"tf":1.7320508075688772}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"1215":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":4,"docs":{"1243":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":4,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":74,"docs":{"1004":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1020":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"11":{"tf":1.0},"1154":{"tf":1.0},"1158":{"tf":1.4142135623730951},"119":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1235":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1429":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1505":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"780":{"tf":1.0},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"851":{"tf":1.0},"884":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.4142135623730951},"926":{"tf":1.0},"934":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"1069":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1384":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1305":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"b":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1305":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1003":{"tf":1.0},"1161":{"tf":1.0},"119":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0},"547":{"tf":1.0},"727":{"tf":1.0},"909":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"262":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1300":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1158":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"1158":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}},"n":{"df":2,"docs":{"1423":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"1102":{"tf":1.0},"1160":{"tf":1.0},"1281":{"tf":1.0},"1378":{"tf":1.0},"1408":{"tf":1.0},"1428":{"tf":1.0},"368":{"tf":1.0},"497":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"733":{"tf":1.0},"766":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0}}}},"df":6,"docs":{"450":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"978":{"tf":1.0}},"e":{"df":2,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0}}},"o":{"d":{"df":3,"docs":{"1312":{"tf":1.0},"884":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1050":{"tf":1.0},"1177":{"tf":1.0},"424":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"477":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"732":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1330":{"tf":1.0},"583":{"tf":1.0},"979":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1117":{"tf":1.0},"1277":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"1278":{"tf":1.0},"21":{"tf":1.0},"491":{"tf":1.0},"914":{"tf":1.0},"954":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"df":19,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"1112":{"tf":1.0},"1211":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"909":{"tf":1.4142135623730951},"92":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"985":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"1208":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":68,"docs":{"1112":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"332":{"tf":1.0},"335":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"738":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"770":{"tf":1.0},"794":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.0},"96":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":22,"docs":{"1148":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"331":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":17,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"357":{"tf":1.0},"916":{"tf":1.0}}}}}}}},"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"373":{"tf":1.0},"937":{"tf":1.7320508075688772},"939":{"tf":2.23606797749979},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"373":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"911":{"tf":1.0},"930":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1452":{"tf":1.0},"1455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"1055":{"tf":1.7320508075688772},"1073":{"tf":1.7320508075688772},"1074":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1214":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"739":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"38":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":46,"docs":{"1011":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1200":{"tf":1.0},"1268":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1344":{"tf":1.0},"1346":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.7320508075688772},"14":{"tf":1.0},"1401":{"tf":1.0},"228":{"tf":1.0},"286":{"tf":1.0},"359":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"546":{"tf":1.4142135623730951},"593":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"723":{"tf":1.4142135623730951},"949":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1267":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"507":{"tf":1.0},"833":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1048":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1145":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1003":{"tf":1.0}}},"2":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"557":{"tf":1.0},"651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":84,"docs":{"1001":{"tf":1.7320508075688772},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.0},"1067":{"tf":1.0},"1092":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1333":{"tf":1.0},"1403":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1429":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"332":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"417":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"520":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":2.449489742783178},"544":{"tf":1.0},"557":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"614":{"tf":1.4142135623730951},"631":{"tf":1.0},"651":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"697":{"tf":1.0},"708":{"tf":1.0},"739":{"tf":1.4142135623730951},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"776":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":2.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.4142135623730951},"996":{"tf":1.0},"997":{"tf":3.1622776601683795}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"332":{"tf":1.0},"417":{"tf":1.0},"420":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"417":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"1260":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"1194":{"tf":1.0},"248":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"831":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"729":{"tf":1.0},"740":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":47,"docs":{"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1136":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":2.0},"1442":{"tf":2.23606797749979},"1445":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":2.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"729":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"744":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.4142135623730951},"832":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"899":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.4142135623730951},"369":{"tf":1.0},"507":{"tf":1.0},"603":{"tf":1.0},"760":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1401":{"tf":1.0},"1402":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":25,"docs":{"1148":{"tf":1.0},"1237":{"tf":1.0},"1248":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"197":{"tf":1.0},"268":{"tf":1.0},"349":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"519":{"tf":1.0},"576":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"884":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":15,"docs":{"105":{"tf":1.0},"1162":{"tf":1.0},"119":{"tf":2.6457513110645907},"1411":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"739":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"1220":{"tf":1.0},"1278":{"tf":1.0},"259":{"tf":1.4142135623730951},"292":{"tf":1.0},"491":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1161":{"tf":1.0},"1276":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1442":{"tf":1.0},"180":{"tf":1.7320508075688772},"370":{"tf":1.0},"45":{"tf":1.4142135623730951},"486":{"tf":1.0},"604":{"tf":1.0},"679":{"tf":1.0},"794":{"tf":1.4142135623730951},"798":{"tf":1.0},"845":{"tf":1.0},"884":{"tf":1.0},"921":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"535":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"729":{"tf":1.0}},"i":{"df":3,"docs":{"1124":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":14,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1089":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1336":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"959":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"322":{"tf":1.0},"549":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.0},"725":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"991":{"tf":1.4142135623730951}},"i":{"df":14,"docs":{"1006":{"tf":1.0},"1314":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"62":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"882":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1162":{"tf":1.0},"261":{"tf":1.0},"857":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"995":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"1209":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"237":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1307":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.7320508075688772},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1154":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.0}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"667":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":0,"docs":{},"s":{":":{"9":{"0":{"9":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":41,"docs":{"1020":{"tf":1.0},"110":{"tf":1.0},"1149":{"tf":1.0},"1203":{"tf":1.0},"1262":{"tf":1.0},"1268":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1284":{"tf":1.0},"1294":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1493":{"tf":1.0},"1525":{"tf":1.0},"311":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.7320508075688772},"481":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"537":{"tf":1.0},"547":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.0},"734":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"955":{"tf":1.0},"964":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":2,"docs":{"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"104":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"830":{"tf":1.0},"832":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"853":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"180":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"775":{"tf":1.0},"778":{"tf":1.0},"791":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1139":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1437":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"197":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"801":{"tf":1.0},"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"803":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"872":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"941":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"1227":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"370":{"tf":1.4142135623730951},"51":{"tf":1.0},"604":{"tf":1.4142135623730951},"66":{"tf":1.0},"746":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":2.23606797749979},"754":{"tf":1.7320508075688772},"761":{"tf":1.0},"766":{"tf":1.4142135623730951},"767":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1015":{"tf":1.0},"1034":{"tf":1.4142135623730951},"152":{"tf":1.0},"157":{"tf":1.0},"345":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"761":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"197":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"142":{"tf":1.0},"1484":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1047":{"tf":1.0},"1515":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"1188":{"tf":1.0},"1189":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"979":{"tf":1.0}}}}}}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":127,"docs":{"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1230":{"tf":1.0},"1241":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":2.0},"1302":{"tf":2.0},"1306":{"tf":2.23606797749979},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1405":{"tf":2.0},"142":{"tf":1.0},"1436":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1522":{"tf":1.7320508075688772},"174":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"49":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"587":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"612":{"tf":1.0},"649":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"700":{"tf":1.0},"707":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"832":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"884":{"tf":1.0},"894":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.4142135623730951},"989":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"1013":{"tf":1.0},"1175":{"tf":1.0},"1189":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.0},"1227":{"tf":1.0},"1231":{"tf":1.0},"1258":{"tf":1.0},"1285":{"tf":1.0},"1333":{"tf":1.0},"1415":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.4142135623730951},"918":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"977":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1441":{"tf":1.0},"760":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0}},"i":{"df":21,"docs":{"1111":{"tf":1.0},"1441":{"tf":1.0},"155":{"tf":1.0},"232":{"tf":1.0},"262":{"tf":1.0},"41":{"tf":1.0},"445":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":2.0},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.7320508075688772},"831":{"tf":1.0},"879":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"987":{"tf":1.0}}}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1300":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1300":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951}}}}}}},"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1063":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1082":{"tf":1.0},"128":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1426":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1082":{"tf":1.0},"61":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.4142135623730951},"914":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"918":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":37,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"1103":{"tf":1.0},"1158":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1204":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"446":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"910":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0},"981":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"1194":{"tf":1.0},"930":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":188,"docs":{"10":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.7320508075688772},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1103":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1140":{"tf":3.3166247903554},"1142":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1179":{"tf":2.0},"1180":{"tf":2.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":2.0},"1199":{"tf":1.0},"1205":{"tf":1.0},"1217":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"1270":{"tf":2.23606797749979},"1271":{"tf":1.7320508075688772},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":2.0},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.23606797749979},"1379":{"tf":1.7320508075688772},"1381":{"tf":2.0},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.4142135623730951},"1388":{"tf":2.23606797749979},"1390":{"tf":2.0},"1392":{"tf":2.449489742783178},"1394":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1401":{"tf":2.6457513110645907},"1402":{"tf":2.6457513110645907},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.23606797749979},"1405":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.7320508075688772},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"483":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"515":{"tf":1.0},"527":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"592":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"622":{"tf":1.0},"625":{"tf":1.4142135623730951},"638":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.7320508075688772},"666":{"tf":2.449489742783178},"667":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"681":{"tf":1.4142135623730951},"684":{"tf":2.449489742783178},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"692":{"tf":1.4142135623730951},"704":{"tf":1.0},"712":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"79":{"tf":1.7320508075688772},"794":{"tf":1.7320508075688772},"82":{"tf":1.0},"822":{"tf":1.4142135623730951},"83":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"925":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":3,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.23606797749979}},"i":{"d":{"df":1,"docs":{"1010":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"100":{"tf":1.0},"1006":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1114":{"tf":1.0},"1137":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"125":{"tf":1.0},"1255":{"tf":1.0},"1295":{"tf":1.0},"1324":{"tf":1.0},"1490":{"tf":1.0},"1522":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.4142135623730951},"544":{"tf":1.0},"620":{"tf":1.0},"634":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"792":{"tf":1.4142135623730951},"813":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"932":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":18,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"1340":{"tf":1.0},"1493":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"760":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1200":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1200":{"tf":1.0},"1482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1027":{"tf":1.0},"1515":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":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":{"192":{"tf":1.0},"303":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":3,"docs":{"1404":{"tf":1.4142135623730951},"79":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1163":{"tf":1.0},"199":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"857":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1080":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1300":{"tf":2.6457513110645907},"1304":{"tf":2.0},"1306":{"tf":1.4142135623730951},"1308":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"182":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":4,"docs":{"152":{"tf":1.0},"51":{"tf":1.0},"753":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1022":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"595":{"tf":1.0},"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"361":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"595":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"df":21,"docs":{"1324":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"442":{"tf":1.0},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"884":{"tf":1.0},"899":{"tf":1.4142135623730951},"902":{"tf":1.0},"966":{"tf":1.0},"979":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"1381":{"tf":1.0},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"363":{"tf":1.0},"47":{"tf":1.0},"597":{"tf":1.0},"66":{"tf":1.0},"733":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":2.0},"761":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"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":7,"docs":{"1042":{"tf":1.0},"1054":{"tf":1.0},"1075":{"tf":1.0},"1298":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1109":{"tf":1.0},"1123":{"tf":1.0},"308":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"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":2,"docs":{"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}}}},"df":21,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"1165":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"149":{"tf":1.0},"580":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":74,"docs":{"1107":{"tf":1.0},"111":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1180":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1349":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"149":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"54":{"tf":1.0},"580":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"71":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1162":{"tf":1.0},"1166":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1432":{"tf":1.0},"210":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0},"72":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1082":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"989":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.4142135623730951},"606":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":56,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.7320508075688772},"1154":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"1223":{"tf":1.7320508075688772},"1349":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1409":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"554":{"tf":1.7320508075688772},"555":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"6":{"tf":1.0},"682":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"727":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"837":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"n":{"c":{"df":16,"docs":{"332":{"tf":1.0},"388":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"558":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"686":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"718":{"tf":1.0},"726":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":13,"docs":{"1292":{"tf":1.0},"134":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1449":{"tf":1.0},"179":{"tf":1.0},"234":{"tf":1.0},"253":{"tf":1.0},"545":{"tf":1.0},"711":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"763":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"319":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"1180":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1306":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"742":{"tf":1.0},"901":{"tf":1.0}},"r":{"df":117,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1042":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"108":{"tf":1.0},"1137":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1173":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1316":{"tf":1.0},"1357":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1523":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"44":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.7320508075688772},"503":{"tf":1.0},"512":{"tf":1.4142135623730951},"520":{"tf":1.0},"547":{"tf":1.4142135623730951},"548":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"590":{"tf":1.0},"598":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"617":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"664":{"tf":1.4142135623730951},"673":{"tf":1.0},"674":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"697":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"86":{"tf":1.0},"871":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"914":{"tf":1.0},"931":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1102":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1194":{"tf":1.0},"780":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1144":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"1225":{"tf":1.0},"1263":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"423":{"tf":1.0},"663":{"tf":1.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1177":{"tf":1.0},"439":{"tf":1.0},"470":{"tf":1.0},"669":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1183":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}}}},"df":2,"docs":{"732":{"tf":1.0},"88":{"tf":1.0}},"f":{"a":{"c":{"df":11,"docs":{"118":{"tf":1.0},"1407":{"tf":1.0},"357":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"4":{"tf":1.0},"516":{"tf":1.0},"591":{"tf":1.0},"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"510":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"1268":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"287":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"688":{"tf":1.0},"726":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"231":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1026":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"446":{"tf":1.0},"728":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1282":{"tf":1.0},"477":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1127":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"1127":{"tf":1.0},"1148":{"tf":1.0},"1169":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1307":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1355":{"tf":1.0},"1375":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1461":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.4142135623730951},"1479":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1494":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"380":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"507":{"tf":1.0},"595":{"tf":1.0},"613":{"tf":1.0},"724":{"tf":1.0},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":7,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1111":{"tf":1.7320508075688772},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1323":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1323":{"tf":2.23606797749979},"1324":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1346":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1111":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1131":{"tf":1.0}}}},"p":{"df":3,"docs":{"1288":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"708":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"644":{"tf":1.0}}}}}},"df":27,"docs":{"1142":{"tf":2.449489742783178},"1302":{"tf":2.0},"1375":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":2.0},"1404":{"tf":1.4142135623730951},"1517":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.4142135623730951},"653":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.4142135623730951},"795":{"tf":1.0},"87":{"tf":1.4142135623730951},"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"319":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}},"l":{"df":5,"docs":{"1139":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1404":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"531":{"tf":1.0},"772":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":15,"docs":{"1164":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1528":{"tf":1.0},"19":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"451":{"tf":1.4142135623730951},"509":{"tf":1.0},"582":{"tf":1.0},"586":{"tf":1.0},"679":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"976":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}},"df":22,"docs":{"1301":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1403":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":3,"docs":{"357":{"tf":1.0},"471":{"tf":1.0},"591":{"tf":1.0}}},"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":28,"docs":{"1112":{"tf":2.23606797749979},"1121":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":2.449489742783178},"870":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"874":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}}},"r":{"df":5,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.7320508075688772},"23":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}}}},"j":{"a":{"c":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"<":{"4":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":568,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"103":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"106":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1065":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":2.449489742783178},"1071":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"11":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"111":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"113":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"117":{"tf":1.0},"1173":{"tf":1.0},"1175":{"tf":2.0},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"118":{"tf":1.0},"1180":{"tf":2.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":2.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":2.6457513110645907},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.4142135623730951},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.7320508075688772},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.0},"1248":{"tf":1.4142135623730951},"125":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"1270":{"tf":2.0},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"128":{"tf":2.449489742783178},"1281":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"129":{"tf":2.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1312":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"1320":{"tf":2.23606797749979},"1321":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":2.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1333":{"tf":2.8284271247461903},"1334":{"tf":2.449489742783178},"1336":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":3.1622776601683795},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1349":{"tf":1.0},"135":{"tf":1.7320508075688772},"1355":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"136":{"tf":2.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"137":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"138":{"tf":1.7320508075688772},"1381":{"tf":2.6457513110645907},"1382":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"14":{"tf":1.0},"1401":{"tf":2.449489742783178},"1402":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":2.23606797749979},"1407":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"1410":{"tf":2.0},"1411":{"tf":1.7320508075688772},"1413":{"tf":1.7320508075688772},"1415":{"tf":1.7320508075688772},"1417":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1419":{"tf":3.0},"142":{"tf":2.0},"1420":{"tf":2.449489742783178},"1421":{"tf":2.23606797749979},"1422":{"tf":2.0},"1423":{"tf":2.6457513110645907},"1425":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"146":{"tf":1.0},"1460":{"tf":2.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1484":{"tf":1.0},"149":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"150":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.0},"151":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":2.23606797749979},"1513":{"tf":1.4142135623730951},"1515":{"tf":1.0},"152":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1529":{"tf":2.23606797749979},"1530":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"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.4142135623730951},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.7320508075688772},"336":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":2.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":2.23606797749979},"585":{"tf":1.4142135623730951},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"63":{"tf":1.0},"648":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":2.6457513110645907},"667":{"tf":2.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.0},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"70":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"71":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"72":{"tf":2.0},"725":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":2.23606797749979},"800":{"tf":1.0},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.7320508075688772},"850":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"887":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.7320508075688772},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.7320508075688772},"981":{"tf":1.0},"986":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":2.0}},"s":{"'":{"df":1,"docs":{"1447":{"tf":1.0}}},".":{"a":{"2":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.0},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"443":{"tf":1.0},"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1510":{"tf":1.0},"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"113":{"tf":1.0},"1140":{"tf":1.0},"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1320":{"tf":1.0},"1355":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"160":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"361":{"tf":1.4142135623730951},"389":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"560":{"tf":1.0},"564":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.4142135623730951},"623":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"907":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"731":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"609":{"tf":1.0},"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"376":{"tf":1.0},"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"651":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1264":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"10":{"tf":1.0},"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1149":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1404":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"618":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1273":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"545":{"tf":1.0},"712":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1301":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":18,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1437":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"616":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"618":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"599":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"592":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"713":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"670":{"tf":1.0},"676":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1290":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"467":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"1145":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1139":{"tf":1.0},"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"714":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"714":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"669":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"670":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"716":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"716":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1313":{"tf":1.0},"1315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1301":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"364":{"tf":1.0},"382":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"70":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"963":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"a":{"2":{"a":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1084":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"575":{"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":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":2.23606797749979},"684":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1430":{"tf":1.0}}}}},"i":{"d":{"=":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1003":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":19,"docs":{"1047":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1204":{"tf":1.0},"1419":{"tf":1.0},"1515":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"r":{"df":5,"docs":{"336":{"tf":1.0},"557":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":45,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":2.0},"1047":{"tf":1.4142135623730951},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1461":{"tf":1.0},"1515":{"tf":1.4142135623730951},"160":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"1520":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"$":{"(":{"d":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1329":{"tf":1.0},"142":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1460":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"682":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"1430":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"*":{"*":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1063":{"tf":1.0},"1510":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"1530":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1063":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1430":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":42,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1106":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"562":{"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":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"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":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"r":{"d":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":41,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1105":{"tf":1.0},"113":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1497":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":44,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":2.0},"1454":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"336":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"946":{"tf":1.0},"965":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":2.0},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1310":{"tf":2.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1452":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1454":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"965":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1248":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1239":{"tf":1.4142135623730951},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":34,"docs":{"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"562":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"557":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1342":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1214":{"tf":1.0},"1436":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1436":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"995":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":44,"docs":{"1043":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"161":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.4142135623730951}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1520":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"1520":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1507":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1199":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"684":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"963":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"903":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1466":{"tf":1.0},"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"1448":{"tf":1.0},"1455":{"tf":1.0},"332":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"1507":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1310":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1237":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1081":{"tf":1.0},"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.0},"897":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1240":{"tf":1.4142135623730951},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}}}}}},"a":{"2":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1217":{"tf":1.0},"1218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":54,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"332":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"593":{"tf":1.0},"619":{"tf":1.4142135623730951},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"694":{"tf":1.4142135623730951},"711":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"151":{"tf":1.0},"167":{"tf":1.0},"244":{"tf":1.4142135623730951},"757":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"976":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"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":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":17,"docs":{"1332":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"741":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1143":{"tf":1.0},"1484":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"785":{"tf":1.4142135623730951},"858":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1486":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"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":2,"docs":{"217":{"tf":1.0},"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1046":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"785":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"779":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"885":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"854":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1084":{"tf":1.0},"854":{"tf":1.0},"859":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"856":{"tf":1.0},"857":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1305":{"tf":1.0},"262":{"tf":1.7320508075688772},"329":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":1,"docs":{"1305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1309":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"615":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1367":{"tf":2.6457513110645907},"1394":{"tf":2.449489742783178},"329":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":32,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.0},"538":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"1091":{"tf":1.0},"186":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"445":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":50,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1314":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.4142135623730951},"244":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"468":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"537":{"tf":1.0},"539":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"539":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"1382":{"tf":1.0},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1203":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}}},"df":9,"docs":{"1148":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1382":{"tf":1.0},"667":{"tf":1.0},"670":{"tf":1.7320508075688772},"678":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":14,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"330":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.7320508075688772},"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1180":{"tf":1.0},"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"1192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"798":{"tf":1.4142135623730951},"816":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1183":{"tf":1.0},"1371":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"861":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"536":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"741":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":13,"docs":{"1046":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1196":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":32,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1186":{"tf":1.0},"1196":{"tf":1.0},"1374":{"tf":1.0},"1392":{"tf":1.0},"1470":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"521":{"tf":1.0},"632":{"tf":1.0},"698":{"tf":1.0},"729":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"934":{"tf":1.0},"990":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"808":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"819":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"49":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"809":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"808":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"804":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"818":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"866":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"865":{"tf":1.0},"867":{"tf":1.0},"872":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"865":{"tf":1.0},"872":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":5,"docs":{"1182":{"tf":1.0},"429":{"tf":1.7320508075688772},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"541":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"498":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"938":{"tf":1.4142135623730951},"940":{"tf":1.0},"976":{"tf":2.0},"979":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":41,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1217":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.0},"836":{"tf":1.0},"861":{"tf":1.0},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1439":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"761":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1140":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1369":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1404":{"tf":1.0},"154":{"tf":1.0},"766":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"1480":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":7,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0},"1151":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1302":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1142":{"tf":1.0},"1171":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"634":{"tf":1.0},"635":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1088":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"696":{"tf":1.0},"797":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"709":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"695":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"769":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"588":{"tf":1.0},"656":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"518":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"770":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1361":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"522":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"408":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1151":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"349":{"tf":1.0},"519":{"tf":1.7320508075688772},"522":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}}},"y":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1399":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1312":{"tf":1.0},"1369":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1353":{"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":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"400":{"tf":1.0},"401":{"tf":1.0}}},"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":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":12,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"df":165,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"1021":{"tf":1.0},"1057":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1080":{"tf":1.0},"1094":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1231":{"tf":1.0},"127":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1302":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1340":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.23606797749979},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.0},"1479":{"tf":2.0},"16":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"528":{"tf":1.0},"532":{"tf":1.0},"536":{"tf":1.4142135623730951},"562":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"606":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"64":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"669":{"tf":1.4142135623730951},"695":{"tf":1.0},"696":{"tf":1.7320508075688772},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"725":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"828":{"tf":1.0},"842":{"tf":1.0},"851":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"921":{"tf":1.0},"94":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"581":{"tf":2.23606797749979},"590":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1219":{"tf":1.0},"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"816":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":3,"docs":{"1015":{"tf":2.0},"1030":{"tf":1.7320508075688772},"1036":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1526":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.4142135623730951},"204":{"tf":1.0},"433":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"_":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":3,"docs":{"1217":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":264,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":2.0},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.7320508075688772},"1004":{"tf":1.4142135623730951},"1006":{"tf":2.0},"1007":{"tf":2.0},"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1018":{"tf":1.7320508075688772},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.0},"1043":{"tf":2.0},"1044":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1085":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1177":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":2.6457513110645907},"1219":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1253":{"tf":2.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"127":{"tf":2.449489742783178},"1285":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1369":{"tf":1.0},"139":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.0},"1410":{"tf":1.0},"1432":{"tf":1.0},"1436":{"tf":2.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1464":{"tf":2.449489742783178},"1465":{"tf":2.449489742783178},"1466":{"tf":1.7320508075688772},"1467":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"1493":{"tf":1.0},"150":{"tf":1.4142135623730951},"1505":{"tf":2.0},"151":{"tf":1.0},"1512":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1528":{"tf":2.23606797749979},"1530":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":2.0},"42":{"tf":1.4142135623730951},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"45":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"478":{"tf":1.7320508075688772},"522":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"536":{"tf":2.449489742783178},"544":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":3.0},"608":{"tf":1.0},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"634":{"tf":1.0},"638":{"tf":1.0},"657":{"tf":1.7320508075688772},"681":{"tf":2.0},"682":{"tf":1.0},"699":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.4142135623730951},"71":{"tf":1.0},"710":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"722":{"tf":1.7320508075688772},"724":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"816":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"847":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.7320508075688772},"892":{"tf":2.449489742783178},"896":{"tf":1.0},"90":{"tf":1.4142135623730951},"908":{"tf":2.0},"91":{"tf":1.0},"911":{"tf":2.23606797749979},"913":{"tf":2.23606797749979},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":2.449489742783178},"925":{"tf":2.23606797749979},"926":{"tf":2.23606797749979},"939":{"tf":2.0},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.0},"950":{"tf":2.23606797749979},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":2.449489742783178},"97":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"981":{"tf":2.449489742783178},"982":{"tf":1.0},"983":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.0},"988":{"tf":2.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":2.23606797749979},"992":{"tf":1.7320508075688772},"993":{"tf":1.0},"994":{"tf":2.23606797749979},"995":{"tf":1.7320508075688772},"996":{"tf":3.0},"997":{"tf":2.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1505":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"368":{"tf":1.4142135623730951},"43":{"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":1,"docs":{"1307":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1085":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":1,"docs":{"1106":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":8,"docs":{"1213":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0},"911":{"tf":1.0},"992":{"tf":1.0}}}}}},"o":{"a":{"df":7,"docs":{"1264":{"tf":1.0},"1268":{"tf":2.0},"454":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":2.6457513110645907},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1175":{"tf":1.0},"21":{"tf":1.0}}}},"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"831":{"tf":1.0},"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1181":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.0},"1310":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1068":{"tf":1.0},"1169":{"tf":1.0},"1426":{"tf":1.4142135623730951},"206":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"818":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":6,"docs":{"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.0},"185":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1039":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"1001":{"tf":1.0},"762":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1070":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"1194":{"tf":1.0},"1477":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"934":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1084":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1482":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1015":{"tf":1.0},"1029":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1051":{"tf":1.0},"1175":{"tf":1.0},"871":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":1,"docs":{"1154":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":1,"docs":{"1276":{"tf":1.0}}}},"d":{"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"1015":{"tf":1.0},"1026":{"tf":1.0},"1041":{"tf":1.0},"159":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1042":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"1130":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1194":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1021":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"458":{"tf":1.0},"925":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1033":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"19":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":45,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1103":{"tf":1.0},"1208":{"tf":1.0},"1276":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"204":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"357":{"tf":1.0},"500":{"tf":1.0},"545":{"tf":1.0},"591":{"tf":1.0},"676":{"tf":1.0},"711":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"780":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0},"899":{"tf":1.7320508075688772},"902":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"959":{"tf":1.0},"966":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1194":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"1017":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0},"257":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.0},"4":{"tf":1.7320508075688772},"548":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"841":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"759":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"1425":{"tf":1.0},"214":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"368":{"tf":1.0},"43":{"tf":1.0},"602":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1062":{"tf":1.0},"1083":{"tf":1.7320508075688772},"109":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"248":{"tf":1.0},"501":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":12,"docs":{"1154":{"tf":1.4142135623730951},"118":{"tf":1.0},"1403":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"607":{"tf":1.0},"67":{"tf":1.0},"762":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"742":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":12,"docs":{"1298":{"tf":1.0},"192":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.7320508075688772},"93":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1479":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"578":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"322":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1388":{"tf":1.0},"613":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"1209":{"tf":1.0},"1255":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1423":{"tf":1.0},"1436":{"tf":1.0},"1486":{"tf":1.7320508075688772},"270":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"583":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"732":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.4142135623730951},"870":{"tf":1.0},"873":{"tf":3.0},"874":{"tf":1.0},"886":{"tf":1.0},"916":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1292":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1038":{"tf":1.0},"129":{"tf":1.0},"234":{"tf":1.0},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"789":{"tf":1.0},"790":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1154":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":104,"docs":{"1047":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1436":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"378":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"410":{"tf":1.0},"419":{"tf":1.0},"43":{"tf":2.0},"431":{"tf":1.0},"458":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.4142135623730951},"576":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"622":{"tf":1.4142135623730951},"644":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.7320508075688772},"708":{"tf":1.0},"712":{"tf":1.0},"724":{"tf":1.0},"75":{"tf":1.0},"769":{"tf":1.0},"772":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"904":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1436":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1333":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"734":{"tf":1.0},"788":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"458":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.0}}}}}}},"t":{"df":15,"docs":{"1095":{"tf":1.0},"1131":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1452":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"762":{"tf":1.0},"775":{"tf":1.0},"788":{"tf":1.0},"801":{"tf":1.0},"830":{"tf":1.0},"841":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":4,"docs":{"1046":{"tf":1.0},"1487":{"tf":1.0},"726":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"284":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":53,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1191":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1205":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1293":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":3.605551275463989},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":2.449489742783178},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.23606797749979},"36":{"tf":1.0},"4":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"502":{"tf":1.4142135623730951},"679":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":2.0},"902":{"tf":1.0},"908":{"tf":1.0},"942":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"1199":{"tf":1.0},"1293":{"tf":1.0},"679":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1205":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"28":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"250":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"1001":{"tf":1.0},"1233":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"991":{"tf":1.0},"997":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"1077":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1256":{"tf":1.0},"130":{"tf":2.23606797749979},"1333":{"tf":1.4142135623730951},"143":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"939":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1312":{"tf":1.0}}},"t":{"df":1,"docs":{"1452":{"tf":1.0}}}},"w":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"976":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1452":{"tf":1.0},"6":{"tf":1.0},"827":{"tf":1.0}}}}},"o":{"df":4,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1006":{"tf":1.0},"62":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"762":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1356":{"tf":1.0},"1359":{"tf":1.0},"420":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1382":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"474":{"tf":1.0},"576":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"667":{"tf":1.0},"761":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1314":{"tf":1.0},"1325":{"tf":1.0},"1503":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.0},"42":{"tf":1.0},"516":{"tf":1.0},"59":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"798":{"tf":1.0},"947":{"tf":1.0},"983":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1181":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"548":{"tf":1.0},"882":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1471":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1055":{"tf":1.0},"1073":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":2.0},"1209":{"tf":1.0},"1335":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"1441":{"tf":1.0},"146":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"447":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"654":{"tf":1.0},"658":{"tf":1.0},"681":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"816":{"tf":1.4142135623730951},"91":{"tf":1.0},"923":{"tf":1.0},"947":{"tf":1.4142135623730951},"981":{"tf":1.0},"985":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1026":{"tf":1.0},"985":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"918":{"tf":1.0}},"i":{"df":4,"docs":{"1162":{"tf":1.0},"308":{"tf":1.0},"746":{"tf":1.0},"985":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1095":{"tf":1.0},"112":{"tf":1.0},"1161":{"tf":1.0},"1456":{"tf":1.0},"150":{"tf":1.0},"238":{"tf":1.0},"36":{"tf":1.4142135623730951},"463":{"tf":2.0},"676":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":3,"docs":{"1399":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"1006":{"tf":1.0},"1214":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1251":{"tf":1.0},"1260":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1528":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.0},"939":{"tf":1.7320508075688772},"950":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"974":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1175":{"tf":1.0},"1286":{"tf":1.0},"982":{"tf":1.0}}}}}},"x":{"df":6,"docs":{"1036":{"tf":1.0},"1084":{"tf":1.0},"308":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1116":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1507":{"tf":1.0},"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1512":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"666":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}}}},"df":96,"docs":{"1020":{"tf":1.0},"1042":{"tf":1.0},"108":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.4142135623730951},"1173":{"tf":1.7320508075688772},"1174":{"tf":1.4142135623730951},"1175":{"tf":2.449489742783178},"1176":{"tf":1.7320508075688772},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1210":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1294":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":2.0},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1402":{"tf":2.0},"1406":{"tf":1.4142135623730951},"1523":{"tf":1.0},"1524":{"tf":1.0},"2":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"442":{"tf":1.7320508075688772},"443":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"593":{"tf":1.0},"6":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"664":{"tf":1.7320508075688772},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"673":{"tf":1.4142135623730951},"679":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.0},"847":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"851":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"916":{"tf":1.0},"955":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1401":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951}}}}}}}}}},"df":3,"docs":{"1340":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"144":{"tf":1.0},"837":{"tf":1.0},"855":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1114":{"tf":1.0},"170":{"tf":1.0}}}}},"t":{"df":2,"docs":{"182":{"tf":1.0},"780":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"733":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"869":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"62":{"tf":1.0},"766":{"tf":1.0},"941":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"113":{"tf":1.0},"1209":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.7320508075688772},"285":{"tf":1.0},"340":{"tf":1.4142135623730951},"536":{"tf":1.0},"567":{"tf":1.4142135623730951},"722":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":2.0},"845":{"tf":1.7320508075688772},"848":{"tf":2.0},"973":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"831":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"833":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"848":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"1219":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":91,"docs":{"1020":{"tf":1.0},"1021":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1177":{"tf":2.23606797749979},"1184":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1212":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1278":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"1457":{"tf":1.0},"197":{"tf":2.0},"358":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"592":{"tf":1.0},"613":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"65":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"774":{"tf":1.0},"862":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":2.449489742783178},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"93":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":2.0},"995":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":15,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1122":{"tf":1.0},"1403":{"tf":2.0},"1420":{"tf":1.0},"1433":{"tf":1.0},"174":{"tf":1.0},"382":{"tf":1.4142135623730951},"47":{"tf":1.0},"495":{"tf":1.0},"616":{"tf":1.4142135623730951},"739":{"tf":1.0},"792":{"tf":1.0},"845":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"739":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":31,"docs":{"1045":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1186":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1297":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"414":{"tf":1.0},"439":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"558":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":36,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1440":{"tf":3.1622776601683795},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"34":{"tf":1.0},"4":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"908":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1440":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"301":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"295":{"tf":1.0},"302":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"918":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":53,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1278":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1355":{"tf":1.0},"1381":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":2.0},"462":{"tf":1.0},"465":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"547":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"1047":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1084":{"tf":1.0},"1093":{"tf":1.0},"1095":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1502":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1505":{"tf":1.0},"1508":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1525":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"446":{"tf":1.0},"545":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"614":{"tf":1.0}}}}}},"df":5,"docs":{"1432":{"tf":1.0},"381":{"tf":1.0},"614":{"tf":1.0},"788":{"tf":1.0},"836":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"1358":{"tf":1.0},"381":{"tf":1.0},"442":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1084":{"tf":1.0},"934":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"264":{"tf":1.0},"664":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0},"889":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"1071":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1439":{"tf":1.0},"742":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.0},"1130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"18":{"tf":1.0},"357":{"tf":1.0},"501":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"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":{"916":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"1292":{"tf":1.0},"1429":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"254":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":21,"docs":{"1126":{"tf":1.4142135623730951},"115":{"tf":1.0},"1220":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1363":{"tf":1.0},"1374":{"tf":1.0},"1386":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"319":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"916":{"tf":1.0}}}},"x":{"df":2,"docs":{"1287":{"tf":1.0},"925":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1320":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":{"1151":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1151":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1137":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":4.0},"1152":{"tf":2.0},"506":{"tf":1.4142135623730951}},"j":{"a":{"c":{"df":1,"docs":{"506":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"1197":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.0},"1497":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"440":{"tf":1.0},"446":{"tf":1.0},"554":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0}},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1358":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":44,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"108":{"tf":1.0},"1082":{"tf":1.0},"1107":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":2.0},"1193":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1501":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"790":{"tf":1.0},"851":{"tf":1.0},"881":{"tf":1.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.0},"917":{"tf":1.0},"986":{"tf":1.0}}},"r":{"df":1,"docs":{"1030":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1255":{"tf":1.0},"2":{"tf":1.0},"227":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}},"i":{"df":25,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1260":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.0},"1469":{"tf":1.0},"1487":{"tf":1.4142135623730951},"166":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"532":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.4142135623730951},"634":{"tf":1.0},"699":{"tf":1.4142135623730951},"709":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"1264":{"tf":1.0},"1349":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"357":{"tf":1.0},"515":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"545":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.4142135623730951},"591":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"711":{"tf":1.0},"717":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":5,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}},"y":{"[":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1305":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"171":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"935":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"21":{"tf":1.0},"295":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"858":{"tf":1.0},"932":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1048":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":1.0},"1003":{"tf":1.0},"1050":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.4142135623730951},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1397":{"tf":1.0},"1404":{"tf":1.4142135623730951},"142":{"tf":1.0},"1423":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"593":{"tf":1.0},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"799":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"980":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1014":{"tf":1.0},"1054":{"tf":1.0},"1161":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1262":{"tf":1.0},"1277":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.0},"1390":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1423":{"tf":1.0},"1426":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"406":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"523":{"tf":1.0},"593":{"tf":1.0},"640":{"tf":1.0},"693":{"tf":1.0},"700":{"tf":1.0},"726":{"tf":1.4142135623730951},"992":{"tf":1.0}},"i":{"df":10,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":10,"docs":{"1216":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"845":{"tf":1.0},"873":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1340":{"tf":1.4142135623730951},"1520":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"669":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"676":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"1333":{"tf":2.23606797749979},"151":{"tf":1.0},"167":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"902":{"tf":1.0},"938":{"tf":1.0},"945":{"tf":1.0},"976":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":97,"docs":{"1112":{"tf":2.0},"1122":{"tf":1.0},"1127":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1158":{"tf":2.449489742783178},"1179":{"tf":1.0},"1186":{"tf":1.0},"1219":{"tf":1.0},"1227":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1399":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1475":{"tf":1.0},"1506":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"309":{"tf":1.0},"348":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"398":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":2.0},"51":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"645":{"tf":1.4142135623730951},"676":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"73":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"762":{"tf":2.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"956":{"tf":1.0},"999":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"1181":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1452":{"tf":1.0},"2":{"tf":1.0},"353":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":18,"docs":{"132":{"tf":2.0},"1325":{"tf":1.0},"1336":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.0},"138":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":2.0},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.4142135623730951},"226":{"tf":1.0},"579":{"tf":1.0},"73":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"101":{"tf":1.0},"1027":{"tf":1.0},"1070":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1285":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1456":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":1.0},"1524":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"602":{"tf":1.0},"69":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1061":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":1.0},"681":{"tf":1.4142135623730951},"911":{"tf":1.0},"927":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1085":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"61":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"987":{"tf":1.0}}}}},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1095":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1420":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1047":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"1515":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":155,"docs":{"1007":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.449489742783178},"1052":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1161":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1209":{"tf":1.0},"1218":{"tf":1.0},"124":{"tf":1.0},"1268":{"tf":1.0},"127":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1288":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1325":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1340":{"tf":2.0},"1349":{"tf":1.0},"135":{"tf":2.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1399":{"tf":3.0},"1401":{"tf":2.23606797749979},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":2.449489742783178},"1456":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1487":{"tf":1.0},"150":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":2.6457513110645907},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"271":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.0},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"622":{"tf":1.0},"635":{"tf":1.7320508075688772},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"709":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"794":{"tf":1.0},"81":{"tf":1.0},"847":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"926":{"tf":2.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":2.0},"995":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1000":{"tf":1.0},"1033":{"tf":1.0},"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"345":{"tf":1.0},"572":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"df":34,"docs":{"117":{"tf":1.0},"1261":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"491":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"827":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"57":{"tf":1.0},"985":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":5,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1088":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":54,"docs":{"1127":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":1.0},"1172":{"tf":1.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1268":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"327":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"770":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1158":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1359":{"tf":1.0},"1451":{"tf":1.0},"1524":{"tf":1.0},"327":{"tf":1.0},"348":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"732":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":18,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1228":{"tf":1.0},"1287":{"tf":1.0},"1298":{"tf":1.0},"1451":{"tf":1.0},"1526":{"tf":1.0},"242":{"tf":1.0},"446":{"tf":1.0},"456":{"tf":1.0},"486":{"tf":1.0},"510":{"tf":1.0},"82":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"976":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":45,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1169":{"tf":1.0},"1216":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1404":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.7320508075688772},"243":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"284":{"tf":2.23606797749979},"288":{"tf":2.8284271247461903},"295":{"tf":2.0},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"314":{"tf":2.0},"315":{"tf":1.4142135623730951},"597":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"79":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1080":{"tf":1.0},"669":{"tf":1.0},"911":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"371":{"tf":1.0},"394":{"tf":1.0},"519":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"581":{"tf":2.23606797749979},"590":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":18,"docs":{"1085":{"tf":1.0},"110":{"tf":1.0},"1129":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1505":{"tf":1.0},"1515":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"450":{"tf":1.0},"605":{"tf":1.0},"82":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0},"996":{"tf":1.0}}},"h":{"df":2,"docs":{"1082":{"tf":1.0},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1006":{"tf":1.0},"1011":{"tf":1.0},"1405":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1522":{"tf":1.0},"355":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"921":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"m":{"df":17,"docs":{"1156":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1510":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"5":{"tf":1.0},"514":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"935":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":33,"docs":{"1081":{"tf":2.449489742783178},"1088":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1306":{"tf":2.0},"1307":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"298":{"tf":1.0},"334":{"tf":1.0},"363":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"506":{"tf":1.4142135623730951},"519":{"tf":2.0},"75":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0},"999":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1180":{"tf":1.0},"1390":{"tf":1.0},"1441":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"790":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"767":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1120":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"28":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.4142135623730951},"511":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"608":{"tf":1.0},"64":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":2.0},"811":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"306":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":36,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":2.23606797749979},"294":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.4142135623730951},"320":{"tf":1.0},"4":{"tf":1.0},"887":{"tf":1.0},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1458":{"tf":1.0},"83":{"tf":1.0},"932":{"tf":1.0}}}}},"df":0,"docs":{}},"df":14,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":1.4142135623730951},"1346":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"179":{"tf":1.0},"208":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1083":{"tf":1.7320508075688772}}}}}}},"k":{"df":21,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0}}},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.23606797749979},"1135":{"tf":1.0},"1506":{"tf":1.0},"1515":{"tf":1.7320508075688772},"545":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"1082":{"tf":1.0},"1194":{"tf":1.0},"177":{"tf":1.0},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"942":{"tf":1.0}}},"df":18,"docs":{"1035":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"1342":{"tf":1.0},"1436":{"tf":1.0},"1448":{"tf":1.0},"359":{"tf":1.0},"43":{"tf":1.0},"593":{"tf":1.0},"71":{"tf":1.0},"809":{"tf":1.0},"855":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"984":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"661":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"'":{"df":2,"docs":{"1222":{"tf":1.0},"1243":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1228":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1223":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1225":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"1221":{"tf":1.7320508075688772},"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1258":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"1154":{"tf":1.4142135623730951},"1155":{"tf":1.0},"1174":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"1520":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"259":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.4142135623730951},"4":{"tf":1.0},"899":{"tf":1.0}}}}}}}}}}}},"r":{"df":71,"docs":{"1046":{"tf":1.0},"1082":{"tf":1.0},"1088":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1207":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1313":{"tf":1.0},"1322":{"tf":1.0},"1331":{"tf":1.0},"1350":{"tf":1.0},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1369":{"tf":1.0},"1373":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1401":{"tf":1.0},"1448":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1484":{"tf":1.0},"171":{"tf":1.0},"268":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"409":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"451":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"516":{"tf":1.0},"549":{"tf":1.0},"558":{"tf":1.4142135623730951},"589":{"tf":1.0},"591":{"tf":1.0},"595":{"tf":1.0},"615":{"tf":1.0},"620":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"767":{"tf":1.0},"799":{"tf":1.0},"847":{"tf":1.0},"851":{"tf":1.0},"911":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.4142135623730951},"981":{"tf":1.0},"983":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1048":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"940":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1100":{"tf":1.0},"1102":{"tf":1.0},"871":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"614":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"611":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":89,"docs":{"107":{"tf":1.4142135623730951},"1079":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1196":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1247":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1501":{"tf":1.0},"1515":{"tf":1.0},"1531":{"tf":1.4142135623730951},"179":{"tf":1.0},"244":{"tf":1.0},"271":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"43":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"519":{"tf":2.23606797749979},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":3.0},"595":{"tf":1.0},"600":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"605":{"tf":1.4142135623730951},"64":{"tf":1.0},"696":{"tf":2.23606797749979},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.7320508075688772},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"722":{"tf":1.0},"740":{"tf":1.0},"751":{"tf":1.0},"836":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"880":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":2.0},"918":{"tf":1.0},"922":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"538":{"tf":1.0},"539":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":3,"docs":{"1112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":22,"docs":{"1080":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"1286":{"tf":2.0},"1292":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1314":{"tf":1.0},"1436":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"479":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"61":{"tf":1.0},"747":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"152":{"tf":1.0},"37":{"tf":1.0},"753":{"tf":1.0},"767":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"751":{"tf":1.0}}}}}},"df":7,"docs":{"152":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"767":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}},"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}},"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":{"1394":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1353":{"tf":1.4142135623730951}}},"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":{"1367":{"tf":2.0}}}}}}}}},"df":41,"docs":{"1142":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1433":{"tf":1.0},"1469":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.4142135623730951},"527":{"tf":1.0},"605":{"tf":1.4142135623730951},"614":{"tf":1.0},"634":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"798":{"tf":1.0},"819":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.4142135623730951},"850":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"[":{"'":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1072":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1072":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1072":{"tf":1.0},"1094":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"79":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1276":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"292":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1227":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"802":{"tf":1.0},"93":{"tf":1.0}}}}},"df":7,"docs":{"1452":{"tf":1.0},"1477":{"tf":1.0},"1520":{"tf":1.0},"356":{"tf":1.0},"590":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":9,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"393":{"tf":1.0},"627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1338":{"tf":1.4142135623730951},"1390":{"tf":1.0}}}}},"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":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1385":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":43,"docs":{"1154":{"tf":1.0},"1219":{"tf":1.0},"1250":{"tf":1.0},"129":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1346":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.0},"1428":{"tf":1.0},"1433":{"tf":1.0},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1497":{"tf":1.0},"179":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"449":{"tf":1.0},"627":{"tf":1.4142135623730951},"628":{"tf":1.0},"629":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"453":{"tf":1.0},"914":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"903":{"tf":1.0}}}}},"df":9,"docs":{"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.4142135623730951},"277":{"tf":1.0},"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"1017":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1109":{"tf":1.0},"1136":{"tf":1.0},"120":{"tf":1.0},"1222":{"tf":1.0},"1263":{"tf":1.0},"1398":{"tf":1.0},"1435":{"tf":1.0},"231":{"tf":1.0},"291":{"tf":1.0},"454":{"tf":1.0},"482":{"tf":1.0},"664":{"tf":1.0},"751":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"995":{"tf":1.0}}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":2,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0}}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1219":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"18":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.4142135623730951},"332":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.4142135623730951},"6":{"tf":1.0},"690":{"tf":1.0},"725":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"347":{"tf":1.0},"348":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1022":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1407":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1077":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1376":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1052":{"tf":1.0},"1206":{"tf":1.0},"1225":{"tf":1.0},"149":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1160":{"tf":1.0},"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"m":{"df":12,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1306":{"tf":1.0},"439":{"tf":1.0},"467":{"tf":1.0},"528":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"713":{"tf":1.0},"82":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":68,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"648":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1039":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1212":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"809":{"tf":1.0},"818":{"tf":1.0},"871":{"tf":1.0},"901":{"tf":1.0},"976":{"tf":1.0}}}}},"s":{"df":30,"docs":{"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1197":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1419":{"tf":1.0},"1465":{"tf":1.0},"1479":{"tf":1.0},"372":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"522":{"tf":1.0},"588":{"tf":1.7320508075688772},"606":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.0},"699":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"656":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"656":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"1144":{"tf":1.4142135623730951},"370":{"tf":1.0},"604":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"214":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"749":{"tf":1.0}}}}},"df":36,"docs":{"1130":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1305":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"855":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"980":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1333":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1144":{"tf":1.0},"1148":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1219":{"tf":1.0},"1339":{"tf":2.0},"370":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"849":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":2,"docs":{"1197":{"tf":1.0},"446":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"1145":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1253":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":2.0},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":2.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":3.605551275463989},"963":{"tf":1.4142135623730951},"969":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"1000":{"tf":1.0},"1256":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"_":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"104":{"tf":1.0},"1092":{"tf":1.0},"1114":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1154":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1219":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"1288":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1365":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.23606797749979},"1421":{"tf":2.0},"1422":{"tf":2.23606797749979},"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1495":{"tf":1.0},"1522":{"tf":1.0},"1528":{"tf":1.0},"280":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"378":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.7320508075688772},"462":{"tf":1.0},"485":{"tf":1.0},"502":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"522":{"tf":1.0},"528":{"tf":1.0},"531":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.4142135623730951},"626":{"tf":1.0},"629":{"tf":1.0},"648":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"740":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.0},"890":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"911":{"tf":2.6457513110645907},"916":{"tf":1.7320508075688772},"950":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":32,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.0},"1129":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1182":{"tf":1.0},"1275":{"tf":1.0},"1294":{"tf":1.0},"13":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"23":{"tf":1.0},"422":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.0},"547":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"856":{"tf":1.0},"91":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"a":{"df":1,"docs":{"1378":{"tf":1.0}}},"b":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":57,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":2.0},"1268":{"tf":1.7320508075688772},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"424":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"461":{"tf":2.8284271247461903},"463":{"tf":1.0},"465":{"tf":2.6457513110645907},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"495":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":2.23606797749979},"530":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":2.23606797749979},"707":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1399":{"tf":1.0},"382":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1119":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":4,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"985":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1323":{"tf":1.0},"156":{"tf":1.0},"859":{"tf":1.0}}}},"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"506":{"tf":1.0},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1006":{"tf":1.0}}}},"m":{"df":4,"docs":{"1044":{"tf":2.8284271247461903},"1465":{"tf":1.0},"376":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772}}},"n":{"d":{"df":12,"docs":{"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1329":{"tf":1.0},"1362":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"855":{"tf":1.4142135623730951},"868":{"tf":1.0},"872":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"901":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"1404":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":16,"docs":{"1041":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1100":{"tf":1.0},"1214":{"tf":1.0},"1381":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"871":{"tf":1.0},"925":{"tf":1.0},"948":{"tf":1.0},"996":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.0},"1035":{"tf":1.0},"1315":{"tf":1.0},"1403":{"tf":1.4142135623730951},"169":{"tf":1.0},"856":{"tf":1.0},"951":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1194":{"tf":1.7320508075688772},"181":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1071":{"tf":1.0},"1105":{"tf":1.0},"116":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1528":{"tf":1.0},"352":{"tf":2.0},"55":{"tf":1.0},"584":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1054":{"tf":1.0},"1088":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"43":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"1301":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"814":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"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":{"22":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1116":{"tf":1.0},"157":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"759":{"tf":1.0},"760":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":1,"docs":{"760":{"tf":1.4142135623730951}}},"p":{"df":18,"docs":{"10":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"581":{"tf":1.0},"583":{"tf":1.7320508075688772},"585":{"tf":2.23606797749979},"6":{"tf":1.0},"682":{"tf":1.0},"691":{"tf":1.0},"78":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1333":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}},"i":{"df":3,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1177":{"tf":1.0},"1197":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"511":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1402":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"$":{"1":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":18,"docs":{"1011":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"974":{"tf":1.0},"996":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"109":{"tf":1.7320508075688772},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1221":{"tf":1.0},"1437":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"36":{"tf":1.0},"93":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"807":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.4142135623730951},"580":{"tf":2.449489742783178}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1062":{"tf":1.0},"1161":{"tf":1.0},"478":{"tf":1.0},"798":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"1071":{"tf":1.0},"1106":{"tf":1.0},"1490":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"911":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1522":{"tf":1.0}}},"y":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1301":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1426":{"tf":1.0},"366":{"tf":1.0},"600":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"473":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"913":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1006":{"tf":1.0},"1419":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"760":{"tf":1.0},"762":{"tf":1.0}}}},"df":36,"docs":{"1012":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"1038":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.0},"1268":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"474":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.0},"572":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"b":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0},"1310":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1164":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1015":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1254":{"tf":1.0},"1472":{"tf":1.0},"345":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"82":{"tf":1.7320508075688772},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"1015":{"tf":1.0},"1028":{"tf":1.0},"1031":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.4142135623730951},"57":{"tf":1.0},"571":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":18,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"925":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1011":{"tf":1.0},"1174":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0},"833":{"tf":1.0},"934":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"833":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"236":{"tf":1.0},"666":{"tf":1.0},"911":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"946":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":10,"docs":{"1077":{"tf":1.0},"1080":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1312":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"911":{"tf":1.0},"981":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"884":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"1144":{"tf":1.0},"1161":{"tf":1.0},"1255":{"tf":1.0},"227":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"373":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":15,"docs":{"1003":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"981":{"tf":1.0},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1306":{"tf":1.0},"1522":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1154":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"912":{"tf":1.0},"936":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"581":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"581":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1381":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"555":{"tf":1.0},"644":{"tf":1.0},"695":{"tf":1.0}},"r":{"df":2,"docs":{"642":{"tf":1.0},"654":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"576":{"tf":1.0},"631":{"tf":1.0},"653":{"tf":1.0},"656":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"651":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"555":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"649":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"637":{"tf":1.0},"656":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0}}}}}},"df":3,"docs":{"625":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"706":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"595":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.0},"769":{"tf":1.4142135623730951},"82":{"tf":1.0},"949":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"595":{"tf":1.0},"618":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1374":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"598":{"tf":1.0},"667":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"618":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1376":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0}}}},"o":{"df":1,"docs":{"618":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"599":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1021":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0}}}}}},"df":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1126":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}},"s":{"df":1,"docs":{"1374":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"723":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"576":{"tf":1.0},"87":{"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":{"555":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"653":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"653":{"tf":1.0}}}}}}}},"df":2,"docs":{"1375":{"tf":1.4142135623730951},"1386":{"tf":2.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"609":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1154":{"tf":1.0},"120":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"138":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"1440":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"916":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"987":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"1166":{"tf":1.0},"1336":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"759":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":47,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1106":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1253":{"tf":1.0},"1320":{"tf":1.0},"1448":{"tf":1.0},"1464":{"tf":1.7320508075688772},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1528":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"280":{"tf":1.4142135623730951},"31":{"tf":1.0},"418":{"tf":1.4142135623730951},"526":{"tf":1.0},"536":{"tf":1.7320508075688772},"58":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"722":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1206":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"913":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1022":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1530":{"tf":1.0},"974":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":41,"docs":{"11":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1149":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1378":{"tf":1.0},"1389":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"177":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.4142135623730951},"359":{"tf":1.0},"43":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"593":{"tf":1.0},"675":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"920":{"tf":1.0},"981":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1390":{"tf":1.0},"311":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1343":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0}},"u":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1170":{"tf":1.0},"176":{"tf":1.0},"837":{"tf":1.0},"856":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":42,"docs":{"1068":{"tf":1.0},"1086":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1205":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1396":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.4142135623730951},"49":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"91":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.4142135623730951},"930":{"tf":1.0},"935":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"759":{"tf":1.0},"871":{"tf":1.0}}},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"732":{"tf":1.0},"94":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"257":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.4142135623730951},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"82":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"804":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1202":{"tf":1.0},"1285":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":2.449489742783178},"1365":{"tf":1.0},"1388":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.4142135623730951},"321":{"tf":1.0},"347":{"tf":1.4142135623730951},"391":{"tf":1.0},"548":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0},"625":{"tf":1.0},"766":{"tf":1.0},"814":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"845":{"tf":1.0},"848":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"900":{"tf":1.7320508075688772},"902":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"543":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"82":{"tf":1.0},"856":{"tf":1.0},"925":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":12,"docs":{"1014":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1403":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"456":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"915":{"tf":1.0},"960":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1011":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.7320508075688772},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1455":{"tf":1.4142135623730951},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1149":{"tf":1.0},"1499":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":29,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.7320508075688772},"1119":{"tf":1.7320508075688772},"1120":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1122":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1162":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1170":{"tf":1.0},"41":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"827":{"tf":1.7320508075688772},"883":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1162":{"tf":1.0},"1163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1008":{"tf":1.0},"1032":{"tf":1.0},"1042":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1378":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"169":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"760":{"tf":1.0},"918":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":26,"docs":{"108":{"tf":2.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"93":{"tf":1.4142135623730951},"936":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"995":{"tf":1.4142135623730951}},"n":{"df":10,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.0},"1237":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"837":{"tf":1.0},"850":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1051":{"tf":1.0},"1073":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1173":{"tf":1.0},"118":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1333":{"tf":2.0},"1336":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1400":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1466":{"tf":1.0},"147":{"tf":1.0},"1476":{"tf":1.0},"225":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"357":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"482":{"tf":1.0},"50":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.4142135623730951},"861":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"952":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1176":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1197":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"542":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"951":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":24,"docs":{"1015":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"343":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"262":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1213":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}}}}}},"_":{"a":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":13,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1518":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"_":{"b":{"6":{"4":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"638":{"tf":1.0},"646":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"948":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"611":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"277":{"tf":1.0},"616":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}}}}}},"df":87,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1212":{"tf":1.0},"1228":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1276":{"tf":1.4142135623730951},"130":{"tf":1.0},"1320":{"tf":1.0},"1333":{"tf":1.0},"1436":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"486":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"84":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"896":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.7320508075688772},"915":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"939":{"tf":1.7320508075688772},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"404":{"tf":1.0},"412":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":7,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"608":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":19,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"375":{"tf":1.0},"45":{"tf":1.0},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"911":{"tf":1.0},"913":{"tf":1.0},"950":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"378":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":17,"docs":{"1222":{"tf":1.0},"1235":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1476":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1015":{"tf":1.0},"1041":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1158":{"tf":1.0}}}},"t":{"df":3,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0},"1292":{"tf":1.0}}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"587":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1392":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1148":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1149":{"tf":1.0},"1155":{"tf":1.0},"1392":{"tf":1.4142135623730951},"684":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"3":{".":{"1":{"1":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"10":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1155":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1274":{"tf":1.0},"1293":{"tf":1.0},"1302":{"tf":1.0},"1371":{"tf":1.4142135623730951},"1395":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"548":{"tf":2.0},"549":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"6":{"tf":1.0},"610":{"tf":1.0},"620":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0},"690":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}}},"q":{"1":{"df":17,"docs":{"1403":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"616":{"tf":1.0},"640":{"tf":1.0},"785":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1112":{"tf":2.0},"1116":{"tf":1.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":32,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1032":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.7320508075688772},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"572":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"984":{"tf":1.0},"996":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"1507":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1010":{"tf":1.0},"226":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"843":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1309":{"tf":1.0},"35":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"871":{"tf":1.0},"944":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1143":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":16,"docs":{"1242":{"tf":1.0},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"856":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":22,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.0},"122":{"tf":1.0},"1318":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"83":{"tf":1.0},"889":{"tf":1.0},"909":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1479":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1160":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1168":{"tf":1.0}}},"s":{"df":18,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0},"1394":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"(":{"1":{"0":{"df":1,"docs":{"726":{"tf":1.0}}},"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":10,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"379":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.4142135623730951},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}},"df":10,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"682":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1276":{"tf":1.0},"41":{"tf":1.0},"486":{"tf":1.0},"751":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1227":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"1094":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1194":{"tf":1.0},"125":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1340":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1422":{"tf":1.0},"1498":{"tf":1.0},"1529":{"tf":1.0},"192":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.0},"369":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"603":{"tf":1.0},"660":{"tf":1.0},"667":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":9,"docs":{"1396":{"tf":1.0},"14":{"tf":1.4142135623730951},"19":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"454":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"673":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"1042":{"tf":1.0},"1211":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"506":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1403":{"tf":1.0},"856":{"tf":1.0},"934":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"1152":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1286":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"440":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"525":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"702":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1083":{"tf":1.0},"916":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"208":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"599":{"tf":1.0},"616":{"tf":1.4142135623730951},"879":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"103":{"tf":1.0},"1035":{"tf":1.0},"1041":{"tf":1.0},"1089":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.0},"1295":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"241":{"tf":1.0},"342":{"tf":1.0},"437":{"tf":1.0},"545":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"922":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":44,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.4142135623730951},"1004":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1235":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1251":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.23606797749979},"1476":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"292":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0},"732":{"tf":1.0},"763":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"932":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":2.0},"977":{"tf":1.0},"979":{"tf":1.0},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1096":{"tf":1.0},"1099":{"tf":1.0},"974":{"tf":1.4142135623730951},"983":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}},"s":{"df":5,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1369":{"tf":1.0},"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1307":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}}}},"df":50,"docs":{"1052":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1355":{"tf":2.449489742783178},"1401":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1471":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"166":{"tf":1.0},"192":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"434":{"tf":2.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"538":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"847":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"883":{"tf":1.0},"916":{"tf":1.4142135623730951}},"f":{"df":13,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":54,"docs":{"1092":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1347":{"tf":1.7320508075688772},"1370":{"tf":1.0},"1395":{"tf":1.0},"1407":{"tf":1.4142135623730951},"1426":{"tf":1.0},"1434":{"tf":1.0},"1457":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"262":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"366":{"tf":1.0},"385":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"589":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"619":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"685":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"860":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"881":{"tf":1.0},"885":{"tf":1.0},"977":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1419":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1292":{"tf":1.0},"1491":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1465":{"tf":1.0},"1467":{"tf":1.0},"254":{"tf":1.0},"976":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1099":{"tf":1.0},"1102":{"tf":1.0},"1154":{"tf":1.0},"1437":{"tf":1.0},"1452":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1179":{"tf":1.0},"1208":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1405":{"tf":1.4142135623730951},"373":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"816":{"tf":1.0},"93":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1474":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"783":{"tf":2.0},"976":{"tf":1.0}}}},"df":16,"docs":{"1208":{"tf":1.4142135623730951},"1230":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"533":{"tf":1.0},"646":{"tf":1.0},"710":{"tf":1.0},"783":{"tf":1.4142135623730951},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"96":{"tf":1.0},"977":{"tf":1.0}},"i":{"df":3,"docs":{"1075":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1010":{"tf":1.0},"1097":{"tf":1.0},"169":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"951":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"351":{"tf":1.0},"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":16,"docs":{"1171":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1507":{"tf":1.0},"221":{"tf":1.0},"458":{"tf":1.4142135623730951},"505":{"tf":1.0},"782":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"929":{"tf":1.0},"930":{"tf":1.0},"932":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"954":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"1117":{"tf":1.0},"1298":{"tf":1.0},"748":{"tf":1.0},"869":{"tf":1.0},"885":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1194":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"947":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}},"df":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"871":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1007":{"tf":1.0},"1047":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"166":{"tf":1.0},"874":{"tf":1.0},"911":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"1214":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0}}},"v":{"df":7,"docs":{"1094":{"tf":1.0},"1403":{"tf":1.0},"1470":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"451":{"tf":1.0},"874":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"805":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":8,"docs":{"1310":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1507":{"tf":1.0},"237":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":3,"docs":{"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":1.7320508075688772}}},"df":1,"docs":{"884":{"tf":1.0}}}},"o":{"df":1,"docs":{"93":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"635":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1339":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":22,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1206":{"tf":1.0},"1339":{"tf":3.4641016151377544},"182":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"519":{"tf":1.4142135623730951},"696":{"tf":1.0},"797":{"tf":1.4142135623730951},"833":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.4142135623730951},"849":{"tf":1.0},"859":{"tf":1.4142135623730951},"916":{"tf":1.0},"921":{"tf":1.0},"94":{"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":3,"docs":{"554":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"1213":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"1194":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"749":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"456":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1278":{"tf":1.7320508075688772},"1281":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.0},"509":{"tf":1.0},"538":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"503":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"1148":{"tf":1.0},"1192":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1355":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"538":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"1020":{"tf":1.0},"1146":{"tf":1.0},"1262":{"tf":1.0},"1265":{"tf":1.0},"413":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"647":{"tf":1.0},"676":{"tf":1.0},"955":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":70,"docs":{"1146":{"tf":1.4142135623730951},"1148":{"tf":2.0},"1149":{"tf":1.0},"1185":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1206":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":2.23606797749979},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":2.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.7320508075688772},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":2.23606797749979},"1405":{"tf":1.0},"1441":{"tf":1.0},"1474":{"tf":1.0},"1493":{"tf":2.0},"151":{"tf":1.0},"19":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.4142135623730951},"420":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.0},"507":{"tf":1.0},"528":{"tf":1.7320508075688772},"617":{"tf":1.0},"648":{"tf":1.4142135623730951},"654":{"tf":1.0},"663":{"tf":1.0},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.7320508075688772},"713":{"tf":1.0},"714":{"tf":1.0},"804":{"tf":1.0},"956":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"383":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":164,"docs":{"100":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1055":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.4142135623730951},"11":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"115":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1208":{"tf":1.0},"1213":{"tf":1.0},"1222":{"tf":1.0},"1242":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":2.449489742783178},"1304":{"tf":1.7320508075688772},"132":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1333":{"tf":1.4142135623730951},"1334":{"tf":2.23606797749979},"1336":{"tf":1.0},"135":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1420":{"tf":1.0},"1423":{"tf":1.0},"143":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1452":{"tf":2.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1466":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1480":{"tf":1.7320508075688772},"1490":{"tf":1.0},"1515":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":2.23606797749979},"245":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.4142135623730951},"31":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"342":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.0},"446":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"549":{"tf":1.0},"569":{"tf":1.0},"588":{"tf":1.0},"603":{"tf":1.0},"615":{"tf":1.0},"62":{"tf":1.0},"640":{"tf":1.4142135623730951},"70":{"tf":1.0},"700":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.0},"766":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"82":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.0},"890":{"tf":1.0},"896":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.7320508075688772},"94":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"946":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"977":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"1522":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"df":1,"docs":{"503":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"682":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":2,"docs":{"1355":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1292":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}}}},"df":25,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"461":{"tf":1.4142135623730951},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.0},"511":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1278":{"tf":1.0},"1355":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"1267":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"497":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"312":{"tf":1.7320508075688772},"506":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1254":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1212":{"tf":1.0},"1220":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.4142135623730951},"991":{"tf":1.0}}}},"v":{"df":5,"docs":{"1145":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"1071":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"442":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.7320508075688772},"803":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"237":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"139":{"tf":1.0},"1441":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":67,"docs":{"1010":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1474":{"tf":1.0},"1494":{"tf":2.0},"221":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.0},"415":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"511":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"782":{"tf":1.4142135623730951},"944":{"tf":1.0},"954":{"tf":1.0},"957":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1149":{"tf":1.0},"1379":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.4142135623730951},"953":{"tf":1.0}}}}}}}}}},"t":{"df":8,"docs":{"1106":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"65":{"tf":1.0},"810":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":2.0},"1530":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1105":{"tf":1.0},"1253":{"tf":1.0},"51":{"tf":1.0},"908":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"364":{"tf":1.0},"384":{"tf":1.0},"598":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"957":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"706":{"tf":1.0},"716":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"468":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1301":{"tf":1.0},"1310":{"tf":1.0},"1314":{"tf":1.0}},"s":{"[":{"0":{"df":1,"docs":{"1301":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"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":2,"docs":{"367":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"384":{"tf":1.4142135623730951},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}},"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"649":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1314":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1355":{"tf":2.449489742783178},"1358":{"tf":2.449489742783178},"1365":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1381":{"tf":2.23606797749979},"1388":{"tf":1.0},"1390":{"tf":2.449489742783178},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"182":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"603":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"649":{"tf":1.4142135623730951},"667":{"tf":1.7320508075688772},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"687":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"916":{"tf":1.7320508075688772},"925":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"991":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1390":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"1080":{"tf":1.0},"1214":{"tf":1.0},"1313":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":163,"docs":{"1103":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1301":{"tf":2.449489742783178},"1302":{"tf":2.449489742783178},"1305":{"tf":2.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1381":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":2.449489742783178},"1403":{"tf":2.449489742783178},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1436":{"tf":1.0},"262":{"tf":2.0},"286":{"tf":1.0},"31":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"576":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"617":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.0},"916":{"tf":1.0},"950":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1120":{"tf":1.0},"1278":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1336":{"tf":2.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"214":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"33":{"tf":1.0},"420":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"765":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.4142135623730951},"88":{"tf":2.8284271247461903},"92":{"tf":1.0},"951":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":7,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1052":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"983":{"tf":1.0},"996":{"tf":1.4142135623730951}}}}}},"f":{"c":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":1,"docs":{"351":{"tf":1.0}},"p":{"df":3,"docs":{"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"389":{"tf":1.0},"404":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1346":{"tf":1.0},"1520":{"tf":1.0},"351":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1346":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"1130":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"1145":{"tf":1.0},"248":{"tf":1.0},"911":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1439":{"tf":1.0},"169":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"59":{"tf":1.0},"681":{"tf":1.4142135623730951},"918":{"tf":1.0},"926":{"tf":1.4142135623730951},"969":{"tf":1.0},"981":{"tf":1.4142135623730951},"982":{"tf":1.0},"984":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":1.0},"989":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"996":{"tf":2.23606797749979},"997":{"tf":2.0},"999":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1267":{"tf":1.0},"1276":{"tf":2.0},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1401":{"tf":1.0},"1526":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"302":{"tf":1.0},"311":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"491":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"500":{"tf":2.449489742783178}}}}}},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0}}}},"p":{"c":{"df":11,"docs":{"1177":{"tf":1.0},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"669":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"a":{"df":31,"docs":{"1015":{"tf":1.7320508075688772},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1227":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1491":{"tf":1.0},"728":{"tf":1.0},"743":{"tf":1.0},"827":{"tf":1.0},"978":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}}},"df":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":{"1399":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1078":{"tf":1.0},"1084":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1200":{"tf":1.0},"1243":{"tf":1.0},"1258":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1462":{"tf":1.0},"1476":{"tf":1.0},"18":{"tf":1.0},"239":{"tf":1.0},"327":{"tf":1.0},"369":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"473":{"tf":1.0},"555":{"tf":1.0},"603":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.7320508075688772},"871":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0},"116":{"tf":1.0},"1215":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"724":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":41,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1084":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1160":{"tf":1.4142135623730951},"1162":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.0},"1213":{"tf":1.0},"1216":{"tf":1.0},"1219":{"tf":1.0},"1347":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"257":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.4142135623730951},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"841":{"tf":1.4142135623730951},"844":{"tf":1.0},"845":{"tf":1.0},"860":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"91":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"115":{"tf":1.0}}}}}}}},"s":{"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0}}}}},"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1094":{"tf":1.7320508075688772},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.0},"1102":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1512":{"tf":2.0},"1513":{"tf":1.4142135623730951},"285":{"tf":1.0},"339":{"tf":1.7320508075688772},"536":{"tf":1.0},"566":{"tf":1.7320508075688772},"64":{"tf":1.0},"722":{"tf":1.0},"893":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1108":{"tf":1.0},"287":{"tf":1.0},"726":{"tf":1.7320508075688772},"911":{"tf":1.0},"950":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1161":{"tf":1.4142135623730951},"287":{"tf":1.0},"726":{"tf":1.0},"911":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1330":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"1024":{"tf":1.0},"1080":{"tf":1.0},"1265":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"227":{"tf":1.0},"368":{"tf":1.0},"516":{"tf":1.0},"543":{"tf":1.0},"693":{"tf":1.0},"726":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"954":{"tf":1.0},"978":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.8284271247461903},"1445":{"tf":1.0},"1529":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"308":{"tf":2.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"319":{"tf":1.0},"791":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"1063":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1323":{"tf":2.0},"134":{"tf":2.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.0},"179":{"tf":1.7320508075688772},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"371":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"1089":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1452":{"tf":1.0},"1502":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"985":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"741":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1480":{"tf":1.0},"189":{"tf":1.0},"803":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":158,"docs":{"1081":{"tf":1.0},"1108":{"tf":1.7320508075688772},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.7320508075688772},"1113":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":2.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":2.0},"1139":{"tf":1.0},"1166":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1209":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":2.449489742783178},"1422":{"tf":1.7320508075688772},"1427":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1480":{"tf":2.0},"151":{"tf":1.0},"1522":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"278":{"tf":1.7320508075688772},"287":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"389":{"tf":1.0},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"560":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"66":{"tf":1.0},"672":{"tf":1.0},"696":{"tf":1.4142135623730951},"721":{"tf":1.0},"728":{"tf":1.7320508075688772},"729":{"tf":2.23606797749979},"730":{"tf":1.0},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"735":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":2.0},"739":{"tf":1.0},"740":{"tf":1.7320508075688772},"741":{"tf":1.7320508075688772},"742":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"747":{"tf":3.0},"748":{"tf":1.7320508075688772},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"759":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"773":{"tf":1.7320508075688772},"774":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.7320508075688772},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.0},"803":{"tf":2.23606797749979},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.0},"828":{"tf":2.0},"829":{"tf":1.4142135623730951},"830":{"tf":1.0},"832":{"tf":2.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.7320508075688772},"863":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.7320508075688772},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"883":{"tf":1.0},"886":{"tf":1.7320508075688772},"888":{"tf":1.0},"889":{"tf":1.0},"895":{"tf":1.4142135623730951},"902":{"tf":1.0},"909":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1324":{"tf":1.0},"278":{"tf":1.0},"519":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"178":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1134":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1017":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"548":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1337":{"tf":1.0},"1456":{"tf":1.0},"348":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0},"82":{"tf":1.0},"925":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"1176":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":12,"docs":{"1302":{"tf":3.4641016151377544},"1323":{"tf":1.0},"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"663":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":2.0},"776":{"tf":1.0},"789":{"tf":1.0},"836":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1084":{"tf":1.0},"129":{"tf":1.0},"1329":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.23606797749979},"901":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1423":{"tf":1.0},"1510":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":131,"docs":{"1":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1018":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1032":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1085":{"tf":1.0},"11":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.4142135623730951},"113":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1179":{"tf":1.0},"1193":{"tf":1.0},"1205":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1283":{"tf":1.0},"1288":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1401":{"tf":1.0},"1455":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1520":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"320":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.7320508075688772},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"536":{"tf":1.0},"56":{"tf":1.4142135623730951},"569":{"tf":1.0},"570":{"tf":1.0},"59":{"tf":1.0},"603":{"tf":1.7320508075688772},"664":{"tf":1.0},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"748":{"tf":1.4142135623730951},"758":{"tf":1.0},"760":{"tf":1.0},"816":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"897":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"91":{"tf":1.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.0},"924":{"tf":1.0},"927":{"tf":1.0},"930":{"tf":1.0},"936":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"969":{"tf":1.0},"971":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":49,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"1107":{"tf":1.0},"1136":{"tf":1.0},"1172":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1316":{"tf":1.0},"1347":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"1406":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.0},"547":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"67":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"763":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0}},"k":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"1029":{"tf":1.0},"1040":{"tf":1.0},"1089":{"tf":1.0},"1225":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"206":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"921":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"588":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1404":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1388":{"tf":2.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1001":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"1161":{"tf":1.7320508075688772},"147":{"tf":1.0},"185":{"tf":1.0},"277":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"950":{"tf":1.0},"977":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":2.449489742783178},"1398":{"tf":1.0},"1399":{"tf":3.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1144":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1274":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":19,"docs":{"1248":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1292":{"tf":1.0},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"31":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"456":{"tf":1.0},"879":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1228":{"tf":1.0},"1313":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"921":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}}}}}},"t":{"df":7,"docs":{"1192":{"tf":1.0},"1439":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"664":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1101":{"tf":1.0},"112":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1148":{"tf":1.0},"1168":{"tf":1.0},"1202":{"tf":1.0},"1285":{"tf":1.0},"138":{"tf":1.0},"1436":{"tf":1.0},"1453":{"tf":1.0},"185":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"968":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"860":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1216":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"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":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}}},"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1200":{"tf":1.0},"439":{"tf":1.0},"705":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1243":{"tf":1.0},"1248":{"tf":1.0},"1259":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1179":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1524":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1524":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"473":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"a":{"d":{"d":{"df":3,"docs":{"1179":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1148":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":106,"docs":{"1060":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1179":{"tf":2.0},"1180":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":2.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1262":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1265":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.449489742783178},"1401":{"tf":2.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"248":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":2.449489742783178},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"442":{"tf":2.8284271247461903},"443":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"547":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"617":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":2.0},"682":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.23606797749979},"687":{"tf":1.0},"718":{"tf":2.23606797749979},"719":{"tf":1.0},"82":{"tf":1.0},"851":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"473":{"tf":1.0},"495":{"tf":1.0}}}}}}},"i":{"c":{"df":54,"docs":{"1076":{"tf":1.0},"1143":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"147":{"tf":1.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"523":{"tf":1.0},"55":{"tf":1.4142135623730951},"616":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"733":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.7320508075688772},"759":{"tf":2.0},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"785":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1401":{"tf":2.0},"816":{"tf":1.7320508075688772}},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":58,"docs":{"1056":{"tf":1.0},"1072":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1159":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"1247":{"tf":1.0},"1258":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1315":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1410":{"tf":1.0},"1413":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"182":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"336":{"tf":1.0},"465":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"682":{"tf":1.0},"756":{"tf":1.0},"773":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.4142135623730951},"88":{"tf":1.0},"887":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":39,"docs":{"1061":{"tf":1.0},"1078":{"tf":1.0},"1107":{"tf":1.0},"1139":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1222":{"tf":1.0},"1224":{"tf":1.0},"1225":{"tf":1.0},"1261":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1349":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1372":{"tf":1.0},"1392":{"tf":1.0},"1395":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1476":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"328":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":12,"docs":{"1045":{"tf":1.0},"1245":{"tf":1.0},"1421":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"913":{"tf":1.0},"925":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"1046":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.0},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1213":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1228":{"tf":1.0}}}},"df":0,"docs":{}},"df":28,"docs":{"1075":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1145":{"tf":2.23606797749979},"1518":{"tf":1.4142135623730951},"161":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"214":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.0},"798":{"tf":1.0},"852":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"580":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1296":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"925":{"tf":1.0}}}},"w":{"df":8,"docs":{"101":{"tf":1.0},"1230":{"tf":1.0},"1323":{"tf":1.0},"1428":{"tf":1.0},"223":{"tf":1.0},"771":{"tf":1.0},"907":{"tf":1.0},"963":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"454":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"991":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"df":2,"docs":{"1151":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1346":{"tf":1.4142135623730951},"309":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":220,"docs":{"1":{"tf":1.0},"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1006":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1045":{"tf":2.0},"1047":{"tf":1.0},"1051":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1142":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1166":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1177":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":2.0},"1196":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1248":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1375":{"tf":1.7320508075688772},"138":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1423":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.7320508075688772},"1485":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.449489742783178},"523":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"53":{"tf":2.0},"531":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.7320508075688772},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.0},"598":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"640":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"654":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":2.449489742783178},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"708":{"tf":1.0},"710":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"782":{"tf":3.0},"783":{"tf":1.7320508075688772},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.0},"823":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":2.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.7320508075688772},"950":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.7320508075688772},"991":{"tf":1.7320508075688772},"994":{"tf":1.0},"995":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":1,"docs":{"698":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1306":{"tf":1.0},"1315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"404":{"tf":1.0},"527":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":328,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1000":{"tf":1.0},"1007":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1042":{"tf":1.0},"1048":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1144":{"tf":1.7320508075688772},"1146":{"tf":2.23606797749979},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1173":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1194":{"tf":3.1622776601683795},"1195":{"tf":1.0},"1206":{"tf":2.0},"1209":{"tf":2.23606797749979},"1210":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.7320508075688772},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":2.8284271247461903},"1330":{"tf":2.449489742783178},"1332":{"tf":1.0},"1338":{"tf":2.449489742783178},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.0},"1369":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1390":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979},"1402":{"tf":1.0},"1405":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"142":{"tf":2.0},"1421":{"tf":1.0},"1423":{"tf":2.0},"1436":{"tf":1.0},"146":{"tf":1.0},"1469":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.0},"1500":{"tf":1.0},"1503":{"tf":1.0},"1515":{"tf":2.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"445":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.23606797749979},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":2.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"530":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.7320508075688772},"605":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.4142135623730951},"616":{"tf":2.23606797749979},"617":{"tf":1.4142135623730951},"620":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.7320508075688772},"638":{"tf":1.0},"641":{"tf":1.4142135623730951},"642":{"tf":1.0},"646":{"tf":1.4142135623730951},"647":{"tf":1.0},"648":{"tf":1.4142135623730951},"649":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.7320508075688772},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"710":{"tf":1.7320508075688772},"713":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.7320508075688772},"747":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":2.0},"77":{"tf":1.0},"782":{"tf":1.7320508075688772},"81":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.0},"833":{"tf":1.0},"837":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.7320508075688772},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":2.449489742783178},"882":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.0},"921":{"tf":2.23606797749979},"926":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"997":{"tf":1.4142135623730951}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"592":{"tf":1.0},"599":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1330":{"tf":2.23606797749979},"1362":{"tf":1.0},"1385":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"365":{"tf":1.0},"383":{"tf":1.0},"599":{"tf":1.0},"617":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"646":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1385":{"tf":1.0},"641":{"tf":1.0},"654":{"tf":1.0},"701":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"617":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":15,"docs":{"1248":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"656":{"tf":1.0},"846":{"tf":1.0}},"u":{"df":6,"docs":{"601":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"632":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"654":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"412":{"tf":1.0}}}}}}}}},"r":{"df":6,"docs":{"1362":{"tf":1.4142135623730951},"1399":{"tf":1.7320508075688772},"407":{"tf":1.0},"420":{"tf":1.0},"524":{"tf":1.0},"88":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"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":2,"docs":{"1361":{"tf":1.4142135623730951},"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1517":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951}},"u":{"df":15,"docs":{"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"612":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1148":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.0},"528":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"469":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"420":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":5,"docs":{"1255":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1384":{"tf":1.0},"406":{"tf":1.0},"525":{"tf":1.0},"617":{"tf":1.0},"640":{"tf":1.0},"702":{"tf":1.0},"786":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1436":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"1039":{"tf":1.0},"1148":{"tf":1.0},"1182":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":14,"docs":{"1045":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1507":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"913":{"tf":1.0},"990":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1151":{"tf":1.0},"1176":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"545":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1185":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1082":{"tf":1.0},"1214":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"1061":{"tf":1.0},"1145":{"tf":1.0},"1336":{"tf":1.0},"1351":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"327":{"tf":1.0},"37":{"tf":1.0},"555":{"tf":1.0},"581":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"383":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"1060":{"tf":1.0},"1062":{"tf":1.0},"1089":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"184":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"593":{"tf":1.0},"856":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"711":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}},"x":{"df":1,"docs":{"847":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"1015":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"934":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1209":{"tf":1.0},"1256":{"tf":1.4142135623730951},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.4142135623730951},"835":{"tf":1.0},"842":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":4,"docs":{"130":{"tf":1.0},"1334":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":2,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"682":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1039":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1426":{"tf":1.4142135623730951},"342":{"tf":1.0},"569":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"818":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1041":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1112":{"tf":1.4142135623730951},"154":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"985":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"767":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":36,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"767":{"tf":1.0},"976":{"tf":2.449489742783178}}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"845":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":1,"docs":{"308":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"3":{"0":{"df":4,"docs":{"1084":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"269":{"tf":1.0},"273":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1305":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"884":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"104":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1436":{"tf":1.7320508075688772},"182":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"70":{"tf":1.0},"809":{"tf":1.0},"972":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1062":{"tf":1.0},"1426":{"tf":1.0},"1489":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"901":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"df":2,"docs":{"309":{"tf":2.0},"319":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"1423":{"tf":1.0},"151":{"tf":1.0},"196":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":55,"docs":{"0":{"tf":1.0},"1001":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"119":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.0},"1309":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"1452":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"757":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":23,"docs":{"1323":{"tf":1.0},"138":{"tf":1.0},"1419":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1442":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"188":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"740":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"976":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"872":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"348":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"576":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"1101":{"tf":1.0}}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"1106":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1203":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"541":{"tf":1.0},"664":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"249":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":5,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1441":{"tf":1.0},"930":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"852":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"1022":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.7320508075688772},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"858":{"tf":1.0},"911":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"884":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":43,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.0},"122":{"tf":1.0},"1319":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"293":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"483":{"tf":1.0},"507":{"tf":1.0},"547":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"727":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"808":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"83":{"tf":1.0},"855":{"tf":1.0},"884":{"tf":1.0},"889":{"tf":1.0},"909":{"tf":1.4142135623730951},"976":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1378":{"tf":1.4142135623730951},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1209":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":36,"docs":{"1011":{"tf":1.0},"1144":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":3.0},"1230":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.0},"43":{"tf":1.0},"516":{"tf":1.0},"603":{"tf":1.0},"693":{"tf":1.0},"732":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"808":{"tf":1.0},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.7320508075688772},"829":{"tf":2.0},"831":{"tf":2.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.4142135623730951},"847":{"tf":2.6457513110645907},"850":{"tf":1.0},"916":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"317":{"tf":1.0}}}}}}},"u":{"df":61,"docs":{"1000":{"tf":1.4142135623730951},"1006":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1214":{"tf":1.0},"1230":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":2.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":2.0},"1399":{"tf":2.23606797749979},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"408":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.7320508075688772},"603":{"tf":1.0},"642":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"849":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"940":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1145":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.4142135623730951},"525":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1362":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1098":{"tf":1.0}}}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1143":{"tf":1.0},"702":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}},"y":{"df":2,"docs":{"950":{"tf":1.0},"97":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"1161":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":7,"docs":{"1191":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"298":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.4142135623730951},"1524":{"tf":1.0},"427":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":11,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"450":{"tf":1.4142135623730951},"541":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1154":{"tf":1.0},"1191":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1444":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"761":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":32,"docs":{"111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1158":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"1261":{"tf":1.0},"1330":{"tf":2.6457513110645907},"145":{"tf":1.0},"1510":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"994":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1012":{"tf":1.0},"1144":{"tf":1.0},"1506":{"tf":1.0},"223":{"tf":1.0},"997":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{".":{".":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":1,"docs":{"1306":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1452":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":70,"docs":{"1054":{"tf":1.4142135623730951},"1055":{"tf":1.7320508075688772},"1056":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1064":{"tf":1.4142135623730951},"1069":{"tf":1.0},"1070":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"110":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1295":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1320":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":2.449489742783178},"1452":{"tf":2.23606797749979},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"1481":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":2.0},"1491":{"tf":1.4142135623730951},"1511":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"161":{"tf":1.0},"261":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.8284271247461903},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"418":{"tf":1.0},"519":{"tf":1.0},"536":{"tf":2.0},"564":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"696":{"tf":1.0},"722":{"tf":1.7320508075688772},"85":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.7320508075688772},"916":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":60,"docs":{"1057":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1209":{"tf":1.0},"1222":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":1.0},"1253":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.7320508075688772},"1312":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"334":{"tf":1.4142135623730951},"366":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"600":{"tf":1.0},"64":{"tf":1.0},"681":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"84":{"tf":1.0},"846":{"tf":1.0},"850":{"tf":1.0},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0},"947":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.4142135623730951}}}}},"r":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1390":{"tf":1.4142135623730951},"1394":{"tf":2.0},"1402":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1080":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1296":{"tf":1.0},"1308":{"tf":1.0},"833":{"tf":1.0}}}}}}},"df":51,"docs":{"1001":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.23606797749979},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"1390":{"tf":1.7320508075688772},"1394":{"tf":2.23606797749979},"1402":{"tf":2.0},"1404":{"tf":3.4641016151377544},"587":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":2.0},"614":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"695":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"699":{"tf":1.7320508075688772},"700":{"tf":2.23606797749979},"701":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"703":{"tf":1.4142135623730951},"704":{"tf":1.7320508075688772},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"725":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1182":{"tf":1.0},"1439":{"tf":1.0},"37":{"tf":1.0},"450":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"357":{"tf":1.0},"591":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"1144":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"165":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.7320508075688772},"897":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":124,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1115":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":2.8284271247461903},"1119":{"tf":1.4142135623730951},"1120":{"tf":2.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":2.0},"1129":{"tf":2.449489742783178},"1130":{"tf":2.8284271247461903},"1131":{"tf":2.0},"1134":{"tf":1.0},"1227":{"tf":2.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1304":{"tf":2.0},"1401":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1471":{"tf":1.0},"262":{"tf":1.7320508075688772},"270":{"tf":1.0},"332":{"tf":1.7320508075688772},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"378":{"tf":2.0},"379":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"494":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":2.23606797749979},"523":{"tf":2.6457513110645907},"524":{"tf":2.0},"525":{"tf":2.23606797749979},"526":{"tf":1.7320508075688772},"527":{"tf":2.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"535":{"tf":2.23606797749979},"536":{"tf":3.4641016151377544},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"562":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"651":{"tf":1.4142135623730951},"652":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"722":{"tf":2.6457513110645907},"742":{"tf":1.7320508075688772},"753":{"tf":1.0},"756":{"tf":2.8284271247461903},"757":{"tf":1.4142135623730951},"759":{"tf":3.1622776601683795},"762":{"tf":3.3166247903554},"778":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":3.0},"786":{"tf":1.4142135623730951},"788":{"tf":2.0},"790":{"tf":1.0},"808":{"tf":2.23606797749979},"811":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":2.8284271247461903},"854":{"tf":1.0},"856":{"tf":2.449489742783178},"865":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1215":{"tf":1.0},"169":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1161":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"287":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":53,"docs":{"1043":{"tf":1.0},"1045":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1111":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"1228":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1417":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1528":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"291":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"728":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"803":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"916":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1413":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1417":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"802":{"tf":1.0},"818":{"tf":1.0},"869":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"883":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1182":{"tf":1.0},"1191":{"tf":1.0},"433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1163":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"1149":{"tf":1.0},"1321":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"155":{"tf":1.0},"264":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"715":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"1324":{"tf":1.0},"1338":{"tf":1.0},"1346":{"tf":1.0},"1458":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"855":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1062":{"tf":1.0},"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1166":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"1154":{"tf":1.0},"1339":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1000":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.4142135623730951},"505":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"1002":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1054":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1078":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"1135":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1212":{"tf":1.0},"1264":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1428":{"tf":1.0},"1438":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":2.0},"297":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"544":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"587":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"725":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.4142135623730951},"82":{"tf":1.0},"871":{"tf":1.0},"898":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"954":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"981":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"108":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1010":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1042":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"1512":{"tf":1.0},"1513":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1479":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":52,"docs":{"1":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1062":{"tf":1.0},"1068":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"1160":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1211":{"tf":1.0},"1222":{"tf":1.0},"1298":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.7320508075688772},"422":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"758":{"tf":1.0},"816":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"726":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"726":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"997":{"tf":1.0}}},"1":{"df":1,"docs":{"997":{"tf":1.0}}},"2":{"df":1,"docs":{"997":{"tf":1.0}}},"3":{"df":1,"docs":{"997":{"tf":1.0}}},"4":{"df":1,"docs":{"997":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1081":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1310":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1121":{"tf":1.0},"1309":{"tf":1.0},"303":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"848":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}},"df":12,"docs":{"1142":{"tf":2.0},"1163":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1263":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1469":{"tf":1.0},"456":{"tf":1.0},"663":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"1095":{"tf":1.4142135623730951},"1097":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1213":{"tf":1.0},"759":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"654":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"873":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":91,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1256":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":3.4641016151377544},"1335":{"tf":1.0},"1336":{"tf":2.6457513110645907},"1416":{"tf":1.0},"1417":{"tf":2.0},"196":{"tf":2.0},"197":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"33":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"574":{"tf":1.0},"590":{"tf":1.0},"654":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.7320508075688772},"77":{"tf":2.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":2.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":2.0},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.7320508075688772},"81":{"tf":2.0},"813":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"862":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"871":{"tf":2.0},"872":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":2.0},"886":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":2,"docs":{"31":{"tf":2.0},"726":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1336":{"tf":1.0},"1403":{"tf":1.0},"1437":{"tf":1.0},"901":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"766":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1392":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":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":{"1140":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1369":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1174":{"tf":1.0},"1195":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1392":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}},"df":1,"docs":{"931":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1404":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":1,"docs":{"1404":{"tf":4.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"759":{"tf":1.0},"785":{"tf":1.0},"804":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"883":{"tf":1.0},"884":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"766":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"327":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1343":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"555":{"tf":1.4142135623730951}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"976":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"348":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1169":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1170":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1171":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"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":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1146":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1078":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":86,"docs":{"1012":{"tf":1.0},"1033":{"tf":1.0},"1060":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":1.0},"1137":{"tf":2.0},"1138":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":3.3166247903554},"1141":{"tf":1.0},"1142":{"tf":2.449489742783178},"1143":{"tf":2.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":2.23606797749979},"1149":{"tf":1.7320508075688772},"1151":{"tf":2.6457513110645907},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1156":{"tf":1.4142135623730951},"1158":{"tf":2.449489742783178},"1159":{"tf":1.4142135623730951},"1160":{"tf":1.7320508075688772},"1161":{"tf":3.0},"1162":{"tf":1.4142135623730951},"1163":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1166":{"tf":1.0},"1168":{"tf":2.0},"1169":{"tf":2.0},"1170":{"tf":1.0},"1171":{"tf":1.7320508075688772},"1172":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":2.449489742783178},"1391":{"tf":1.0},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1500":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"302":{"tf":1.0},"312":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"340":{"tf":1.0},"348":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"555":{"tf":1.7320508075688772},"567":{"tf":1.0},"574":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":2.0},"618":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.7320508075688772},"723":{"tf":1.0},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"979":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"588":{"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":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1392":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"836":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1148":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"505":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"1080":{"tf":1.4142135623730951},"1081":{"tf":2.23606797749979},"1148":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1279":{"tf":1.0},"1287":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1306":{"tf":2.449489742783178},"1310":{"tf":1.7320508075688772},"1358":{"tf":2.23606797749979},"1401":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"235":{"tf":1.0},"383":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"483":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"510":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"684":{"tf":1.0},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"789":{"tf":1.0},"956":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"845":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"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":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{".":{".":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":15,"docs":{"287":{"tf":1.7320508075688772},"47":{"tf":1.0},"726":{"tf":2.8284271247461903},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.7320508075688772},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":2.0},"883":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"726":{"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1014":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"1177":{"tf":1.0},"1212":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"424":{"tf":1.0},"59":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"898":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}}}}},"w":{"df":20,"docs":{"1281":{"tf":1.0},"1313":{"tf":1.0},"1356":{"tf":1.0},"1367":{"tf":2.0},"1399":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"546":{"tf":1.0},"618":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1102":{"tf":1.0},"758":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"1011":{"tf":1.0},"1042":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1087":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.0},"1215":{"tf":1.0},"129":{"tf":1.0},"1296":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1342":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1522":{"tf":1.0},"234":{"tf":1.0},"37":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"925":{"tf":1.0},"935":{"tf":1.0},"953":{"tf":1.0},"973":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"221":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1084":{"tf":1.0},"1200":{"tf":1.0},"1477":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":49,"docs":{"1097":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1245":{"tf":1.0},"1255":{"tf":1.0},"1288":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1522":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"744":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":2.23606797749979},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"z":{"df":1,"docs":{"1081":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":58,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1310":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":2.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1392":{"tf":2.0},"1394":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"276":{"tf":1.0},"288":{"tf":1.0},"349":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"797":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"88":{"tf":1.4142135623730951},"921":{"tf":1.0}}}}},"l":{"df":12,"docs":{"1051":{"tf":1.0},"1203":{"tf":1.0},"1284":{"tf":1.0},"681":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"850":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"867":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"995":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":2.0},"1445":{"tf":1.0},"816":{"tf":1.0},"899":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"934":{"tf":1.0},"935":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":50,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1165":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1182":{"tf":1.0},"1185":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.7320508075688772},"1236":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"17":{"tf":1.0},"246":{"tf":1.0},"359":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"4":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"433":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"446":{"tf":1.0},"586":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0},"684":{"tf":1.4142135623730951},"733":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"847":{"tf":1.7320508075688772},"848":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"439":{"tf":1.0},"676":{"tf":1.0},"713":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"320":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":30,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":3.4641016151377544},"1445":{"tf":1.0},"1509":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"299":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"307":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":32,"docs":{"1094":{"tf":1.0},"1263":{"tf":1.0},"1403":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.4142135623730951},"850":{"tf":1.0},"862":{"tf":1.0},"873":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"914":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1314":{"tf":1.0},"1403":{"tf":2.6457513110645907},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"423":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"942":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"t":{"df":2,"docs":{"1161":{"tf":1.0},"268":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"382":{"tf":1.7320508075688772},"616":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1102":{"tf":1.0},"365":{"tf":1.0},"599":{"tf":1.0},"65":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"1007":{"tf":1.0},"1010":{"tf":1.0},"1015":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1050":{"tf":1.0},"249":{"tf":1.0},"805":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"984":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"664":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1051":{"tf":1.0},"1152":{"tf":2.0},"1174":{"tf":1.0},"1176":{"tf":2.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1190":{"tf":1.0},"1203":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.4142135623730951},"681":{"tf":1.0},"964":{"tf":1.4142135623730951},"969":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":2.23606797749979}}}}}}},"df":1,"docs":{"1330":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"940":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":37,"docs":{"1126":{"tf":1.0},"1127":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"1477":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"667":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1310":{"tf":1.7320508075688772},"833":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"1163":{"tf":1.0}}}},"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":10,"docs":{"114":{"tf":1.0},"1220":{"tf":1.0},"1257":{"tf":1.0},"1291":{"tf":1.0},"1527":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0},"975":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":123,"docs":{"1088":{"tf":1.4142135623730951},"112":{"tf":1.0},"1121":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":2.23606797749979},"1151":{"tf":2.0},"1226":{"tf":1.0},"1248":{"tf":1.0},"127":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":3.0},"1323":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1378":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1437":{"tf":2.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1465":{"tf":1.0},"150":{"tf":1.0},"1500":{"tf":1.0},"1507":{"tf":1.0},"1509":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"295":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"354":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":2.449489742783178},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.4142135623730951},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"822":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"88":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":2.23606797749979},"945":{"tf":1.4142135623730951},"946":{"tf":1.7320508075688772},"965":{"tf":1.7320508075688772},"966":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1448":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1006":{"tf":1.0},"1052":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1436":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":2.0},"37":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0},"947":{"tf":1.7320508075688772},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0},"992":{"tf":1.4142135623730951},"998":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1001":{"tf":1.0},"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"919":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"546":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"723":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"354":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"129":{"tf":1.7320508075688772},"1307":{"tf":1.0},"1333":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"607":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":8,"docs":{"1036":{"tf":1.0},"1145":{"tf":2.23606797749979},"1180":{"tf":1.0},"1328":{"tf":1.0},"216":{"tf":1.0},"43":{"tf":1.0},"858":{"tf":1.0},"881":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1003":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":182,"docs":{"1015":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":2.0},"1112":{"tf":3.4641016151377544},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":3.1622776601683795},"1119":{"tf":1.7320508075688772},"1120":{"tf":2.23606797749979},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1124":{"tf":2.6457513110645907},"1129":{"tf":3.0},"1130":{"tf":3.3166247903554},"1131":{"tf":3.0},"1134":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1179":{"tf":1.0},"1227":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":2.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1304":{"tf":2.6457513110645907},"1305":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1365":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":3.0},"1403":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":2.23606797749979},"1440":{"tf":2.23606797749979},"1441":{"tf":1.7320508075688772},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"1526":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"348":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"587":{"tf":1.0},"606":{"tf":1.0},"610":{"tf":1.4142135623730951},"614":{"tf":1.0},"616":{"tf":1.0},"72":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.4142135623730951},"741":{"tf":1.7320508075688772},"742":{"tf":3.0},"744":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.0},"760":{"tf":1.4142135623730951},"762":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"774":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"790":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"838":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"877":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":2.23606797749979},"900":{"tf":2.23606797749979},"901":{"tf":1.0},"902":{"tf":1.4142135623730951},"954":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1489":{"tf":1.0},"151":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.0},"249":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1038":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1526":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1292":{"tf":1.0},"1358":{"tf":1.0},"1381":{"tf":1.0},"332":{"tf":2.23606797749979},"418":{"tf":2.23606797749979},"490":{"tf":1.0},"509":{"tf":1.0},"536":{"tf":2.23606797749979},"544":{"tf":1.0}}}}},"r":{"df":4,"docs":{"357":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1176":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"542":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1194":{"tf":1.4142135623730951},"1345":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"855":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":20,"docs":{"1111":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.4142135623730951},"778":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"968":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1522":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"1131":{"tf":1.0},"1137":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1452":{"tf":1.0},"505":{"tf":1.0},"684":{"tf":1.0},"733":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":2.0},"816":{"tf":1.7320508075688772},"818":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"588":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"1472":{"tf":1.7320508075688772},"202":{"tf":1.0},"249":{"tf":1.0},"473":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"939":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1290":{"tf":1.0},"1470":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0},"837":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1144":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1166":{"tf":1.0},"911":{"tf":1.0},"949":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1214":{"tf":1.0},"1220":{"tf":1.0},"937":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1011":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":82,"docs":{"1006":{"tf":1.0},"101":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1135":{"tf":1.0},"115":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1209":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":2.23606797749979},"1353":{"tf":1.7320508075688772},"1376":{"tf":1.7320508075688772},"1403":{"tf":2.449489742783178},"1420":{"tf":2.6457513110645907},"1425":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"209":{"tf":2.0},"249":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":2.449489742783178},"382":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"522":{"tf":2.0},"532":{"tf":1.7320508075688772},"55":{"tf":1.0},"585":{"tf":1.0},"59":{"tf":1.0},"604":{"tf":2.23606797749979},"605":{"tf":2.449489742783178},"61":{"tf":1.0},"616":{"tf":1.4142135623730951},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"645":{"tf":2.0},"657":{"tf":1.4142135623730951},"699":{"tf":2.0},"709":{"tf":1.7320508075688772},"780":{"tf":1.4142135623730951},"796":{"tf":2.23606797749979},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"874":{"tf":1.0},"926":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"987":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"616":{"tf":1.0},"709":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"u":{"df":2,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"382":{"tf":1.0},"532":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"411":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"400":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"522":{"tf":1.0}},"u":{"df":2,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1353":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1233":{"tf":1.0},"1258":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1410":{"tf":1.0},"143":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1505":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"68":{"tf":1.0},"773":{"tf":1.0},"976":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":8,"docs":{"1010":{"tf":1.0},"1505":{"tf":1.0},"1510":{"tf":1.0},"585":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"978":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1154":{"tf":1.0},"1158":{"tf":1.0},"1512":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":4,"docs":{"1358":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"836":{"tf":1.0}}},"l":{"df":12,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1491":{"tf":1.0},"262":{"tf":1.0},"46":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"744":{"tf":1.0},"759":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"761":{"tf":1.0},"767":{"tf":1.0}},"g":{"df":40,"docs":{"107":{"tf":1.0},"1161":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1256":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1501":{"tf":1.0},"287":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"500":{"tf":1.0},"547":{"tf":1.4142135623730951},"589":{"tf":1.0},"619":{"tf":1.4142135623730951},"620":{"tf":1.0},"67":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"758":{"tf":1.0},"759":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"d":{"df":7,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"810":{"tf":1.0},"812":{"tf":1.0}}},"df":266,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1145":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"1158":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":2.23606797749979},"1163":{"tf":1.0},"1168":{"tf":1.4142135623730951},"117":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1222":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1292":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1348":{"tf":1.0},"1371":{"tf":1.0},"139":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1421":{"tf":1.0},"1430":{"tf":1.0},"1436":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1453":{"tf":2.0},"1457":{"tf":1.0},"1472":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"359":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"433":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"510":{"tf":1.4142135623730951},"516":{"tf":1.0},"535":{"tf":1.0},"545":{"tf":4.123105625617661},"546":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"586":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"657":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"673":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"735":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.0},"790":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"82":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"93":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.23606797749979},"98":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0},"996":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":6,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"759":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"925":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":8,"docs":{"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1262":{"tf":1.0},"259":{"tf":1.0},"332":{"tf":1.0},"416":{"tf":1.0},"453":{"tf":1.0},"534":{"tf":1.0},"557":{"tf":1.0},"650":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"138":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"950":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"389":{"tf":1.0},"400":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":80,"docs":{"1130":{"tf":1.0},"1186":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1248":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"147":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"226":{"tf":1.0},"27":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"400":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"436":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903},"560":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.7320508075688772},"640":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":1.7320508075688772},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"756":{"tf":1.7320508075688772},"778":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.4142135623730951},"785":{"tf":2.0},"798":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":3.1622776601683795},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.4142135623730951},"84":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":2.0},"870":{"tf":1.0},"880":{"tf":1.7320508075688772},"883":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"913":{"tf":1.0},"941":{"tf":1.0},"950":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":6,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1372":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"0":{".":{"4":{".":{"0":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1376":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"1405":{"tf":1.0},"1482":{"tf":1.0},"740":{"tf":2.449489742783178},"798":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1325":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951}}}}}}},"df":5,"docs":{"1482":{"tf":1.0},"1520":{"tf":1.0},"798":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":2,"docs":{"798":{"tf":1.0},"988":{"tf":1.0}}},"4":{"df":4,"docs":{"46":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"987":{"tf":1.0}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":145,"docs":{"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1007":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1148":{"tf":1.0},"1166":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1214":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1263":{"tf":1.0},"1278":{"tf":2.0},"128":{"tf":2.23606797749979},"1290":{"tf":1.0},"130":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1352":{"tf":1.0},"1355":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1432":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1515":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.4142135623730951},"287":{"tf":1.0},"34":{"tf":1.0},"349":{"tf":1.0},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"491":{"tf":2.0},"498":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"626":{"tf":1.0},"631":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"654":{"tf":1.0},"66":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"743":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"778":{"tf":1.0},"827":{"tf":1.0},"842":{"tf":1.0},"87":{"tf":2.23606797749979},"896":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.0},"927":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":2.6457513110645907},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":53,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1055":{"tf":1.0},"1083":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1200":{"tf":1.0},"125":{"tf":1.0},"1297":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1369":{"tf":1.0},"1384":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1419":{"tf":1.0},"1441":{"tf":1.0},"1451":{"tf":1.0},"1475":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.4142135623730951},"528":{"tf":1.0},"599":{"tf":1.0},"604":{"tf":1.0},"687":{"tf":1.0},"705":{"tf":1.0},"719":{"tf":1.0},"739":{"tf":1.0},"746":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"892":{"tf":1.0},"893":{"tf":1.0},"897":{"tf":1.0},"976":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1446":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"902":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"899":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"900":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1446":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"0":{"df":1,"docs":{"1300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1449":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":40,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.7320508075688772},"1159":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1215":{"tf":1.0},"125":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.4142135623730951},"1430":{"tf":1.0},"1436":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1512":{"tf":1.0},"160":{"tf":1.0},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"660":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"963":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":1,"docs":{"1048":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"1054":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":14,"docs":{"1324":{"tf":1.0},"1325":{"tf":1.0},"1330":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"733":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"554":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"297":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":159,"docs":{"1006":{"tf":1.0},"1008":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1214":{"tf":1.7320508075688772},"1219":{"tf":1.0},"1222":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1249":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":2.0},"1330":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1339":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":2.0},"1421":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1469":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1507":{"tf":1.0},"1529":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.4142135623730951},"206":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"520":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.0},"697":{"tf":1.0},"725":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"788":{"tf":1.0},"816":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.4142135623730951},"938":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.7320508075688772},"942":{"tf":1.0},"943":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.7320508075688772},"979":{"tf":1.0},"980":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"997":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1365":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.4142135623730951},"598":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}},"df":283,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1007":{"tf":1.0},"101":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":1.0},"1146":{"tf":1.0},"1149":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1227":{"tf":1.0},"1232":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1240":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"128":{"tf":3.0},"1282":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1324":{"tf":2.8284271247461903},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":2.6457513110645907},"1339":{"tf":1.4142135623730951},"1340":{"tf":2.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"1365":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1421":{"tf":3.0},"1425":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"146":{"tf":1.0},"1460":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1503":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1526":{"tf":1.0},"1528":{"tf":2.0},"1529":{"tf":2.449489742783178},"1530":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":2.6457513110645907},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":2.0},"277":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"39":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":2.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":2.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"527":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"555":{"tf":1.4142135623730951},"576":{"tf":1.0},"58":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"613":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"649":{"tf":1.7320508075688772},"654":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"698":{"tf":1.7320508075688772},"704":{"tf":1.0},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"708":{"tf":2.23606797749979},"714":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":1.4142135623730951},"725":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":2.23606797749979},"795":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.4142135623730951},"833":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.4142135623730951},"87":{"tf":3.1622776601683795},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"937":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"940":{"tf":1.0},"941":{"tf":2.23606797749979},"942":{"tf":1.7320508075688772},"944":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":2.8284271247461903},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"676":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"367":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"1":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"617":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1436":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1151":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1352":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1185":{"tf":1.0},"1265":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"1151":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"456":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":6,"docs":{"1103":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1522":{"tf":2.0}}},"df":0,"docs":{}}},"df":148,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":2.23606797749979},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1098":{"tf":1.7320508075688772},"11":{"tf":1.0},"1114":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.7320508075688772},"115":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1206":{"tf":1.0},"1255":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1365":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1388":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":1.0},"1409":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1482":{"tf":2.23606797749979},"1502":{"tf":1.0},"1503":{"tf":2.0},"1515":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"199":{"tf":3.0},"2":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"322":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"46":{"tf":2.0},"522":{"tf":1.0},"536":{"tf":1.0},"549":{"tf":1.0},"583":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"61":{"tf":1.7320508075688772},"634":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0},"722":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.7320508075688772},"744":{"tf":1.7320508075688772},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"776":{"tf":1.7320508075688772},"779":{"tf":2.23606797749979},"782":{"tf":1.0},"783":{"tf":1.0},"798":{"tf":2.0},"816":{"tf":1.7320508075688772},"836":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"874":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"908":{"tf":1.0},"914":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"942":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":2.0},"988":{"tf":1.7320508075688772},"989":{"tf":1.4142135623730951},"991":{"tf":1.7320508075688772},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":25,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"160":{"tf":1.0},"192":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"482":{"tf":1.0},"72":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"871":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"911":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"922":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0},"95":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1155":{"tf":1.0},"771":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"554":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1086":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1068":{"tf":1.0}}}}}},"p":{"c":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"185":{"tf":1.0},"43":{"tf":1.0},"978":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"911":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"976":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1515":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"1194":{"tf":1.0},"1439":{"tf":1.0},"1506":{"tf":1.0},"243":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"892":{"tf":1.0},"899":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1087":{"tf":1.0},"1451":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1340":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1340":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1340":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.7320508075688772},"171":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"1":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"294":{"tf":1.0},"43":{"tf":1.0}}}},"df":10,"docs":{"1140":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951},"661":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1042":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1406":{"tf":1.0},"1451":{"tf":1.4142135623730951},"321":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"964":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1405":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1405":{"tf":3.4641016151377544}},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"1212":{"tf":1.0},"1213":{"tf":2.23606797749979},"1217":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.4142135623730951},"383":{"tf":1.0},"608":{"tf":1.4142135623730951},"617":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1437":{"tf":1.0},"1454":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"941":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"17":{"tf":1.0},"223":{"tf":1.0},"759":{"tf":1.0},"788":{"tf":1.0},"831":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"863":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"232":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"93":{"tf":1.0},"960":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"586":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0}},"m":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"855":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1209":{"tf":1.0},"1399":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.4142135623730951},"831":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"1088":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1194":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0},"127":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.0},"1484":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"394":{"tf":1.0},"43":{"tf":1.0},"506":{"tf":1.0},"519":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0},"984":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1286":{"tf":1.0},"242":{"tf":1.0},"479":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":64,"docs":{"1080":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1182":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1426":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1506":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"327":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"405":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"555":{"tf":1.0},"617":{"tf":1.0},"639":{"tf":1.0},"655":{"tf":1.0},"664":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.4142135623730951},"808":{"tf":2.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"857":{"tf":1.0},"87":{"tf":1.0},"885":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"932":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":32,"docs":{"1115":{"tf":1.0},"1144":{"tf":1.0},"1248":{"tf":1.0},"13":{"tf":1.0},"1317":{"tf":1.0},"1327":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1397":{"tf":1.0},"140":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"359":{"tf":1.0},"548":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"773":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.0},"821":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"841":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":7,"docs":{"1021":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.0},"519":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1524":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"528":{"tf":1.0},"541":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"705":{"tf":1.0},"718":{"tf":1.4142135623730951},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"1183":{"tf":1.7320508075688772},"669":{"tf":1.0},"670":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"317":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":15,"docs":{"116":{"tf":1.0},"1422":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1489":{"tf":1.4142135623730951},"226":{"tf":1.0},"302":{"tf":1.0},"536":{"tf":1.0},"661":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}},"r":{"df":3,"docs":{"1206":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1286":{"tf":1.0},"1292":{"tf":1.0},"1465":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"941":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"322":{"tf":1.0},"549":{"tf":1.0}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1122":{"tf":1.0},"1169":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"822":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"z":{"df":0,"docs":{},"f":{"df":1,"docs":{"1095":{"tf":1.0}}}}},"y":{"%":{"df":0,"docs":{},"m":{"%":{"d":{")":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1097":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"325":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"1175":{"tf":2.23606797749979},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"181":{"tf":2.8284271247461903},"756":{"tf":2.6457513110645907},"757":{"tf":1.4142135623730951},"759":{"tf":1.7320508075688772},"778":{"tf":1.7320508075688772},"779":{"tf":2.0},"782":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"811":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1456":{"tf":1.0}}}},"r":{"df":4,"docs":{"17":{"tf":1.0},"228":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"760":{"tf":1.0}}}},"o":{"d":{"df":6,"docs":{"1179":{"tf":1.0},"1349":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1300":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"976":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"3":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1441":{"tf":1.0}}},"5":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":1,"docs":{"1441":{"tf":1.0}}},"1":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.4142135623730951}}}},"df":5,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1437":{"tf":1.0},"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"1504":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":8,"docs":{"1112":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":2,"docs":{"157":{"tf":1.0},"761":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1003":{"tf":1.0},"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"298":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"654":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"859":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"779":{"tf":1.0}}}},"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":6,"docs":{"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}},"3":{"df":3,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"859":{"tf":1.4142135623730951}}},"6":{"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1432":{"tf":1.0},"728":{"tf":1.0}}},"df":27,"docs":{"1084":{"tf":1.4142135623730951},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1129":{"tf":1.0},"1307":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1362":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"382":{"tf":1.0},"588":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"897":{"tf":1.0},"901":{"tf":1.0},"933":{"tf":1.0},"977":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"779":{"tf":1.0}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":9,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":15,"docs":{"1134":{"tf":1.0},"1179":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.0},"1401":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"845":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1441":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0}}},"3":{"df":2,"docs":{"1015":{"tf":1.4142135623730951},"1030":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1329":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":2,"docs":{"1169":{"tf":1.0},"1403":{"tf":1.4142135623730951}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}},"1":{"df":1,"docs":{"767":{"tf":1.0}}},"df":5,"docs":{"1116":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"198":{"tf":1.0},"501":{"tf":1.0}}},"df":16,"docs":{"1048":{"tf":1.0},"1390":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"501":{"tf":1.4142135623730951},"519":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"812":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"k":{"df":1,"docs":{"1253":{"tf":1.0}}}},"df":15,"docs":{"1071":{"tf":1.0},"1079":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1441":{"tf":1.7320508075688772},"308":{"tf":1.0},"315":{"tf":1.0},"443":{"tf":1.0},"68":{"tf":1.0},"916":{"tf":1.0}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1024":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"196":{"tf":1.0},"365":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"599":{"tf":1.0},"654":{"tf":1.0},"761":{"tf":1.0},"881":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0}}},"d":{"3":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1079":{"tf":1.0},"1215":{"tf":1.4142135623730951},"916":{"tf":1.0}}},"4":{"df":1,"docs":{"1087":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0}}},"df":3,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0}}},"df":5,"docs":{"1003":{"tf":1.0},"1336":{"tf":1.0},"298":{"tf":1.0},"501":{"tf":1.4142135623730951},"859":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":15,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.0},"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"783":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"785":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"767":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"351":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"1071":{"tf":1.0}}},"8":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":76,"docs":{"1048":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1072":{"tf":1.0},"1079":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.0},"1168":{"tf":1.4142135623730951},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1248":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1301":{"tf":2.23606797749979},"1302":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1312":{"tf":2.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1392":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1512":{"tf":1.0},"1522":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"303":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"700":{"tf":1.0},"742":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"814":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"913":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"953":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0}}},"5":{"df":3,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"1149":{"tf":1.0},"1271":{"tf":1.0},"1379":{"tf":1.0},"458":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"1071":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":37,"docs":{"100":{"tf":1.0},"1045":{"tf":1.0},"115":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1403":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"176":{"tf":1.0},"180":{"tf":2.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":4,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1048":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.0}}},"df":2,"docs":{"443":{"tf":1.0},"53":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{"c":{"d":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"d":{"3":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1003":{"tf":1.0},"1015":{"tf":1.0},"1024":{"tf":1.0},"1046":{"tf":1.0},"1228":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.4142135623730951},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1346":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":62,"docs":{"1048":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1170":{"tf":1.0},"1185":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1248":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"1437":{"tf":1.0},"144":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"357":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"591":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"762":{"tf":1.0},"785":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"881":{"tf":1.0},"914":{"tf":1.4142135623730951},"925":{"tf":1.0},"95":{"tf":1.7320508075688772},"953":{"tf":1.0},"963":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0}}},"3":{".":{"1":{"0":{"df":2,"docs":{"549":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":8,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.0},"458":{"tf":1.0}}},"df":5,"docs":{"1079":{"tf":1.0},"1399":{"tf":1.0},"1445":{"tf":1.0},"310":{"tf":1.0},"902":{"tf":1.0}}},"1":{"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}},"2":{"df":2,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.4142135623730951}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"6":{"0":{"0":{"df":9,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"1307":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"1030":{"tf":1.0},"1170":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1345":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.4142135623730951},"581":{"tf":1.0},"700":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.0},"824":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"881":{"tf":1.0},"915":{"tf":1.4142135623730951},"953":{"tf":1.0},"96":{"tf":1.7320508075688772},"964":{"tf":1.4142135623730951}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1268":{"tf":1.0},"1271":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0}}},"4":{"df":1,"docs":{"465":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"987":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"1226":{"tf":1.0}}}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1273":{"tf":1.0},"1274":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"493":{"tf":1.0},"849":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"1":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"2":{"df":2,"docs":{"767":{"tf":1.0},"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}},"df":21,"docs":{"1171":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1345":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"581":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":8,"docs":{"1305":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"625":{"tf":1.0}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":4,"docs":{"365":{"tf":1.0},"498":{"tf":1.0},"599":{"tf":1.0},"810":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.7320508075688772}}},"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":23,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.7320508075688772},"883":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"157":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"1185":{"tf":1.0},"1186":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"581":{"tf":1.0},"826":{"tf":1.4142135623730951},"916":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"966":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1505":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1105":{"tf":1.0},"1528":{"tf":1.0},"250":{"tf":1.0},"352":{"tf":1.0},"584":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}},"k":{"df":1,"docs":{"911":{"tf":1.0}}}},"df":6,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.0},"255":{"tf":1.0},"501":{"tf":1.0},"900":{"tf":1.0}}},"4":{"df":3,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0}}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"7":{"0":{"0":{"df":5,"docs":{"1105":{"tf":1.0},"682":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"5":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"8":{"'":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"9":{"df":0,"docs":{},"f":{"b":{"9":{"d":{"8":{"8":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"1270":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1522":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1507":{"tf":1.0},"933":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1119":{"tf":1.0}}},"6":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1001":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1161":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1247":{"tf":1.0},"944":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1250":{"tf":1.0},"1251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1003":{"tf":1.4142135623730951},"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1333":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"374":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":3,"docs":{"1247":{"tf":1.0},"1248":{"tf":1.0},"31":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":13,"docs":{"1211":{"tf":2.0},"1212":{"tf":2.0},"1213":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1234":{"tf":1.0},"1244":{"tf":1.0}}},"df":1,"docs":{"1145":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{"df":3,"docs":{"53":{"tf":1.0},"791":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"881":{"tf":1.7320508075688772},"925":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"981":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"937":{"tf":1.0},"977":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1102":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1149":{"tf":1.0},"1214":{"tf":1.0},"1290":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.4142135623730951},"823":{"tf":1.0},"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1490":{"tf":1.0}}}}}},"df":30,"docs":{"1061":{"tf":1.0},"1066":{"tf":1.0},"1092":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1174":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1477":{"tf":1.0},"1528":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.0},"352":{"tf":1.0},"423":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"584":{"tf":1.0},"610":{"tf":1.0},"656":{"tf":1.0},"92":{"tf":1.0},"942":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"810":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}}},"r":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1070":{"tf":1.0},"1194":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":3,"docs":{"1154":{"tf":1.0},"151":{"tf":1.0},"992":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"766":{"tf":1.0}}}}}},"m":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"767":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":34,"docs":{"1071":{"tf":1.0},"1149":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.0},"1403":{"tf":2.449489742783178},"1485":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"237":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.4142135623730951},"599":{"tf":1.0},"617":{"tf":1.0},"733":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.7320508075688772},"811":{"tf":1.7320508075688772},"868":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1004":{"tf":1.0},"1012":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1476":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.0},"991":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1148":{"tf":1.0},"1194":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"789":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"d":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":47,"docs":{"106":{"tf":1.0},"1109":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1165":{"tf":1.0},"1180":{"tf":1.0},"1186":{"tf":1.0},"1212":{"tf":1.7320508075688772},"1310":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1420":{"tf":1.0},"1480":{"tf":1.0},"1510":{"tf":1.0},"1526":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"473":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"553":{"tf":1.0},"580":{"tf":1.4142135623730951},"589":{"tf":1.0},"640":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"823":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0},"938":{"tf":1.0},"976":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1051":{"tf":1.0},"1083":{"tf":1.0},"1249":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1420":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"523":{"tf":1.0},"687":{"tf":1.0},"700":{"tf":1.0},"719":{"tf":1.0},"786":{"tf":1.0},"908":{"tf":1.0},"939":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0},"760":{"tf":2.23606797749979},"762":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"443":{"tf":1.0}}}}}}}}},"df":14,"docs":{"1166":{"tf":1.0},"1175":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1522":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"173":{"tf":1.0},"258":{"tf":1.4142135623730951},"423":{"tf":1.0},"524":{"tf":1.0},"701":{"tf":1.0},"797":{"tf":1.4142135623730951},"874":{"tf":1.0},"950":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1209":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"847":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"1118":{"tf":1.4142135623730951},"320":{"tf":1.0},"4":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.4142135623730951},"1069":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1002":{"tf":1.0},"1007":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}},"s":{"2":{"5":{"6":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1450":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1477":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1032":{"tf":1.0},"1254":{"tf":1.0},"1333":{"tf":1.0},"1427":{"tf":1.0},"178":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"918":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"944":{"tf":1.0},"973":{"tf":1.0}}}}}}},"df":2,"docs":{"1507":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":51,"docs":{"1006":{"tf":1.0},"1177":{"tf":1.0},"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1245":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"1423":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"454":{"tf":1.0},"518":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"695":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.4142135623730951},"850":{"tf":1.0},"86":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"981":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"616":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"382":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"642":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1385":{"tf":1.0},"654":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1363":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1362":{"tf":1.0},"420":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":4,"docs":{"1384":{"tf":1.0},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1088":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"581":{"tf":1.0},"696":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"921":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"587":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"653":{"tf":1.0},"723":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"558":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"846":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":2,"docs":{"269":{"tf":1.0},"288":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1361":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"523":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":14,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"545":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0},"419":{"tf":1.0},"519":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"794":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1517":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.7320508075688772},"143":{"tf":1.0},"241":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"347":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1213":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"1515":{"tf":1.0},"201":{"tf":1.0},"242":{"tf":2.23606797749979},"410":{"tf":1.0},"531":{"tf":1.0},"644":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1356":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1518":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.0},"738":{"tf":1.4142135623730951},"75":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"794":{"tf":1.4142135623730951},"822":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1148":{"tf":1.0},"1149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1047":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1140":{"tf":1.0},"1394":{"tf":1.4142135623730951},"681":{"tf":1.0},"695":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1140":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1399":{"tf":1.0},"518":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1302":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":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":{"545":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"641":{"tf":1.0},"701":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"648":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"558":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1021":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"637":{"tf":1.0},"703":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"412":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":3,"docs":{"407":{"tf":1.0},"524":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1362":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1148":{"tf":1.0},"1405":{"tf":1.0},"414":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"526":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1047":{"tf":1.0},"645":{"tf":1.0},"709":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"657":{"tf":1.0},"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"411":{"tf":1.0},"532":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1353":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"522":{"tf":1.0},"545":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"tf":1.4142135623730951}}}}}}}}}}},"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"795":{"tf":1.0},"922":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"1375":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0}}}}}},"df":1,"docs":{"725":{"tf":1.0}},"u":{"df":1,"docs":{"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"558":{"tf":1.0},"697":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"576":{"tf":1.0},"587":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"631":{"tf":1.0},"697":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"654":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"957":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"632":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"698":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"545":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1401":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"795":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1352":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":1,"docs":{"1401":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"419":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1369":{"tf":1.0},"349":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"520":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"420":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1356":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"527":{"tf":1.0},"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"142":{"tf":1.0},"1484":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"406":{"tf":1.0},"640":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1329":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"217":{"tf":1.0},"406":{"tf":1.0},"640":{"tf":1.0}}},":":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"1204":{"tf":1.0}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1332":{"tf":1.0},"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"606":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"=":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"287":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"769":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"604":{"tf":1.0},"606":{"tf":1.0},"616":{"tf":1.0},"769":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"708":{"tf":1.0}}}}},"i":{"d":{"df":14,"docs":{"1081":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1384":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"700":{"tf":1.7320508075688772},"949":{"tf":1.0},"957":{"tf":1.0},"999":{"tf":1.0}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"264":{"tf":1.0},"695":{"tf":1.0},"769":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"770":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.4142135623730951}},"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":1,"docs":{"382":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"76":{"tf":1.0},"770":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"76":{"tf":1.0},"770":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":586,"docs":{"0":{"tf":2.0},"1":{"tf":2.0},"10":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1004":{"tf":1.0},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"1112":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.23606797749979},"1143":{"tf":1.4142135623730951},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":2.0},"1166":{"tf":1.0},"117":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1175":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1194":{"tf":2.23606797749979},"1196":{"tf":1.0},"120":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1206":{"tf":2.8284271247461903},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":3.1622776601683795},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.0},"1216":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.7320508075688772},"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1234":{"tf":2.0},"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1242":{"tf":1.7320508075688772},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.7320508075688772},"1247":{"tf":2.6457513110645907},"1248":{"tf":2.6457513110645907},"1249":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"126":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1263":{"tf":1.0},"127":{"tf":2.6457513110645907},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"128":{"tf":3.4641016151377544},"129":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"130":{"tf":2.23606797749979},"1302":{"tf":1.0},"1318":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"1320":{"tf":1.0},"1321":{"tf":2.23606797749979},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1332":{"tf":3.0},"1333":{"tf":3.3166247903554},"1334":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"1390":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"1399":{"tf":3.4641016151377544},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.4142135623730951},"1415":{"tf":2.23606797749979},"1417":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"142":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"1430":{"tf":1.0},"1432":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"1460":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"147":{"tf":2.23606797749979},"1476":{"tf":1.0},"148":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"1499":{"tf":2.0},"150":{"tf":1.7320508075688772},"151":{"tf":2.8284271247461903},"1515":{"tf":1.7320508075688772},"1518":{"tf":2.0},"152":{"tf":2.0},"1529":{"tf":1.4142135623730951},"153":{"tf":2.0},"1530":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":2.6457513110645907},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":2.0},"223":{"tf":1.4142135623730951},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.449489742783178},"242":{"tf":2.8284271247461903},"244":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"261":{"tf":2.8284271247461903},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"27":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":2.23606797749979},"327":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":2.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"35":{"tf":2.449489742783178},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"410":{"tf":1.7320508075688772},"411":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":2.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":2.0},"436":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"478":{"tf":2.0},"48":{"tf":1.0},"487":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"52":{"tf":1.0},"523":{"tf":2.23606797749979},"524":{"tf":1.0},"525":{"tf":1.0},"53":{"tf":3.0},"530":{"tf":1.7320508075688772},"531":{"tf":2.23606797749979},"532":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"54":{"tf":2.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":2.23606797749979},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"590":{"tf":1.0},"592":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.4142135623730951},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":2.449489742783178},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":2.6457513110645907},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":2.0},"623":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":2.23606797749979},"646":{"tf":1.4142135623730951},"649":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"672":{"tf":1.0},"673":{"tf":2.449489742783178},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.4142135623730951},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"700":{"tf":2.23606797749979},"701":{"tf":1.0},"702":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":2.23606797749979},"709":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":3.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":2.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":2.23606797749979},"749":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"750":{"tf":1.0},"751":{"tf":2.0},"752":{"tf":2.0},"753":{"tf":2.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.7320508075688772},"756":{"tf":2.0},"757":{"tf":2.23606797749979},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"76":{"tf":2.23606797749979},"760":{"tf":1.0},"761":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"765":{"tf":2.0},"766":{"tf":2.0},"767":{"tf":2.0},"768":{"tf":1.7320508075688772},"769":{"tf":2.0},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":2.6457513110645907},"773":{"tf":1.7320508075688772},"774":{"tf":1.0},"778":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":2.0},"79":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.1622776601683795},"82":{"tf":3.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"828":{"tf":1.4142135623730951},"829":{"tf":2.8284271247461903},"830":{"tf":1.0},"831":{"tf":2.0},"832":{"tf":1.7320508075688772},"833":{"tf":2.6457513110645907},"834":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":2.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"84":{"tf":2.0},"840":{"tf":1.7320508075688772},"841":{"tf":1.4142135623730951},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":2.0},"846":{"tf":1.0},"847":{"tf":2.8284271247461903},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.7320508075688772},"863":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"879":{"tf":1.4142135623730951},"88":{"tf":4.58257569495584},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.7320508075688772},"896":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.4142135623730951},"913":{"tf":2.0},"915":{"tf":1.0},"92":{"tf":1.7320508075688772},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":2.0},"949":{"tf":2.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"953":{"tf":2.0},"956":{"tf":1.0},"96":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":2.0},"970":{"tf":1.0},"976":{"tf":2.449489742783178},"978":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":2.0},"983":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"989":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":2.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}},"i":{"d":{"df":40,"docs":{"1045":{"tf":1.0},"1130":{"tf":1.0},"1186":{"tf":1.0},"1196":{"tf":1.0},"1226":{"tf":1.0},"1242":{"tf":1.0},"1245":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1361":{"tf":1.4142135623730951},"138":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1486":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"791":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.449489742783178},"913":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.4142135623730951},"990":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{":":{"'":{")":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.0},"611":{"tf":1.7320508075688772}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"518":{"tf":1.0},"770":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0},"1399":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"615":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"990":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.4142135623730951},"984":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"1143":{"tf":1.0},"1242":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"883":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1486":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1328":{"tf":2.0},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.0},"219":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"702":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":116,"docs":{"1":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1143":{"tf":2.6457513110645907},"1144":{"tf":2.23606797749979},"1145":{"tf":2.0},"118":{"tf":1.0},"1194":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.8284271247461903},"1329":{"tf":3.7416573867739413},"1330":{"tf":3.4641016151377544},"1360":{"tf":1.4142135623730951},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":1.4142135623730951},"138":{"tf":3.0},"1383":{"tf":1.4142135623730951},"1384":{"tf":2.449489742783178},"1385":{"tf":2.23606797749979},"1386":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.0},"142":{"tf":2.8284271247461903},"1423":{"tf":3.3166247903554},"145":{"tf":1.4142135623730951},"1483":{"tf":1.4142135623730951},"1484":{"tf":2.449489742783178},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1487":{"tf":2.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":2.0},"214":{"tf":2.449489742783178},"215":{"tf":1.7320508075688772},"216":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"225":{"tf":2.0},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"256":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"523":{"tf":2.449489742783178},"524":{"tf":1.7320508075688772},"525":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":2.23606797749979},"55":{"tf":2.449489742783178},"639":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"641":{"tf":2.0},"642":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":2.449489742783178},"701":{"tf":1.7320508075688772},"702":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":2.23606797749979},"786":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"852":{"tf":1.0},"858":{"tf":1.7320508075688772},"875":{"tf":1.0},"88":{"tf":3.872983346207417},"886":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"952":{"tf":1.7320508075688772},"953":{"tf":1.7320508075688772},"954":{"tf":1.7320508075688772},"970":{"tf":1.0},"980":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.7320508075688772},"524":{"tf":1.7320508075688772},"525":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"548":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1226":{"tf":1.0},"13":{"tf":1.0},"1332":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":2.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.4142135623730951},"663":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"76":{"tf":1.0},"765":{"tf":1.7320508075688772},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"938":{"tf":1.0},"976":{"tf":1.0}},"r":{"df":2,"docs":{"1060":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"1003":{"tf":1.0},"1250":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"1472":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":101,"docs":{"1010":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":2.0},"1015":{"tf":2.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1040":{"tf":1.7320508075688772},"1041":{"tf":1.4142135623730951},"1042":{"tf":1.0},"1043":{"tf":1.7320508075688772},"1044":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1047":{"tf":2.449489742783178},"1048":{"tf":1.4142135623730951},"1049":{"tf":1.0},"1050":{"tf":2.6457513110645907},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1227":{"tf":1.0},"1230":{"tf":1.0},"1245":{"tf":1.0},"1254":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":2.6457513110645907},"1472":{"tf":2.23606797749979},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.0},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"159":{"tf":2.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"334":{"tf":1.0},"341":{"tf":1.4142135623730951},"345":{"tf":1.0},"375":{"tf":1.0},"404":{"tf":1.0},"418":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"572":{"tf":1.0},"608":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.4142135623730951},"959":{"tf":1.7320508075688772},"960":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"984":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.7320508075688772}}}}}}}}},"i":{"a":{"df":1,"docs":{"1343":{"tf":2.0}}},"c":{"df":1,"docs":{"1305":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"w":{"df":19,"docs":{"1054":{"tf":1.0},"1071":{"tf":1.0},"1108":{"tf":1.0},"1209":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"446":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"934":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"978":{"tf":1.4142135623730951},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1447":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1485":{"tf":2.23606797749979},"43":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}},"n":{"df":3,"docs":{"112":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1085":{"tf":1.0},"1151":{"tf":1.0},"1163":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1455":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"477":{"tf":1.0},"509":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"951":{"tf":1.0},"964":{"tf":1.0},"970":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1451":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"1111":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"1480":{"tf":1.0},"198":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.0},"519":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"182":{"tf":1.0},"35":{"tf":2.0},"49":{"tf":1.0},"581":{"tf":1.0},"765":{"tf":1.0}}},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.0}}},"z":{"df":7,"docs":{"1256":{"tf":1.0},"156":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"412":{"tf":1.0},"531":{"tf":1.4142135623730951},"533":{"tf":1.0},"646":{"tf":1.0},"708":{"tf":1.4142135623730951},"710":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1194":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"528":{"tf":1.0},"705":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"414":{"tf":1.0},"648":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":213,"docs":{"1042":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"1172":{"tf":2.0},"1179":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1276":{"tf":1.0},"1290":{"tf":1.0},"1355":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":2.23606797749979},"1402":{"tf":2.23606797749979},"1437":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":2.0},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"486":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":2.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"592":{"tf":1.0},"593":{"tf":2.0},"594":{"tf":1.7320508075688772},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.7320508075688772},"65":{"tf":1.0},"662":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"690":{"tf":2.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"810":{"tf":1.0},"844":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1276":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1276":{"tf":1.0},"486":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"434":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1149":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1355":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"1267":{"tf":1.0},"1526":{"tf":1.0},"483":{"tf":1.0},"493":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":4,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"507":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":5,"docs":{"1148":{"tf":1.0},"1355":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1281":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1526":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1526":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":2.0},"1287":{"tf":1.4142135623730951},"1288":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"479":{"tf":2.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"509":{"tf":2.0},"510":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":33,"docs":{"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"348":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"186":{"tf":1.0},"317":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1082":{"tf":1.4142135623730951},"892":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1279":{"tf":1.0},"1358":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"186":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"1032":{"tf":1.0},"1086":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"257":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.4142135623730951},"548":{"tf":1.0},"576":{"tf":1.4142135623730951},"593":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}},"df":11,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1482":{"tf":1.0},"192":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"501":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"1042":{"tf":1.0},"1137":{"tf":1.0},"1295":{"tf":1.0},"21":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1116":{"tf":1.4142135623730951},"1194":{"tf":1.0},"204":{"tf":1.0}}}}},"v":{"df":12,"docs":{"11":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"288":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"617":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"115":{"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":10,"docs":{"365":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"599":{"tf":1.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"287":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"109":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1294":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"549":{"tf":1.0},"729":{"tf":1.4142135623730951},"828":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"866":{"tf":1.0},"873":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1186":{"tf":1.0},"1345":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"676":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"956":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"886":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":1,"docs":{"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"s":{"3":{":":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1071":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.7320508075688772},"1130":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"742":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"790":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1197":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1237":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"575":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1151":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1217":{"tf":1.0},"1392":{"tf":2.6457513110645907},"684":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"420":{"tf":1.0},"654":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"808":{"tf":1.0},"816":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1336":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":59,"docs":{"1148":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1301":{"tf":2.23606797749979},"1305":{"tf":2.23606797749979},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.23606797749979},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1378":{"tf":2.23606797749979},"1382":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.6457513110645907},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0},"383":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"1148":{"tf":1.0},"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":47,"docs":{"1059":{"tf":1.0},"1067":{"tf":1.0},"1323":{"tf":2.8284271247461903},"134":{"tf":2.449489742783178},"135":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.449489742783178},"1421":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":2.6457513110645907},"1432":{"tf":1.0},"1433":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"206":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"371":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"395":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"461":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":2.449489742783178},"522":{"tf":2.23606797749979},"605":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"629":{"tf":1.7320508075688772},"635":{"tf":1.7320508075688772},"65":{"tf":1.0},"696":{"tf":2.0},"699":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.7320508075688772},"797":{"tf":1.7320508075688772},"880":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1326":{"tf":1.0},"194":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"395":{"tf":1.0},"629":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":8,"docs":{"1032":{"tf":1.0},"1254":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.7320508075688772},"973":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"440":{"tf":1.0},"946":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1194":{"tf":1.0},"1208":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0},"62":{"tf":1.0},"901":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}}}}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":32,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1288":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1403":{"tf":2.8284271247461903},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"423":{"tf":1.0},"502":{"tf":1.0},"60":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"845":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":2.23606797749979},"942":{"tf":1.0},"951":{"tf":1.4142135623730951},"966":{"tf":1.7320508075688772},"969":{"tf":2.0},"988":{"tf":1.0},"995":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":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":{"1403":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":35,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1206":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1442":{"tf":2.449489742783178},"1455":{"tf":1.0},"147":{"tf":1.0},"1474":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"503":{"tf":2.23606797749979},"6":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.7320508075688772},"669":{"tf":1.0},"679":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"816":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"944":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1194":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1486":{"tf":1.4142135623730951},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"783":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"899":{"tf":1.0},"995":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1109":{"tf":1.0}}}}}}}}},"df":1,"docs":{"181":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1295":{"tf":1.0},"1432":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.0},"495":{"tf":1.0},"73":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0}}}},"df":3,"docs":{"255":{"tf":1.0},"765":{"tf":1.0},"916":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":20,"docs":{"1055":{"tf":1.4142135623730951},"1068":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1092":{"tf":1.0},"1220":{"tf":1.0},"1451":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.7320508075688772},"381":{"tf":1.0},"427":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"847":{"tf":1.0},"916":{"tf":1.0}}}}},"df":1,"docs":{"1097":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1287":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":71,"docs":{"1148":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":2.449489742783178},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.3166247903554},"1305":{"tf":2.6457513110645907},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.6457513110645907},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1359":{"tf":2.23606797749979},"1361":{"tf":1.7320508075688772},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":2.23606797749979},"1369":{"tf":2.449489742783178},"1378":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1399":{"tf":3.7416573867739413},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.3166247903554},"1405":{"tf":2.23606797749979},"1515":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"458":{"tf":2.0},"459":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":2.6457513110645907},"477":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}},"r":{"df":3,"docs":{"981":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0}}}},"df":23,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":2.0},"1065":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":2.449489742783178},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.7320508075688772},"1512":{"tf":2.23606797749979},"1513":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"255":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0},"893":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1066":{"tf":1.0},"1454":{"tf":1.0},"1512":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}}}}}},"s":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1452":{"tf":1.0},"1454":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"64":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"1197":{"tf":1.0},"1422":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0},"805":{"tf":1.0},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":83,"docs":{"1054":{"tf":2.0},"1055":{"tf":2.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1079":{"tf":1.0},"108":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1090":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"113":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.7320508075688772},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.6457513110645907},"1489":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1528":{"tf":1.0},"1531":{"tf":1.0},"285":{"tf":1.7320508075688772},"289":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"536":{"tf":1.0},"564":{"tf":1.4142135623730951},"722":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"901":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1011":{"tf":1.0},"1061":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.7320508075688772},"1098":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1510":{"tf":1.0},"1520":{"tf":1.0},"171":{"tf":1.4142135623730951},"974":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1503":{"tf":1.0},"711":{"tf":1.0},"940":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1312":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1119":{"tf":1.0}}}}}},"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"760":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":30,"docs":{"1021":{"tf":1.0},"1045":{"tf":1.0},"1091":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"129":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"404":{"tf":1.0},"45":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"53":{"tf":1.4142135623730951},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":71,"docs":{"1013":{"tf":1.0},"1015":{"tf":1.0},"1029":{"tf":1.0},"1077":{"tf":1.0},"110":{"tf":1.0},"1108":{"tf":1.0},"1119":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1192":{"tf":1.0},"1196":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1482":{"tf":1.0},"16":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"607":{"tf":1.0},"615":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"739":{"tf":1.0},"751":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"925":{"tf":1.0},"943":{"tf":1.4142135623730951},"960":{"tf":1.0},"980":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":121,"docs":{"107":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1334":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1373":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"327":{"tf":1.0},"334":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"519":{"tf":1.0},"547":{"tf":1.0},"555":{"tf":1.0},"576":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.7320508075688772},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"696":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"75":{"tf":1.4142135623730951},"758":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":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":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1315":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1338":{"tf":2.0},"1389":{"tf":1.4142135623730951},"1390":{"tf":2.0},"206":{"tf":1.0},"237":{"tf":1.0},"311":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1033":{"tf":1.0}}}}}},"df":30,"docs":{"1145":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1206":{"tf":1.0},"1247":{"tf":1.7320508075688772},"1248":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1355":{"tf":2.6457513110645907},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.0},"1361":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1384":{"tf":1.0},"226":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"426":{"tf":2.0},"427":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.0},"883":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"899":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"173":{"tf":1.0},"21":{"tf":1.0},"439":{"tf":1.0},"54":{"tf":1.0}}}}},"df":1,"docs":{"804":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":36,"docs":{"1140":{"tf":1.0},"1161":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1292":{"tf":1.0},"1310":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.4142135623730951},"249":{"tf":1.0},"30":{"tf":1.0},"361":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"595":{"tf":1.0},"673":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"1310":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"856":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"804":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1215":{"tf":1.0},"1453":{"tf":1.4142135623730951},"243":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1077":{"tf":1.0},"1295":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"831":{"tf":1.0},"863":{"tf":1.0}}}},"w":{"df":4,"docs":{"1295":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"1042":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1161":{"tf":1.0},"36":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1009":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1283":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1452":{"tf":2.0},"168":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"433":{"tf":1.0},"681":{"tf":1.4142135623730951},"69":{"tf":1.0},"908":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"961":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1306":{"tf":1.0},"250":{"tf":1.4142135623730951},"725":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1173":{"tf":1.0},"1417":{"tf":1.0},"1456":{"tf":1.7320508075688772},"1502":{"tf":1.0},"1516":{"tf":1.4142135623730951},"1518":{"tf":1.4142135623730951},"156":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.4142135623730951},"934":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1083":{"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":1,"docs":{"1182":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1330":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1346":{"tf":1.0},"255":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"108":{"tf":1.0},"353":{"tf":1.7320508075688772},"585":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"d":{"df":19,"docs":{"1194":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1384":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"321":{"tf":1.0},"327":{"tf":1.0},"54":{"tf":1.0},"548":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"753":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"978":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1305":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"879":{"tf":1.0},"883":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"1375":{"tf":1.0},"1404":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":23,"docs":{"1129":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"788":{"tf":1.0},"811":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1222":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"h":{"df":22,"docs":{"1007":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1036":{"tf":1.0},"1135":{"tf":1.0},"1145":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.4142135623730951},"125":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"15":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"451":{"tf":1.0},"530":{"tf":1.0},"707":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"88":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":12,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1154":{"tf":1.0},"779":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1080":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"473":{"tf":2.0},"818":{"tf":1.0},"940":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1035":{"tf":1.0},"35":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"837":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"1451":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1512":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1067":{"tf":1.7320508075688772},"1071":{"tf":1.4142135623730951},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"381":{"tf":1.0},"404":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"19":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":24,"docs":{"1":{"tf":1.0},"1078":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":2.0},"1262":{"tf":1.0},"1296":{"tf":1.0},"1305":{"tf":1.0},"1409":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"453":{"tf":1.0},"481":{"tf":1.0},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"70":{"tf":1.0},"758":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":20,"docs":{"1069":{"tf":1.0},"1075":{"tf":1.0},"1136":{"tf":1.0},"1207":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"304":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"5":{"tf":1.0},"587":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"1015":{"tf":1.7320508075688772},"1018":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1024":{"tf":1.0},"1080":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"277":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1214":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"585":{"tf":1.0},"871":{"tf":1.0},"950":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"761":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1403":{"tf":1.0},"31":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":1,"docs":{"1379":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"474":{"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":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"1148":{"tf":1.0},"1174":{"tf":1.0},"1185":{"tf":1.7320508075688772},"1195":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"361":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"517":{"tf":1.0},"595":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"694":{"tf":1.0},"726":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}}},"df":1,"docs":{"1356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"911":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"58":{"tf":1.0},"911":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"1083":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1418":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"1213":{"tf":1.0},"1234":{"tf":2.0},"1244":{"tf":1.0},"760":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1106":{"tf":1.0},"249":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"258":{"tf":1.0},"292":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1154":{"tf":3.0},"1165":{"tf":2.6457513110645907},"1296":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"911":{"tf":1.0},"969":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":30,"docs":{"1016":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1026":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1038":{"tf":1.4142135623730951},"1042":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"1451":{"tf":1.0},"182":{"tf":1.0},"473":{"tf":2.0},"925":{"tf":1.0},"93":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":8,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"1339":{"tf":1.0},"1480":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"739":{"tf":1.4142135623730951},"792":{"tf":1.0},"836":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":3,"docs":{"51":{"tf":1.0},"730":{"tf":1.4142135623730951},"792":{"tf":2.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":31,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"104":{"tf":1.0},"1320":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":4,"docs":{"1095":{"tf":1.0},"552":{"tf":1.0},"586":{"tf":1.7320508075688772},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"261":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"930":{"tf":1.4142135623730951},"939":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"34":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.7320508075688772},"928":{"tf":1.7320508075688772},"929":{"tf":2.0},"939":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1403":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1194":{"tf":1.0},"1212":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.0},"61":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"929":{"tf":1.0},"972":{"tf":1.4142135623730951},"988":{"tf":2.0}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"1011":{"tf":1.0},"1219":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1456":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1509":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"664":{"tf":1.0},"780":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"940":{"tf":1.0},"942":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1174":{"tf":1.0},"59":{"tf":1.0},"951":{"tf":1.0},"973":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1137":{"tf":1.0},"1221":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.0},"620":{"tf":1.0},"763":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1021":{"tf":1.0},"82":{"tf":1.4142135623730951},"925":{"tf":2.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1250":{"tf":1.0}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"1144":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":76,"docs":{"1109":{"tf":1.0},"1166":{"tf":1.0},"1200":{"tf":1.0},"1208":{"tf":1.0},"1260":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1378":{"tf":1.0},"138":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"142":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1494":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"188":{"tf":1.0},"205":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"408":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"603":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"642":{"tf":1.7320508075688772},"654":{"tf":1.0},"702":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"96":{"tf":1.0},"970":{"tf":1.0},"979":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1421":{"tf":1.0},"1433":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"871":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1105":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"682":{"tf":1.0},"908":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"960":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"24":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"i":{"/":{"c":{"d":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":11,"docs":{"936":{"tf":2.0},"937":{"tf":1.7320508075688772},"938":{"tf":1.4142135623730951},"939":{"tf":2.0},"941":{"tf":2.0},"942":{"tf":2.0},"975":{"tf":1.4142135623730951},"976":{"tf":2.23606797749979},"977":{"tf":1.7320508075688772},"978":{"tf":1.4142135623730951},"979":{"tf":1.0}}}},"p":{"df":1,"docs":{"108":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":36,"docs":{"1152":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.0},"429":{"tf":1.0},"498":{"tf":1.0},"516":{"tf":1.7320508075688772},"541":{"tf":1.0},"588":{"tf":1.0},"593":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.4142135623730951},"619":{"tf":1.0},"693":{"tf":1.7320508075688772},"711":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"969":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"960":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1018":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"751":{"tf":1.0},"757":{"tf":1.0}},"i":{"df":3,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"753":{"tf":1.0}}}}}}},"u":{"d":{"df":5,"docs":{"831":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"1168":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}}},"r":{"df":8,"docs":{"170":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"929":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":117,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"1182":{"tf":1.0},"119":{"tf":1.0},"1191":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.4142135623730951},"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},"1317":{"tf":2.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.0},"143":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1501":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.7320508075688772},"359":{"tf":1.0},"4":{"tf":1.7320508075688772},"433":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"771":{"tf":1.4142135623730951},"8":{"tf":2.0},"907":{"tf":1.4142135623730951},"925":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.4142135623730951},"427":{"tf":1.0},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"667":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":44,"docs":{"1149":{"tf":1.0},"1152":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1189":{"tf":2.0},"1202":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1265":{"tf":1.0},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1359":{"tf":2.8284271247461903},"1379":{"tf":1.4142135623730951},"1382":{"tf":2.449489742783178},"1493":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"427":{"tf":2.8284271247461903},"429":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":2.8284271247461903},"447":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"478":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"667":{"tf":2.23606797749979},"670":{"tf":1.7320508075688772},"672":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":2.23606797749979},"719":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"446":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"934":{"tf":1.4142135623730951},"935":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"554":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"u":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1064":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1439":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1310":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.0}}}}},"df":76,"docs":{"1154":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"1457":{"tf":2.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"320":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.0},"679":{"tf":1.0},"711":{"tf":1.0},"748":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.7320508075688772},"822":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}}},"df":1,"docs":{"858":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1076":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"88":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1304":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.0},"213":{"tf":1.0},"786":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"302":{"tf":1.7320508075688772},"311":{"tf":2.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1396":{"tf":1.0},"152":{"tf":1.0},"345":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"572":{"tf":1.0},"657":{"tf":1.0},"753":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"479":{"tf":1.0},"509":{"tf":1.0},"996":{"tf":2.0}}},"m":{"a":{"df":3,"docs":{"138":{"tf":1.0},"1436":{"tf":1.0},"1479":{"tf":1.0}},"n":{"d":{"df":60,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"1229":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1250":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1359":{"tf":1.0},"138":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1407":{"tf":2.23606797749979},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.7320508075688772},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.7320508075688772},"1415":{"tf":1.0},"1416":{"tf":1.7320508075688772},"1417":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":2.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1458":{"tf":1.0},"1501":{"tf":1.0},"1524":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"255":{"tf":1.0},"4":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"67":{"tf":1.0},"979":{"tf":1.4142135623730951},"996":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":26,"docs":{"1084":{"tf":1.0},"1194":{"tf":2.0},"169":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"747":{"tf":1.0},"833":{"tf":1.0},"852":{"tf":2.449489742783178},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.7320508075688772},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"858":{"tf":1.7320508075688772},"859":{"tf":1.4142135623730951},"860":{"tf":2.8284271247461903},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.7320508075688772},"875":{"tf":1.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1200":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1317":{"tf":1.0},"140":{"tf":1.4142135623730951},"1424":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1502":{"tf":1.0},"1528":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"303":{"tf":1.0},"350":{"tf":1.4142135623730951},"357":{"tf":1.0},"451":{"tf":1.4142135623730951},"547":{"tf":1.0},"582":{"tf":1.4142135623730951},"591":{"tf":1.0},"678":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"727":{"tf":1.0},"741":{"tf":1.0},"925":{"tf":1.0},"93":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":28,"docs":{"0":{"tf":2.0},"1020":{"tf":1.0},"1042":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"422":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"663":{"tf":1.0},"88":{"tf":1.0},"910":{"tf":1.0},"927":{"tf":1.0},"955":{"tf":1.0},"964":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1328":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"753":{"tf":1.0}}}},"r":{"df":3,"docs":{"231":{"tf":1.0},"922":{"tf":1.0},"944":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1048":{"tf":1.4142135623730951},"973":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"1023":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1292":{"tf":1.0},"1432":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.7320508075688772},"1528":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"25":{"tf":1.0},"353":{"tf":1.7320508075688772},"451":{"tf":1.0},"585":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"711":{"tf":1.0},"940":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"856":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1296":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":106,"docs":{"11":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1256":{"tf":1.0},"1268":{"tf":1.0},"1312":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"1347":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1370":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":2.0},"1400":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1458":{"tf":1.0},"1487":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"370":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"441":{"tf":1.4142135623730951},"452":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"480":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"604":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"619":{"tf":1.0},"62":{"tf":1.0},"654":{"tf":1.4142135623730951},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"765":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"820":{"tf":1.0},"825":{"tf":1.4142135623730951},"826":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"83":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0},"902":{"tf":1.4142135623730951},"970":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":12,"docs":{"1086":{"tf":1.0},"1089":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.0},"1297":{"tf":1.0},"17":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"593":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"1010":{"tf":1.0},"1026":{"tf":1.0},"1033":{"tf":1.0},"11":{"tf":1.0},"1166":{"tf":1.0},"1421":{"tf":1.4142135623730951},"188":{"tf":1.0},"37":{"tf":1.0},"62":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"985":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1079":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"51":{"tf":1.4142135623730951},"729":{"tf":1.0},"733":{"tf":1.4142135623730951},"740":{"tf":1.0},"753":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"1161":{"tf":1.0},"741":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"501":{"tf":1.4142135623730951},"729":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"0":{"tf":1.0},"1173":{"tf":1.0},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"290":{"tf":1.0},"60":{"tf":1.0},"898":{"tf":1.0},"910":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.0},"1010":{"tf":1.0},"1052":{"tf":2.0},"918":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":2.23606797749979},"996":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1036":{"tf":1.0},"1254":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"789":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":35,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"552":{"tf":2.0},"579":{"tf":2.23606797749979},"586":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1119":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1384":{"tf":1.0},"54":{"tf":1.0},"757":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0}}}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1051":{"tf":1.0},"1129":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1047":{"tf":1.0},"139":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.4142135623730951},"661":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1140":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.7320508075688772},"595":{"tf":1.0},"611":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"112":{"tf":1.0},"1140":{"tf":2.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1413":{"tf":2.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1428":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1460":{"tf":1.0},"1467":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"150":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"378":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"485":{"tf":1.0},"544":{"tf":1.0},"595":{"tf":1.0},"611":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.4142135623730951},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":2.0},"892":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":2.23606797749979},"925":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":47,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1301":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1495":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"378":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"518":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":219,"docs":{"1019":{"tf":1.4142135623730951},"1025":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1056":{"tf":1.7320508075688772},"1058":{"tf":1.4142135623730951},"1065":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1074":{"tf":1.4142135623730951},"1079":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1139":{"tf":1.0},"116":{"tf":1.0},"1168":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1189":{"tf":1.4142135623730951},"120":{"tf":1.0},"1206":{"tf":1.0},"1215":{"tf":1.4142135623730951},"122":{"tf":1.0},"1220":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1227":{"tf":1.4142135623730951},"1228":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"1277":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1296":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.4142135623730951},"139":{"tf":1.0},"1394":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1430":{"tf":1.0},"1434":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1437":{"tf":1.7320508075688772},"1438":{"tf":2.23606797749979},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1441":{"tf":2.449489742783178},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.7320508075688772},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.7320508075688772},"1447":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":2.23606797749979},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1460":{"tf":2.23606797749979},"1461":{"tf":2.0},"1467":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1489":{"tf":1.0},"149":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"150":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"182":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"337":{"tf":1.0},"361":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"447":{"tf":1.0},"462":{"tf":1.4142135623730951},"478":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"561":{"tf":1.7320508075688772},"562":{"tf":1.7320508075688772},"563":{"tf":1.0},"564":{"tf":1.0},"595":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"71":{"tf":1.0},"712":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.7320508075688772},"737":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"769":{"tf":1.0},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"829":{"tf":1.0},"833":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"887":{"tf":2.0},"888":{"tf":1.0},"889":{"tf":1.4142135623730951},"890":{"tf":1.0},"891":{"tf":1.7320508075688772},"892":{"tf":1.7320508075688772},"893":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"898":{"tf":1.7320508075688772},"899":{"tf":1.7320508075688772},"900":{"tf":1.7320508075688772},"901":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"904":{"tf":1.7320508075688772},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"969":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"1012":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1475":{"tf":1.0},"318":{"tf":1.0},"824":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1082":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1522":{"tf":1.0},"510":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1480":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1084":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1179":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":2.449489742783178},"318":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"678":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"30":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"954":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1051":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1194":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"37":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1005":{"tf":1.4142135623730951},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.4142135623730951},"1039":{"tf":1.4142135623730951},"1049":{"tf":1.4142135623730951},"1062":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1087":{"tf":1.4142135623730951},"1104":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"320":{"tf":1.0},"444":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"971":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1109":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"874":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":3,"docs":{"1358":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"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":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.0},"327":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"419":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}}},"j":{"a":{"c":{"df":4,"docs":{"1282":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"546":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1127":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"384":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"`":{"a":{"d":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"518":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":7,"docs":{"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"408":{"tf":1.0},"420":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"525":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"418":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":3,"docs":{"1365":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":8,"docs":{"1351":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"349":{"tf":1.4142135623730951},"397":{"tf":1.0},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"327":{"tf":1.0},"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"461":{"tf":1.0},"465":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"525":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"h":{"a":{"df":1,"docs":{"535":{"tf":1.0}},"r":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1351":{"tf":1.0},"1362":{"tf":1.0},"403":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}}}},"df":3,"docs":{"391":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1362":{"tf":1.0},"1399":{"tf":1.0},"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"420":{"tf":1.7320508075688772},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"400":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"458":{"tf":1.0},"529":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"770":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"358":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1355":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}}},"t":{"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":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"376":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1218":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"1352":{"tf":2.0},"1363":{"tf":2.0},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"973":{"tf":1.0}}}}},"df":171,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1140":{"tf":2.449489742783178},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1273":{"tf":2.23606797749979},"1276":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.4641016151377544},"1304":{"tf":1.0},"1305":{"tf":3.1622776601683795},"1306":{"tf":2.6457513110645907},"1307":{"tf":2.23606797749979},"1310":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1315":{"tf":2.0},"1349":{"tf":1.0},"1351":{"tf":2.0},"1352":{"tf":2.0},"1353":{"tf":2.23606797749979},"1355":{"tf":2.449489742783178},"1356":{"tf":2.6457513110645907},"1358":{"tf":2.0},"1359":{"tf":2.6457513110645907},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":2.0},"1365":{"tf":3.7416573867739413},"1367":{"tf":1.7320508075688772},"1369":{"tf":3.7416573867739413},"1399":{"tf":4.0},"1401":{"tf":3.872983346207417},"1403":{"tf":4.898979485566356},"1405":{"tf":3.3166247903554},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1522":{"tf":3.4641016151377544},"1524":{"tf":2.23606797749979},"1526":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":2.0},"358":{"tf":2.0},"361":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":3.1622776601683795},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":2.6457513110645907},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"443":{"tf":2.449489742783178},"458":{"tf":2.449489742783178},"459":{"tf":2.23606797749979},"461":{"tf":1.7320508075688772},"463":{"tf":2.23606797749979},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":2.449489742783178},"477":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"507":{"tf":2.449489742783178},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"770":{"tf":1.7320508075688772},"772":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"9":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1121":{"tf":1.4142135623730951},"51":{"tf":1.0},"746":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1152":{"tf":1.0},"1399":{"tf":1.0},"517":{"tf":1.4142135623730951},"541":{"tf":1.0},"694":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"766":{"tf":1.4142135623730951}}}},"m":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1332":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.7320508075688772},"170":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"733":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.7320508075688772},"757":{"tf":1.0},"761":{"tf":1.7320508075688772},"762":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1186":{"tf":1.0},"1422":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"185":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"489":{"tf":1.0},"529":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"66":{"tf":1.0},"706":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"836":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"950":{"tf":1.7320508075688772},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"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":{"1270":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":121,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1091":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":2.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":2.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"135":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"1374":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"167":{"tf":2.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"238":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.7320508075688772},"349":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"383":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"426":{"tf":1.0},"442":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.7320508075688772},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"601":{"tf":1.0},"605":{"tf":1.0},"614":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"725":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"780":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":2.0},"788":{"tf":2.0},"791":{"tf":1.7320508075688772},"792":{"tf":1.4142135623730951},"794":{"tf":2.0},"796":{"tf":2.0},"80":{"tf":1.7320508075688772},"831":{"tf":1.0},"836":{"tf":1.7320508075688772},"838":{"tf":2.0},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":3.0},"883":{"tf":1.0},"914":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"855":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":70,"docs":{"108":{"tf":1.0},"1173":{"tf":2.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.7320508075688772},"228":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":2.0},"53":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"700":{"tf":1.4142135623730951},"727":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":9,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"209":{"tf":1.0},"38":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"940":{"tf":1.0},"983":{"tf":1.0},"995":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1323":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"616":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"1130":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1213":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1330":{"tf":3.605551275463989},"1336":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.449489742783178},"1404":{"tf":1.0},"209":{"tf":2.23606797749979},"217":{"tf":1.0},"224":{"tf":1.4142135623730951},"276":{"tf":1.0},"406":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"728":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"1399":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"463":{"tf":1.0},"593":{"tf":1.0},"64":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"610":{"tf":1.0}}},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":22,"docs":{"1236":{"tf":1.0},"1256":{"tf":1.0},"47":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":2.449489742783178},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.7320508075688772},"883":{"tf":1.0},"884":{"tf":1.7320508075688772},"885":{"tf":1.7320508075688772},"886":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1261":{"tf":1.0},"172":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"1528":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"682":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.7320508075688772},"819":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":53,"docs":{"1447":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"292":{"tf":1.0},"329":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"692":{"tf":1.4142135623730951},"739":{"tf":1.0},"756":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"p":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1467":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1495":{"tf":1.0},"1528":{"tf":1.4142135623730951},"248":{"tf":1.0},"451":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1142":{"tf":1.0},"1493":{"tf":1.0},"1528":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1171":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1070":{"tf":1.0},"1102":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1083":{"tf":1.0},"1505":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1155":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1154":{"tf":2.8284271247461903},"1155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1153":{"tf":1.4142135623730951},"1154":{"tf":2.449489742783178},"1155":{"tf":2.0},"1156":{"tf":2.23606797749979},"1158":{"tf":1.0}}}},"df":12,"docs":{"1137":{"tf":1.0},"1219":{"tf":1.0},"1221":{"tf":1.0},"1298":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.4142135623730951},"620":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1510":{"tf":1.0},"1520":{"tf":1.0},"1530":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"1161":{"tf":1.0},"299":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":323,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1043":{"tf":1.0},"1047":{"tf":1.0},"1052":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1094":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"1124":{"tf":1.0},"1135":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"116":{"tf":1.0},"1161":{"tf":1.0},"1165":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.7320508075688772},"120":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"124":{"tf":2.0},"1242":{"tf":1.0},"127":{"tf":3.3166247903554},"1278":{"tf":1.0},"1300":{"tf":2.23606797749979},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1310":{"tf":2.0},"1318":{"tf":2.0},"132":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1323":{"tf":4.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":2.6457513110645907},"1330":{"tf":2.449489742783178},"1332":{"tf":3.0},"1336":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":3.3166247903554},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1346":{"tf":1.0},"1351":{"tf":2.0},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":2.23606797749979},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":2.0},"1378":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":2.23606797749979},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.449489742783178},"1405":{"tf":1.0},"141":{"tf":2.0},"1410":{"tf":1.0},"1419":{"tf":4.0},"142":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1425":{"tf":1.7320508075688772},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1467":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"148":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1487":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":2.449489742783178},"1500":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"1512":{"tf":1.0},"1515":{"tf":2.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1529":{"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.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"192":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"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":2.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"327":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.4142135623730951},"41":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.7320508075688772},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.7320508075688772},"587":{"tf":1.4142135623730951},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"61":{"tf":1.0},"622":{"tf":1.7320508075688772},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"640":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"71":{"tf":1.4142135623730951},"719":{"tf":1.0},"72":{"tf":2.8284271247461903},"721":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":2.23606797749979},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772},"748":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"768":{"tf":1.4142135623730951},"769":{"tf":1.0},"77":{"tf":2.6457513110645907},"771":{"tf":1.4142135623730951},"773":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.7320508075688772},"8":{"tf":2.0},"80":{"tf":2.23606797749979},"804":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":3.3166247903554},"881":{"tf":1.0},"882":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.4142135623730951},"921":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"845":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1361":{"tf":1.4142135623730951},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"332":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"515":{"tf":1.0},"536":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.7320508075688772}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1151":{"tf":1.0},"507":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":18,"docs":{"1179":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":2.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"431":{"tf":2.0},"540":{"tf":1.0},"543":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":32,"docs":{"1043":{"tf":1.0},"1140":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"356":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"590":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.4142135623730951},"696":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.0},"924":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"782":{"tf":1.0}}},"df":4,"docs":{"1390":{"tf":1.4142135623730951},"28":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1072":{"tf":1.0},"1278":{"tf":1.0},"1355":{"tf":1.0},"1490":{"tf":1.4142135623730951},"339":{"tf":1.0},"491":{"tf":1.0},"566":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"29":{"tf":1.0},"47":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1042":{"tf":1.0},"1052":{"tf":1.0},"1194":{"tf":1.0},"1450":{"tf":1.0},"1515":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1099":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1404":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"857":{"tf":1.4142135623730951},"860":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}}}}},"u":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"1119":{"tf":1.0},"841":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":138,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":2.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"1049":{"tf":1.0},"1050":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1173":{"tf":1.0},"1176":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.0},"1212":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1237":{"tf":1.0},"1262":{"tf":1.0},"127":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1415":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1432":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1458":{"tf":1.0},"1463":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1531":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"341":{"tf":1.4142135623730951},"41":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"617":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"724":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.4142135623730951},"782":{"tf":1.0},"792":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"984":{"tf":1.7320508075688772},"995":{"tf":1.0}},"i":{"df":5,"docs":{"1010":{"tf":1.0},"1029":{"tf":1.0},"1254":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"984":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"1268":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"465":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"1302":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"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":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}},"df":46,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1003":{"tf":1.0},"1011":{"tf":1.0},"1115":{"tf":1.0},"1213":{"tf":1.0},"1220":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1298":{"tf":1.0},"1328":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1423":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"15":{"tf":1.0},"1510":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"219":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"407":{"tf":1.0},"524":{"tf":1.0},"57":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.4142135623730951},"606":{"tf":1.0},"641":{"tf":1.0},"701":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"808":{"tf":1.0},"827":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"996":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1017":{"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":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1212":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"822":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1302":{"tf":1.0},"696":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":102,"docs":{"1044":{"tf":1.4142135623730951},"1108":{"tf":2.0},"1109":{"tf":1.4142135623730951},"1110":{"tf":1.7320508075688772},"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1197":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":2.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":2.0},"1324":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"134":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1441":{"tf":1.0},"1456":{"tf":1.0},"1460":{"tf":1.0},"151":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"205":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":2.0},"284":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"392":{"tf":2.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"446":{"tf":1.0},"49":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"593":{"tf":1.0},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.4142135623730951},"72":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"742":{"tf":1.7320508075688772},"748":{"tf":1.4142135623730951},"759":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.8284271247461903},"833":{"tf":1.0},"98":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"f":{"df":2,"docs":{"1095":{"tf":1.0},"1097":{"tf":1.0}}}}},"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"294":{"tf":1.0},"298":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"845":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"238":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1140":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":36,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":2.449489742783178},"1078":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1087":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1295":{"tf":2.23606797749979},"1296":{"tf":1.7320508075688772},"1297":{"tf":2.449489742783178},"1298":{"tf":2.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1522":{"tf":2.0},"16":{"tf":1.0},"64":{"tf":1.0},"779":{"tf":1.0},"871":{"tf":1.0}},"e":{"(":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"595":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":114,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1067":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1093":{"tf":1.4142135623730951},"11":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":2.449489742783178},"1149":{"tf":1.0},"116":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.0},"1256":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1290":{"tf":1.0},"1298":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1422":{"tf":1.0},"1430":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"21":{"tf":1.0},"312":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"46":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"532":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"548":{"tf":1.0},"55":{"tf":1.4142135623730951},"575":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.7320508075688772},"638":{"tf":2.0},"648":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"709":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.0},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1304":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"df":31,"docs":{"1045":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"1339":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"739":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.7320508075688772},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"808":{"tf":1.4142135623730951},"816":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"648":{"tf":1.0},"705":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1399":{"tf":1.0},"1507":{"tf":1.0},"812":{"tf":1.0},"933":{"tf":1.0}}}},"df":23,"docs":{"132":{"tf":2.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1530":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"73":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"420":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.0},"856":{"tf":1.4142135623730951},"859":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":20,"docs":{"1191":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"1293":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1439":{"tf":1.0},"1444":{"tf":1.0},"1496":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"311":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"66":{"tf":1.0},"679":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"935":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"1041":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1441":{"tf":1.0},"21":{"tf":1.0},"308":{"tf":1.0},"901":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"1164":{"tf":1.0},"1166":{"tf":1.0},"1422":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"669":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1505":{"tf":1.0},"434":{"tf":1.0},"489":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"256":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":64,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1304":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1355":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.7320508075688772},"1440":{"tf":1.0},"1441":{"tf":1.0},"1449":{"tf":2.449489742783178},"1452":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.0},"294":{"tf":2.0},"298":{"tf":1.0},"338":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"418":{"tf":1.0},"473":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.4142135623730951},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"565":{"tf":1.4142135623730951},"595":{"tf":1.0},"600":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.4142135623730951},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"72":{"tf":1.0},"742":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"996":{"tf":1.0}}}}}},"df":46,"docs":{"1103":{"tf":1.0},"1120":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.7320508075688772},"1392":{"tf":2.23606797749979},"1394":{"tf":1.7320508075688772},"1402":{"tf":2.23606797749979},"1404":{"tf":3.3166247903554},"576":{"tf":1.0},"588":{"tf":2.0},"617":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":2.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1108":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1384":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"774":{"tf":1.0},"80":{"tf":1.0},"800":{"tf":1.4142135623730951},"804":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.0},"829":{"tf":1.0},"887":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"1120":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1453":{"tf":1.0},"151":{"tf":1.7320508075688772},"155":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"332":{"tf":1.0},"354":{"tf":1.0},"377":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"610":{"tf":1.4142135623730951},"72":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.4142135623730951},"759":{"tf":1.0},"833":{"tf":1.0},"938":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"1094":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1515":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"151":{"tf":1.0},"859":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"33":{"tf":1.0},"815":{"tf":1.0},"856":{"tf":1.0},"859":{"tf":1.0},"883":{"tf":1.0}},"i":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"246":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"116":{"tf":1.0},"1194":{"tf":1.0},"915":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"1011":{"tf":1.0},"106":{"tf":1.0},"1061":{"tf":1.0},"107":{"tf":1.0},"1087":{"tf":1.0},"1094":{"tf":1.0},"115":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"248":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"292":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"682":{"tf":1.0},"911":{"tf":1.0},"942":{"tf":1.0},"969":{"tf":1.0},"972":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":18,"docs":{"1054":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1175":{"tf":1.0},"1211":{"tf":1.0},"1215":{"tf":1.0},"1284":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"822":{"tf":1.0},"929":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1135":{"tf":1.0},"1449":{"tf":1.0},"1506":{"tf":1.7320508075688772},"1509":{"tf":1.0},"545":{"tf":2.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"950":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"1253":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.0},"925":{"tf":1.0}}}}},"s":{"c":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"1211":{"tf":1.0},"47":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":108,"docs":{"1000":{"tf":1.0},"1055":{"tf":1.0},"108":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1115":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"1310":{"tf":1.0},"132":{"tf":2.449489742783178},"1323":{"tf":1.0},"1332":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"138":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.7320508075688772},"288":{"tf":1.0},"292":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"532":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.0},"709":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":2.0},"752":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.449489742783178},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"80":{"tf":2.0},"803":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"847":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.7320508075688772},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":1.0},"946":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"0":{"tf":1.0},"13":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1304":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"357":{"tf":1.0},"591":{"tf":1.0},"63":{"tf":1.0},"852":{"tf":1.0},"910":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}}},"r":{"df":3,"docs":{"802":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":21,"docs":{"1437":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1440":{"tf":2.0},"1442":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"899":{"tf":2.449489742783178},"900":{"tf":2.449489742783178},"902":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1013":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1347":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1406":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"603":{"tf":1.0},"679":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"851":{"tf":1.0},"87":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"980":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"1336":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1163":{"tf":1.0},"1175":{"tf":1.0},"1263":{"tf":1.0},"1432":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"928":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1450":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"921":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1454":{"tf":1.0}}}}}},"df":5,"docs":{"115":{"tf":1.0},"1343":{"tf":1.0},"1441":{"tf":1.0},"348":{"tf":1.0},"930":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":28,"docs":{"1":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1089":{"tf":1.0},"1194":{"tf":1.0},"1343":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"250":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"391":{"tf":1.0},"420":{"tf":1.4142135623730951},"554":{"tf":1.7320508075688772},"573":{"tf":1.4142135623730951},"625":{"tf":1.0},"654":{"tf":1.4142135623730951},"758":{"tf":1.0},"928":{"tf":1.7320508075688772},"930":{"tf":1.0},"968":{"tf":1.4142135623730951},"976":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"t":{"df":1,"docs":{"979":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":18,"docs":{"1376":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.0},"1394":{"tf":2.0},"1402":{"tf":1.0},"1404":{"tf":2.8284271247461903},"599":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"617":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"725":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"706":{"tf":1.0},"707":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"1194":{"tf":1.0},"976":{"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":{"1014":{"tf":1.0},"1119":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"129":{"tf":1.0},"1298":{"tf":1.0},"1333":{"tf":1.0},"1343":{"tf":1.0},"1467":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.7320508075688772},"289":{"tf":1.0},"487":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1475":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1014":{"tf":1.0},"1028":{"tf":1.0},"24":{"tf":1.0},"760":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":27,"docs":{"1015":{"tf":1.4142135623730951},"1028":{"tf":2.0},"1029":{"tf":1.0},"1031":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.7320508075688772},"57":{"tf":1.0},"571":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":2,"docs":{"1340":{"tf":1.0},"585":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"302":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1091":{"tf":1.0},"1156":{"tf":1.0},"1297":{"tf":1.0},"185":{"tf":1.0},"239":{"tf":1.0},"494":{"tf":1.0},"676":{"tf":1.0},"684":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":67,"docs":{"1043":{"tf":1.0},"1059":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":2.0},"124":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.7320508075688772},"1340":{"tf":1.0},"136":{"tf":1.7320508075688772},"1369":{"tf":1.0},"137":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.7320508075688772},"1426":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1462":{"tf":2.23606797749979},"1464":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1528":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"210":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"43":{"tf":1.0},"536":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"79":{"tf":1.0},"831":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"924":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"128":{"tf":1.0},"1439":{"tf":1.0},"242":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":4,"docs":{"221":{"tf":1.0},"228":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1099":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1164":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}},"i":{"df":5,"docs":{"1212":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.4142135623730951},"374":{"tf":1.0},"607":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"884":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":6,"docs":{"1062":{"tf":1.0},"1101":{"tf":1.0},"1489":{"tf":1.0},"371":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"125":{"tf":1.0},"1498":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"836":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1062":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1208":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1452":{"tf":1.0},"214":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"935":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"256":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":90,"docs":{"1002":{"tf":1.7320508075688772},"1003":{"tf":1.4142135623730951},"1004":{"tf":2.0},"1006":{"tf":1.0},"1007":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1075":{"tf":1.0},"1196":{"tf":1.0},"1214":{"tf":1.0},"1235":{"tf":2.0},"1247":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1250":{"tf":2.0},"1251":{"tf":2.0},"1261":{"tf":1.4142135623730951},"128":{"tf":3.4641016151377544},"129":{"tf":2.8284271247461903},"130":{"tf":1.4142135623730951},"1333":{"tf":3.4641016151377544},"1334":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1473":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":2.449489742783178},"1477":{"tf":2.23606797749979},"165":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":1.0},"202":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":2.8284271247461903},"235":{"tf":2.8284271247461903},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"242":{"tf":3.605551275463989},"243":{"tf":3.7416573867739413},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.6457513110645907},"256":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":2.0},"773":{"tf":1.0},"896":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":2.0},"940":{"tf":1.0},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"95":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"976":{"tf":3.0},"977":{"tf":1.0},"979":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"f":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"937":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":28,"docs":{"1227":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1474":{"tf":2.449489742783178},"165":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":2.449489742783178},"246":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":2.23606797749979},"763":{"tf":1.0},"896":{"tf":1.4142135623730951},"918":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1361":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"522":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1351":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1352":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1342":{"tf":1.0},"139":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"179":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"1":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"2":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"588":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1302":{"tf":2.0},"657":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1094":{"tf":1.0},"288":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0},"725":{"tf":1.0},"846":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1143":{"tf":1.4142135623730951},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"df":83,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":2.0},"1151":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":1.0},"210":{"tf":1.4142135623730951},"224":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"419":{"tf":1.0},"45":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"581":{"tf":1.0},"605":{"tf":1.4142135623730951},"616":{"tf":1.0},"634":{"tf":1.4142135623730951},"653":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"723":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"845":{"tf":3.0},"911":{"tf":1.0},"921":{"tf":1.0},"997":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"682":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":13,"docs":{"1209":{"tf":1.0},"1421":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"379":{"tf":1.0},"397":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"612":{"tf":1.0},"631":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"847":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"134":{"tf":2.449489742783178},"1345":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"141":{"tf":1.0},"1419":{"tf":2.23606797749979},"142":{"tf":2.0},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"88":{"tf":2.0}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":2.449489742783178},"605":{"tf":1.0},"612":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"641":{"tf":1.0},"642":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":486,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"1007":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1027":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1086":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":2.0},"1103":{"tf":1.0},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"111":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"113":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":2.23606797749979},"1142":{"tf":2.23606797749979},"1143":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"122":{"tf":1.0},"1228":{"tf":1.0},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.7320508075688772},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1240":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1256":{"tf":1.0},"1260":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":2.23606797749979},"1298":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1301":{"tf":2.6457513110645907},"1302":{"tf":2.6457513110645907},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1307":{"tf":1.0},"1312":{"tf":2.6457513110645907},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1318":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1323":{"tf":3.7416573867739413},"1324":{"tf":3.4641016151377544},"1325":{"tf":2.8284271247461903},"1326":{"tf":2.449489742783178},"1328":{"tf":2.0},"1329":{"tf":2.0},"133":{"tf":1.4142135623730951},"1330":{"tf":3.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.7320508075688772},"1339":{"tf":1.4142135623730951},"134":{"tf":3.4641016151377544},"1340":{"tf":2.449489742783178},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":2.8284271247461903},"1350":{"tf":1.4142135623730951},"1351":{"tf":2.0},"1352":{"tf":2.23606797749979},"1353":{"tf":2.0},"1355":{"tf":1.0},"136":{"tf":3.3166247903554},"1361":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":1.0},"1369":{"tf":2.6457513110645907},"137":{"tf":2.23606797749979},"1370":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1374":{"tf":2.0},"1375":{"tf":2.23606797749979},"1376":{"tf":2.0},"1378":{"tf":1.4142135623730951},"138":{"tf":2.0},"1384":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":2.449489742783178},"139":{"tf":1.0},"1390":{"tf":3.1622776601683795},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1403":{"tf":3.0},"1404":{"tf":3.605551275463989},"1405":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"1415":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":4.123105625617661},"142":{"tf":2.23606797749979},"1420":{"tf":3.1622776601683795},"1421":{"tf":3.3166247903554},"1422":{"tf":3.3166247903554},"1423":{"tf":3.1622776601683795},"1425":{"tf":3.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"145":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.0},"1466":{"tf":1.0},"1469":{"tf":2.0},"147":{"tf":1.0},"1470":{"tf":2.0},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"1481":{"tf":2.23606797749979},"1482":{"tf":1.4142135623730951},"1484":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"149":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.7320508075688772},"1515":{"tf":2.0},"1517":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":1.0},"156":{"tf":2.23606797749979},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.7320508075688772},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.449489742783178},"210":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"276":{"tf":2.23606797749979},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":2.0},"287":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":2.6457513110645907},"372":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"452":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"480":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":2.449489742783178},"523":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"558":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.7320508075688772},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"593":{"tf":1.0},"599":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"604":{"tf":2.449489742783178},"605":{"tf":2.6457513110645907},"606":{"tf":1.4142135623730951},"61":{"tf":1.0},"612":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":2.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"634":{"tf":2.23606797749979},"645":{"tf":1.0},"646":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.4142135623730951},"656":{"tf":2.23606797749979},"657":{"tf":1.7320508075688772},"66":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"696":{"tf":2.6457513110645907},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"699":{"tf":2.449489742783178},"700":{"tf":1.7320508075688772},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.7320508075688772},"71":{"tf":1.0},"710":{"tf":1.7320508075688772},"724":{"tf":1.0},"725":{"tf":1.4142135623730951},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"741":{"tf":1.4142135623730951},"744":{"tf":2.0},"747":{"tf":2.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"751":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":2.0},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.4142135623730951},"780":{"tf":2.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"791":{"tf":2.23606797749979},"792":{"tf":1.0},"793":{"tf":1.7320508075688772},"794":{"tf":2.8284271247461903},"795":{"tf":1.7320508075688772},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"798":{"tf":1.4142135623730951},"799":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.7320508075688772},"831":{"tf":1.7320508075688772},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"84":{"tf":1.0},"843":{"tf":1.7320508075688772},"845":{"tf":1.4142135623730951},"847":{"tf":2.0},"849":{"tf":1.4142135623730951},"850":{"tf":1.7320508075688772},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":3.3166247903554},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"875":{"tf":1.0},"88":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":2.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"92":{"tf":1.0},"921":{"tf":2.23606797749979},"922":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"970":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.4142135623730951}},"i":{"d":{"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"371":{"tf":1.0},"379":{"tf":1.0}},"}":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"522":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"87":{"tf":1.0}}}}}}}}},"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"787":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0},"1309":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"407":{"tf":1.0},"408":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"852":{"tf":1.0}},"e":{"df":3,"docs":{"1404":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1456":{"tf":1.0},"1475":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"230":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"1109":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1239":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1259":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.0},"1333":{"tf":2.6457513110645907},"143":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"374":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.0},"833":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"1051":{"tf":1.0},"1088":{"tf":1.0},"1287":{"tf":1.0},"1323":{"tf":1.0},"1490":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0},"908":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"141":{"tf":1.0},"1456":{"tf":1.0},"72":{"tf":1.0},"811":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"942":{"tf":1.0},"976":{"tf":1.4142135623730951},"978":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1513":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"1325":{"tf":1.0},"1432":{"tf":1.0},"728":{"tf":1.0},"804":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"1474":{"tf":1.4142135623730951},"253":{"tf":1.0},"976":{"tf":1.0}},"s":{"df":1,"docs":{"985":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1336":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1399":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1161":{"tf":1.0},"1309":{"tf":1.0},"1476":{"tf":1.0},"249":{"tf":1.0},"769":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1122":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1507":{"tf":1.0},"303":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.4142135623730951},"527":{"tf":1.0},"602":{"tf":1.0},"608":{"tf":1.0},"704":{"tf":1.0},"836":{"tf":1.0},"870":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1046":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"b":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":48,"docs":{"1003":{"tf":1.0},"11":{"tf":1.0},"1144":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1189":{"tf":1.0},"1206":{"tf":1.0},"1246":{"tf":1.0},"1285":{"tf":1.0},"1310":{"tf":1.0},"1330":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"693":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"874":{"tf":1.0},"881":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"954":{"tf":1.4142135623730951},"968":{"tf":1.0},"97":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"1061":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"548":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1381":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"1148":{"tf":1.0},"1330":{"tf":2.6457513110645907},"1338":{"tf":2.0},"1339":{"tf":2.8284271247461903},"1340":{"tf":2.0},"1345":{"tf":2.6457513110645907},"1346":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.7320508075688772},"956":{"tf":1.0},"962":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}}}},"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":{"1076":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":87,"docs":{"1015":{"tf":1.4142135623730951},"1016":{"tf":2.0},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":2.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.7320508075688772},"389":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"569":{"tf":1.7320508075688772},"57":{"tf":1.0},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0}}}}},"df":22,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.4142135623730951},"135":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.8284271247461903},"1402":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1420":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"384":{"tf":1.7320508075688772},"554":{"tf":1.0},"618":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.449489742783178},"723":{"tf":2.449489742783178},"949":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"950":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1130":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1309":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1381":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"1112":{"tf":2.23606797749979},"1116":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1332":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"507":{"tf":2.0},"65":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"816":{"tf":1.0}}}}},"b":{"df":29,"docs":{"1323":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":2.0},"185":{"tf":2.23606797749979},"206":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.0},"366":{"tf":2.23606797749979},"371":{"tf":2.0},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":2.23606797749979},"522":{"tf":2.0},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"797":{"tf":1.0},"838":{"tf":1.7320508075688772},"850":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":5,"docs":{"1092":{"tf":1.0},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":5,"docs":{"1091":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":26,"docs":{"1091":{"tf":1.7320508075688772},"1092":{"tf":1.0},"1306":{"tf":1.0},"1326":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1422":{"tf":2.23606797749979},"1425":{"tf":1.0},"1433":{"tf":1.0},"1476":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.4142135623730951},"273":{"tf":1.0},"366":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"4":{"tf":1.0},"600":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.7320508075688772},"789":{"tf":2.0},"790":{"tf":1.7320508075688772},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1169":{"tf":1.0},"1200":{"tf":1.0},"261":{"tf":1.0},"451":{"tf":1.0},"517":{"tf":1.0},"694":{"tf":1.0},"911":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.0},"1263":{"tf":1.0},"1296":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"169":{"tf":1.0},"212":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"304":{"tf":1.0},"306":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"536":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"679":{"tf":1.4142135623730951},"728":{"tf":1.0},"874":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"90":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"984":{"tf":1.0},"989":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}},"o":{"d":{"df":22,"docs":{"1045":{"tf":1.0},"1091":{"tf":1.0},"129":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"186":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.0},"376":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"609":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1457":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"1051":{"tf":1.0},"1106":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1505":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1528":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.4142135623730951},"541":{"tf":1.0},"892":{"tf":1.4142135623730951},"911":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1448":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":13,"docs":{"1263":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"225":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"813":{"tf":1.0},"815":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1102":{"tf":1.0},"1106":{"tf":1.0},"1149":{"tf":1.7320508075688772},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":2.0},"1445":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"486":{"tf":1.0},"65":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"810":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1197":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"47":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.7320508075688772},"942":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"151":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1175":{"tf":1.0},"423":{"tf":1.0},"876":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"1":{"tf":1.0},"1109":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1421":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1465":{"tf":1.0},"1493":{"tf":1.0},"15":{"tf":1.0},"1528":{"tf":1.7320508075688772},"227":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"511":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"79":{"tf":1.0},"882":{"tf":1.0},"910":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"1175":{"tf":1.0},"767":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"1323":{"tf":1.0},"1334":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1226":{"tf":1.0},"1403":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}}}}},"y":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"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":{"1403":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1131":{"tf":1.0},"742":{"tf":1.0},"746":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"746":{"tf":1.0}}}}}},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1449":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1212":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"1050":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1086":{"tf":1.0},"113":{"tf":1.7320508075688772},"1159":{"tf":1.7320508075688772},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1215":{"tf":1.0},"125":{"tf":1.0},"1296":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1342":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"1430":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1512":{"tf":1.0},"160":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"37":{"tf":1.0},"437":{"tf":1.4142135623730951},"554":{"tf":1.0},"563":{"tf":1.7320508075688772},"566":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.0},"660":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"935":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1323":{"tf":1.4142135623730951},"1325":{"tf":2.0},"1328":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1338":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1027":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"286":{"tf":1.0},"299":{"tf":1.0}}},"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"442":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"382":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":2.23606797749979}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1356":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":12,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.0},"419":{"tf":1.7320508075688772},"477":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":132,"docs":{"1127":{"tf":1.0},"1149":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"1171":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.449489742783178},"1282":{"tf":1.7320508075688772},"1344":{"tf":1.4142135623730951},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1367":{"tf":3.7416573867739413},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1394":{"tf":2.6457513110645907},"14":{"tf":1.0},"1401":{"tf":3.1622776601683795},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1439":{"tf":1.4142135623730951},"144":{"tf":1.0},"1457":{"tf":2.0},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.7320508075688772},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1463":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1467":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1469":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1473":{"tf":1.7320508075688772},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.7320508075688772},"1479":{"tf":1.7320508075688772},"1480":{"tf":1.4142135623730951},"1481":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1483":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.7320508075688772},"1489":{"tf":2.23606797749979},"1490":{"tf":2.23606797749979},"1491":{"tf":2.0},"1492":{"tf":1.7320508075688772},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":2.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1528":{"tf":1.4142135623730951},"243":{"tf":1.0},"261":{"tf":1.0},"286":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"419":{"tf":2.23606797749979},"442":{"tf":1.0},"463":{"tf":1.4142135623730951},"473":{"tf":1.0},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":2.449489742783178},"498":{"tf":2.449489742783178},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"546":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"584":{"tf":1.7320508075688772},"585":{"tf":1.0},"593":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":2.8284271247461903},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"723":{"tf":2.0},"758":{"tf":1.0},"899":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"941":{"tf":1.7320508075688772},"950":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1345":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1349":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1194":{"tf":1.4142135623730951},"21":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"811":{"tf":1.4142135623730951}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"681":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":14,"docs":{"1109":{"tf":1.0},"1160":{"tf":1.0},"1212":{"tf":1.0},"1298":{"tf":1.0},"1429":{"tf":1.4142135623730951},"28":{"tf":1.0},"369":{"tf":1.0},"439":{"tf":1.0},"729":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"932":{"tf":1.0},"933":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":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":{"255":{"tf":1.0}},"u":{"df":1,"docs":{"732":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1035":{"tf":1.0},"1085":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":2.0},"874":{"tf":1.0}},"t":{"df":5,"docs":{"1192":{"tf":1.4142135623730951},"1205":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"664":{"tf":1.0},"833":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"1115":{"tf":1.4142135623730951},"122":{"tf":1.0},"1462":{"tf":1.0},"327":{"tf":1.0},"555":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1114":{"tf":1.0},"60":{"tf":1.0}}}},"v":{"df":1,"docs":{"984":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1080":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":196,"docs":{"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1128":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1206":{"tf":1.7320508075688772},"1216":{"tf":1.4142135623730951},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":2.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":2.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":2.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":2.6457513110645907},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1454":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"356":{"tf":2.0},"382":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"46":{"tf":1.0},"472":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"590":{"tf":2.0},"616":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"67":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.4142135623730951},"734":{"tf":1.0},"764":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":1.4142135623730951},"833":{"tf":1.0},"839":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"129":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1126":{"tf":1.4142135623730951},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1378":{"tf":2.449489742783178},"1390":{"tf":2.0},"1394":{"tf":3.4641016151377544},"1402":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"615":{"tf":1.7320508075688772},"618":{"tf":1.7320508075688772},"653":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.0},"723":{"tf":2.23606797749979},"724":{"tf":1.7320508075688772},"798":{"tf":1.0},"949":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"1161":{"tf":1.0},"1185":{"tf":1.0},"1219":{"tf":1.0},"1310":{"tf":1.0},"1449":{"tf":1.0},"255":{"tf":1.0},"50":{"tf":1.0},"732":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1042":{"tf":1.0},"1082":{"tf":1.0},"1094":{"tf":1.0},"1135":{"tf":1.0},"116":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1209":{"tf":1.0},"127":{"tf":1.0},"1298":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1332":{"tf":1.0},"135":{"tf":1.0},"1404":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"334":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"605":{"tf":1.0},"634":{"tf":1.4142135623730951},"664":{"tf":1.0},"699":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"876":{"tf":1.0},"894":{"tf":1.0},"92":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0},"976":{"tf":1.0},"984":{"tf":1.0}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1345":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":4,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":1.0},"1471":{"tf":1.0},"1482":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1000":{"tf":1.0},"1507":{"tf":1.0},"918":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":2.449489742783178}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"941":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1436":{"tf":1.0},"950":{"tf":1.0},"954":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1214":{"tf":1.0},"234":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"606":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"372":{"tf":1.4142135623730951}}}},"df":37,"docs":{"1066":{"tf":1.7320508075688772},"1079":{"tf":2.0},"1095":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1215":{"tf":2.0},"1234":{"tf":2.0},"1296":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1440":{"tf":2.449489742783178},"1454":{"tf":2.23606797749979},"1456":{"tf":1.0},"1466":{"tf":1.0},"1497":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1520":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"298":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.4142135623730951},"336":{"tf":2.0},"372":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"506":{"tf":1.4142135623730951},"563":{"tf":2.0},"606":{"tf":1.0},"660":{"tf":2.0},"903":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"s":{"df":2,"docs":{"1194":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"1264":{"tf":1.0},"1267":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"547":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1287":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.7320508075688772},"510":{"tf":1.0},"538":{"tf":1.0}}}}}}},"df":61,"docs":{"1148":{"tf":2.0},"1192":{"tf":2.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.449489742783178},"1401":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"348":{"tf":1.0},"355":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":2.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.23606797749979},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"538":{"tf":1.4142135623730951},"547":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1108":{"tf":1.0},"1111":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1367":{"tf":1.0},"498":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"1244":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"412":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1092":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1405":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"206":{"tf":1.0},"272":{"tf":1.0},"412":{"tf":1.4142135623730951},"423":{"tf":1.0},"646":{"tf":1.4142135623730951},"838":{"tf":1.0},"847":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1080":{"tf":1.0},"1185":{"tf":1.0},"1300":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1326":{"tf":2.6457513110645907},"1356":{"tf":1.0},"137":{"tf":2.449489742783178},"1379":{"tf":1.0},"1422":{"tf":3.0},"1425":{"tf":1.4142135623730951},"1433":{"tf":1.0},"156":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178},"273":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"529":{"tf":1.0},"58":{"tf":1.4142135623730951},"601":{"tf":1.0},"706":{"tf":1.0},"725":{"tf":1.0},"884":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1148":{"tf":1.0},"1381":{"tf":1.0},"666":{"tf":1.0},"684":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"675":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}}},"{":{"a":{"df":1,"docs":{"1381":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"699":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1517":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"661":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1330":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1079":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":5,"docs":{"1182":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":67,"docs":{"1006":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1282":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1469":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.7320508075688772},"1494":{"tf":1.7320508075688772},"1530":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":2.0},"253":{"tf":1.4142135623730951},"299":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"520":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"653":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"855":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"929":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":21,"docs":{"1062":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1334":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"155":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"759":{"tf":1.0},"76":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"916":{"tf":1.0},"935":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1177":{"tf":1.0},"1505":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1197":{"tf":1.0},"21":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0}}},"s":{"df":43,"docs":{"1001":{"tf":1.0},"1122":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"1194":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"1315":{"tf":1.0},"1332":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1449":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"185":{"tf":1.0},"206":{"tf":1.0},"295":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.4142135623730951},"600":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.0},"816":{"tf":1.0},"897":{"tf":1.0},"902":{"tf":1.0},"946":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1149":{"tf":1.7320508075688772},"1264":{"tf":1.0},"1270":{"tf":2.23606797749979},"1372":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"1018":{"tf":1.0},"1042":{"tf":1.0},"1061":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1030":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"992":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"617":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"684":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1148":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1381":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"617":{"tf":1.7320508075688772},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":2.0},"670":{"tf":1.0},"675":{"tf":2.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.0},"687":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"718":{"tf":2.0},"719":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":77,"docs":{"1140":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"135":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"138":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1404":{"tf":2.23606797749979},"141":{"tf":1.4142135623730951},"1419":{"tf":2.449489742783178},"142":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.4142135623730951},"1425":{"tf":2.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"661":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"1055":{"tf":1.0},"107":{"tf":2.8284271247461903},"1075":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"1087":{"tf":1.0},"110":{"tf":1.0},"1118":{"tf":1.4142135623730951},"113":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"259":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"292":{"tf":2.23606797749979},"298":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"536":{"tf":1.0},"70":{"tf":2.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"822":{"tf":1.4142135623730951},"897":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1336":{"tf":1.0},"765":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"1208":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1259":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"459":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":4,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"d":{"df":127,"docs":{"1045":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1122":{"tf":1.0},"1126":{"tf":1.0},"1134":{"tf":1.4142135623730951},"1136":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":2.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":2.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1450":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1471":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1515":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"334":{"tf":1.4142135623730951},"370":{"tf":1.0},"398":{"tf":2.0},"406":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"498":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"58":{"tf":1.4142135623730951},"604":{"tf":1.0},"632":{"tf":2.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.0},"698":{"tf":2.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951},"744":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.7320508075688772},"759":{"tf":1.7320508075688772},"762":{"tf":1.7320508075688772},"765":{"tf":1.0},"773":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"782":{"tf":2.449489742783178},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"786":{"tf":1.7320508075688772},"788":{"tf":1.7320508075688772},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"792":{"tf":2.23606797749979},"807":{"tf":2.0},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.7320508075688772},"816":{"tf":1.7320508075688772},"828":{"tf":1.0},"835":{"tf":1.7320508075688772},"836":{"tf":1.7320508075688772},"854":{"tf":1.7320508075688772},"856":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.7320508075688772},"868":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.7320508075688772},"901":{"tf":1.0},"903":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"135":{"tf":1.0},"1420":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":198,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1091":{"tf":2.0},"1092":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.0},"1112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.4142135623730951},"122":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"132":{"tf":2.23606797749979},"1323":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1336":{"tf":1.0},"1338":{"tf":2.0},"1339":{"tf":1.7320508075688772},"134":{"tf":3.0},"1340":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1345":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1365":{"tf":2.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1420":{"tf":2.8284271247461903},"1421":{"tf":2.8284271247461903},"1422":{"tf":3.3166247903554},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":2.23606797749979},"1433":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.7320508075688772},"144":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1446":{"tf":2.0},"1449":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1455":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1479":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"1528":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"317":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"352":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"478":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.7320508075688772},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"584":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":2.0},"605":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"616":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.4142135623730951},"627":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.4142135623730951},"644":{"tf":1.0},"65":{"tf":1.0},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"678":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"699":{"tf":1.0},"708":{"tf":1.7320508075688772},"712":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.7320508075688772},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.4142135623730951},"747":{"tf":1.0},"772":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":2.449489742783178},"788":{"tf":2.23606797749979},"829":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":2.0},"838":{"tf":2.0},"841":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.4142135623730951},"850":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"925":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"962":{"tf":1.0},"969":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"519":{"tf":1.0},"536":{"tf":2.0},"614":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"722":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"911":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1365":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":24,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1063":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1105":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1522":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":1,"docs":{"319":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"815":{"tf":1.0},"826":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"1403":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1175":{"tf":1.0},"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1401":{"tf":1.0},"1460":{"tf":1.0},"1495":{"tf":1.0},"280":{"tf":1.0},"354":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"1046":{"tf":1.0},"1053":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1476":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.7320508075688772},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"82":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"1001":{"tf":1.4142135623730951},"117":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1410":{"tf":1.0},"142":{"tf":1.0},"1436":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"23":{"tf":1.4142135623730951},"349":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"576":{"tf":1.0},"676":{"tf":1.0},"72":{"tf":1.4142135623730951},"744":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"987":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"x":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1160":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"1077":{"tf":1.0},"1087":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"271":{"tf":1.0},"292":{"tf":1.4142135623730951},"762":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1264":{"tf":1.0},"1271":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1014":{"tf":1.0},"1054":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":9,"docs":{"1184":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1265":{"tf":1.7320508075688772},"1441":{"tf":1.0},"291":{"tf":1.0},"456":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"997":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"df":18,"docs":{"1001":{"tf":1.4142135623730951},"1161":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.4142135623730951},"991":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1265":{"tf":1.0},"1333":{"tf":1.0},"139":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"545":{"tf":1.0},"729":{"tf":1.0},"867":{"tf":1.0},"901":{"tf":1.0},"936":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"c":{"df":4,"docs":{"1145":{"tf":1.0},"312":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0}}}}},"v":{"df":1,"docs":{"1194":{"tf":1.0}}}},"g":{"df":2,"docs":{"552":{"tf":1.0},"586":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"869":{"tf":1.0}}},"t":{"df":53,"docs":{"1011":{"tf":1.0},"1044":{"tf":2.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1166":{"tf":1.0},"129":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1421":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1465":{"tf":2.0},"1471":{"tf":1.7320508075688772},"1510":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1528":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"400":{"tf":1.0},"495":{"tf":1.4142135623730951},"522":{"tf":1.0},"58":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"634":{"tf":1.0},"657":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"699":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"731":{"tf":1.0},"745":{"tf":2.449489742783178},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"987":{"tf":1.7320508075688772}}}},"df":3,"docs":{"879":{"tf":1.0},"881":{"tf":1.0},"988":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":38,"docs":{"116":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":2.23606797749979},"1403":{"tf":1.0},"1404":{"tf":1.7320508075688772},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1475":{"tf":1.4142135623730951},"1481":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1495":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"366":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"465":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"618":{"tf":1.4142135623730951},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"837":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"152":{"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":{"1441":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":10,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.7320508075688772},"13":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"454":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"848":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"934":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"758":{"tf":1.0},"879":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1103":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"1161":{"tf":1.0},"918":{"tf":1.0},"976":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"2":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1522":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1361":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":48,"docs":{"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1089":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1461":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1115":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}},"l":{"df":29,"docs":{"109":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1214":{"tf":1.0},"1251":{"tf":1.0},"1296":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1436":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"4":{"tf":1.0},"544":{"tf":1.0},"603":{"tf":1.0},"612":{"tf":1.0},"776":{"tf":1.0},"861":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":6,"docs":{"1144":{"tf":1.0},"152":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"753":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":63,"docs":{"1164":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1278":{"tf":1.0},"1288":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0},"259":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"370":{"tf":1.0},"416":{"tf":1.4142135623730951},"420":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"534":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":1.0},"650":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.7320508075688772},"711":{"tf":1.7320508075688772},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1103":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"=":{"1":{"0":{"0":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1138":{"tf":1.4142135623730951},"146":{"tf":1.0},"386":{"tf":1.0},"40":{"tf":1.0},"620":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1014":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1254":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"960":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.7320508075688772},"1165":{"tf":2.8284271247461903},"1166":{"tf":2.0}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"1215":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":4,"docs":{"1243":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":4,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":74,"docs":{"1004":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1020":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.7320508075688772},"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"11":{"tf":1.0},"1154":{"tf":1.0},"1158":{"tf":1.4142135623730951},"119":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1235":{"tf":1.7320508075688772},"1250":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1429":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1505":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"780":{"tf":1.0},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"851":{"tf":1.0},"884":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"934":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"1069":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1384":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1305":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"b":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1305":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1003":{"tf":1.0},"1161":{"tf":1.0},"119":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.4142135623730951},"1319":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"547":{"tf":1.0},"727":{"tf":1.0},"909":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"262":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1300":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1158":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"1158":{"tf":1.4142135623730951},"19":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}},"n":{"df":2,"docs":{"1423":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"1102":{"tf":1.0},"1160":{"tf":1.0},"1281":{"tf":1.0},"1378":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"368":{"tf":1.0},"497":{"tf":1.7320508075688772},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"733":{"tf":1.0},"766":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0}}}},"df":6,"docs":{"450":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"978":{"tf":1.0}},"e":{"df":2,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0}}},"o":{"d":{"df":3,"docs":{"1312":{"tf":1.0},"884":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1050":{"tf":1.0},"1177":{"tf":1.0},"424":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"477":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"732":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1330":{"tf":1.0},"583":{"tf":1.0},"979":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1277":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"1278":{"tf":1.0},"21":{"tf":1.0},"491":{"tf":1.0},"914":{"tf":1.0},"954":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"df":48,"docs":{"1040":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.7320508075688772},"773":{"tf":1.0},"799":{"tf":1.0},"909":{"tf":1.4142135623730951},"92":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"985":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"1208":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":68,"docs":{"1112":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1290":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"335":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"505":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"738":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"770":{"tf":1.0},"794":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.0},"96":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":22,"docs":{"1148":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"331":{"tf":1.7320508075688772},"461":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":17,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"357":{"tf":1.0},"916":{"tf":1.0}}}}}}}},"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"373":{"tf":1.0},"937":{"tf":1.7320508075688772},"939":{"tf":2.23606797749979},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"373":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"911":{"tf":1.0},"930":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1452":{"tf":1.0},"1455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"1055":{"tf":1.7320508075688772},"1073":{"tf":2.23606797749979},"1074":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1214":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"739":{"tf":1.7320508075688772},"792":{"tf":1.7320508075688772},"893":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"38":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":46,"docs":{"1011":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1268":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.4142135623730951},"1344":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1366":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1394":{"tf":2.0},"14":{"tf":1.0},"1401":{"tf":1.0},"228":{"tf":1.0},"286":{"tf":1.4142135623730951},"359":{"tf":1.0},"384":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"434":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":2.0},"482":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"546":{"tf":1.7320508075688772},"593":{"tf":1.0},"618":{"tf":1.4142135623730951},"653":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"949":{"tf":1.0},"963":{"tf":1.4142135623730951},"973":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1267":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.7320508075688772},"498":{"tf":1.0},"507":{"tf":1.0},"833":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1048":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1003":{"tf":1.0}}},"2":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"557":{"tf":1.0},"651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":84,"docs":{"1001":{"tf":1.7320508075688772},"1046":{"tf":2.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1092":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1333":{"tf":1.0},"1403":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1429":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"236":{"tf":1.0},"24":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"332":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"417":{"tf":2.449489742783178},"420":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"520":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":2.449489742783178},"544":{"tf":1.0},"557":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"614":{"tf":1.4142135623730951},"631":{"tf":1.0},"651":{"tf":2.0},"654":{"tf":1.4142135623730951},"697":{"tf":1.0},"708":{"tf":1.0},"739":{"tf":1.4142135623730951},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"776":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":2.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.4142135623730951},"996":{"tf":1.0},"997":{"tf":3.1622776601683795}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"332":{"tf":1.0},"417":{"tf":1.0},"420":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"417":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"1260":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"1194":{"tf":1.0},"248":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"831":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"729":{"tf":1.0},"740":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":47,"docs":{"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1136":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":2.0},"1442":{"tf":2.449489742783178},"1445":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":2.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"729":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"744":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.7320508075688772},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.7320508075688772},"832":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"899":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.4142135623730951},"369":{"tf":1.0},"507":{"tf":1.0},"603":{"tf":1.0},"760":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1401":{"tf":1.0},"1402":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":25,"docs":{"1148":{"tf":1.0},"1237":{"tf":1.0},"1248":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"197":{"tf":1.0},"268":{"tf":1.0},"349":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"519":{"tf":1.0},"576":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"884":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":15,"docs":{"105":{"tf":1.0},"1162":{"tf":1.0},"119":{"tf":2.8284271247461903},"1411":{"tf":2.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"739":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"1220":{"tf":1.0},"1278":{"tf":1.0},"259":{"tf":1.4142135623730951},"292":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1161":{"tf":1.0},"1276":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1442":{"tf":1.0},"180":{"tf":1.7320508075688772},"370":{"tf":1.0},"45":{"tf":1.4142135623730951},"486":{"tf":1.0},"604":{"tf":1.0},"679":{"tf":1.0},"794":{"tf":1.4142135623730951},"798":{"tf":1.0},"845":{"tf":1.0},"884":{"tf":1.0},"921":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"535":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"729":{"tf":1.0}},"i":{"df":3,"docs":{"1124":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":14,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1089":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1336":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"959":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"322":{"tf":1.0},"549":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.4142135623730951},"725":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"991":{"tf":1.4142135623730951}},"i":{"df":14,"docs":{"1006":{"tf":1.0},"1314":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1403":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"62":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.4142135623730951},"882":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.7320508075688772}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1162":{"tf":1.0},"261":{"tf":1.0},"857":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"995":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"1209":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"237":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1307":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.7320508075688772},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1154":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"667":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":0,"docs":{},"s":{":":{"9":{"0":{"9":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":65,"docs":{"1020":{"tf":1.0},"110":{"tf":1.0},"1149":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1268":{"tf":1.0},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1284":{"tf":1.0},"1294":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1356":{"tf":1.7320508075688772},"1370":{"tf":1.4142135623730951},"1377":{"tf":1.4142135623730951},"1379":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1493":{"tf":1.0},"1525":{"tf":1.4142135623730951},"311":{"tf":1.0},"331":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"453":{"tf":2.23606797749979},"454":{"tf":1.7320508075688772},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":2.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.0},"734":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"955":{"tf":1.0},"964":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":2,"docs":{"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"104":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"830":{"tf":1.0},"832":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"853":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"180":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"775":{"tf":1.0},"778":{"tf":1.0},"791":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1139":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1437":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"197":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"801":{"tf":1.0},"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"803":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"872":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"941":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"1227":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"157":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"370":{"tf":1.4142135623730951},"51":{"tf":1.0},"604":{"tf":1.4142135623730951},"66":{"tf":1.0},"746":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":2.23606797749979},"754":{"tf":1.7320508075688772},"761":{"tf":1.0},"766":{"tf":1.7320508075688772},"767":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1015":{"tf":1.0},"1034":{"tf":1.7320508075688772},"152":{"tf":1.0},"157":{"tf":1.0},"345":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951},"572":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"761":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"197":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"142":{"tf":1.0},"1484":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1047":{"tf":1.0},"1515":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"1188":{"tf":1.0},"1189":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"979":{"tf":1.0}}}}}}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":127,"docs":{"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1230":{"tf":1.0},"1241":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":2.0},"1302":{"tf":2.0},"1306":{"tf":2.23606797749979},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1405":{"tf":2.0},"142":{"tf":1.0},"1436":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1522":{"tf":1.7320508075688772},"174":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"49":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"592":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"612":{"tf":1.0},"649":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"700":{"tf":1.0},"707":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"832":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"884":{"tf":1.0},"894":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.4142135623730951},"989":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"1013":{"tf":1.0},"1175":{"tf":1.0},"1189":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1214":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1227":{"tf":1.0},"1231":{"tf":1.0},"1258":{"tf":1.0},"1285":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1415":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"90":{"tf":1.0},"913":{"tf":1.7320508075688772},"918":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.4142135623730951},"977":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1441":{"tf":1.0},"760":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.4142135623730951}},"i":{"df":21,"docs":{"1111":{"tf":1.0},"1441":{"tf":1.0},"155":{"tf":1.0},"232":{"tf":1.0},"262":{"tf":1.0},"41":{"tf":1.0},"445":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":2.0},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.7320508075688772},"831":{"tf":1.0},"879":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"987":{"tf":1.0}}}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1300":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1300":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951}}}}}}},"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1063":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1082":{"tf":1.0},"128":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1426":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1082":{"tf":1.0},"61":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.7320508075688772},"914":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"918":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":37,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"1103":{"tf":1.0},"1158":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"446":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"910":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0},"981":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"1194":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":188,"docs":{"10":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.7320508075688772},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1103":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1140":{"tf":3.3166247903554},"1142":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1179":{"tf":2.0},"1180":{"tf":2.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":2.0},"1199":{"tf":1.0},"1205":{"tf":1.0},"1217":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"1270":{"tf":2.23606797749979},"1271":{"tf":1.7320508075688772},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":2.0},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.23606797749979},"1379":{"tf":1.7320508075688772},"1381":{"tf":2.0},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.4142135623730951},"1388":{"tf":2.23606797749979},"1390":{"tf":2.0},"1392":{"tf":2.449489742783178},"1394":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1401":{"tf":2.6457513110645907},"1402":{"tf":2.6457513110645907},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.23606797749979},"1405":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.7320508075688772},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"483":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"515":{"tf":1.0},"527":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"592":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"622":{"tf":1.0},"625":{"tf":1.4142135623730951},"638":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.7320508075688772},"666":{"tf":2.449489742783178},"667":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"681":{"tf":1.4142135623730951},"684":{"tf":2.449489742783178},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"692":{"tf":1.4142135623730951},"704":{"tf":1.0},"712":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"79":{"tf":1.7320508075688772},"794":{"tf":1.7320508075688772},"82":{"tf":1.0},"822":{"tf":1.4142135623730951},"83":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"925":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":3,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.23606797749979}},"i":{"d":{"df":1,"docs":{"1010":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"100":{"tf":1.0},"1006":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1114":{"tf":1.0},"1137":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"125":{"tf":1.0},"1255":{"tf":1.0},"1295":{"tf":1.0},"1324":{"tf":1.0},"1490":{"tf":1.0},"1522":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.4142135623730951},"544":{"tf":1.0},"620":{"tf":1.0},"634":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"792":{"tf":1.4142135623730951},"813":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"932":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":18,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"1340":{"tf":1.0},"1493":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"760":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1200":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1200":{"tf":1.0},"1482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1027":{"tf":1.0},"1515":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":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":{"192":{"tf":1.0},"303":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":3,"docs":{"1404":{"tf":1.4142135623730951},"79":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1163":{"tf":1.0},"199":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"857":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1080":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1300":{"tf":2.6457513110645907},"1304":{"tf":2.0},"1306":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"182":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":4,"docs":{"152":{"tf":1.0},"51":{"tf":1.0},"753":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1022":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"595":{"tf":1.0},"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"361":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"595":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"df":21,"docs":{"1324":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"442":{"tf":1.0},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"884":{"tf":1.0},"899":{"tf":1.4142135623730951},"902":{"tf":1.0},"966":{"tf":1.0},"979":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"1381":{"tf":1.0},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"363":{"tf":1.0},"47":{"tf":1.0},"597":{"tf":1.0},"66":{"tf":1.0},"733":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":2.0},"761":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"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":7,"docs":{"1042":{"tf":1.0},"1054":{"tf":1.0},"1075":{"tf":1.0},"1298":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1109":{"tf":1.0},"1123":{"tf":1.4142135623730951},"308":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"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":2,"docs":{"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}}}},"df":21,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"1165":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"149":{"tf":1.0},"580":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":74,"docs":{"1107":{"tf":1.0},"111":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1180":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1225":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1349":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"149":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"54":{"tf":1.0},"580":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1162":{"tf":1.0},"1166":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1432":{"tf":1.4142135623730951},"210":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0},"72":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1082":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"989":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.4142135623730951},"606":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":125,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.0},"1165":{"tf":1.4142135623730951},"117":{"tf":1.0},"1223":{"tf":2.0},"1349":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1409":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.7320508075688772},"547":{"tf":1.0},"548":{"tf":1.7320508075688772},"549":{"tf":1.0},"550":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":2.23606797749979},"555":{"tf":1.7320508075688772},"556":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.7320508075688772},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"581":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.7320508075688772},"584":{"tf":1.0},"585":{"tf":1.7320508075688772},"586":{"tf":1.7320508075688772},"587":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":1.0},"6":{"tf":1.0},"682":{"tf":1.4142135623730951},"691":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"727":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"837":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":2.0}}},"n":{"c":{"df":16,"docs":{"332":{"tf":1.0},"388":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"558":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"686":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"718":{"tf":1.0},"726":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":13,"docs":{"1292":{"tf":1.0},"134":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1449":{"tf":1.0},"179":{"tf":1.0},"234":{"tf":1.0},"253":{"tf":1.0},"545":{"tf":1.0},"711":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"763":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"319":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"1180":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1306":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"742":{"tf":1.0},"901":{"tf":1.0}},"r":{"df":174,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1042":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"108":{"tf":1.0},"1137":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1396":{"tf":2.0},"1397":{"tf":1.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.7320508075688772},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1523":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"520":{"tf":1.0},"547":{"tf":1.4142135623730951},"548":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"590":{"tf":1.0},"598":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"664":{"tf":1.7320508075688772},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"697":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"86":{"tf":1.0},"871":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"914":{"tf":1.4142135623730951},"931":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1102":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1194":{"tf":1.0},"780":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1144":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"1225":{"tf":1.0},"1263":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"423":{"tf":1.0},"663":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1177":{"tf":1.0},"439":{"tf":1.0},"470":{"tf":1.0},"669":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1183":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}}}},"df":2,"docs":{"732":{"tf":1.0},"88":{"tf":1.0}},"f":{"a":{"c":{"df":11,"docs":{"118":{"tf":1.0},"1407":{"tf":1.0},"357":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"4":{"tf":1.0},"516":{"tf":1.0},"591":{"tf":1.0},"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"510":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"1268":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"287":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"688":{"tf":1.0},"726":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"231":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1026":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1211":{"tf":2.0},"1212":{"tf":1.0},"1213":{"tf":1.7320508075688772},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"446":{"tf":1.0},"728":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"856":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"0":{"tf":1.0},"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},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1282":{"tf":1.0},"477":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1127":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"1127":{"tf":1.0},"1148":{"tf":1.0},"1169":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1307":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1355":{"tf":1.0},"1375":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1461":{"tf":1.7320508075688772},"1465":{"tf":1.7320508075688772},"1471":{"tf":1.7320508075688772},"1479":{"tf":2.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"380":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"507":{"tf":1.0},"595":{"tf":1.0},"613":{"tf":1.0},"724":{"tf":1.0},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":7,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1111":{"tf":1.7320508075688772},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1323":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1323":{"tf":2.23606797749979},"1324":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1346":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1111":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}},"p":{"df":3,"docs":{"1288":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"708":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"644":{"tf":1.0}}}}}},"df":27,"docs":{"1142":{"tf":2.449489742783178},"1302":{"tf":2.0},"1375":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":2.0},"1404":{"tf":1.4142135623730951},"1517":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.4142135623730951},"653":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.4142135623730951},"795":{"tf":1.0},"87":{"tf":1.4142135623730951},"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"319":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}},"l":{"df":5,"docs":{"1139":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1168":{"tf":1.4142135623730951},"1404":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"531":{"tf":1.0},"772":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":15,"docs":{"1164":{"tf":1.0},"1200":{"tf":2.0},"1292":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"19":{"tf":1.0},"350":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"509":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"679":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}},"df":22,"docs":{"1301":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1403":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":3,"docs":{"357":{"tf":1.0},"471":{"tf":1.0},"591":{"tf":1.0}}},"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":28,"docs":{"1112":{"tf":2.23606797749979},"1121":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":2.6457513110645907},"870":{"tf":1.7320508075688772},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"874":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}}},"r":{"df":5,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.7320508075688772},"23":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}}}},"j":{"a":{"c":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"<":{"4":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":577,"docs":{"0":{"tf":2.0},"1":{"tf":2.0},"10":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"103":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"106":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1065":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":2.449489742783178},"1071":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"11":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"111":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"113":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1166":{"tf":1.7320508075688772},"117":{"tf":1.0},"1173":{"tf":1.0},"1175":{"tf":2.23606797749979},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"118":{"tf":1.0},"1180":{"tf":2.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":2.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1212":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1214":{"tf":1.4142135623730951},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.7320508075688772},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.0},"1248":{"tf":1.4142135623730951},"125":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1258":{"tf":2.0},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"1270":{"tf":2.0},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"128":{"tf":2.449489742783178},"1281":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"129":{"tf":2.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1312":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"1320":{"tf":2.23606797749979},"1321":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":2.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1333":{"tf":2.8284271247461903},"1334":{"tf":2.449489742783178},"1336":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":3.1622776601683795},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1349":{"tf":1.0},"135":{"tf":1.7320508075688772},"1355":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"136":{"tf":2.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"137":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"138":{"tf":1.7320508075688772},"1381":{"tf":2.8284271247461903},"1382":{"tf":2.23606797749979},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"14":{"tf":1.0},"1401":{"tf":2.449489742783178},"1402":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":2.23606797749979},"1407":{"tf":1.0},"1409":{"tf":2.0},"141":{"tf":1.7320508075688772},"1410":{"tf":2.23606797749979},"1411":{"tf":2.0},"1413":{"tf":2.0},"1415":{"tf":2.0},"1417":{"tf":2.0},"1418":{"tf":1.0},"1419":{"tf":3.1622776601683795},"142":{"tf":2.0},"1420":{"tf":2.6457513110645907},"1421":{"tf":2.449489742783178},"1422":{"tf":2.23606797749979},"1423":{"tf":2.6457513110645907},"1425":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"146":{"tf":1.0},"1460":{"tf":2.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1484":{"tf":1.0},"149":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"150":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.0},"151":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":2.23606797749979},"1513":{"tf":1.4142135623730951},"1515":{"tf":1.0},"152":{"tf":1.0},"1524":{"tf":2.0},"1526":{"tf":2.0},"1529":{"tf":2.23606797749979},"1530":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"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.4142135623730951},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.7320508075688772},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.7320508075688772},"33":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":2.0},"426":{"tf":2.23606797749979},"427":{"tf":2.6457513110645907},"429":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":2.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":2.23606797749979},"585":{"tf":1.4142135623730951},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"63":{"tf":1.0},"648":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":2.8284271247461903},"667":{"tf":2.23606797749979},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"70":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"71":{"tf":1.7320508075688772},"712":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"72":{"tf":2.0},"725":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":2.23606797749979},"800":{"tf":1.0},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.7320508075688772},"850":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"887":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.7320508075688772},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.7320508075688772},"981":{"tf":1.0},"986":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":2.0}},"s":{"'":{"df":1,"docs":{"1447":{"tf":1.0}}},".":{"a":{"2":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.0},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"443":{"tf":1.0},"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1510":{"tf":1.0},"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"113":{"tf":1.0},"1140":{"tf":1.0},"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1320":{"tf":1.0},"1355":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"160":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"361":{"tf":1.4142135623730951},"389":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"560":{"tf":1.0},"564":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.4142135623730951},"623":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"907":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"731":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"609":{"tf":1.0},"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"376":{"tf":1.0},"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"651":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1264":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"10":{"tf":1.0},"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1149":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1404":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"618":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1273":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"545":{"tf":1.0},"712":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1301":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":18,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1437":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"616":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"618":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"599":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"592":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"713":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"670":{"tf":1.0},"676":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1290":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"474":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"467":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"1145":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1139":{"tf":1.0},"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"714":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"714":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"669":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"670":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"716":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1313":{"tf":1.0},"1315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1301":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"364":{"tf":1.0},"382":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"70":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"963":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"a":{"2":{"a":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1084":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"575":{"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":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":2.23606797749979},"684":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1430":{"tf":1.0}}}}},"i":{"d":{"=":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1003":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":19,"docs":{"1047":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1204":{"tf":1.0},"1419":{"tf":1.0},"1515":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"r":{"df":5,"docs":{"336":{"tf":1.0},"557":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":45,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":2.0},"1047":{"tf":1.4142135623730951},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1461":{"tf":1.0},"1515":{"tf":1.4142135623730951},"160":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"1520":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"$":{"(":{"d":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1329":{"tf":1.0},"142":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1460":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"682":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"1430":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"*":{"*":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1063":{"tf":1.0},"1510":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"1530":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1063":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1430":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":42,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1106":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"562":{"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":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"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":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"r":{"d":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":41,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1105":{"tf":1.0},"113":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1497":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":44,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":2.0},"1454":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"336":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"946":{"tf":1.0},"965":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":2.0},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1310":{"tf":2.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1452":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1454":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"965":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1248":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1239":{"tf":1.7320508075688772},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":34,"docs":{"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"562":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"557":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1342":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1214":{"tf":1.0},"1436":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1436":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"995":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":44,"docs":{"1043":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"161":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.4142135623730951}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1520":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"1520":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1507":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1199":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"684":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"963":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"903":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1466":{"tf":1.0},"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"1448":{"tf":1.0},"1455":{"tf":1.0},"332":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"1507":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1310":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1237":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1248":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1081":{"tf":1.0},"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.0},"897":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.7320508075688772}}},"y":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1240":{"tf":1.7320508075688772},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}}}}}},"a":{"2":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1217":{"tf":1.0},"1218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":54,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"332":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.7320508075688772},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.4142135623730951},"593":{"tf":1.0},"619":{"tf":1.4142135623730951},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"694":{"tf":1.4142135623730951},"711":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"151":{"tf":1.0},"167":{"tf":1.0},"244":{"tf":1.4142135623730951},"757":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"976":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"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":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":17,"docs":{"1332":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"741":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1143":{"tf":1.0},"1484":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"785":{"tf":1.4142135623730951},"858":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1486":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"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":2,"docs":{"217":{"tf":1.0},"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1046":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"785":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"779":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"885":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"854":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1084":{"tf":1.0},"854":{"tf":1.0},"859":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"856":{"tf":1.0},"857":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1305":{"tf":1.0},"262":{"tf":2.0},"329":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":1,"docs":{"1305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1309":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"615":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1367":{"tf":2.6457513110645907},"1394":{"tf":2.449489742783178},"329":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":32,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"1091":{"tf":1.0},"186":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"445":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":50,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1314":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.4142135623730951},"244":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"468":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"537":{"tf":1.0},"539":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"1382":{"tf":1.0},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1203":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"1148":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1382":{"tf":1.0},"667":{"tf":1.0},"670":{"tf":2.0},"678":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":14,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"330":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":2.0},"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1180":{"tf":1.0},"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"1192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"798":{"tf":1.4142135623730951},"816":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1183":{"tf":1.4142135623730951},"1371":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"861":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"536":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"741":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":13,"docs":{"1046":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1196":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":32,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1186":{"tf":1.0},"1196":{"tf":1.0},"1374":{"tf":1.0},"1392":{"tf":1.0},"1470":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"521":{"tf":1.0},"632":{"tf":1.0},"698":{"tf":1.0},"729":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"934":{"tf":1.0},"990":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"808":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"819":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"49":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"809":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"808":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"804":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"818":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"866":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"865":{"tf":1.0},"867":{"tf":1.0},"872":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"865":{"tf":1.0},"872":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":5,"docs":{"1182":{"tf":1.0},"429":{"tf":2.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"541":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"498":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"938":{"tf":1.4142135623730951},"940":{"tf":1.0},"976":{"tf":2.0},"979":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":41,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1217":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.0},"836":{"tf":1.0},"861":{"tf":1.0},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1439":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"761":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1140":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1404":{"tf":1.0},"154":{"tf":1.0},"766":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"1480":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":7,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0},"1151":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1302":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1142":{"tf":1.0},"1171":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"634":{"tf":1.0},"635":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1088":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"696":{"tf":1.0},"797":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"709":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"695":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"769":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"588":{"tf":1.0},"656":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"518":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"770":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1361":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"522":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"408":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1151":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"349":{"tf":1.0},"519":{"tf":1.7320508075688772},"522":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}}},"y":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1399":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1312":{"tf":1.0},"1369":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1353":{"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":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"400":{"tf":1.0},"401":{"tf":1.0}}},"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":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":12,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"df":182,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"1021":{"tf":1.0},"1057":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1080":{"tf":1.0},"1094":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1231":{"tf":1.0},"127":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1302":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1340":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.23606797749979},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.0},"1479":{"tf":2.23606797749979},"16":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"528":{"tf":1.0},"532":{"tf":1.0},"536":{"tf":1.4142135623730951},"562":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"606":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"64":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"669":{"tf":1.4142135623730951},"695":{"tf":1.0},"696":{"tf":1.7320508075688772},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"725":{"tf":1.0},"728":{"tf":2.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"828":{"tf":1.0},"842":{"tf":1.0},"851":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"921":{"tf":1.0},"94":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"581":{"tf":2.449489742783178},"590":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1219":{"tf":1.0},"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"816":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":3,"docs":{"1015":{"tf":2.0},"1030":{"tf":1.7320508075688772},"1036":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1526":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.4142135623730951},"204":{"tf":1.0},"433":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"_":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":3,"docs":{"1217":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":269,"docs":{"1000":{"tf":2.0},"1001":{"tf":2.449489742783178},"1002":{"tf":2.0},"1003":{"tf":2.0},"1004":{"tf":1.7320508075688772},"1005":{"tf":1.0},"1006":{"tf":2.449489742783178},"1007":{"tf":2.23606797749979},"1008":{"tf":2.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1011":{"tf":1.4142135623730951},"1012":{"tf":2.0},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.7320508075688772},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.0},"1043":{"tf":2.23606797749979},"1044":{"tf":2.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1052":{"tf":2.0},"1053":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1085":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1163":{"tf":2.0},"1177":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1204":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":2.6457513110645907},"1219":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1253":{"tf":2.23606797749979},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.0},"127":{"tf":2.449489742783178},"1285":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1369":{"tf":1.0},"139":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.0},"1410":{"tf":1.0},"1432":{"tf":1.0},"1436":{"tf":2.23606797749979},"1437":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1462":{"tf":2.0},"1464":{"tf":2.6457513110645907},"1465":{"tf":2.6457513110645907},"1466":{"tf":2.0},"1467":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"1493":{"tf":1.0},"150":{"tf":1.4142135623730951},"1505":{"tf":2.0},"151":{"tf":1.0},"1512":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1522":{"tf":1.0},"1528":{"tf":2.23606797749979},"1530":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":2.449489742783178},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":2.0},"42":{"tf":1.4142135623730951},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"478":{"tf":2.0},"522":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"536":{"tf":2.449489742783178},"544":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":3.1622776601683795},"608":{"tf":1.0},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"634":{"tf":1.0},"638":{"tf":1.0},"657":{"tf":2.0},"681":{"tf":2.0},"682":{"tf":1.0},"699":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.4142135623730951},"71":{"tf":1.0},"710":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"722":{"tf":1.7320508075688772},"724":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"816":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"847":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.7320508075688772},"892":{"tf":2.6457513110645907},"896":{"tf":1.0},"90":{"tf":1.7320508075688772},"908":{"tf":2.0},"91":{"tf":1.0},"911":{"tf":2.23606797749979},"913":{"tf":2.23606797749979},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.6457513110645907},"925":{"tf":2.449489742783178},"926":{"tf":2.449489742783178},"939":{"tf":2.0},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.0},"950":{"tf":2.23606797749979},"951":{"tf":1.0},"962":{"tf":1.7320508075688772},"968":{"tf":1.7320508075688772},"969":{"tf":2.449489742783178},"97":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"981":{"tf":2.8284271247461903},"982":{"tf":1.7320508075688772},"983":{"tf":2.449489742783178},"984":{"tf":1.4142135623730951},"985":{"tf":2.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":2.23606797749979},"989":{"tf":1.4142135623730951},"990":{"tf":1.4142135623730951},"991":{"tf":2.6457513110645907},"992":{"tf":2.23606797749979},"993":{"tf":1.7320508075688772},"994":{"tf":2.449489742783178},"995":{"tf":2.0},"996":{"tf":3.1622776601683795},"997":{"tf":2.23606797749979},"998":{"tf":1.4142135623730951},"999":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1505":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"368":{"tf":1.4142135623730951},"43":{"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":1,"docs":{"1307":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1085":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":1,"docs":{"1106":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":8,"docs":{"1213":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"375":{"tf":1.0},"608":{"tf":1.0},"911":{"tf":1.0},"992":{"tf":1.0}}}}}},"o":{"a":{"df":7,"docs":{"1264":{"tf":1.0},"1268":{"tf":2.23606797749979},"454":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":2.8284271247461903},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.7320508075688772},"719":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1175":{"tf":1.0},"21":{"tf":1.0}}}},"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"831":{"tf":1.0},"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1181":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1264":{"tf":1.0},"1310":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1068":{"tf":1.0},"1169":{"tf":1.0},"1426":{"tf":1.4142135623730951},"206":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"818":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":6,"docs":{"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.0},"185":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1039":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"1001":{"tf":1.0},"762":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1070":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"1194":{"tf":1.0},"1477":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"934":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1084":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1482":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1015":{"tf":1.0},"1029":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1051":{"tf":1.0},"1175":{"tf":1.0},"871":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":1,"docs":{"1154":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":1,"docs":{"1276":{"tf":1.0}}}},"d":{"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"1015":{"tf":1.0},"1026":{"tf":1.0},"1041":{"tf":1.0},"159":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1042":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"1130":{"tf":1.7320508075688772},"1175":{"tf":1.0},"1194":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1021":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"458":{"tf":1.0},"925":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1033":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"19":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":45,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1103":{"tf":1.0},"1208":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"204":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"357":{"tf":1.0},"500":{"tf":1.4142135623730951},"545":{"tf":1.0},"591":{"tf":1.0},"676":{"tf":1.0},"711":{"tf":1.4142135623730951},"744":{"tf":1.0},"756":{"tf":1.0},"780":{"tf":1.7320508075688772},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0},"899":{"tf":1.7320508075688772},"902":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"959":{"tf":1.0},"966":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.7320508075688772},"978":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1194":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":46,"docs":{"1017":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"4":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"841":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"759":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"1425":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"981":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"368":{"tf":1.0},"43":{"tf":1.0},"602":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1062":{"tf":1.0},"1083":{"tf":1.7320508075688772},"109":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"248":{"tf":1.0},"501":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":12,"docs":{"1154":{"tf":1.4142135623730951},"118":{"tf":1.0},"1403":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"607":{"tf":1.0},"67":{"tf":1.0},"762":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"742":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":12,"docs":{"1298":{"tf":1.0},"192":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.7320508075688772},"93":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1479":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"578":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"322":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1388":{"tf":1.0},"613":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1209":{"tf":1.0},"1255":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1423":{"tf":1.0},"1436":{"tf":1.0},"1486":{"tf":1.7320508075688772},"270":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"583":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"732":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":2.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":3.1622776601683795},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"886":{"tf":1.0},"916":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1292":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1038":{"tf":1.0},"129":{"tf":1.0},"234":{"tf":1.0},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"789":{"tf":1.0},"790":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1154":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":104,"docs":{"1047":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1436":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"378":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.7320508075688772},"410":{"tf":1.0},"419":{"tf":1.0},"43":{"tf":2.23606797749979},"431":{"tf":1.0},"458":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.7320508075688772},"576":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"622":{"tf":1.7320508075688772},"644":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.7320508075688772},"708":{"tf":1.0},"712":{"tf":1.0},"724":{"tf":1.0},"75":{"tf":1.0},"769":{"tf":1.0},"772":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"904":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1436":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1333":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"734":{"tf":1.0},"788":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"458":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.0}}}}}}},"t":{"df":15,"docs":{"1095":{"tf":1.0},"1131":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1452":{"tf":1.0},"734":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"762":{"tf":1.0},"775":{"tf":1.4142135623730951},"788":{"tf":1.0},"801":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"841":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.4142135623730951},"929":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":4,"docs":{"1046":{"tf":1.0},"1487":{"tf":1.4142135623730951},"726":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"284":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":53,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1191":{"tf":1.0},"1199":{"tf":1.7320508075688772},"1205":{"tf":2.0},"1288":{"tf":1.7320508075688772},"1293":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":3.7416573867739413},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":2.6457513110645907},"299":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"36":{"tf":1.0},"4":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.0},"502":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":2.23606797749979},"902":{"tf":1.0},"908":{"tf":1.0},"942":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.7320508075688772},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"1199":{"tf":1.0},"1293":{"tf":1.0},"679":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1205":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"28":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"250":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"1001":{"tf":1.4142135623730951},"1233":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.7320508075688772},"759":{"tf":1.4142135623730951},"991":{"tf":1.0},"997":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"1077":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1251":{"tf":1.7320508075688772},"1256":{"tf":1.0},"130":{"tf":2.449489742783178},"1333":{"tf":1.4142135623730951},"143":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"939":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1312":{"tf":1.0}}},"t":{"df":1,"docs":{"1452":{"tf":1.0}}}},"w":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"976":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1452":{"tf":1.0},"6":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}},"o":{"df":4,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1006":{"tf":1.0},"62":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"762":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1356":{"tf":1.0},"1359":{"tf":1.0},"420":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1382":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"474":{"tf":1.0},"576":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"667":{"tf":1.0},"761":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1314":{"tf":1.0},"1325":{"tf":1.0},"1503":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.0},"42":{"tf":1.0},"516":{"tf":1.0},"59":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"798":{"tf":1.0},"947":{"tf":1.0},"983":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1181":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"548":{"tf":1.0},"882":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1471":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1055":{"tf":1.0},"1073":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":2.0},"1209":{"tf":1.0},"1335":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"1441":{"tf":1.0},"146":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"447":{"tf":1.4142135623730951},"549":{"tf":1.0},"59":{"tf":1.4142135623730951},"590":{"tf":1.0},"61":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":1.4142135623730951},"681":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"816":{"tf":1.4142135623730951},"91":{"tf":1.0},"923":{"tf":1.4142135623730951},"947":{"tf":1.7320508075688772},"981":{"tf":1.0},"985":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1026":{"tf":1.0},"985":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"918":{"tf":1.0}},"i":{"df":4,"docs":{"1162":{"tf":1.0},"308":{"tf":1.0},"746":{"tf":1.0},"985":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1095":{"tf":1.0},"112":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1456":{"tf":1.0},"150":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.4142135623730951},"463":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":3,"docs":{"1399":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"1006":{"tf":1.0},"1214":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1251":{"tf":1.0},"1260":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1528":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.0},"939":{"tf":1.7320508075688772},"950":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"974":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1175":{"tf":1.0},"1286":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}}}}},"x":{"df":6,"docs":{"1036":{"tf":1.0},"1084":{"tf":1.0},"308":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1116":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1507":{"tf":1.0},"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1512":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"666":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}}}},"df":148,"docs":{"1020":{"tf":1.0},"1042":{"tf":1.0},"108":{"tf":1.0},"1148":{"tf":2.23606797749979},"1152":{"tf":1.7320508075688772},"1173":{"tf":2.23606797749979},"1174":{"tf":2.0},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.7320508075688772},"1207":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":2.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":2.23606797749979},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":2.0},"1402":{"tf":2.0},"1406":{"tf":1.4142135623730951},"1523":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"2":{"tf":1.0},"330":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"423":{"tf":2.449489742783178},"424":{"tf":2.0},"425":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":2.23606797749979},"428":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"593":{"tf":1.0},"6":{"tf":1.4142135623730951},"617":{"tf":1.7320508075688772},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"664":{"tf":2.0},"665":{"tf":1.0},"666":{"tf":2.23606797749979},"667":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"674":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"717":{"tf":1.4142135623730951},"719":{"tf":1.0},"727":{"tf":1.0},"847":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"916":{"tf":1.0},"955":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1401":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951}}}}}}}}}},"df":3,"docs":{"1340":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"144":{"tf":1.0},"837":{"tf":1.0},"855":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1114":{"tf":1.4142135623730951},"170":{"tf":1.0}}}}},"t":{"df":2,"docs":{"182":{"tf":1.0},"780":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"733":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.4142135623730951},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"869":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"62":{"tf":1.0},"766":{"tf":1.0},"941":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"1088":{"tf":1.4142135623730951},"1089":{"tf":1.0},"113":{"tf":1.0},"1209":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.7320508075688772},"285":{"tf":1.0},"340":{"tf":1.7320508075688772},"536":{"tf":1.0},"567":{"tf":1.7320508075688772},"722":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":2.23606797749979},"845":{"tf":1.7320508075688772},"848":{"tf":2.23606797749979},"973":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"831":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"833":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"848":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"1219":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":91,"docs":{"1020":{"tf":1.0},"1021":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1177":{"tf":2.23606797749979},"1184":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1212":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1278":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"1457":{"tf":1.0},"197":{"tf":2.23606797749979},"358":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":2.23606797749979},"440":{"tf":2.0},"442":{"tf":2.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"592":{"tf":1.0},"613":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"65":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"774":{"tf":1.0},"862":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":2.449489742783178},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"93":{"tf":1.0},"941":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":2.23606797749979},"995":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":15,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1122":{"tf":1.0},"1403":{"tf":2.0},"1420":{"tf":1.0},"1433":{"tf":1.0},"174":{"tf":1.0},"382":{"tf":1.4142135623730951},"47":{"tf":1.0},"495":{"tf":1.0},"616":{"tf":1.4142135623730951},"739":{"tf":1.0},"792":{"tf":1.0},"845":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"739":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":31,"docs":{"1045":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1186":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1297":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"262":{"tf":1.0},"276":{"tf":1.0},"414":{"tf":1.0},"439":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"558":{"tf":1.4142135623730951},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":36,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1440":{"tf":3.3166247903554},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":2.23606797749979},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":2.0},"34":{"tf":1.0},"4":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":2.0},"902":{"tf":1.0},"908":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1440":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"301":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"295":{"tf":1.0},"302":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"918":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1275":{"tf":1.4142135623730951},"1278":{"tf":1.4142135623730951},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1355":{"tf":1.0},"1381":{"tf":1.0},"1495":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.4142135623730951},"465":{"tf":2.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.23606797749979},"502":{"tf":2.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"512":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"547":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":40,"docs":{"1047":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1084":{"tf":1.0},"1093":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1456":{"tf":1.7320508075688772},"1502":{"tf":2.23606797749979},"1503":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.7320508075688772},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1509":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.7320508075688772},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1522":{"tf":1.4142135623730951},"1523":{"tf":1.7320508075688772},"1524":{"tf":1.0},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.0},"1527":{"tf":1.7320508075688772},"1528":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"446":{"tf":1.0},"545":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"614":{"tf":1.0}}}}}},"df":5,"docs":{"1432":{"tf":1.0},"381":{"tf":1.0},"614":{"tf":1.0},"788":{"tf":1.0},"836":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"1358":{"tf":1.0},"381":{"tf":1.0},"442":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1084":{"tf":1.0},"934":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"264":{"tf":1.4142135623730951},"664":{"tf":1.0},"840":{"tf":1.4142135623730951},"845":{"tf":1.0},"889":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"1071":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1439":{"tf":1.0},"742":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.0},"1130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"18":{"tf":1.0},"357":{"tf":1.0},"501":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"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":{"916":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"1292":{"tf":1.0},"1429":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1482":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"976":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":21,"docs":{"1126":{"tf":1.4142135623730951},"115":{"tf":1.0},"1220":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1363":{"tf":1.0},"1374":{"tf":1.0},"1386":{"tf":1.0},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"319":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"x":{"df":2,"docs":{"1287":{"tf":1.0},"925":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1320":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":{"1151":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1151":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1137":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":4.123105625617661},"1152":{"tf":2.23606797749979},"506":{"tf":1.7320508075688772}},"j":{"a":{"c":{"df":1,"docs":{"506":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"1197":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"1497":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"554":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0}},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1358":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":146,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"108":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1107":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":2.0},"1174":{"tf":2.23606797749979},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1501":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"790":{"tf":1.0},"851":{"tf":1.0},"881":{"tf":1.4142135623730951},"910":{"tf":2.0},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.7320508075688772},"918":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0}}},"r":{"df":1,"docs":{"1030":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1255":{"tf":1.0},"2":{"tf":1.0},"227":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}},"i":{"df":25,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1260":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.0},"1469":{"tf":1.0},"1487":{"tf":1.4142135623730951},"166":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"532":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.4142135623730951},"634":{"tf":1.0},"699":{"tf":1.4142135623730951},"709":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"1264":{"tf":1.0},"1349":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"348":{"tf":1.0},"351":{"tf":1.7320508075688772},"353":{"tf":1.0},"357":{"tf":1.0},"515":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"545":{"tf":1.0},"557":{"tf":1.4142135623730951},"583":{"tf":1.7320508075688772},"591":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"692":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":5,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}},"y":{"[":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1305":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"171":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"935":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"21":{"tf":1.0},"295":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"858":{"tf":1.0},"932":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1048":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":1.0},"1003":{"tf":1.4142135623730951},"1050":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.4142135623730951},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1261":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"1423":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"593":{"tf":1.0},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"799":{"tf":1.0},"858":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"980":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1014":{"tf":1.0},"1054":{"tf":1.0},"1161":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1262":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1423":{"tf":1.0},"1426":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"406":{"tf":1.0},"487":{"tf":1.4142135623730951},"501":{"tf":1.0},"516":{"tf":1.0},"523":{"tf":1.0},"593":{"tf":1.0},"640":{"tf":1.0},"693":{"tf":1.0},"700":{"tf":1.0},"726":{"tf":1.4142135623730951},"992":{"tf":1.0}},"i":{"df":10,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":10,"docs":{"1216":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"845":{"tf":1.0},"873":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1340":{"tf":1.4142135623730951},"1520":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"669":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"676":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"1333":{"tf":2.23606797749979},"151":{"tf":1.0},"167":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"902":{"tf":1.0},"938":{"tf":1.0},"945":{"tf":1.0},"976":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":97,"docs":{"1112":{"tf":2.0},"1122":{"tf":1.0},"1127":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1158":{"tf":2.449489742783178},"1179":{"tf":1.0},"1186":{"tf":1.0},"1219":{"tf":1.0},"1227":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1399":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1475":{"tf":1.0},"1506":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"309":{"tf":1.0},"348":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"398":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":2.0},"51":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"645":{"tf":1.4142135623730951},"676":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"73":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"762":{"tf":2.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"956":{"tf":1.0},"999":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"1181":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1452":{"tf":1.0},"2":{"tf":1.0},"353":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":18,"docs":{"132":{"tf":2.0},"1325":{"tf":1.0},"1336":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.0},"138":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":2.0},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.4142135623730951},"226":{"tf":1.0},"579":{"tf":1.0},"73":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"101":{"tf":1.0},"1027":{"tf":1.0},"1070":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1285":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1456":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":1.0},"1524":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"602":{"tf":1.0},"69":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1061":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1491":{"tf":1.0},"681":{"tf":1.4142135623730951},"911":{"tf":1.0},"927":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1085":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"61":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"987":{"tf":1.0}}}}},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1095":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1420":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1047":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"1515":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{}}},"df":155,"docs":{"1007":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.449489742783178},"1052":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1161":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1209":{"tf":1.0},"1218":{"tf":1.0},"124":{"tf":1.0},"1268":{"tf":1.0},"127":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1288":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1325":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1340":{"tf":2.23606797749979},"1349":{"tf":1.0},"135":{"tf":2.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1399":{"tf":3.0},"1401":{"tf":2.23606797749979},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":2.449489742783178},"1456":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1487":{"tf":1.0},"150":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":2.6457513110645907},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"271":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.0},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"622":{"tf":1.0},"635":{"tf":2.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"709":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"794":{"tf":1.0},"81":{"tf":1.0},"847":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"926":{"tf":2.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":2.0},"995":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1000":{"tf":1.0},"1033":{"tf":1.0},"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"345":{"tf":1.0},"572":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"df":34,"docs":{"117":{"tf":1.4142135623730951},"1261":{"tf":1.4142135623730951},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.0},"145":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"512":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"827":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"57":{"tf":1.0},"985":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":5,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1088":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":75,"docs":{"1127":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1172":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1182":{"tf":2.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1348":{"tf":2.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"321":{"tf":2.0},"322":{"tf":1.0},"327":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"5":{"tf":1.4142135623730951},"513":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1158":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1359":{"tf":1.0},"1451":{"tf":1.0},"1524":{"tf":1.0},"327":{"tf":1.0},"348":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"732":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":18,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1228":{"tf":1.0},"1287":{"tf":1.0},"1298":{"tf":1.0},"1451":{"tf":1.0},"1526":{"tf":1.0},"242":{"tf":1.0},"446":{"tf":1.0},"456":{"tf":1.0},"486":{"tf":1.0},"510":{"tf":1.0},"82":{"tf":1.4142135623730951},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.4142135623730951},"976":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":45,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1169":{"tf":1.0},"1216":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1404":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.7320508075688772},"243":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"284":{"tf":2.23606797749979},"288":{"tf":2.8284271247461903},"295":{"tf":2.0},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"314":{"tf":2.0},"315":{"tf":1.4142135623730951},"597":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"79":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1080":{"tf":1.0},"669":{"tf":1.0},"911":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"371":{"tf":1.0},"394":{"tf":1.0},"519":{"tf":2.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"581":{"tf":2.449489742783178},"590":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":18,"docs":{"1085":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"450":{"tf":1.4142135623730951},"605":{"tf":1.0},"82":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"h":{"df":2,"docs":{"1082":{"tf":1.0},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}},"i":{"df":3,"docs":{"1006":{"tf":1.0},"1011":{"tf":1.0},"1405":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1522":{"tf":1.0},"355":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"921":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"m":{"df":17,"docs":{"1156":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1510":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"5":{"tf":1.0},"514":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"935":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":33,"docs":{"1081":{"tf":2.449489742783178},"1088":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1306":{"tf":2.0},"1307":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"298":{"tf":1.0},"334":{"tf":1.0},"363":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"506":{"tf":1.4142135623730951},"519":{"tf":2.0},"75":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0},"999":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1180":{"tf":1.0},"1390":{"tf":1.0},"1441":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"790":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"767":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1120":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"28":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.4142135623730951},"511":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"608":{"tf":1.0},"64":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":2.0},"811":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"306":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":60,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":2.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"4":{"tf":1.0},"887":{"tf":1.0},"898":{"tf":1.7320508075688772},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1458":{"tf":1.0},"83":{"tf":1.0},"932":{"tf":1.0}}}}},"df":0,"docs":{}},"df":14,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":1.4142135623730951},"1346":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"179":{"tf":1.0},"208":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1083":{"tf":1.7320508075688772}}}}}}},"k":{"df":21,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0}}},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.23606797749979},"1135":{"tf":1.0},"1506":{"tf":1.0},"1515":{"tf":1.7320508075688772},"545":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"1082":{"tf":1.0},"1194":{"tf":1.0},"177":{"tf":1.0},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"942":{"tf":1.0}}},"df":18,"docs":{"1035":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"1342":{"tf":1.0},"1436":{"tf":1.0},"1448":{"tf":1.0},"359":{"tf":1.0},"43":{"tf":1.0},"593":{"tf":1.0},"71":{"tf":1.0},"809":{"tf":1.0},"855":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"984":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"661":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"'":{"df":2,"docs":{"1222":{"tf":1.0},"1243":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1228":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1223":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1225":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":43,"docs":{"1221":{"tf":2.23606797749979},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":3,"docs":{"1154":{"tf":1.4142135623730951},"1155":{"tf":1.0},"1174":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"1520":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"259":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.7320508075688772},"4":{"tf":1.0},"899":{"tf":1.0}}}}}}}}}}}},"r":{"df":71,"docs":{"1046":{"tf":1.0},"1082":{"tf":1.0},"1088":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1200":{"tf":1.0},"1207":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1313":{"tf":1.0},"1322":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1369":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1401":{"tf":1.0},"1448":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1484":{"tf":1.0},"171":{"tf":1.4142135623730951},"268":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"409":{"tf":1.4142135623730951},"42":{"tf":1.0},"423":{"tf":1.0},"451":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"516":{"tf":1.0},"549":{"tf":1.0},"558":{"tf":1.4142135623730951},"589":{"tf":1.0},"591":{"tf":1.0},"595":{"tf":1.0},"615":{"tf":1.0},"620":{"tf":1.0},"643":{"tf":1.4142135623730951},"673":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"767":{"tf":1.0},"799":{"tf":1.0},"847":{"tf":1.0},"851":{"tf":1.0},"911":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.4142135623730951},"981":{"tf":1.0},"983":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1048":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"940":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1100":{"tf":1.4142135623730951},"1102":{"tf":1.0},"871":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"614":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"611":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":89,"docs":{"107":{"tf":1.7320508075688772},"1079":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1196":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1247":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.7320508075688772},"1438":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1501":{"tf":1.0},"1515":{"tf":1.0},"1531":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"244":{"tf":1.0},"271":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"43":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"519":{"tf":2.23606797749979},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":3.0},"595":{"tf":1.0},"600":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"605":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.7320508075688772},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"751":{"tf":1.0},"836":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"866":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"901":{"tf":1.0},"916":{"tf":2.0},"918":{"tf":1.0},"922":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"538":{"tf":1.0},"539":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":3,"docs":{"1112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":22,"docs":{"1080":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"1286":{"tf":2.23606797749979},"1292":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1314":{"tf":1.0},"1436":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"479":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"61":{"tf":1.0},"747":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"152":{"tf":1.0},"37":{"tf":1.0},"753":{"tf":1.0},"767":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"751":{"tf":1.0}}}}}},"df":7,"docs":{"152":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"767":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}},"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}},"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":{"1394":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1353":{"tf":1.4142135623730951}}},"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":{"1367":{"tf":2.0}}}}}}}}},"df":41,"docs":{"1142":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1433":{"tf":1.0},"1469":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.4142135623730951},"527":{"tf":1.0},"605":{"tf":1.4142135623730951},"614":{"tf":1.0},"634":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"798":{"tf":1.0},"819":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.7320508075688772},"850":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"[":{"'":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1072":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1072":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1072":{"tf":1.0},"1094":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"79":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1276":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"292":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1227":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"802":{"tf":1.0},"93":{"tf":1.0}}}}},"df":7,"docs":{"1452":{"tf":1.0},"1477":{"tf":1.0},"1520":{"tf":1.0},"356":{"tf":1.0},"590":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":9,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"461":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"393":{"tf":1.0},"627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1338":{"tf":1.4142135623730951},"1390":{"tf":1.0}}}}},"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":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1385":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":43,"docs":{"1154":{"tf":1.0},"1219":{"tf":1.0},"1250":{"tf":1.0},"129":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1346":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.0},"1428":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.0},"449":{"tf":1.0},"627":{"tf":1.7320508075688772},"628":{"tf":1.0},"629":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"16":{"tf":1.0},"36":{"tf":1.4142135623730951},"453":{"tf":1.0},"914":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"903":{"tf":1.0}}}}},"df":9,"docs":{"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.4142135623730951},"277":{"tf":1.0},"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"1017":{"tf":1.4142135623730951},"1023":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1109":{"tf":1.4142135623730951},"1136":{"tf":1.0},"120":{"tf":1.4142135623730951},"1222":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"828":{"tf":1.0},"831":{"tf":1.4142135623730951},"851":{"tf":1.0},"909":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"995":{"tf":1.0}}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":2,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.4142135623730951}}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1219":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"18":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.7320508075688772},"332":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.7320508075688772},"6":{"tf":1.0},"690":{"tf":1.0},"725":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"972":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"347":{"tf":1.0},"348":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1022":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1407":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1077":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1376":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1052":{"tf":1.0},"1206":{"tf":1.0},"1225":{"tf":1.0},"149":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1160":{"tf":1.0},"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"m":{"df":12,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1306":{"tf":1.0},"439":{"tf":1.0},"467":{"tf":1.0},"528":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"713":{"tf":1.0},"82":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":68,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"648":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1039":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1212":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"809":{"tf":1.0},"818":{"tf":1.0},"871":{"tf":1.0},"901":{"tf":1.0},"976":{"tf":1.0}}}}},"s":{"df":30,"docs":{"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1197":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1419":{"tf":1.0},"1465":{"tf":1.0},"1479":{"tf":1.0},"372":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"522":{"tf":1.0},"588":{"tf":1.7320508075688772},"606":{"tf":1.0},"656":{"tf":2.0},"657":{"tf":1.0},"699":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"656":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"656":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"1144":{"tf":1.4142135623730951},"370":{"tf":1.0},"604":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"214":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"749":{"tf":1.0}}}}},"df":36,"docs":{"1130":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1305":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"855":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"980":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1333":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1144":{"tf":1.0},"1148":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1219":{"tf":1.0},"1339":{"tf":2.0},"370":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"849":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":2,"docs":{"1197":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"1145":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1253":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":2.23606797749979},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":2.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":3.605551275463989},"963":{"tf":1.7320508075688772},"969":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"1000":{"tf":1.0},"1256":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"_":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"104":{"tf":1.0},"1092":{"tf":1.0},"1114":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1154":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1219":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"1288":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1365":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.23606797749979},"1421":{"tf":2.0},"1422":{"tf":2.23606797749979},"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1495":{"tf":1.0},"1522":{"tf":1.0},"1528":{"tf":1.0},"280":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"378":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.7320508075688772},"462":{"tf":1.0},"485":{"tf":1.0},"502":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"522":{"tf":1.0},"528":{"tf":1.0},"531":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.4142135623730951},"626":{"tf":1.0},"629":{"tf":1.0},"648":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"740":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.0},"890":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"911":{"tf":2.6457513110645907},"916":{"tf":1.7320508075688772},"950":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":32,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1182":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1294":{"tf":1.0},"13":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1424":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"23":{"tf":1.0},"422":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.4142135623730951},"689":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"856":{"tf":1.0},"91":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"a":{"df":1,"docs":{"1378":{"tf":1.0}}},"b":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":57,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":2.0},"1268":{"tf":1.7320508075688772},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"424":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"461":{"tf":2.8284271247461903},"463":{"tf":1.0},"465":{"tf":2.6457513110645907},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"489":{"tf":2.0},"490":{"tf":1.7320508075688772},"495":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":2.23606797749979},"530":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":2.23606797749979},"707":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1399":{"tf":1.0},"382":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1119":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":4,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"985":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1323":{"tf":1.0},"156":{"tf":1.0},"859":{"tf":1.0}}}},"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"506":{"tf":1.0},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1006":{"tf":1.0}}}},"m":{"df":4,"docs":{"1044":{"tf":2.8284271247461903},"1465":{"tf":1.0},"376":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772}}},"n":{"d":{"df":12,"docs":{"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1329":{"tf":1.0},"1362":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"855":{"tf":1.4142135623730951},"868":{"tf":1.0},"872":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"901":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"1404":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"486":{"tf":1.4142135623730951},"501":{"tf":1.0},"901":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":16,"docs":{"1041":{"tf":1.0},"1048":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1381":{"tf":1.0},"206":{"tf":1.4142135623730951},"29":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"871":{"tf":1.0},"925":{"tf":1.0},"948":{"tf":1.0},"996":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1315":{"tf":1.0},"1403":{"tf":1.4142135623730951},"169":{"tf":1.0},"856":{"tf":1.0},"951":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1194":{"tf":1.7320508075688772},"181":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1071":{"tf":1.0},"1105":{"tf":1.0},"116":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1528":{"tf":1.0},"352":{"tf":2.23606797749979},"55":{"tf":1.0},"584":{"tf":2.23606797749979},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1054":{"tf":1.0},"1088":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"43":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"1301":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"814":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"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":{"22":{"tf":1.4142135623730951}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1116":{"tf":1.0},"157":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"759":{"tf":1.0},"760":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":1,"docs":{"760":{"tf":1.7320508075688772}}},"p":{"df":18,"docs":{"10":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"554":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"581":{"tf":1.0},"583":{"tf":1.7320508075688772},"585":{"tf":2.23606797749979},"6":{"tf":1.0},"682":{"tf":1.0},"691":{"tf":1.0},"78":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"590":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1333":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}},"i":{"df":3,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1177":{"tf":1.0},"1197":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"511":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1402":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"$":{"1":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":18,"docs":{"1011":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"974":{"tf":1.0},"996":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"109":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1221":{"tf":1.0},"1437":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"36":{"tf":1.0},"93":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"807":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.7320508075688772},"580":{"tf":2.6457513110645907}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1062":{"tf":1.0},"1161":{"tf":1.0},"478":{"tf":1.0},"798":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"1071":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1490":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"911":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"969":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1522":{"tf":1.0}}},"y":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1301":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1426":{"tf":1.0},"366":{"tf":1.0},"600":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"473":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"913":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1006":{"tf":1.0},"1419":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"760":{"tf":1.0},"762":{"tf":1.0}}}},"df":36,"docs":{"1012":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"1038":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.7320508075688772},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"41":{"tf":1.0},"434":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"474":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"b":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1310":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1164":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1015":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1037":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1254":{"tf":1.0},"1472":{"tf":1.0},"345":{"tf":1.7320508075688772},"572":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"82":{"tf":1.7320508075688772},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"1015":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.7320508075688772},"57":{"tf":1.0},"571":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":18,"docs":{"1009":{"tf":1.4142135623730951},"1113":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1283":{"tf":1.4142135623730951},"1311":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"168":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"961":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"925":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1011":{"tf":1.4142135623730951},"1174":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0},"833":{"tf":1.0},"934":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"833":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"236":{"tf":1.0},"666":{"tf":1.0},"911":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"946":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":10,"docs":{"1077":{"tf":1.0},"1080":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1312":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"911":{"tf":1.0},"981":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"884":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"1144":{"tf":1.0},"1161":{"tf":1.0},"1255":{"tf":1.0},"227":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"373":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":15,"docs":{"1003":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"981":{"tf":1.0},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1306":{"tf":1.0},"1522":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1154":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"912":{"tf":1.4142135623730951},"936":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"581":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"581":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1381":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"555":{"tf":1.0},"644":{"tf":1.0},"695":{"tf":1.0}},"r":{"df":2,"docs":{"642":{"tf":1.0},"654":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"576":{"tf":1.0},"631":{"tf":1.0},"653":{"tf":1.0},"656":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"651":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"555":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"649":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"637":{"tf":1.0},"656":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0}}}}}},"df":3,"docs":{"625":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"706":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"595":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.0},"769":{"tf":1.4142135623730951},"82":{"tf":1.0},"949":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"595":{"tf":1.0},"618":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1374":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"598":{"tf":1.0},"667":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"618":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1376":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0}}}},"o":{"df":1,"docs":{"618":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"599":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1021":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0}}}}}},"df":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1126":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}},"s":{"df":1,"docs":{"1374":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"723":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"576":{"tf":1.0},"87":{"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":{"555":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"653":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"653":{"tf":1.0}}}}}}}},"df":2,"docs":{"1375":{"tf":1.4142135623730951},"1386":{"tf":2.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"609":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1154":{"tf":1.0},"120":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"138":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"1440":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"916":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"987":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"1166":{"tf":1.4142135623730951},"1336":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"759":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":47,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1106":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1253":{"tf":1.0},"1320":{"tf":1.0},"1448":{"tf":1.0},"1464":{"tf":2.0},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1528":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"280":{"tf":1.4142135623730951},"31":{"tf":1.0},"418":{"tf":1.4142135623730951},"526":{"tf":1.0},"536":{"tf":1.7320508075688772},"58":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"722":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1206":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"913":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1022":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1530":{"tf":1.4142135623730951},"974":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":41,"docs":{"11":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1149":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"177":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.0},"34":{"tf":1.7320508075688772},"359":{"tf":1.0},"43":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"593":{"tf":1.0},"675":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"920":{"tf":1.4142135623730951},"981":{"tf":1.0},"991":{"tf":1.4142135623730951},"993":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1390":{"tf":1.0},"311":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1343":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0}},"u":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1170":{"tf":1.0},"176":{"tf":1.0},"837":{"tf":1.0},"856":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":42,"docs":{"1068":{"tf":1.0},"1086":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1205":{"tf":1.0},"1284":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1396":{"tf":1.0},"14":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.7320508075688772},"49":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.7320508075688772},"930":{"tf":1.0},"935":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"976":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"759":{"tf":1.0},"871":{"tf":1.0}}},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"732":{"tf":1.0},"94":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"257":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.7320508075688772},"652":{"tf":1.0},"661":{"tf":1.7320508075688772},"82":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"804":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1202":{"tf":1.0},"1285":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":2.449489742783178},"1365":{"tf":1.0},"1388":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.4142135623730951},"321":{"tf":1.0},"347":{"tf":1.7320508075688772},"391":{"tf":1.0},"548":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0},"625":{"tf":1.0},"766":{"tf":1.0},"814":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"845":{"tf":1.0},"848":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"900":{"tf":1.7320508075688772},"902":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"543":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"82":{"tf":1.0},"856":{"tf":1.0},"925":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":12,"docs":{"1014":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1403":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.0},"456":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"915":{"tf":1.0},"960":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1011":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.7320508075688772},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1455":{"tf":1.4142135623730951},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1149":{"tf":1.0},"1499":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":29,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.7320508075688772},"1119":{"tf":1.7320508075688772},"1120":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1122":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"41":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"792":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.4142135623730951},"832":{"tf":1.0},"834":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"827":{"tf":1.7320508075688772},"883":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1162":{"tf":1.0},"1163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1008":{"tf":1.0},"1032":{"tf":1.0},"1042":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1276":{"tf":2.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"169":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"760":{"tf":1.0},"918":{"tf":1.7320508075688772},"925":{"tf":1.4142135623730951},"93":{"tf":1.0},"934":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":62,"docs":{"108":{"tf":2.0},"1173":{"tf":2.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"93":{"tf":1.4142135623730951},"936":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951}},"n":{"df":10,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.0},"1237":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"837":{"tf":1.0},"850":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"i":{"d":{"df":81,"docs":{"1":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1051":{"tf":1.0},"1073":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1173":{"tf":1.0},"118":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1333":{"tf":2.0},"1336":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1400":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1466":{"tf":1.0},"147":{"tf":1.0},"1476":{"tf":1.0},"225":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":2.6457513110645907},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"357":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"482":{"tf":1.0},"50":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.4142135623730951},"861":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"952":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1176":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1197":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"542":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"951":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":24,"docs":{"1015":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1025":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"343":{"tf":1.7320508075688772},"57":{"tf":1.0},"570":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"262":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1213":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}}}}}},"_":{"a":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":13,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1518":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"_":{"b":{"6":{"4":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"638":{"tf":1.0},"646":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.7320508075688772},"710":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"948":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"611":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"277":{"tf":1.0},"616":{"tf":1.0},"704":{"tf":1.7320508075688772},"710":{"tf":1.7320508075688772},"991":{"tf":1.4142135623730951}}}}}},"df":87,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1212":{"tf":1.0},"1228":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1276":{"tf":1.4142135623730951},"130":{"tf":1.0},"1320":{"tf":1.0},"1333":{"tf":1.0},"1436":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"486":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"84":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"896":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.7320508075688772},"915":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"939":{"tf":1.7320508075688772},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"404":{"tf":1.0},"412":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":7,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.0},"527":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"608":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":19,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"375":{"tf":1.0},"45":{"tf":1.0},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"911":{"tf":1.0},"913":{"tf":1.0},"950":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"378":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":17,"docs":{"1222":{"tf":1.0},"1235":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1476":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"33":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1015":{"tf":1.0},"1041":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1158":{"tf":1.0}}}},"t":{"df":3,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0},"1292":{"tf":1.0}}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"587":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1392":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1148":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1149":{"tf":1.0},"1155":{"tf":1.0},"1392":{"tf":1.7320508075688772},"684":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"3":{".":{"1":{"1":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"10":{"tf":1.4142135623730951},"1126":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1183":{"tf":2.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":2.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"548":{"tf":2.23606797749979},"549":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"561":{"tf":1.4142135623730951},"576":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"6":{"tf":1.4142135623730951},"610":{"tf":1.0},"620":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0},"690":{"tf":1.0},"769":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"q":{"1":{"df":17,"docs":{"1403":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"616":{"tf":1.0},"640":{"tf":1.0},"785":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1112":{"tf":2.0},"1116":{"tf":1.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":32,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1032":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":2.0},"15":{"tf":1.0},"1515":{"tf":1.7320508075688772},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"984":{"tf":1.0},"996":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"1507":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1010":{"tf":1.0},"226":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"843":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1083":{"tf":2.23606797749979},"1084":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1309":{"tf":1.0},"35":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"871":{"tf":1.0},"944":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1143":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"1242":{"tf":1.0},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":2.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"856":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":45,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"18":{"tf":1.0},"293":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"593":{"tf":1.0},"665":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"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.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1479":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1160":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1168":{"tf":1.0}}},"s":{"df":18,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0},"1394":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"(":{"1":{"0":{"df":1,"docs":{"726":{"tf":1.0}}},"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":10,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"379":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.4142135623730951},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}},"df":10,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"682":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1276":{"tf":1.0},"41":{"tf":1.0},"486":{"tf":1.0},"751":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1227":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"1094":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1174":{"tf":1.0},"1194":{"tf":1.0},"125":{"tf":1.7320508075688772},"1270":{"tf":1.0},"1271":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1340":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1422":{"tf":1.0},"1498":{"tf":1.0},"1529":{"tf":1.0},"192":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.0},"369":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"603":{"tf":1.0},"660":{"tf":1.0},"667":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":9,"docs":{"1396":{"tf":1.0},"14":{"tf":1.7320508075688772},"19":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"454":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"673":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"1042":{"tf":1.0},"1211":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"506":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1403":{"tf":1.0},"856":{"tf":1.0},"934":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"1152":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1286":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"440":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"525":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"702":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1083":{"tf":1.0},"916":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"208":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"599":{"tf":1.0},"616":{"tf":1.4142135623730951},"879":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"103":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1041":{"tf":1.0},"1089":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1295":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"241":{"tf":1.0},"342":{"tf":1.4142135623730951},"437":{"tf":1.0},"545":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"922":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":44,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.7320508075688772},"1004":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1235":{"tf":2.0},"1247":{"tf":1.0},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.449489742783178},"1476":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"292":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"31":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0},"732":{"tf":1.0},"763":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"932":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":2.0},"977":{"tf":1.0},"979":{"tf":1.0},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1096":{"tf":1.4142135623730951},"1099":{"tf":1.0},"974":{"tf":1.7320508075688772},"983":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}},"s":{"df":5,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1369":{"tf":1.0},"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1307":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}}}},"df":50,"docs":{"1052":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1355":{"tf":2.449489742783178},"1401":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1471":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"166":{"tf":1.0},"192":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"434":{"tf":2.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"538":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"847":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"883":{"tf":1.0},"916":{"tf":1.4142135623730951}},"f":{"df":13,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":172,"docs":{"1092":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1347":{"tf":1.7320508075688772},"1370":{"tf":1.0},"1395":{"tf":1.0},"1407":{"tf":2.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.7320508075688772},"262":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.4142135623730951},"366":{"tf":1.0},"385":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"428":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.4142135623730951},"480":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.7320508075688772},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"594":{"tf":1.4142135623730951},"600":{"tf":1.0},"619":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"685":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"747":{"tf":1.4142135623730951},"748":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"838":{"tf":1.7320508075688772},"845":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.7320508075688772},"860":{"tf":1.0},"870":{"tf":1.7320508075688772},"873":{"tf":1.0},"881":{"tf":1.0},"885":{"tf":1.4142135623730951},"977":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1419":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1292":{"tf":1.0},"1491":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1465":{"tf":1.0},"1467":{"tf":1.0},"254":{"tf":1.0},"976":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1099":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1154":{"tf":1.0},"1437":{"tf":1.0},"1452":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1179":{"tf":1.0},"1208":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1405":{"tf":1.4142135623730951},"373":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"816":{"tf":1.0},"93":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"96":{"tf":2.0},"976":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1474":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"783":{"tf":2.0},"976":{"tf":1.0}}}},"df":16,"docs":{"1208":{"tf":1.7320508075688772},"1230":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"533":{"tf":1.0},"646":{"tf":1.0},"710":{"tf":1.0},"783":{"tf":1.7320508075688772},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"96":{"tf":1.0},"977":{"tf":1.0}},"i":{"df":3,"docs":{"1075":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1010":{"tf":1.0},"1097":{"tf":1.0},"169":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"951":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"351":{"tf":1.0},"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":16,"docs":{"1171":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1507":{"tf":1.0},"221":{"tf":1.0},"458":{"tf":1.4142135623730951},"505":{"tf":1.0},"782":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"929":{"tf":1.0},"930":{"tf":1.0},"932":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"954":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"1117":{"tf":1.4142135623730951},"1298":{"tf":1.0},"748":{"tf":1.0},"869":{"tf":1.0},"885":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1194":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"871":{"tf":1.0},"947":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}},"df":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"871":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1007":{"tf":1.0},"1047":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"166":{"tf":1.0},"874":{"tf":1.0},"911":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"1214":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0}}},"v":{"df":7,"docs":{"1094":{"tf":1.0},"1403":{"tf":1.0},"1470":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"451":{"tf":1.0},"874":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"805":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":8,"docs":{"1310":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1507":{"tf":1.0},"237":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":3,"docs":{"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":2.0}}},"df":1,"docs":{"884":{"tf":1.0}}}},"o":{"df":1,"docs":{"93":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"635":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1339":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":22,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1206":{"tf":1.0},"1339":{"tf":3.605551275463989},"182":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"519":{"tf":1.4142135623730951},"696":{"tf":1.0},"797":{"tf":1.4142135623730951},"833":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.4142135623730951},"849":{"tf":1.0},"859":{"tf":1.4142135623730951},"916":{"tf":1.0},"921":{"tf":1.0},"94":{"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":3,"docs":{"554":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"1213":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"1194":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"749":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"456":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1278":{"tf":1.7320508075688772},"1281":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.0},"509":{"tf":1.0},"538":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"503":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"1148":{"tf":1.0},"1192":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1355":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"538":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"1020":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1265":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"647":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":70,"docs":{"1146":{"tf":1.4142135623730951},"1148":{"tf":2.0},"1149":{"tf":1.0},"1185":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1206":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":2.23606797749979},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":2.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.7320508075688772},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":2.23606797749979},"1405":{"tf":1.0},"1441":{"tf":1.0},"1474":{"tf":1.0},"1493":{"tf":2.23606797749979},"151":{"tf":1.0},"19":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.7320508075688772},"420":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.0},"507":{"tf":1.0},"528":{"tf":1.7320508075688772},"617":{"tf":1.0},"648":{"tf":1.7320508075688772},"654":{"tf":1.0},"663":{"tf":1.0},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.7320508075688772},"713":{"tf":1.0},"714":{"tf":1.0},"804":{"tf":1.0},"956":{"tf":1.7320508075688772}},"i":{"d":{"df":2,"docs":{"383":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":164,"docs":{"100":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1055":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.4142135623730951},"11":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"115":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1208":{"tf":1.0},"1213":{"tf":1.0},"1222":{"tf":1.0},"1242":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":2.449489742783178},"1304":{"tf":1.7320508075688772},"132":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1333":{"tf":1.4142135623730951},"1334":{"tf":2.23606797749979},"1336":{"tf":1.0},"135":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1420":{"tf":1.0},"1423":{"tf":1.0},"143":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1448":{"tf":2.0},"1452":{"tf":2.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1466":{"tf":1.7320508075688772},"1476":{"tf":1.7320508075688772},"1480":{"tf":1.7320508075688772},"1490":{"tf":1.0},"1515":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":2.23606797749979},"245":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.4142135623730951},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"342":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.0},"446":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"569":{"tf":1.0},"588":{"tf":1.0},"603":{"tf":1.0},"615":{"tf":1.0},"62":{"tf":1.0},"640":{"tf":1.4142135623730951},"70":{"tf":1.0},"700":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"744":{"tf":1.7320508075688772},"754":{"tf":1.7320508075688772},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.0},"766":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"82":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.7320508075688772},"94":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"946":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"977":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":2.0}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"1522":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"df":1,"docs":{"503":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"574":{"tf":1.0},"575":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":2,"docs":{"1355":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1292":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}}}},"df":25,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"461":{"tf":1.4142135623730951},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.0},"511":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1278":{"tf":1.0},"1355":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"1267":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"497":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"312":{"tf":2.0},"506":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1254":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1212":{"tf":1.0},"1220":{"tf":1.0},"1436":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}}}},"v":{"df":5,"docs":{"1145":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"1071":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"442":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.7320508075688772},"803":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"237":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"139":{"tf":1.0},"1441":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":67,"docs":{"1010":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1474":{"tf":1.0},"1494":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.0},"415":{"tf":1.7320508075688772},"451":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.4142135623730951},"494":{"tf":2.0},"495":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"511":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"649":{"tf":1.7320508075688772},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"782":{"tf":1.4142135623730951},"944":{"tf":1.0},"954":{"tf":1.0},"957":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1149":{"tf":1.0},"1379":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.4142135623730951},"953":{"tf":1.0}}}}}}}}}},"t":{"df":8,"docs":{"1106":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"65":{"tf":1.0},"810":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":2.0},"1530":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1105":{"tf":1.0},"1253":{"tf":1.0},"51":{"tf":1.0},"908":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"364":{"tf":1.0},"384":{"tf":1.0},"598":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"957":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"706":{"tf":1.0},"716":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"468":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1301":{"tf":1.0},"1310":{"tf":1.0},"1314":{"tf":1.0}},"s":{"[":{"0":{"df":1,"docs":{"1301":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"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":2,"docs":{"367":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"384":{"tf":1.4142135623730951},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}},"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"649":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1314":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1355":{"tf":2.449489742783178},"1358":{"tf":2.449489742783178},"1365":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1381":{"tf":2.23606797749979},"1388":{"tf":1.0},"1390":{"tf":2.449489742783178},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"182":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"603":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"649":{"tf":1.4142135623730951},"667":{"tf":1.7320508075688772},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"687":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"916":{"tf":1.7320508075688772},"925":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"991":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1390":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"1080":{"tf":1.0},"1214":{"tf":1.0},"1313":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":163,"docs":{"1103":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1301":{"tf":2.449489742783178},"1302":{"tf":2.449489742783178},"1305":{"tf":2.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1381":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":2.449489742783178},"1403":{"tf":2.449489742783178},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1436":{"tf":1.0},"262":{"tf":2.0},"286":{"tf":1.0},"31":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"576":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"617":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.0},"916":{"tf":1.0},"950":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1120":{"tf":1.4142135623730951},"1278":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1336":{"tf":2.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"214":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"33":{"tf":1.0},"420":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"765":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.4142135623730951},"88":{"tf":2.8284271247461903},"92":{"tf":1.0},"951":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":7,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1052":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"983":{"tf":1.0},"996":{"tf":1.4142135623730951}}}}}},"f":{"c":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":1,"docs":{"351":{"tf":1.0}},"p":{"df":3,"docs":{"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.7320508075688772},"389":{"tf":1.0},"404":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1346":{"tf":1.0},"1520":{"tf":1.0},"351":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1346":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"1130":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"1145":{"tf":1.0},"248":{"tf":1.0},"911":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":45,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1010":{"tf":2.0},"1011":{"tf":1.7320508075688772},"1012":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1204":{"tf":1.7320508075688772},"1439":{"tf":1.0},"169":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"59":{"tf":1.0},"681":{"tf":1.4142135623730951},"918":{"tf":1.0},"926":{"tf":1.7320508075688772},"969":{"tf":1.0},"981":{"tf":2.0},"982":{"tf":1.7320508075688772},"983":{"tf":1.0},"984":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0},"993":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"995":{"tf":1.4142135623730951},"996":{"tf":2.449489742783178},"997":{"tf":2.449489742783178},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1267":{"tf":1.0},"1276":{"tf":2.23606797749979},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1401":{"tf":1.0},"1526":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"302":{"tf":1.0},"311":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"491":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"500":{"tf":2.6457513110645907}}}}}},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0}}}},"p":{"c":{"df":11,"docs":{"1177":{"tf":1.0},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"669":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"a":{"df":31,"docs":{"1015":{"tf":1.7320508075688772},"1022":{"tf":1.7320508075688772},"1023":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1227":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1491":{"tf":1.0},"728":{"tf":1.0},"743":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}}},"df":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":{"1399":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1078":{"tf":1.0},"1084":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1200":{"tf":1.0},"1243":{"tf":1.0},"1258":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1462":{"tf":1.0},"1476":{"tf":1.0},"18":{"tf":1.0},"239":{"tf":1.0},"327":{"tf":1.0},"369":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"473":{"tf":1.0},"555":{"tf":1.0},"603":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.7320508075688772},"871":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0},"116":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"724":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":73,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"1084":{"tf":1.4142135623730951},"115":{"tf":1.0},"1154":{"tf":1.7320508075688772},"1160":{"tf":1.7320508075688772},"1162":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.0},"1213":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1347":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.7320508075688772},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"841":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.0},"860":{"tf":1.4142135623730951},"87":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.0},"884":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"115":{"tf":1.0}}}}}}}},"s":{"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0}}}}},"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.7320508075688772},"1072":{"tf":1.0},"1094":{"tf":2.0},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.0},"1102":{"tf":1.7320508075688772},"1106":{"tf":1.7320508075688772},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.7320508075688772},"1512":{"tf":2.23606797749979},"1513":{"tf":1.7320508075688772},"285":{"tf":1.0},"339":{"tf":2.0},"536":{"tf":1.0},"566":{"tf":2.0},"64":{"tf":1.0},"722":{"tf":1.0},"893":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1108":{"tf":1.0},"287":{"tf":1.0},"726":{"tf":1.7320508075688772},"911":{"tf":1.0},"950":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1161":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"911":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1330":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"1024":{"tf":1.0},"1080":{"tf":1.0},"1265":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"227":{"tf":1.0},"368":{"tf":1.0},"516":{"tf":1.0},"543":{"tf":1.0},"693":{"tf":1.0},"726":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"954":{"tf":1.0},"978":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.8284271247461903},"1445":{"tf":1.0},"1529":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"308":{"tf":2.23606797749979},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"319":{"tf":1.0},"791":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"1063":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1323":{"tf":2.0},"134":{"tf":2.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.0},"179":{"tf":1.7320508075688772},"264":{"tf":1.0},"273":{"tf":1.7320508075688772},"288":{"tf":1.0},"371":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"1089":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1452":{"tf":1.0},"1502":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.4142135623730951},"985":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"741":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1480":{"tf":1.0},"189":{"tf":1.0},"803":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":263,"docs":{"1081":{"tf":1.4142135623730951},"1108":{"tf":2.23606797749979},"1109":{"tf":1.4142135623730951},"1110":{"tf":1.7320508075688772},"1111":{"tf":1.7320508075688772},"1112":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1114":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.7320508075688772},"1124":{"tf":2.449489742783178},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.7320508075688772},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1132":{"tf":1.7320508075688772},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1136":{"tf":2.23606797749979},"1139":{"tf":1.0},"1166":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1209":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":2.449489742783178},"1422":{"tf":1.7320508075688772},"1427":{"tf":2.0},"1429":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1480":{"tf":2.23606797749979},"151":{"tf":1.0},"1522":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"278":{"tf":2.0},"287":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"389":{"tf":1.0},"392":{"tf":2.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"560":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"66":{"tf":1.0},"672":{"tf":1.0},"696":{"tf":1.4142135623730951},"721":{"tf":1.0},"728":{"tf":2.23606797749979},"729":{"tf":2.6457513110645907},"730":{"tf":1.7320508075688772},"731":{"tf":2.0},"732":{"tf":2.0},"733":{"tf":2.0},"734":{"tf":2.23606797749979},"735":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"737":{"tf":1.7320508075688772},"738":{"tf":2.449489742783178},"739":{"tf":1.4142135623730951},"740":{"tf":2.0},"741":{"tf":2.23606797749979},"742":{"tf":2.449489742783178},"743":{"tf":1.0},"744":{"tf":1.7320508075688772},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"747":{"tf":3.3166247903554},"748":{"tf":2.0},"749":{"tf":2.0},"750":{"tf":1.7320508075688772},"751":{"tf":1.0},"752":{"tf":2.8284271247461903},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.7320508075688772},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":2.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"788":{"tf":1.7320508075688772},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.7320508075688772},"800":{"tf":2.0},"801":{"tf":1.7320508075688772},"802":{"tf":1.0},"803":{"tf":2.6457513110645907},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.7320508075688772},"812":{"tf":2.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":2.23606797749979},"829":{"tf":2.0},"830":{"tf":1.7320508075688772},"831":{"tf":1.0},"832":{"tf":2.449489742783178},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":2.0},"843":{"tf":1.4142135623730951},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.7320508075688772},"852":{"tf":1.7320508075688772},"853":{"tf":1.7320508075688772},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":2.0},"863":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":2.0},"876":{"tf":2.23606797749979},"877":{"tf":1.7320508075688772},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":2.0},"888":{"tf":1.4142135623730951},"889":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.0},"909":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1324":{"tf":1.0},"278":{"tf":1.0},"519":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"178":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1134":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1017":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"548":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1337":{"tf":1.4142135623730951},"1456":{"tf":1.0},"348":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0},"82":{"tf":1.0},"925":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"1176":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":12,"docs":{"1302":{"tf":3.4641016151377544},"1323":{"tf":1.0},"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"663":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":2.23606797749979},"776":{"tf":1.0},"789":{"tf":1.0},"836":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1084":{"tf":1.0},"129":{"tf":1.0},"1329":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.23606797749979},"901":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1423":{"tf":1.0},"1510":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":171,"docs":{"1":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1018":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1032":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1053":{"tf":1.4142135623730951},"1085":{"tf":1.4142135623730951},"11":{"tf":1.0},"1104":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"113":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1179":{"tf":1.0},"1193":{"tf":1.4142135623730951},"1205":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1455":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1520":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"320":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.7320508075688772},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"446":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.4142135623730951},"486":{"tf":1.0},"536":{"tf":1.0},"56":{"tf":1.7320508075688772},"569":{"tf":1.0},"570":{"tf":1.0},"59":{"tf":1.0},"603":{"tf":1.7320508075688772},"664":{"tf":1.0},"681":{"tf":2.0},"682":{"tf":1.0},"748":{"tf":1.4142135623730951},"758":{"tf":1.0},"760":{"tf":1.0},"816":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.7320508075688772},"851":{"tf":1.0},"897":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"91":{"tf":1.0},"910":{"tf":2.0},"911":{"tf":1.7320508075688772},"912":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"942":{"tf":1.7320508075688772},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.7320508075688772},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.7320508075688772},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.7320508075688772},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"961":{"tf":1.7320508075688772},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"965":{"tf":1.0},"966":{"tf":1.4142135623730951},"967":{"tf":1.7320508075688772},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"971":{"tf":1.7320508075688772},"972":{"tf":1.0},"973":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"977":{"tf":1.4142135623730951},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.4142135623730951},"981":{"tf":1.0},"985":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":49,"docs":{"1013":{"tf":1.4142135623730951},"1053":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1347":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"196":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"603":{"tf":1.0},"619":{"tf":1.4142135623730951},"67":{"tf":1.0},"727":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"763":{"tf":1.0},"773":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"1029":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"206":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"921":{"tf":1.0},"960":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"588":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1404":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1388":{"tf":2.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1001":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"1161":{"tf":1.7320508075688772},"147":{"tf":1.0},"185":{"tf":1.0},"277":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"950":{"tf":1.0},"977":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":2.449489742783178},"1398":{"tf":1.0},"1399":{"tf":3.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1144":{"tf":1.4142135623730951},"776":{"tf":1.0},"789":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1274":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":19,"docs":{"1248":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1292":{"tf":1.0},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"31":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"456":{"tf":1.0},"879":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1228":{"tf":1.0},"1313":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"921":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}}}}}},"t":{"df":7,"docs":{"1192":{"tf":1.4142135623730951},"1439":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"664":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1101":{"tf":1.0},"112":{"tf":1.0},"1145":{"tf":2.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"138":{"tf":1.0},"1436":{"tf":1.0},"1453":{"tf":1.0},"185":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"968":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"860":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1216":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"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":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}}},"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1200":{"tf":1.0},"439":{"tf":1.0},"705":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1243":{"tf":1.0},"1248":{"tf":1.0},"1259":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1179":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1524":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1524":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"473":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"a":{"d":{"d":{"df":3,"docs":{"1179":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1148":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":147,"docs":{"1060":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1179":{"tf":2.0},"1180":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1188":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1192":{"tf":2.23606797749979},"1200":{"tf":1.0},"1202":{"tf":1.7320508075688772},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.7320508075688772},"1262":{"tf":2.0},"1263":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1281":{"tf":2.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":2.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":3.0},"1359":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1401":{"tf":2.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1524":{"tf":1.7320508075688772},"248":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":2.6457513110645907},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"442":{"tf":3.0},"443":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"547":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"617":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":2.0},"682":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.23606797749979},"687":{"tf":1.0},"718":{"tf":2.23606797749979},"719":{"tf":1.0},"82":{"tf":1.0},"851":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"473":{"tf":1.0},"495":{"tf":1.0}}}}}}},"i":{"c":{"df":54,"docs":{"1076":{"tf":1.0},"1143":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1404":{"tf":2.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"147":{"tf":1.0},"155":{"tf":2.6457513110645907},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"523":{"tf":1.0},"55":{"tf":1.4142135623730951},"616":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"733":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":2.0},"759":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"785":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1401":{"tf":2.0},"816":{"tf":1.7320508075688772}},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":58,"docs":{"1056":{"tf":1.0},"1072":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1159":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"1247":{"tf":1.0},"1258":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1315":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1410":{"tf":1.0},"1413":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"182":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"336":{"tf":1.0},"465":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"682":{"tf":1.0},"756":{"tf":1.0},"773":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.4142135623730951},"88":{"tf":1.0},"887":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":39,"docs":{"1061":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1107":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1222":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1261":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1476":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"573":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.4142135623730951},"763":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"851":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"328":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":12,"docs":{"1045":{"tf":1.0},"1245":{"tf":1.0},"1421":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"913":{"tf":1.0},"925":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"1046":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.0},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1213":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1228":{"tf":1.0}}}},"df":0,"docs":{}},"df":28,"docs":{"1075":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1145":{"tf":2.23606797749979},"1518":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"214":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.0},"798":{"tf":1.0},"852":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"580":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1296":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"925":{"tf":1.0}}}},"w":{"df":8,"docs":{"101":{"tf":1.0},"1230":{"tf":1.0},"1323":{"tf":1.0},"1428":{"tf":1.0},"223":{"tf":1.0},"771":{"tf":1.0},"907":{"tf":1.0},"963":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.4142135623730951},"454":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"991":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"df":2,"docs":{"1151":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1346":{"tf":1.4142135623730951},"309":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":220,"docs":{"1":{"tf":1.0},"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1006":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1045":{"tf":2.23606797749979},"1047":{"tf":1.0},"1051":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1142":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1166":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1177":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":2.0},"1196":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1248":{"tf":1.0},"1255":{"tf":1.7320508075688772},"1260":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1375":{"tf":1.7320508075688772},"138":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1423":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1471":{"tf":2.0},"1485":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"397":{"tf":1.7320508075688772},"398":{"tf":2.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.449489742783178},"523":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"53":{"tf":2.0},"531":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.7320508075688772},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"58":{"tf":1.7320508075688772},"588":{"tf":1.0},"598":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"631":{"tf":1.7320508075688772},"632":{"tf":2.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"640":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"654":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":2.449489742783178},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"708":{"tf":1.0},"710":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"782":{"tf":3.1622776601683795},"783":{"tf":1.7320508075688772},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.0},"823":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.7320508075688772},"932":{"tf":2.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.7320508075688772},"950":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.0},"991":{"tf":1.7320508075688772},"994":{"tf":1.0},"995":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"698":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1306":{"tf":1.0},"1315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"404":{"tf":1.0},"527":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":328,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1000":{"tf":1.0},"1007":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1042":{"tf":1.0},"1048":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1144":{"tf":1.7320508075688772},"1146":{"tf":2.449489742783178},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1173":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":2.0},"1194":{"tf":3.3166247903554},"1195":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1209":{"tf":2.23606797749979},"1210":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1231":{"tf":2.0},"1232":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.7320508075688772},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":3.0},"1330":{"tf":2.449489742783178},"1332":{"tf":1.0},"1338":{"tf":2.449489742783178},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.7320508075688772},"1352":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":2.0},"1363":{"tf":1.0},"1369":{"tf":1.0},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":2.0},"1386":{"tf":1.0},"1390":{"tf":1.0},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979},"1402":{"tf":1.0},"1405":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"1415":{"tf":1.0},"142":{"tf":2.0},"1421":{"tf":1.0},"1423":{"tf":2.0},"1436":{"tf":1.0},"146":{"tf":1.0},"1469":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.0},"1472":{"tf":2.0},"1485":{"tf":2.23606797749979},"1486":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1515":{"tf":2.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.0},"404":{"tf":1.0},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"445":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.23606797749979},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":2.23606797749979},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"530":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.7320508075688772},"605":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.4142135623730951},"616":{"tf":2.23606797749979},"617":{"tf":1.4142135623730951},"620":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"tf":2.0},"638":{"tf":1.0},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"646":{"tf":1.7320508075688772},"647":{"tf":1.4142135623730951},"648":{"tf":1.7320508075688772},"649":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":2.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"710":{"tf":1.7320508075688772},"713":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.7320508075688772},"732":{"tf":1.7320508075688772},"747":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":2.0},"77":{"tf":1.0},"782":{"tf":1.7320508075688772},"81":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.0},"833":{"tf":1.0},"837":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"846":{"tf":1.7320508075688772},"847":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":2.449489742783178},"882":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.0},"921":{"tf":2.449489742783178},"926":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.7320508075688772},"957":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"997":{"tf":1.4142135623730951}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"592":{"tf":1.0},"599":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1330":{"tf":2.23606797749979},"1362":{"tf":1.0},"1385":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"365":{"tf":1.0},"383":{"tf":1.0},"599":{"tf":1.0},"617":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"646":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1385":{"tf":1.0},"641":{"tf":1.0},"654":{"tf":1.0},"701":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"617":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":15,"docs":{"1248":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"656":{"tf":1.0},"846":{"tf":1.0}},"u":{"df":6,"docs":{"601":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"632":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"654":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"412":{"tf":1.0}}}}}}}}},"r":{"df":6,"docs":{"1362":{"tf":1.4142135623730951},"1399":{"tf":1.7320508075688772},"407":{"tf":1.0},"420":{"tf":1.0},"524":{"tf":1.0},"88":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"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":2,"docs":{"1361":{"tf":1.4142135623730951},"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1517":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951}},"u":{"df":15,"docs":{"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"612":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1148":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.0},"528":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"469":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"420":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":5,"docs":{"1255":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1384":{"tf":1.0},"406":{"tf":1.0},"525":{"tf":1.0},"617":{"tf":1.0},"640":{"tf":1.0},"702":{"tf":1.0},"786":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1436":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"1039":{"tf":1.0},"1148":{"tf":1.0},"1182":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":14,"docs":{"1045":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1507":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"913":{"tf":1.0},"990":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1151":{"tf":1.0},"1176":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"545":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1185":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1082":{"tf":1.0},"1214":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"1061":{"tf":1.0},"1145":{"tf":1.0},"1336":{"tf":1.0},"1351":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"327":{"tf":1.0},"37":{"tf":1.0},"555":{"tf":1.0},"581":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":58,"docs":{"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"591":{"tf":2.0},"592":{"tf":1.0},"593":{"tf":2.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"1060":{"tf":1.0},"1062":{"tf":1.0},"1089":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"184":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"593":{"tf":1.0},"856":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"711":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}},"x":{"df":1,"docs":{"847":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"1015":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"934":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1209":{"tf":1.0},"1256":{"tf":1.7320508075688772},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.4142135623730951},"835":{"tf":1.0},"842":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":4,"docs":{"130":{"tf":1.0},"1334":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":2,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"682":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1039":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1426":{"tf":1.4142135623730951},"342":{"tf":1.0},"569":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"818":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1041":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1112":{"tf":1.4142135623730951},"154":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"985":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"767":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":36,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"767":{"tf":1.0},"976":{"tf":2.6457513110645907}}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"845":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":1,"docs":{"308":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"3":{"0":{"df":4,"docs":{"1084":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"269":{"tf":1.0},"273":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1305":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"884":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1174":{"tf":1.0},"1436":{"tf":1.7320508075688772},"182":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"70":{"tf":1.0},"809":{"tf":1.0},"972":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1062":{"tf":1.0},"1426":{"tf":1.0},"1489":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"901":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"df":2,"docs":{"309":{"tf":2.23606797749979},"319":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"1423":{"tf":1.0},"151":{"tf":1.0},"196":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":55,"docs":{"0":{"tf":1.0},"1001":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"119":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.0},"1309":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"1452":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"170":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.4142135623730951},"410":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"632":{"tf":1.4142135623730951},"644":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"757":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":23,"docs":{"1323":{"tf":1.0},"138":{"tf":1.0},"1419":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1442":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"188":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"740":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"976":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"872":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.4142135623730951}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"348":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"576":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"1101":{"tf":1.0}}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"1106":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.4142135623730951},"541":{"tf":1.0},"664":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"249":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":5,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1441":{"tf":1.0},"930":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"852":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"1022":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"858":{"tf":1.0},"911":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"884":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":66,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1319":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"348":{"tf":1.0},"358":{"tf":1.4142135623730951},"38":{"tf":1.0},"425":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"483":{"tf":1.4142135623730951},"507":{"tf":1.0},"547":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"727":{"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},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"976":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1378":{"tf":1.4142135623730951},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1209":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":47,"docs":{"1011":{"tf":1.0},"1144":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":3.1622776601683795},"1230":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.0},"43":{"tf":1.0},"516":{"tf":1.0},"603":{"tf":1.0},"693":{"tf":1.0},"732":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":2.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.0},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":2.0},"829":{"tf":2.449489742783178},"830":{"tf":1.0},"831":{"tf":2.23606797749979},"832":{"tf":1.7320508075688772},"833":{"tf":1.7320508075688772},"834":{"tf":1.0},"835":{"tf":1.7320508075688772},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.7320508075688772},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":2.0},"846":{"tf":1.0},"847":{"tf":2.8284271247461903},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"916":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"317":{"tf":1.0}}}}}}},"u":{"df":61,"docs":{"1000":{"tf":1.7320508075688772},"1006":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1214":{"tf":1.0},"1230":{"tf":2.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":2.23606797749979},"1376":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":2.23606797749979},"1399":{"tf":2.23606797749979},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"222":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"408":{"tf":2.0},"420":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.7320508075688772},"603":{"tf":1.0},"642":{"tf":2.0},"654":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"849":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.7320508075688772},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"940":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1145":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.4142135623730951},"525":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1362":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1098":{"tf":1.0}}}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1143":{"tf":1.0},"702":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}},"y":{"df":2,"docs":{"950":{"tf":1.0},"97":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"1161":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":7,"docs":{"1191":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"298":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.4142135623730951},"1524":{"tf":1.0},"427":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":11,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"450":{"tf":1.7320508075688772},"541":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1154":{"tf":1.0},"1191":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1444":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"761":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":32,"docs":{"111":{"tf":1.0},"1112":{"tf":2.0},"1158":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"1261":{"tf":1.4142135623730951},"1330":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"994":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1012":{"tf":1.0},"1144":{"tf":1.0},"1506":{"tf":1.0},"223":{"tf":1.0},"997":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{".":{".":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":1,"docs":{"1306":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1452":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":107,"docs":{"1054":{"tf":2.0},"1055":{"tf":2.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":2.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1064":{"tf":2.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":2.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1079":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.7320508075688772},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.7320508075688772},"1089":{"tf":1.7320508075688772},"109":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"1295":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1320":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":2.6457513110645907},"1452":{"tf":2.23606797749979},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.0},"1481":{"tf":1.4142135623730951},"1488":{"tf":1.4142135623730951},"1489":{"tf":2.23606797749979},"1491":{"tf":1.4142135623730951},"1511":{"tf":1.4142135623730951},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"261":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":3.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"418":{"tf":1.0},"519":{"tf":1.0},"536":{"tf":2.0},"564":{"tf":1.7320508075688772},"566":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"696":{"tf":1.0},"722":{"tf":1.7320508075688772},"85":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":2.0},"916":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":60,"docs":{"1057":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1209":{"tf":1.0},"1222":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":1.0},"1253":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.7320508075688772},"1312":{"tf":2.0},"1315":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"334":{"tf":1.4142135623730951},"366":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"600":{"tf":1.0},"64":{"tf":1.0},"681":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"84":{"tf":1.0},"846":{"tf":1.0},"850":{"tf":1.0},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0},"947":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"950":{"tf":2.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.7320508075688772}}}}},"r":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1390":{"tf":1.4142135623730951},"1394":{"tf":2.0},"1402":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1080":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1296":{"tf":1.0},"1308":{"tf":1.4142135623730951},"833":{"tf":1.0}}}}}}},"df":51,"docs":{"1001":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.23606797749979},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"1390":{"tf":1.7320508075688772},"1394":{"tf":2.23606797749979},"1402":{"tf":2.0},"1404":{"tf":3.4641016151377544},"587":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":2.0},"614":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"695":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"699":{"tf":1.7320508075688772},"700":{"tf":2.23606797749979},"701":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"703":{"tf":1.4142135623730951},"704":{"tf":1.7320508075688772},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"725":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1182":{"tf":1.0},"1439":{"tf":1.0},"37":{"tf":1.0},"450":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"357":{"tf":1.0},"591":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"1144":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"165":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":2.0},"897":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":124,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1115":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":2.8284271247461903},"1119":{"tf":1.4142135623730951},"1120":{"tf":2.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":2.0},"1129":{"tf":2.449489742783178},"1130":{"tf":2.8284271247461903},"1131":{"tf":2.0},"1134":{"tf":1.0},"1227":{"tf":2.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1304":{"tf":2.0},"1401":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1471":{"tf":1.0},"262":{"tf":1.7320508075688772},"270":{"tf":1.0},"332":{"tf":1.7320508075688772},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"378":{"tf":2.0},"379":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.7320508075688772},"418":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"494":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":2.23606797749979},"523":{"tf":2.6457513110645907},"524":{"tf":2.0},"525":{"tf":2.23606797749979},"526":{"tf":1.7320508075688772},"527":{"tf":2.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"535":{"tf":2.23606797749979},"536":{"tf":3.4641016151377544},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"562":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"651":{"tf":1.7320508075688772},"652":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"722":{"tf":2.6457513110645907},"742":{"tf":1.7320508075688772},"753":{"tf":1.0},"756":{"tf":2.8284271247461903},"757":{"tf":1.4142135623730951},"759":{"tf":3.1622776601683795},"762":{"tf":3.3166247903554},"778":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":3.0},"786":{"tf":1.4142135623730951},"788":{"tf":2.0},"790":{"tf":1.0},"808":{"tf":2.23606797749979},"811":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":2.8284271247461903},"854":{"tf":1.0},"856":{"tf":2.449489742783178},"865":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1215":{"tf":1.0},"169":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1161":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"287":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":53,"docs":{"1043":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1417":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1528":{"tf":1.0},"167":{"tf":1.4142135623730951},"173":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"224":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"25":{"tf":1.0},"291":{"tf":1.0},"328":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"36":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"728":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.4142135623730951},"774":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"803":{"tf":1.4142135623730951},"828":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"916":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"990":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1413":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1417":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"802":{"tf":1.0},"818":{"tf":1.4142135623730951},"869":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"883":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1182":{"tf":1.0},"1191":{"tf":1.0},"433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1163":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"1149":{"tf":1.0},"1321":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"155":{"tf":1.0},"264":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"715":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"1324":{"tf":1.0},"1338":{"tf":1.0},"1346":{"tf":1.0},"1458":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"855":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1062":{"tf":1.0},"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1166":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"1154":{"tf":1.0},"1339":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1000":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.7320508075688772},"505":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"1002":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1054":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1078":{"tf":1.4142135623730951},"109":{"tf":2.6457513110645907},"1135":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1428":{"tf":1.0},"1438":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":2.0},"297":{"tf":1.0},"332":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"544":{"tf":1.4142135623730951},"569":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.0},"587":{"tf":1.4142135623730951},"589":{"tf":1.0},"6":{"tf":1.0},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"725":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.4142135623730951},"82":{"tf":1.0},"871":{"tf":1.0},"898":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"954":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":1.0},"981":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"108":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1010":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1042":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"1512":{"tf":1.0},"1513":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1479":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":52,"docs":{"1":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1062":{"tf":1.0},"1068":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"1160":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1222":{"tf":1.0},"1298":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1399":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"422":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"758":{"tf":1.0},"816":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"726":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"726":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"997":{"tf":1.0}}},"1":{"df":1,"docs":{"997":{"tf":1.0}}},"2":{"df":1,"docs":{"997":{"tf":1.0}}},"3":{"df":1,"docs":{"997":{"tf":1.0}}},"4":{"df":1,"docs":{"997":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1081":{"tf":1.7320508075688772},"1084":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1310":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1121":{"tf":1.0},"1309":{"tf":1.0},"303":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"848":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}},"df":12,"docs":{"1142":{"tf":2.0},"1163":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1263":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1469":{"tf":1.0},"456":{"tf":1.0},"663":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"1095":{"tf":1.4142135623730951},"1097":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.7320508075688772},"1213":{"tf":1.0},"759":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"654":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"873":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":103,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1256":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"1335":{"tf":1.4142135623730951},"1336":{"tf":2.8284271247461903},"1416":{"tf":1.4142135623730951},"1417":{"tf":2.23606797749979},"196":{"tf":2.23606797749979},"197":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"31":{"tf":2.0},"33":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"574":{"tf":1.0},"590":{"tf":1.0},"654":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":2.23606797749979},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":2.449489742783178},"801":{"tf":1.0},"802":{"tf":1.7320508075688772},"803":{"tf":1.7320508075688772},"804":{"tf":2.449489742783178},"805":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"808":{"tf":2.0},"809":{"tf":2.0},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"813":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.7320508075688772},"818":{"tf":2.23606797749979},"819":{"tf":2.0},"820":{"tf":2.0},"821":{"tf":1.7320508075688772},"822":{"tf":2.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"871":{"tf":2.0},"872":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":2.0},"886":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":2,"docs":{"31":{"tf":2.0},"726":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1336":{"tf":1.0},"1403":{"tf":1.0},"1437":{"tf":1.0},"901":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"766":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1392":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":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":{"1140":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1369":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1174":{"tf":1.0},"1195":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1392":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}},"df":1,"docs":{"931":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1404":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":1,"docs":{"1404":{"tf":4.123105625617661}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"759":{"tf":1.0},"785":{"tf":1.0},"804":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"883":{"tf":1.0},"884":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"766":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"327":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1343":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"555":{"tf":1.4142135623730951}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"976":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"348":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1169":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1170":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1171":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"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":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1146":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1078":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":91,"docs":{"1012":{"tf":1.0},"1033":{"tf":1.0},"1060":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":1.0},"1137":{"tf":2.449489742783178},"1138":{"tf":1.7320508075688772},"1139":{"tf":2.23606797749979},"1140":{"tf":3.605551275463989},"1141":{"tf":1.7320508075688772},"1142":{"tf":2.8284271247461903},"1143":{"tf":2.449489742783178},"1144":{"tf":1.4142135623730951},"1145":{"tf":1.7320508075688772},"1146":{"tf":2.0},"1147":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1150":{"tf":1.0},"1151":{"tf":2.8284271247461903},"1152":{"tf":1.7320508075688772},"1153":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.7320508075688772},"1157":{"tf":1.0},"1158":{"tf":2.6457513110645907},"1159":{"tf":2.0},"1160":{"tf":2.23606797749979},"1161":{"tf":3.1622776601683795},"1162":{"tf":2.0},"1163":{"tf":2.23606797749979},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.0},"1168":{"tf":2.449489742783178},"1169":{"tf":2.449489742783178},"1170":{"tf":1.7320508075688772},"1171":{"tf":2.23606797749979},"1172":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":1.7320508075688772},"1316":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1369":{"tf":2.6457513110645907},"1391":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1500":{"tf":2.0},"1529":{"tf":1.4142135623730951},"302":{"tf":1.0},"312":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"340":{"tf":1.4142135623730951},"348":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":2.449489742783178},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"555":{"tf":1.7320508075688772},"567":{"tf":1.4142135623730951},"574":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":2.23606797749979},"618":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":2.0},"723":{"tf":1.0},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"968":{"tf":1.0},"979":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"588":{"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":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1392":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"836":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1148":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"505":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"1080":{"tf":1.4142135623730951},"1081":{"tf":2.23606797749979},"1148":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1279":{"tf":1.0},"1287":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1306":{"tf":2.449489742783178},"1310":{"tf":2.0},"1358":{"tf":2.23606797749979},"1401":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"235":{"tf":1.0},"383":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"483":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"510":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"684":{"tf":1.0},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"789":{"tf":1.0},"956":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"845":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"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":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{".":{".":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":15,"docs":{"287":{"tf":2.0},"47":{"tf":1.0},"726":{"tf":3.0},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":2.0},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":2.0},"883":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"726":{"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1014":{"tf":1.0},"917":{"tf":1.4142135623730951},"918":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"1177":{"tf":1.0},"1212":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.4142135623730951},"302":{"tf":1.0},"311":{"tf":1.0},"424":{"tf":1.0},"59":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"898":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}}}}},"w":{"df":20,"docs":{"1281":{"tf":1.0},"1313":{"tf":1.0},"1356":{"tf":1.0},"1367":{"tf":2.0},"1399":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"546":{"tf":1.0},"618":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1102":{"tf":1.0},"758":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"1011":{"tf":1.0},"1042":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.0},"1215":{"tf":1.0},"129":{"tf":1.0},"1296":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1320":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1522":{"tf":1.0},"234":{"tf":1.0},"37":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"925":{"tf":1.0},"935":{"tf":1.0},"953":{"tf":1.0},"973":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"221":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1084":{"tf":1.0},"1200":{"tf":1.0},"1477":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":49,"docs":{"1097":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1245":{"tf":1.0},"1255":{"tf":1.0},"1288":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1522":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"744":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"931":{"tf":1.7320508075688772},"932":{"tf":2.23606797749979},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"z":{"df":1,"docs":{"1081":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":58,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1310":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":2.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1392":{"tf":2.0},"1394":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"276":{"tf":1.0},"288":{"tf":1.0},"349":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"797":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"88":{"tf":1.4142135623730951},"921":{"tf":1.0}}}}},"l":{"df":12,"docs":{"1051":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"681":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.7320508075688772},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"850":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":2.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.7320508075688772},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"867":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"995":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":2.0},"1445":{"tf":1.0},"816":{"tf":1.0},"899":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"934":{"tf":1.0},"935":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":50,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1182":{"tf":1.0},"1185":{"tf":2.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":1.7320508075688772},"1209":{"tf":2.0},"1236":{"tf":1.7320508075688772},"1358":{"tf":1.0},"1359":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"17":{"tf":1.0},"246":{"tf":1.0},"359":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"4":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"433":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"446":{"tf":1.0},"586":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0},"684":{"tf":1.7320508075688772},"733":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"847":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"439":{"tf":1.0},"676":{"tf":1.0},"713":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"320":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":30,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":3.605551275463989},"1445":{"tf":1.0},"1509":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":2.0},"898":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":2.23606797749979},"902":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"299":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"307":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":32,"docs":{"1094":{"tf":1.0},"1263":{"tf":1.0},"1403":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.7320508075688772},"850":{"tf":1.0},"862":{"tf":1.0},"873":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"914":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1314":{"tf":1.0},"1403":{"tf":2.8284271247461903},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"423":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"942":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"t":{"df":2,"docs":{"1161":{"tf":1.0},"268":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"382":{"tf":1.7320508075688772},"616":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1102":{"tf":1.0},"365":{"tf":1.0},"599":{"tf":1.0},"65":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"1007":{"tf":1.0},"1010":{"tf":1.0},"1015":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1050":{"tf":1.0},"249":{"tf":1.0},"805":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"984":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"664":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1051":{"tf":1.0},"1152":{"tf":2.23606797749979},"1174":{"tf":1.0},"1176":{"tf":2.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1190":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951},"681":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":2.23606797749979}}}}}}},"df":1,"docs":{"1330":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"940":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":37,"docs":{"1126":{"tf":1.0},"1127":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"1477":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"667":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1310":{"tf":1.7320508075688772},"833":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"1163":{"tf":1.0}}}},"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":10,"docs":{"114":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1257":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1527":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":123,"docs":{"1088":{"tf":1.4142135623730951},"112":{"tf":1.0},"1121":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":2.23606797749979},"1151":{"tf":2.0},"1226":{"tf":1.0},"1248":{"tf":1.0},"127":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":3.0},"1323":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1378":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1437":{"tf":2.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1465":{"tf":1.0},"150":{"tf":1.0},"1500":{"tf":1.0},"1507":{"tf":1.0},"1509":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"295":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"354":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":2.449489742783178},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.4142135623730951},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"822":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"88":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":2.23606797749979},"945":{"tf":1.4142135623730951},"946":{"tf":1.7320508075688772},"965":{"tf":1.7320508075688772},"966":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1448":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1006":{"tf":1.0},"1052":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1436":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"248":{"tf":2.23606797749979},"37":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.4142135623730951},"94":{"tf":1.0},"947":{"tf":2.0},"948":{"tf":2.0},"949":{"tf":1.7320508075688772},"950":{"tf":2.0},"951":{"tf":2.23606797749979},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0},"992":{"tf":1.4142135623730951},"998":{"tf":2.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1001":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"919":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"546":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"723":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"354":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"129":{"tf":1.7320508075688772},"1307":{"tf":1.0},"1333":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"374":{"tf":2.0},"607":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":8,"docs":{"1036":{"tf":1.0},"1145":{"tf":2.449489742783178},"1180":{"tf":1.0},"1328":{"tf":1.0},"216":{"tf":1.0},"43":{"tf":1.0},"858":{"tf":1.0},"881":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1003":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":182,"docs":{"1015":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":2.0},"1112":{"tf":3.4641016151377544},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":3.1622776601683795},"1119":{"tf":1.7320508075688772},"1120":{"tf":2.23606797749979},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1124":{"tf":2.6457513110645907},"1129":{"tf":3.0},"1130":{"tf":3.3166247903554},"1131":{"tf":3.0},"1134":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1179":{"tf":1.0},"1227":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":2.23606797749979},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1304":{"tf":2.6457513110645907},"1305":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1365":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":3.0},"1403":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":2.23606797749979},"1440":{"tf":2.23606797749979},"1441":{"tf":1.7320508075688772},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"152":{"tf":2.0},"1526":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"221":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"348":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.7320508075688772},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"606":{"tf":1.0},"610":{"tf":1.7320508075688772},"614":{"tf":1.0},"616":{"tf":1.0},"72":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.7320508075688772},"741":{"tf":1.7320508075688772},"742":{"tf":3.0},"744":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":2.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.0},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"774":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"790":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.7320508075688772},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"838":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"877":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":2.23606797749979},"900":{"tf":2.23606797749979},"901":{"tf":1.0},"902":{"tf":1.4142135623730951},"954":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.7320508075688772},"354":{"tf":1.7320508075688772},"544":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1489":{"tf":1.0},"151":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.0},"249":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1038":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1526":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1292":{"tf":1.0},"1358":{"tf":1.0},"1381":{"tf":1.0},"332":{"tf":2.23606797749979},"418":{"tf":2.23606797749979},"490":{"tf":1.0},"509":{"tf":1.0},"536":{"tf":2.23606797749979},"544":{"tf":1.0}}}}},"r":{"df":4,"docs":{"357":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1176":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"542":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1194":{"tf":1.4142135623730951},"1345":{"tf":1.4142135623730951},"18":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"855":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":20,"docs":{"1111":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.4142135623730951},"778":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"968":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1522":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"1131":{"tf":1.0},"1137":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1452":{"tf":1.0},"505":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"733":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":2.23606797749979},"816":{"tf":1.7320508075688772},"818":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"588":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"25":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"1472":{"tf":2.0},"202":{"tf":1.4142135623730951},"249":{"tf":1.0},"473":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"939":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1290":{"tf":1.0},"1470":{"tf":1.0},"494":{"tf":1.4142135623730951},"505":{"tf":1.0},"837":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1144":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1166":{"tf":1.0},"911":{"tf":1.0},"949":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1214":{"tf":1.0},"1220":{"tf":1.0},"937":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1011":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":82,"docs":{"1006":{"tf":1.0},"101":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1135":{"tf":1.0},"115":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1209":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1325":{"tf":2.449489742783178},"135":{"tf":2.449489742783178},"1353":{"tf":2.0},"1376":{"tf":2.0},"1403":{"tf":2.449489742783178},"1420":{"tf":2.8284271247461903},"1425":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.7320508075688772},"209":{"tf":2.0},"249":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"370":{"tf":2.23606797749979},"371":{"tf":2.449489742783178},"382":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"400":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"41":{"tf":1.0},"411":{"tf":2.23606797749979},"42":{"tf":1.0},"46":{"tf":1.0},"522":{"tf":2.0},"532":{"tf":1.7320508075688772},"55":{"tf":1.0},"585":{"tf":1.0},"59":{"tf":1.0},"604":{"tf":2.23606797749979},"605":{"tf":2.449489742783178},"61":{"tf":1.0},"616":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"645":{"tf":2.23606797749979},"657":{"tf":1.4142135623730951},"699":{"tf":2.0},"709":{"tf":1.7320508075688772},"780":{"tf":1.4142135623730951},"796":{"tf":2.449489742783178},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"874":{"tf":1.0},"926":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"987":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"616":{"tf":1.0},"709":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"u":{"df":2,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"382":{"tf":1.0},"532":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"411":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"400":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"522":{"tf":1.0}},"u":{"df":2,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1353":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"1001":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1233":{"tf":1.0},"1258":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1410":{"tf":1.0},"143":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1505":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"68":{"tf":1.0},"773":{"tf":1.0},"976":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":8,"docs":{"1010":{"tf":1.0},"1505":{"tf":1.0},"1510":{"tf":1.0},"585":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"978":{"tf":1.7320508075688772},"984":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1154":{"tf":1.0},"1158":{"tf":1.0},"1512":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":4,"docs":{"1358":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"836":{"tf":1.0}}},"l":{"df":12,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1491":{"tf":1.0},"262":{"tf":1.0},"46":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"744":{"tf":1.0},"759":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"761":{"tf":1.0},"767":{"tf":1.0}},"g":{"df":144,"docs":{"107":{"tf":1.0},"1161":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"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},"1256":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"1399":{"tf":1.0},"140":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"287":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"500":{"tf":1.0},"547":{"tf":1.4142135623730951},"589":{"tf":1.0},"619":{"tf":1.4142135623730951},"620":{"tf":1.7320508075688772},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"758":{"tf":1.0},"759":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"d":{"df":7,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"810":{"tf":1.0},"812":{"tf":1.0}}},"df":281,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1020":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1038":{"tf":1.4142135623730951},"1042":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"106":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1145":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"1158":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":2.23606797749979},"1163":{"tf":1.0},"1168":{"tf":1.4142135623730951},"117":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1203":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1222":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.7320508075688772},"129":{"tf":1.0},"1292":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1304":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1348":{"tf":1.0},"1371":{"tf":1.0},"139":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1421":{"tf":1.0},"1430":{"tf":1.0},"1436":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1453":{"tf":2.0},"1457":{"tf":1.0},"1472":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"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.4142135623730951},"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.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.0},"359":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"370":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"433":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"510":{"tf":1.4142135623730951},"516":{"tf":1.0},"535":{"tf":1.0},"545":{"tf":4.123105625617661},"546":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"581":{"tf":1.0},"586":{"tf":1.0},"593":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.0},"657":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"673":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"735":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.0},"790":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"82":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"93":{"tf":2.0},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772},"97":{"tf":2.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"991":{"tf":1.0},"996":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":6,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"759":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"925":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":8,"docs":{"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1262":{"tf":1.0},"259":{"tf":1.0},"332":{"tf":1.0},"416":{"tf":1.4142135623730951},"453":{"tf":1.0},"534":{"tf":1.4142135623730951},"557":{"tf":1.0},"650":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"138":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"950":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"389":{"tf":1.0},"400":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":80,"docs":{"1130":{"tf":1.0},"1186":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1248":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"147":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"226":{"tf":1.0},"27":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"400":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"436":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903},"560":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.7320508075688772},"640":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":1.7320508075688772},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"756":{"tf":1.7320508075688772},"778":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.4142135623730951},"785":{"tf":2.0},"798":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":3.1622776601683795},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.4142135623730951},"84":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":2.0},"870":{"tf":1.0},"880":{"tf":1.7320508075688772},"883":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"913":{"tf":1.0},"941":{"tf":1.0},"950":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":6,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1372":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"0":{".":{"4":{".":{"0":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"911":{"tf":1.4142135623730951},"950":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1376":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"1405":{"tf":1.0},"1482":{"tf":1.0},"740":{"tf":2.449489742783178},"798":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1325":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951}}}}}}},"df":5,"docs":{"1482":{"tf":1.0},"1520":{"tf":1.0},"798":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":2,"docs":{"798":{"tf":1.0},"988":{"tf":1.0}}},"4":{"df":4,"docs":{"46":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"987":{"tf":1.0}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":145,"docs":{"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1007":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1126":{"tf":1.7320508075688772},"1127":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1166":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1214":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1263":{"tf":1.0},"1278":{"tf":2.23606797749979},"128":{"tf":2.23606797749979},"1290":{"tf":1.0},"130":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1352":{"tf":1.0},"1355":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1427":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1432":{"tf":1.0},"1474":{"tf":1.7320508075688772},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1515":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"261":{"tf":1.0},"278":{"tf":1.7320508075688772},"287":{"tf":1.0},"34":{"tf":1.0},"349":{"tf":1.0},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"626":{"tf":1.0},"631":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"654":{"tf":1.0},"66":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"743":{"tf":1.4142135623730951},"745":{"tf":1.7320508075688772},"746":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"778":{"tf":1.0},"827":{"tf":1.0},"842":{"tf":1.0},"87":{"tf":2.23606797749979},"896":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.0},"927":{"tf":1.7320508075688772},"929":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":2.6457513110645907},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":53,"docs":{"1000":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1055":{"tf":1.0},"1083":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1200":{"tf":1.0},"125":{"tf":1.0},"1297":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1369":{"tf":1.0},"1384":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1419":{"tf":1.0},"1441":{"tf":1.0},"1451":{"tf":1.0},"1475":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.4142135623730951},"528":{"tf":1.0},"599":{"tf":1.0},"604":{"tf":1.0},"687":{"tf":1.0},"705":{"tf":1.0},"719":{"tf":1.0},"739":{"tf":1.0},"746":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"892":{"tf":1.0},"893":{"tf":1.0},"897":{"tf":1.0},"976":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1446":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"902":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"899":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"900":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1446":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"0":{"df":1,"docs":{"1300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1449":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":40,"docs":{"1066":{"tf":1.4142135623730951},"1079":{"tf":1.0},"113":{"tf":2.0},"1159":{"tf":1.4142135623730951},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1215":{"tf":1.0},"125":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"1430":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.7320508075688772},"1512":{"tf":1.0},"160":{"tf":1.0},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"437":{"tf":1.4142135623730951},"563":{"tf":1.7320508075688772},"566":{"tf":1.0},"660":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":2.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"963":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":1,"docs":{"1048":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"1054":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":14,"docs":{"1324":{"tf":1.0},"1325":{"tf":1.0},"1330":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"733":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"554":{"tf":1.4142135623730951},"578":{"tf":1.7320508075688772}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"1497":{"tf":1.7320508075688772},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"297":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":180,"docs":{"1006":{"tf":1.0},"1008":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1214":{"tf":2.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1321":{"tf":1.0},"1324":{"tf":2.0},"1330":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":2.0},"1421":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"1473":{"tf":1.4142135623730951},"1493":{"tf":1.7320508075688772},"1494":{"tf":1.7320508075688772},"1503":{"tf":1.0},"1507":{"tf":1.0},"1529":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.7320508075688772},"206":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"28":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"402":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"520":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.4142135623730951},"697":{"tf":1.0},"725":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.7320508075688772},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"788":{"tf":1.0},"816":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.4142135623730951},"849":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.7320508075688772},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.7320508075688772},"942":{"tf":1.0},"943":{"tf":1.7320508075688772},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"957":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.0},"970":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"976":{"tf":1.7320508075688772},"979":{"tf":1.0},"980":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"997":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1365":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.7320508075688772},"598":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.7320508075688772}}}}}}}}}}}}},"df":0,"docs":{}},"df":283,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1007":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"105":{"tf":1.4142135623730951},"11":{"tf":1.0},"1142":{"tf":1.0},"1146":{"tf":1.0},"1149":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1227":{"tf":1.0},"1232":{"tf":2.0},"1238":{"tf":1.0},"1240":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"128":{"tf":3.1622776601683795},"1282":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1324":{"tf":3.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":2.6457513110645907},"1339":{"tf":1.4142135623730951},"1340":{"tf":2.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"136":{"tf":2.8284271247461903},"1365":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.7320508075688772},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1421":{"tf":3.1622776601683795},"1425":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"143":{"tf":2.0},"1436":{"tf":1.7320508075688772},"146":{"tf":1.0},"1460":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":2.0},"1503":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1526":{"tf":1.0},"1528":{"tf":2.0},"1529":{"tf":2.449489742783178},"1530":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"242":{"tf":2.8284271247461903},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":2.23606797749979},"277":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.7320508075688772},"34":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.7320508075688772},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"404":{"tf":1.7320508075688772},"410":{"tf":2.0},"415":{"tf":2.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":2.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":2.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":2.0},"490":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"527":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"555":{"tf":1.7320508075688772},"576":{"tf":1.0},"58":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"613":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.7320508075688772},"632":{"tf":1.7320508075688772},"638":{"tf":1.7320508075688772},"644":{"tf":2.0},"649":{"tf":2.0},"654":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"698":{"tf":1.7320508075688772},"704":{"tf":1.0},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"708":{"tf":2.23606797749979},"714":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":1.4142135623730951},"725":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":2.449489742783178},"795":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.4142135623730951},"833":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.4142135623730951},"87":{"tf":3.3166247903554},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":2.0},"937":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"94":{"tf":2.0},"940":{"tf":1.0},"941":{"tf":2.23606797749979},"942":{"tf":1.7320508075688772},"944":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":2.8284271247461903},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"676":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"367":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"1":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"617":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1436":{"tf":1.0},"43":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1151":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1352":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1185":{"tf":1.0},"1265":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"1151":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"456":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":6,"docs":{"1103":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1522":{"tf":2.0}}},"df":0,"docs":{}}},"df":148,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":2.23606797749979},"1002":{"tf":1.7320508075688772},"1003":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"1047":{"tf":2.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1098":{"tf":1.7320508075688772},"11":{"tf":1.0},"1114":{"tf":1.0},"1132":{"tf":1.4142135623730951},"1133":{"tf":1.4142135623730951},"1134":{"tf":1.4142135623730951},"1135":{"tf":1.7320508075688772},"115":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1206":{"tf":1.0},"1255":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1314":{"tf":1.7320508075688772},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1365":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1388":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":1.0},"1409":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1482":{"tf":2.449489742783178},"1502":{"tf":1.0},"1503":{"tf":2.23606797749979},"1515":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"199":{"tf":3.1622776601683795},"2":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"322":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"46":{"tf":2.0},"522":{"tf":1.0},"536":{"tf":1.0},"549":{"tf":1.0},"583":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"61":{"tf":2.0},"634":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0},"722":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":2.0},"744":{"tf":1.7320508075688772},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"776":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":1.0},"783":{"tf":1.0},"798":{"tf":2.23606797749979},"816":{"tf":1.7320508075688772},"836":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"874":{"tf":2.0},"894":{"tf":1.0},"895":{"tf":1.7320508075688772},"908":{"tf":1.0},"914":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"942":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":2.23606797749979},"988":{"tf":2.0},"989":{"tf":1.7320508075688772},"991":{"tf":1.7320508075688772},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":25,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"160":{"tf":1.0},"192":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"482":{"tf":1.0},"72":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"871":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"911":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"922":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0},"95":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1155":{"tf":1.0},"771":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"554":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1086":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1068":{"tf":1.0}}}}}},"p":{"c":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"911":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"976":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1515":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"1194":{"tf":1.0},"1439":{"tf":1.0},"1506":{"tf":1.0},"243":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"892":{"tf":1.0},"899":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1087":{"tf":1.0},"1451":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1340":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1340":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1340":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":2.0},"171":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"1":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"294":{"tf":1.0},"43":{"tf":1.0}}}},"df":10,"docs":{"1140":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951},"661":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":43,"docs":{"1042":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1262":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1451":{"tf":1.4142135623730951},"321":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"964":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1405":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1405":{"tf":3.605551275463989}},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"1212":{"tf":1.0},"1213":{"tf":2.23606797749979},"1217":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.4142135623730951},"383":{"tf":1.0},"608":{"tf":1.4142135623730951},"617":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1437":{"tf":1.0},"1454":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"941":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"17":{"tf":1.0},"223":{"tf":1.0},"759":{"tf":1.0},"788":{"tf":1.0},"831":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"863":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"232":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"93":{"tf":1.0},"960":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"586":{"tf":1.7320508075688772},"911":{"tf":1.0},"934":{"tf":1.0}},"m":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"855":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1209":{"tf":1.0},"1399":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.4142135623730951},"831":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"1088":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1194":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0},"127":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.0},"1484":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"394":{"tf":1.4142135623730951},"43":{"tf":1.0},"506":{"tf":1.0},"519":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"628":{"tf":1.4142135623730951},"696":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0},"984":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1286":{"tf":1.0},"242":{"tf":1.0},"479":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":100,"docs":{"1080":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1506":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"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.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"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},"231":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"267":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"327":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"405":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"555":{"tf":1.0},"617":{"tf":1.0},"639":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"664":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.4142135623730951},"808":{"tf":2.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"828":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"857":{"tf":1.0},"87":{"tf":1.4142135623730951},"885":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"932":{"tf":1.4142135623730951},"940":{"tf":1.0},"944":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":32,"docs":{"1115":{"tf":1.0},"1144":{"tf":1.0},"1248":{"tf":1.4142135623730951},"13":{"tf":1.0},"1317":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1397":{"tf":1.0},"140":{"tf":1.4142135623730951},"1417":{"tf":1.0},"1427":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"359":{"tf":1.0},"548":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"773":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.0},"821":{"tf":1.4142135623730951},"833":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"841":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":7,"docs":{"1021":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.4142135623730951},"519":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1524":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"528":{"tf":1.0},"541":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"705":{"tf":1.0},"718":{"tf":1.4142135623730951},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"1183":{"tf":1.7320508075688772},"669":{"tf":1.0},"670":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"317":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":15,"docs":{"116":{"tf":1.0},"1422":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1489":{"tf":1.4142135623730951},"226":{"tf":1.0},"302":{"tf":1.0},"536":{"tf":1.0},"661":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}},"r":{"df":3,"docs":{"1206":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1286":{"tf":1.0},"1292":{"tf":1.0},"1465":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"941":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"322":{"tf":1.0},"549":{"tf":1.0}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1122":{"tf":1.0},"1169":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"822":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"z":{"df":0,"docs":{},"f":{"df":1,"docs":{"1095":{"tf":1.0}}}}},"y":{"%":{"df":0,"docs":{},"m":{"%":{"d":{")":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1097":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"325":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"1175":{"tf":2.23606797749979},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"181":{"tf":2.8284271247461903},"756":{"tf":2.6457513110645907},"757":{"tf":1.4142135623730951},"759":{"tf":1.7320508075688772},"778":{"tf":1.7320508075688772},"779":{"tf":2.0},"782":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"811":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1456":{"tf":1.0}}}},"r":{"df":4,"docs":{"17":{"tf":1.0},"228":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"760":{"tf":1.0}}}},"o":{"d":{"df":6,"docs":{"1179":{"tf":1.0},"1349":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1300":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"976":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.0}}},"2":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":9,"docs":{"1168":{"tf":1.0},"1202":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"822":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.0}}},"2":{"df":9,"docs":{"1169":{"tf":1.0},"1203":{"tf":1.0},"1285":{"tf":1.0},"1313":{"tf":1.0},"823":{"tf":1.0},"85":{"tf":1.0},"914":{"tf":1.0},"95":{"tf":1.0},"963":{"tf":1.0}}},"3":{"df":9,"docs":{"1170":{"tf":1.0},"1204":{"tf":1.0},"1286":{"tf":1.0},"1314":{"tf":1.0},"824":{"tf":1.0},"86":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.0},"964":{"tf":1.0}}},"4":{"df":7,"docs":{"1171":{"tf":1.0},"1205":{"tf":1.0},"1287":{"tf":1.0},"1315":{"tf":1.0},"825":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":3,"docs":{"826":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.0}}},"a":{"2":{"a":{"df":1,"docs":{"1211":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"489":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1158":{"tf":1.0},"156":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0}}}}}}},"d":{"d":{"df":1,"docs":{"1212":{"tf":1.0}}},"df":5,"docs":{"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"258":{"tf":1.0},"797":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1118":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.0},"1069":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"918":{"tf":1.0},"934":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"95":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"518":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":104,"docs":{"0":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.0},"1236":{"tf":1.0},"1246":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1397":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"1499":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"40":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"673":{"tf":1.0},"72":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"76":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"829":{"tf":1.0},"84":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"986":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"523":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"378":{"tf":1.0},"611":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.0},"984":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"142":{"tf":1.0},"1423":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1487":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"858":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"i":{"df":3,"docs":{"153":{"tf":1.0},"33":{"tf":1.0},"765":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":16,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1040":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"341":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1485":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"241":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":20,"docs":{"1084":{"tf":1.0},"1400":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"257":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"513":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"685":{"tf":1.0},"690":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"349":{"tf":1.0},"507":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1116":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"403":{"tf":1.0},"404":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1176":{"tf":1.0},"729":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"1121":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"823":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1426":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"193":{"tf":1.0},"269":{"tf":1.0},"371":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"635":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":1,"docs":{"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"df":6,"docs":{"1288":{"tf":1.0},"1403":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"916":{"tf":1.4142135623730951},"966":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1442":{"tf":1.0},"503":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1486":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1055":{"tf":1.0},"108":{"tf":1.0},"1451":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1287":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"989":{"tf":1.0}}}},"df":5,"docs":{"1064":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1296":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1456":{"tf":1.0},"1489":{"tf":1.0},"1511":{"tf":1.0},"285":{"tf":1.0},"337":{"tf":1.0},"564":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"1162":{"tf":1.0},"1249":{"tf":1.0},"1333":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"943":{"tf":1.0}}},"i":{"c":{"df":20,"docs":{"1111":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"1425":{"tf":1.0},"188":{"tf":1.0},"216":{"tf":1.0},"334":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0},"485":{"tf":1.0},"576":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1315":{"tf":1.0},"1338":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1453":{"tf":1.0},"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"62":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1456":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"353":{"tf":1.0},"585":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1255":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1287":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1296":{"tf":1.0},"304":{"tf":1.0}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1103":{"tf":1.0},"1307":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1185":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1083":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1165":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1169":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"730":{"tf":1.0},"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"972":{"tf":1.0},"988":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1509":{"tf":1.0},"209":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"973":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"1363":{"tf":1.0},"1386":{"tf":1.0},"1498":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"408":{"tf":1.0},"642":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1529":{"tf":1.0},"967":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":2,"docs":{"1157":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"516":{"tf":1.0},"693":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"1229":{"tf":1.0},"1317":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"4":{"tf":1.0},"70":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"907":{"tf":1.0},"996":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.0}}}},"df":17,"docs":{"1189":{"tf":1.0},"1202":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1282":{"tf":1.0},"1285":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"474":{"tf":1.0},"667":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"935":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1073":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1345":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1304":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":18,"docs":{"120":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1412":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"234":{"tf":1.0},"979":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"140":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"1528":{"tf":1.0},"207":{"tf":1.0},"350":{"tf":1.0},"451":{"tf":1.0},"582":{"tf":1.0},"678":{"tf":1.0},"724":{"tf":1.0},"976":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"19":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"1503":{"tf":1.0},"16":{"tf":1.0},"353":{"tf":1.0},"585":{"tf":1.0},"66":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1078":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"1144":{"tf":1.0},"1312":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1437":{"tf":1.0},"223":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"616":{"tf":1.0},"654":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"902":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"733":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"501":{"tf":1.0},"741":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1052":{"tf":1.0},"983":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"455":{"tf":1.0}}}}}},"d":{"a":{"df":2,"docs":{"552":{"tf":1.0},"579":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1119":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1413":{"tf":1.0},"436":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"542":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":94,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1277":{"tf":1.0},"1341":{"tf":1.0},"1343":{"tf":1.0},"1412":{"tf":1.0},"1434":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"1509":{"tf":1.0},"160":{"tf":1.0},"244":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"435":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"658":{"tf":1.0},"661":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"731":{"tf":1.0},"737":{"tf":1.0},"85":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1033":{"tf":1.0},"1039":{"tf":1.0},"1049":{"tf":1.0},"1062":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1104":{"tf":1.0},"1279":{"tf":1.0},"1455":{"tf":1.0},"247":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"942":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1121":{"tf":1.0},"746":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"517":{"tf":1.0},"694":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"157":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1279":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"194":{"tf":1.0},"33":{"tf":1.0},"476":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":4,"docs":{"1173":{"tf":1.0},"217":{"tf":1.0},"422":{"tf":1.0},"523":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1130":{"tf":1.0},"1213":{"tf":1.0},"1397":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"876":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"819":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"22":{"tf":1.0},"260":{"tf":1.0},"329":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"455":{"tf":1.0},"515":{"tf":1.0},"557":{"tf":1.0},"692":{"tf":1.0},"756":{"tf":1.0},"777":{"tf":1.0},"807":{"tf":1.0},"912":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":44,"docs":{"1110":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"134":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1374":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1419":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"175":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"388":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"418":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"640":{"tf":1.0},"652":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.0},"76":{"tf":1.0},"768":{"tf":1.0},"77":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"845":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}},"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":5,"docs":{"391":{"tf":1.0},"625":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1099":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"1014":{"tf":1.0},"1463":{"tf":1.0},"1514":{"tf":1.0},"158":{"tf":1.0},"341":{"tf":1.0},"56":{"tf":1.0},"568":{"tf":1.0},"781":{"tf":1.0},"913":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":2,"docs":{"1254":{"tf":1.0},"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":17,"docs":{"1108":{"tf":1.0},"1110":{"tf":1.0},"1124":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"392":{"tf":1.0},"495":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"1077":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1093":{"tf":1.0},"34":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"655":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"1293":{"tf":1.0},"1496":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"679":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"283":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.0},"565":{"tf":1.0},"928":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1120":{"tf":1.0},"151":{"tf":1.0},"377":{"tf":1.0},"610":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1506":{"tf":1.0},"545":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1444":{"tf":1.0},"314":{"tf":1.0},"346":{"tf":1.0},"554":{"tf":1.0},"573":{"tf":1.0},"928":{"tf":1.0},"968":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"979":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"220":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1028":{"tf":1.4142135623730951},"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1059":{"tf":1.0},"1228":{"tf":1.0},"1462":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1249":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"n":{"df":27,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1473":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"165":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.0},"763":{"tf":1.0},"896":{"tf":1.0},"943":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"1474":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":98,"docs":{"1115":{"tf":1.0},"1142":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"133":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.0},"135":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1364":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1387":{"tf":1.0},"1390":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1425":{"tf":1.0},"1478":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"774":{"tf":1.0},"780":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"80":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"978":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":4,"docs":{"1016":{"tf":1.4142135623730951},"1515":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":5,"docs":{"185":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"600":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1091":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"194":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1199":{"tf":1.0},"1497":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"815":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1149":{"tf":1.0},"1243":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"746":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1066":{"tf":1.0},"113":{"tf":1.0},"1159":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1430":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.0},"577":{"tf":1.0},"660":{"tf":1.0},"903":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":40,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1344":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1457":{"tf":1.0},"1459":{"tf":1.0},"1463":{"tf":1.0},"1468":{"tf":1.0},"1473":{"tf":1.0},"1478":{"tf":1.0},"1483":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1495":{"tf":1.0},"286":{"tf":1.0},"352":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"477":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"584":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"941":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1192":{"tf":1.0},"1205":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1115":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":46,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1084":{"tf":1.0},"1128":{"tf":1.0},"1185":{"tf":1.0},"1206":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1317":{"tf":1.0},"1337":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1437":{"tf":1.0},"1454":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"356":{"tf":1.0},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"590":{"tf":1.0},"616":{"tf":1.0},"654":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"902":{"tf":1.0},"997":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"615":{"tf":1.0},"724":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1524":{"tf":1.0},"1526":{"tf":1.0},"400":{"tf":1.0},"634":{"tf":1.0}}}},"t":{"df":4,"docs":{"1345":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":2,"docs":{"1234":{"tf":1.0},"318":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1267":{"tf":1.0}}}},"df":6,"docs":{"1354":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"1092":{"tf":1.0},"412":{"tf":1.0},"646":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1309":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"1422":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1259":{"tf":1.0},"1260":{"tf":1.0},"1469":{"tf":1.0},"1474":{"tf":1.0},"1480":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"253":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1381":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"108":{"tf":1.0},"1118":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1259":{"tf":1.0},"459":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"1117":{"tf":1.0},"1134":{"tf":1.0},"1309":{"tf":1.0},"181":{"tf":1.0},"398":{"tf":1.0},"46":{"tf":1.0},"632":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"777":{"tf":1.0},"781":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"1090":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1446":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"659":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":7,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1097":{"tf":1.0},"1101":{"tf":1.0},"1105":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"826":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1320":{"tf":1.0},"148":{"tf":1.0},"23":{"tf":1.0},"72":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1160":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"292":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1271":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"1184":{"tf":1.0},"1247":{"tf":1.0},"1265":{"tf":1.0},"456":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1044":{"tf":1.0},"1431":{"tf":1.0},"1465":{"tf":1.0},"1471":{"tf":1.0},"1519":{"tf":1.0},"235":{"tf":1.0},"495":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"721":{"tf":1.0},"745":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1462":{"tf":1.0},"1464":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1484":{"tf":1.0},"252":{"tf":1.0},"351":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"1057":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"416":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"650":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"1400":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"234":{"tf":1.0},"843":{"tf":1.0},"924":{"tf":1.0}}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"119":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1408":{"tf":1.0},"1428":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":2,"docs":{"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1117":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"954":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"1112":{"tf":1.0},"1502":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1182":{"tf":1.0},"329":{"tf":1.0},"5":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1073":{"tf":1.4142135623730951},"1207":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"l":{"df":24,"docs":{"1171":{"tf":1.0},"1280":{"tf":1.0},"1314":{"tf":1.0},"1344":{"tf":1.0},"1346":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"286":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"546":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"723":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"1046":{"tf":1.0},"227":{"tf":1.0},"417":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1442":{"tf":1.0},"181":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"1411":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"871":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.0},"725":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1314":{"tf":1.0},"199":{"tf":1.0},"798":{"tf":1.0},"998":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1149":{"tf":1.0},"1272":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.0},"1377":{"tf":1.0},"1379":{"tf":1.0},"1525":{"tf":1.0},"331":{"tf":1.0},"434":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"537":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1034":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1071":{"tf":1.0}}}},"d":{"df":2,"docs":{"1114":{"tf":1.0},"587":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1208":{"tf":1.0},"1225":{"tf":1.0},"1333":{"tf":1.0},"233":{"tf":1.0},"41":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"778":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1204":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"440":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1308":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1123":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"df":8,"docs":{"121":{"tf":1.0},"1225":{"tf":1.0},"1258":{"tf":1.0},"283":{"tf":1.0},"387":{"tf":1.0},"621":{"tf":1.0},"673":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"1223":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"514":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"691":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":26,"docs":{"1147":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.0},"1221":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1357":{"tf":1.0},"1380":{"tf":1.0},"1396":{"tf":1.0},"1447":{"tf":1.0},"1523":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"330":{"tf":1.0},"383":{"tf":1.0},"422":{"tf":1.0},"503":{"tf":1.0},"617":{"tf":1.0},"663":{"tf":1.0},"674":{"tf":1.0},"914":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1211":{"tf":1.0},"1213":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1461":{"tf":1.0},"1465":{"tf":1.0},"1471":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1131":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1168":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1528":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"582":{"tf":1.0},"586":{"tf":1.0},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}},"j":{"a":{"c":{"df":44,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0},"12":{"tf":1.0},"1212":{"tf":1.0},"1225":{"tf":1.0},"1258":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"436":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"506":{"tf":1.0},"6":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"71":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"714":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1239":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1237":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1240":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"516":{"tf":1.0},"558":{"tf":1.0},"693":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.0},"538":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"539":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}}},"df":1,"docs":{"670":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"1287":{"tf":1.0},"1479":{"tf":1.0},"176":{"tf":1.0},"510":{"tf":1.0},"728":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"581":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":43,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1006":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1163":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1253":{"tf":1.0},"1259":{"tf":1.0},"1285":{"tf":1.0},"1436":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"657":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0},"993":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1243":{"tf":1.0}}}}}},"o":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1181":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"1276":{"tf":1.0},"182":{"tf":1.0},"297":{"tf":1.0},"500":{"tf":1.0},"711":{"tf":1.0},"780":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"977":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"257":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"1425":{"tf":1.0},"214":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"855":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"863":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"265":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"561":{"tf":1.0},"622":{"tf":1.0},"659":{"tf":1.0},"904":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"734":{"tf":1.0},"750":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.0},"830":{"tf":1.0},"888":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"1487":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1199":{"tf":1.0},"1205":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1439":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"449":{"tf":1.0},"502":{"tf":1.0},"899":{"tf":1.0},"966":{"tf":1.0}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"241":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.0},"130":{"tf":1.0},"1477":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1335":{"tf":1.0},"447":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"658":{"tf":1.0},"923":{"tf":1.0},"947":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"112":{"tf":1.0},"150":{"tf":1.0},"463":{"tf":1.0},"676":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1286":{"tf":1.0},"982":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1148":{"tf":1.0},"1152":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1207":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1400":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.0},"383":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"540":{"tf":1.0},"617":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"684":{"tf":1.0},"717":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1088":{"tf":1.0},"340":{"tf":1.0},"567":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"820":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1184":{"tf":1.0},"1186":{"tf":1.0},"197":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"558":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1440":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1275":{"tf":1.0},"1278":{"tf":1.0},"1286":{"tf":1.0},"1495":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"484":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"1047":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":1.0},"1456":{"tf":1.0},"1502":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1508":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.0},"1523":{"tf":1.0},"1525":{"tf":1.0},"1527":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"264":{"tf":1.0},"840":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1467":{"tf":1.0},"1482":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":4,"docs":{"1460":{"tf":1.0},"1470":{"tf":1.0},"319":{"tf":1.0},"490":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"1150":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"506":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1197":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"446":{"tf":1.0}},"l":{"df":10,"docs":{"1082":{"tf":1.0},"1173":{"tf":1.0},"1193":{"tf":1.0},"1214":{"tf":1.0},"248":{"tf":1.0},"422":{"tf":1.0},"881":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"329":{"tf":1.0},"351":{"tf":1.0},"515":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"711":{"tf":1.0},"717":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"1003":{"tf":1.0},"1206":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1397":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"226":{"tf":1.0},"35":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1277":{"tf":1.0},"1343":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"487":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1203":{"tf":1.0}}}}}}},"w":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1340":{"tf":1.0},"1507":{"tf":1.0},"401":{"tf":1.0},"635":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"1261":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":17,"docs":{"1127":{"tf":1.0},"1156":{"tf":1.0},"1179":{"tf":1.0},"1182":{"tf":1.0},"1218":{"tf":1.0},"1266":{"tf":1.0},"1273":{"tf":1.0},"1301":{"tf":1.0},"1348":{"tf":1.0},"1401":{"tf":1.0},"1517":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"770":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"915":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"581":{"tf":1.0}}}}}},"df":5,"docs":{"1085":{"tf":1.0},"110":{"tf":1.0},"1505":{"tf":1.0},"450":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"324":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1438":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"898":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1221":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}}}}},"r":{"df":8,"docs":{"1142":{"tf":1.0},"1322":{"tf":1.0},"1331":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"171":{"tf":1.0},"409":{"tf":1.0},"643":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1100":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"107":{"tf":1.0},"1227":{"tf":1.0},"1428":{"tf":1.0},"179":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"64":{"tf":1.0},"722":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"880":{"tf":1.0},"891":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1286":{"tf":1.0},"479":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"439":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"1433":{"tf":1.0},"1497":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0},"393":{"tf":1.0},"627":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":19,"docs":{"1017":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1109":{"tf":1.0},"120":{"tf":1.0},"1222":{"tf":1.0},"1263":{"tf":1.0},"1398":{"tf":1.0},"1435":{"tf":1.0},"231":{"tf":1.0},"291":{"tf":1.0},"454":{"tf":1.0},"482":{"tf":1.0},"664":{"tf":1.0},"751":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"1246":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"328":{"tf":1.0},"556":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"509":{"tf":1.0},"656":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"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":2,"docs":{"1197":{"tf":1.0},"446":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1466":{"tf":1.0},"963":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1133":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"1122":{"tf":1.0},"1161":{"tf":1.0},"1275":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"499":{"tf":1.0},"674":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"489":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1048":{"tf":1.0},"1100":{"tf":1.0},"206":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1007":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"22":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}},"p":{"df":1,"docs":{"551":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"109":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.0},"580":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1071":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1012":{"tf":1.0},"1254":{"tf":1.0},"1515":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":3,"docs":{"1077":{"tf":1.0},"1296":{"tf":1.0},"1299":{"tf":1.0}}}}}}}}}}},"q":{"2":{"0":{"2":{"5":{"df":3,"docs":{"1034":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1028":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"1011":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1166":{"tf":1.0},"992":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1338":{"tf":1.0},"1389":{"tf":1.0},"210":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"920":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1284":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"315":{"tf":1.0},"680":{"tf":1.0},"908":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"562":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1122":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"755":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1253":{"tf":1.0},"1276":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1173":{"tf":1.0},"422":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}},"n":{"df":1,"docs":{"97":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1022":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.0},"710":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"704":{"tf":1.0},"710":{"tf":1.0}}}}}},"df":1,"docs":{"1259":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"527":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"843":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"10":{"tf":1.0},"1126":{"tf":1.0},"1155":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1217":{"tf":1.0},"1269":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1371":{"tf":1.0},"1402":{"tf":1.0},"1517":{"tf":1.0},"548":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"769":{"tf":1.0},"78":{"tf":1.0},"905":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"1254":{"tf":1.0},"1515":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1083":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":1,"docs":{"523":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"1178":{"tf":1.0},"122":{"tf":1.0},"1318":{"tf":1.0},"149":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"889":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"1160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1131":{"tf":1.0},"125":{"tf":1.0}},"i":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"103":{"tf":1.0},"1165":{"tf":1.0},"149":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":9,"docs":{"1003":{"tf":1.0},"1004":{"tf":1.0},"1129":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"1475":{"tf":1.0},"236":{"tf":1.0},"252":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1096":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1318":{"tf":1.0},"1407":{"tf":1.0},"1434":{"tf":1.0},"185":{"tf":1.0},"360":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"513":{"tf":1.0},"594":{"tf":1.0},"685":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0},"977":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":2,"docs":{"1208":{"tf":1.0},"783":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"809":{"tf":1.0},"817":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"934":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"1146":{"tf":1.0},"1265":{"tf":1.0},"413":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"647":{"tf":1.0},"676":{"tf":1.0},"955":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"1493":{"tf":1.0},"414":{"tf":1.0},"488":{"tf":1.0},"648":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":1.0},"1476":{"tf":1.0},"181":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"46":{"tf":1.0},"549":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.0},"890":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"575":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1436":{"tf":1.0},"991":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"1494":{"tf":1.0},"221":{"tf":1.0},"415":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"511":{"tf":1.0},"649":{"tf":1.0},"957":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1313":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1016":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"542":{"tf":1.0},"543":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1204":{"tf":1.0},"926":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"1276":{"tf":1.0},"237":{"tf":1.0},"486":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"s":{"a":{"df":3,"docs":{"1022":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"743":{"tf":1.0},"827":{"tf":1.0},"978":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"1215":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"1084":{"tf":1.0},"1154":{"tf":1.0},"1160":{"tf":1.0},"1216":{"tf":1.0},"257":{"tf":1.0},"4":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0}}}}}},"s":{"3":{"df":10,"docs":{"1064":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.0},"726":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"308":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"273":{"tf":1.0},"394":{"tf":1.0},"628":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1010":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":55,"docs":{"1081":{"tf":1.0},"1108":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":1.0},"1132":{"tf":1.0},"1300":{"tf":1.0},"1427":{"tf":1.0},"1480":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"888":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1337":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"1005":{"tf":1.0},"1008":{"tf":1.0},"1049":{"tf":1.0},"1085":{"tf":1.0},"1104":{"tf":1.0},"1170":{"tf":1.0},"1193":{"tf":1.0},"1205":{"tf":1.0},"1252":{"tf":1.0},"1283":{"tf":1.0},"1400":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"205":{"tf":1.0},"247":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"56":{"tf":1.0},"681":{"tf":1.0},"850":{"tf":1.0},"897":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"930":{"tf":1.0},"942":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"1107":{"tf":1.0},"1136":{"tf":1.0},"1172":{"tf":1.0},"1210":{"tf":1.0},"1294":{"tf":1.0},"1316":{"tf":1.0},"1347":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"1406":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"385":{"tf":1.0},"547":{"tf":1.0},"619":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"909":{"tf":1.0},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1192":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1145":{"tf":1.0},"1202":{"tf":1.0},"1285":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"473":{"tf":1.0}}}},"df":22,"docs":{"1188":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.0},"1207":{"tf":1.0},"1262":{"tf":1.0},"1281":{"tf":1.0},"1285":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1524":{"tf":1.0},"331":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"666":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"1404":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"1449":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"938":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":20,"docs":{"1078":{"tf":1.0},"1139":{"tf":1.0},"1224":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1349":{"tf":1.0},"1369":{"tf":1.0},"1372":{"tf":1.0},"1392":{"tf":1.0},"311":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"1518":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"1045":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"58":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"782":{"tf":1.0},"920":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"990":{"tf":1.0},"995":{"tf":1.0}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":47,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1231":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1362":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"641":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"656":{"tf":1.0},"676":{"tf":1.0},"73":{"tf":1.0},"824":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"921":{"tf":1.0},"956":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"379":{"tf":1.0},"612":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"357":{"tf":1.0},"359":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"1256":{"tf":1.0},"842":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"976":{"tf":1.0}}}},"v":{"df":1,"docs":{"21":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":8,"docs":{"1452":{"tf":1.0},"164":{"tf":1.0},"235":{"tf":1.0},"398":{"tf":1.0},"632":{"tf":1.0},"757":{"tf":1.0},"808":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"0":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"1178":{"tf":1.0},"122":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"814":{"tf":1.0},"824":{"tf":1.0},"889":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1209":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"833":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0}}},"u":{"df":9,"docs":{"1000":{"tf":1.0},"1230":{"tf":1.0},"1363":{"tf":1.0},"1386":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"408":{"tf":1.0},"642":{"tf":1.0},"855":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1112":{"tf":1.4142135623730951},"117":{"tf":1.0},"1261":{"tf":1.0},"145":{"tf":1.0},"1510":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"88":{"tf":1.0},"994":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"1054":{"tf":1.0},"1057":{"tf":1.0},"1064":{"tf":1.0},"1073":{"tf":1.0},"1077":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"1090":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1453":{"tf":1.0},"1456":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1511":{"tf":1.0},"1522":{"tf":1.0},"161":{"tf":1.0},"285":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"564":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1312":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"947":{"tf":1.0},"950":{"tf":1.0},"998":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1135":{"tf":1.0},"1308":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"417":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":24,"docs":{"1045":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1111":{"tf":1.0},"1186":{"tf":1.0},"1228":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1290":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"1002":{"tf":1.0},"1015":{"tf":1.0},"109":{"tf":1.0},"1181":{"tf":1.0},"1264":{"tf":1.0},"19":{"tf":1.0},"332":{"tf":1.0},"544":{"tf":1.0},"57":{"tf":1.0},"587":{"tf":1.0},"959":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"1206":{"tf":1.0},"1397":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"338":{"tf":1.0},"565":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1081":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":28,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"196":{"tf":1.0},"225":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1153":{"tf":1.0},"1159":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1391":{"tf":1.0},"1500":{"tf":1.0},"340":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"567":{"tf":1.0},"588":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1310":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"287":{"tf":1.0},"726":{"tf":1.0},"881":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"917":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1078":{"tf":1.0},"1320":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1477":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"931":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.0}}}},"l":{"df":3,"docs":{"1203":{"tf":1.0},"1284":{"tf":1.0},"927":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"863":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":9,"docs":{"1165":{"tf":1.0},"1185":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"1400":{"tf":1.0},"684":{"tf":1.0},"847":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"1441":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.0}}},"k":{"df":2,"docs":{"209":{"tf":1.0},"837":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1403":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"995":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"1152":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"964":{"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":10,"docs":{"114":{"tf":1.0},"1220":{"tf":1.0},"1257":{"tf":1.0},"1291":{"tf":1.0},"1527":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0},"975":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"24":{"tf":1.0},"248":{"tf":1.0},"919":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0},"998":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":15,"docs":{"1279":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"260":{"tf":1.0},"377":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"587":{"tf":1.0},"610":{"tf":1.0},"725":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"833":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.0},"354":{"tf":1.0},"544":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1345":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1141":{"tf":1.0},"505":{"tf":1.0},"684":{"tf":1.0},"812":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"1472":{"tf":1.0},"202":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1420":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"271":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"796":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"1001":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"978":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"118":{"tf":1.0},"1256":{"tf":1.0},"386":{"tf":1.0},"458":{"tf":1.0},"620":{"tf":1.0}}}},"df":37,"docs":{"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.0},"1114":{"tf":1.0},"1116":{"tf":1.0},"1203":{"tf":1.0},"1284":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"212":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"593":{"tf":1.0},"735":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"416":{"tf":1.0},"534":{"tf":1.0},"650":{"tf":1.0}}}}}},"v":{"0":{".":{"6":{".":{"0":{"df":2,"docs":{"82":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"1116":{"tf":1.0},"1119":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1278":{"tf":1.0},"1427":{"tf":1.0},"1474":{"tf":1.0},"1480":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"278":{"tf":1.0},"491":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"1000":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1066":{"tf":1.0},"113":{"tf":1.0},"1159":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1430":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"903":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"789":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1497":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":31,"docs":{"1214":{"tf":1.0},"1246":{"tf":1.0},"1260":{"tf":1.0},"1315":{"tf":1.0},"1334":{"tf":1.0},"1339":{"tf":1.0},"1469":{"tf":1.0},"1473":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1529":{"tf":1.0},"165":{"tf":1.0},"188":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"402":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"636":{"tf":1.0},"763":{"tf":1.0},"846":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"989":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"380":{"tf":1.0},"613":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"1196":{"tf":1.0},"1232":{"tf":1.0},"128":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1352":{"tf":1.0},"136":{"tf":1.0},"1375":{"tf":1.0},"1421":{"tf":1.0},"143":{"tf":1.0},"1436":{"tf":1.0},"1499":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"327":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"555":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.0},"101":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1314":{"tf":1.0},"1409":{"tf":1.0},"1482":{"tf":1.0},"1503":{"tf":1.0},"199":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"740":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"895":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"998":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"185":{"tf":1.0},"43":{"tf":1.0},"978":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"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":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1262":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"394":{"tf":1.0},"628":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"1080":{"tf":1.0},"1177":{"tf":1.0},"1426":{"tf":1.0},"173":{"tf":1.0},"200":{"tf":1.0},"267":{"tf":1.0},"31":{"tf":1.0},"405":{"tf":1.0},"424":{"tf":1.0},"639":{"tf":1.0},"655":{"tf":1.0},"668":{"tf":1.0},"793":{"tf":1.0},"825":{"tf":1.0},"87":{"tf":1.0},"932":{"tf":1.0},"944":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"1248":{"tf":1.0},"1327":{"tf":1.0},"1330":{"tf":1.0},"140":{"tf":1.0},"1427":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"821":{"tf":1.0},"88":{"tf":1.0}}}}}}},"l":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"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/jacs/docs/jacsbook/book/searchindex.json b/jacs/docs/jacsbook/book/searchindex.json
index 048f6bf82..eafc66ff5 100644
--- a/jacs/docs/jacsbook/book/searchindex.json
+++ b/jacs/docs/jacsbook/book/searchindex.json
@@ -1 +1 @@
-{"doc_urls":["index.html#jacs-json-agent-communication-standard","index.html#what-is-jacs","index.html#key-features","index.html#available-implementations","index.html#-rust-core-library--cli","index.html#-nodejs-haiaijacs","index.html#-python-jacs","index.html#quick-start","index.html#rust-cli","index.html#nodejs","index.html#python","index.html#when-to-use-jacs","index.html#why-jacs","index.html#--agent-focused-design","index.html#--production-ready","index.html#--future-proof-security","index.html#--universal-compatibility","index.html#--flexible-integration","index.html#getting-started","index.html#community-and-support","getting-started/what-is-jacs.html#what-is-jacs","getting-started/what-is-jacs.html#the-problem-jacs-solves","getting-started/what-is-jacs.html#jacs-core-philosophy","getting-started/what-is-jacs.html#--agent-first-design","getting-started/what-is-jacs.html#--trust-through-cryptography","getting-started/what-is-jacs.html#--standards-based","getting-started/what-is-jacs.html#key-concepts","getting-started/what-is-jacs.html#agents","getting-started/what-is-jacs.html#documents","getting-started/what-is-jacs.html#tasks","getting-started/what-is-jacs.html#agreements","getting-started/what-is-jacs.html#how-jacs-works","getting-started/what-is-jacs.html#real-world-examples","getting-started/what-is-jacs.html#--ai-content-pipeline","getting-started/what-is-jacs.html#--data-processing-workflow","getting-started/what-is-jacs.html#--multi-agent-analysis","getting-started/what-is-jacs.html#benefits-over-alternatives","getting-started/what-is-jacs.html#when-to-use-jacs","getting-started/what-is-jacs.html#next-steps","getting-started/concepts.html#core-concepts","getting-started/concepts.html#agents","getting-started/concepts.html#agent-identity","getting-started/concepts.html#agent-lifecycle","getting-started/concepts.html#verification-load-vs-verify_standalone","getting-started/concepts.html#documents","getting-started/concepts.html#document-structure","getting-started/concepts.html#required-jacs-fields","getting-started/concepts.html#document-types","getting-started/concepts.html#tasks","getting-started/concepts.html#task-structure","getting-started/concepts.html#task-lifecycle","getting-started/concepts.html#task-components","getting-started/concepts.html#agreements","getting-started/concepts.html#agreement-structure","getting-started/concepts.html#agreement-process","getting-started/concepts.html#agreement-types","getting-started/concepts.html#cryptographic-security","getting-started/concepts.html#supported-algorithms","getting-started/concepts.html#signature-process","getting-started/concepts.html#key-management","getting-started/concepts.html#versioning-and-audit-trails","getting-started/concepts.html#version-management","getting-started/concepts.html#audit-trail-benefits","getting-started/concepts.html#storage-and-transport","getting-started/concepts.html#storage-options","getting-started/concepts.html#transport-mechanisms","getting-started/concepts.html#format-compatibility","getting-started/concepts.html#next-steps","getting-started/quick-start.html#quick-start-guide","getting-started/quick-start.html#choose-your-implementation","getting-started/quick-start.html#install-rust-cli","getting-started/quick-start.html#initialize-jacs","getting-started/quick-start.html#create-your-first-agent","getting-started/quick-start.html#create-and-sign-a-task","getting-started/quick-start.html#install-nodejs-package","getting-started/quick-start.html#basic-setup","getting-started/quick-start.html#create-agent-document","getting-started/quick-start.html#create-a-task","getting-started/quick-start.html#install-python-package","getting-started/quick-start.html#basic-setup-1","getting-started/quick-start.html#create-agent-document-1","getting-started/quick-start.html#create-a-task-1","getting-started/quick-start.html#non-interactive-agent-creation-v060","getting-started/quick-start.html#understanding-what-happened","getting-started/quick-start.html#1--agent-creation","getting-started/quick-start.html#2--configuration-setup","getting-started/quick-start.html#3--task-creation","getting-started/quick-start.html#verify-everything-works","getting-started/quick-start.html#next-steps-multi-agent-workflow","getting-started/quick-start.html#what-youve-accomplished","getting-started/quick-start.html#key-takeaways","getting-started/quick-start.html#where-to-go-next","getting-started/quick-start.html#troubleshooting","usecases.html#use-cases","usecases.html#1-verifying-that-json-came-from-a-specific-program","usecases.html#2-protecting-your-agents-identity-on-the-internet","usecases.html#3-registering-and-testing-your-agent-on-haiai","usecases.html#4-a-go-node-or-python-agent-with-strong-data-provenance","usecases.html#5-openclaw-moltyjacs-proving-your-agent-sent-a-message","rust/installation.html#installation","rust/installation.html#requirements","rust/installation.html#verify-rust-version","rust/installation.html#installing-the-cli","rust/installation.html#from-cratesio-recommended","rust/installation.html#from-source","rust/installation.html#verify-installation","rust/installation.html#using-as-a-library","rust/installation.html#with-optional-features","rust/installation.html#available-features","rust/installation.html#platform-support","rust/installation.html#webassembly-notes","rust/installation.html#configuration","rust/installation.html#manual-configuration","rust/installation.html#environment-variables","rust/installation.html#troubleshooting","rust/installation.html#build-errors","rust/installation.html#runtime-errors","rust/installation.html#next-steps","rust/cli.html#cli-usage","rust/cli.html#getting-help","rust/cli.html#commands-overview","rust/cli.html#initialization","rust/cli.html#quick-start","rust/cli.html#configuration-commands","rust/cli.html#create-configuration","rust/cli.html#read-configuration","rust/cli.html#agent-commands","rust/cli.html#create-agent","rust/cli.html#verify-agent","rust/cli.html#dns-commands","rust/cli.html#lookup-agent","rust/cli.html#task-commands","rust/cli.html#create-task","rust/cli.html#document-commands","rust/cli.html#create-document","rust/cli.html#update-document","rust/cli.html#verify-document","rust/cli.html#extract-embedded-content","rust/cli.html#agreement-commands","rust/cli.html#environment-variables","rust/cli.html#common-workflows","rust/cli.html#create-and-sign-a-document","rust/cli.html#multi-agent-agreement","rust/cli.html#verify-another-agent","rust/cli.html#exit-codes","rust/cli.html#next-steps","rust/agent.html#creating-an-agent","rust/agent.html#what-is-an-agent","rust/agent.html#creating-your-first-agent","rust/agent.html#quick-method-recommended","rust/agent.html#manual-method","rust/agent.html#with-custom-agent-definition","rust/agent.html#agent-types","rust/agent.html#ai-agent-example","rust/agent.html#human-agent-example","rust/agent.html#agent-services","rust/agent.html#service-with-actions","rust/agent.html#agent-contacts","rust/agent.html#cryptographic-keys","rust/agent.html#key-algorithms","rust/agent.html#configure-key-algorithm","rust/agent.html#key-storage","rust/agent.html#verifying-agents","rust/agent.html#verify-your-own-agent","rust/agent.html#verify-a-specific-agent-file","rust/agent.html#with-dns-verification","rust/agent.html#updating-agents","rust/agent.html#agent-document-structure","rust/agent.html#best-practices","rust/agent.html#security","rust/agent.html#agent-design","rust/agent.html#operations","rust/agent.html#next-steps","rust/documents.html#working-with-documents","rust/documents.html#what-is-a-jacs-document","rust/documents.html#creating-documents","rust/documents.html#from-a-json-file","rust/documents.html#from-a-directory","rust/documents.html#with-custom-schema","rust/documents.html#output-options","rust/documents.html#document-structure","rust/documents.html#required-header-fields","rust/documents.html#document-levels","rust/documents.html#file-attachments","rust/documents.html#attach-files","rust/documents.html#embed-vs-reference","rust/documents.html#attachment-structure","rust/documents.html#verifying-documents","rust/documents.html#basic-verification","rust/documents.html#verify-with-schema","rust/documents.html#verify-directory","rust/documents.html#verbose-output","rust/documents.html#updating-documents","rust/documents.html#update-with-attachments","rust/documents.html#extracting-embedded-content","rust/documents.html#document-types","rust/documents.html#task-documents","rust/documents.html#message-documents","rust/documents.html#custom-documents","rust/documents.html#version-history","rust/documents.html#working-with-multiple-agents","rust/documents.html#different-agent-signs-document","rust/documents.html#verify-document-from-unknown-agent","rust/documents.html#best-practices","rust/documents.html#document-design","rust/documents.html#security","rust/documents.html#performance","rust/documents.html#common-workflows","rust/documents.html#create-and-share-document","rust/documents.html#track-document-changes","rust/documents.html#process-multiple-documents","rust/documents.html#next-steps","rust/agreements.html#creating-and-using-agreements","rust/agreements.html#what-is-an-agreement","rust/agreements.html#agreement-lifecycle","rust/agreements.html#creating-agreements","rust/agreements.html#basic-agreement","rust/agreements.html#with-context","rust/agreements.html#signing-agreements","rust/agreements.html#sign-as-current-agent","rust/agreements.html#sign-as-different-agent","rust/agreements.html#sign-with-response","rust/agreements.html#checking-agreement-status","rust/agreements.html#check-if-complete","rust/agreements.html#agreement-structure","rust/agreements.html#task-agreements","rust/agreements.html#multi-agent-workflow-example","rust/agreements.html#agreement-hash","rust/agreements.html#best-practices","rust/agreements.html#next-steps","rust/dns.html#dns-based-agent-verification","rust/dns.html#overview","rust/dns.html#why-dns-verification","rust/dns.html#publishing-agent-identity","rust/dns.html#generate-dns-commands","rust/dns.html#provider-specific-formats","rust/dns.html#dns-record-structure","rust/dns.html#setting-up-with-route-53-aws","rust/dns.html#setting-up-with-cloudflare","rust/dns.html#setting-up-with-azure-dns","rust/dns.html#verifying-agents-with-dns","rust/dns.html#look-up-another-agent","rust/dns.html#verify-agent-with-dns","rust/dns.html#dns-validation-modes","rust/dns.html#agent-domain-configuration","rust/dns.html#dnssec-requirements","rust/dns.html#checking-dnssec-status","rust/dns.html#security-considerations","rust/dns.html#trust-model","rust/dns.html#best-practices","rust/dns.html#caching","rust/dns.html#troubleshooting","rust/dns.html#dns-record-not-found","rust/dns.html#dnssec-validation-failed","rust/dns.html#fingerprint-mismatch","rust/dns.html#integration-with-cicd","rust/dns.html#next-steps","rust/library.html#rust-library-api","rust/library.html#adding-jacs-as-a-dependency","rust/library.html#feature-flags","rust/library.html#core-types","rust/library.html#agent","rust/library.html#jacsdocument","rust/library.html#creating-an-agent","rust/library.html#minimal-agent","rust/library.html#loading-by-configuration","rust/library.html#dns-strict-mode","rust/library.html#working-with-documents","rust/library.html#creating-documents","rust/library.html#creating-documents-with-attachments","rust/library.html#loading-documents","rust/library.html#updating-documents","rust/library.html#verifying-documents","rust/library.html#saving-documents","rust/library.html#creating-tasks","rust/library.html#signing-and-verification","rust/library.html#signing-documents","rust/library.html#verification","rust/library.html#custom-schema-validation","rust/library.html#configuration","rust/library.html#loading-configuration","rust/library.html#accessing-configuration","rust/library.html#observability","rust/library.html#initialize-default-observability","rust/library.html#custom-observability-configuration","rust/library.html#storage-backends","rust/library.html#error-handling","rust/library.html#thread-safety","rust/library.html#complete-example","rust/library.html#next-steps","rust/observability.html#observability","rust/observability.html#overview","rust/observability.html#feature-flags","rust/observability.html#quick-start","rust/observability.html#default-configuration","rust/observability.html#custom-configuration","rust/observability.html#logging","rust/observability.html#log-levels","rust/observability.html#log-destinations","rust/observability.html#using-logs","rust/observability.html#metrics","rust/observability.html#enabling-metrics","rust/observability.html#metrics-destinations","rust/observability.html#recording-metrics","rust/observability.html#built-in-metrics","rust/observability.html#distributed-tracing","rust/observability.html#enabling-tracing","rust/observability.html#tracing-destinations","rust/observability.html#sampling-configuration","rust/observability.html#using-tracing-spans","rust/observability.html#configuration-file","rust/observability.html#opentelemetry-collector-setup","rust/observability.html#reset-and-cleanup","rust/observability.html#best-practices","rust/observability.html#development","rust/observability.html#production","rust/observability.html#troubleshooting","rust/observability.html#logs-not-appearing","rust/observability.html#metrics-not-exporting","rust/observability.html#traces-missing","rust/observability.html#next-steps","nodejs/installation.html#nodejs-installation","nodejs/installation.html#requirements","nodejs/installation.html#installation","nodejs/installation.html#using-npm","nodejs/installation.html#using-yarn","nodejs/installation.html#using-pnpm","nodejs/installation.html#verify-installation","nodejs/installation.html#package-structure","nodejs/installation.html#core-module-haiaijacs","nodejs/installation.html#mcp-integration-haiaijacsmcp","nodejs/installation.html#http-server-haiaijacshttp","nodejs/installation.html#typescript-support","nodejs/installation.html#configuration","nodejs/installation.html#basic-configuration","nodejs/installation.html#configuration-file","nodejs/installation.html#environment-variables","nodejs/installation.html#storage-backends","nodejs/installation.html#file-system-default","nodejs/installation.html#s3-storage","nodejs/installation.html#memory-storage-testing","nodejs/installation.html#cryptographic-algorithms","nodejs/installation.html#ring-ed25519-recommended","nodejs/installation.html#rsa-pss","nodejs/installation.html#pq-dilithium-post-quantum","nodejs/installation.html#pq2025-post-quantum-hybrid","nodejs/installation.html#development-setup","nodejs/installation.html#project-structure","nodejs/installation.html#packagejson-setup","nodejs/installation.html#basic-application","nodejs/installation.html#common-issues","nodejs/installation.html#module-not-found","nodejs/installation.html#permission-errors","nodejs/installation.html#binary-compatibility","nodejs/installation.html#typescript-issues","nodejs/installation.html#next-steps","nodejs/installation.html#examples","nodejs/simple-api.html#simplified-api","nodejs/simple-api.html#quick-start","nodejs/simple-api.html#when-to-use-the-simplified-api","nodejs/simple-api.html#api-reference","nodejs/simple-api.html#loadconfigpath","nodejs/simple-api.html#isloaded","nodejs/simple-api.html#getagentinfo","nodejs/simple-api.html#verifyself","nodejs/simple-api.html#signmessagedata","nodejs/simple-api.html#signfilefilepath-embed","nodejs/simple-api.html#verifysigneddocument","nodejs/simple-api.html#verifystandalonesigneddocument-options","nodejs/simple-api.html#auditoptions","nodejs/simple-api.html#updateagentnewagentdata","nodejs/simple-api.html#updatedocumentdocumentid-newdocumentdata-attachments-embed","nodejs/simple-api.html#exportagent","nodejs/simple-api.html#registerwithhaioptions","nodejs/simple-api.html#getdnsrecorddomain-ttl","nodejs/simple-api.html#getwellknownjson","nodejs/simple-api.html#getpublickey","nodejs/simple-api.html#type-definitions","nodejs/simple-api.html#agentinfo","nodejs/simple-api.html#signeddocument","nodejs/simple-api.html#verificationresult","nodejs/simple-api.html#attachment","nodejs/simple-api.html#complete-example","nodejs/simple-api.html#mcp-integration","nodejs/simple-api.html#error-handling","nodejs/simple-api.html#see-also","nodejs/basic-usage.html#basic-usage","nodejs/basic-usage.html#initializing-an-agent","nodejs/basic-usage.html#create-and-load-agent","nodejs/basic-usage.html#configuration-file","nodejs/basic-usage.html#creating-documents","nodejs/basic-usage.html#basic-document-creation","nodejs/basic-usage.html#with-custom-schema","nodejs/basic-usage.html#with-output-file","nodejs/basic-usage.html#without-saving","nodejs/basic-usage.html#with-attachments","nodejs/basic-usage.html#verifying-documents","nodejs/basic-usage.html#verify-document-signature","nodejs/basic-usage.html#verify-specific-signature-field","nodejs/basic-usage.html#updating-documents","nodejs/basic-usage.html#update-existing-document","nodejs/basic-usage.html#update-with-new-attachments","nodejs/basic-usage.html#signing-and-verification","nodejs/basic-usage.html#sign-arbitrary-data","nodejs/basic-usage.html#verify-arbitrary-data","nodejs/basic-usage.html#working-with-agreements","nodejs/basic-usage.html#create-an-agreement","nodejs/basic-usage.html#sign-an-agreement","nodejs/basic-usage.html#check-agreement-status","nodejs/basic-usage.html#agent-operations","nodejs/basic-usage.html#verify-agent","nodejs/basic-usage.html#update-agent","nodejs/basic-usage.html#sign-external-agent","nodejs/basic-usage.html#requestresponse-signing","nodejs/basic-usage.html#sign-a-request","nodejs/basic-usage.html#verify-a-response","nodejs/basic-usage.html#utility-functions","nodejs/basic-usage.html#hash-string","nodejs/basic-usage.html#create-configuration","nodejs/basic-usage.html#error-handling","nodejs/basic-usage.html#complete-example","nodejs/basic-usage.html#next-steps","nodejs/mcp.html#model-context-protocol-mcp-integration","nodejs/mcp.html#what-is-mcp","nodejs/mcp.html#how-jacs-mcp-works","nodejs/mcp.html#quick-start","nodejs/mcp.html#basic-mcp-server-with-jacs","nodejs/mcp.html#mcp-client-with-jacs","nodejs/mcp.html#api-reference","nodejs/mcp.html#jacstransportproxy","nodejs/mcp.html#createjacstransportproxy","nodejs/mcp.html#createjacstransportproxyasync","nodejs/mcp.html#transport-options","nodejs/mcp.html#stdio-transport","nodejs/mcp.html#sse-transport-http","nodejs/mcp.html#configuration","nodejs/mcp.html#jacs-config-file","nodejs/mcp.html#environment-variables","nodejs/mcp.html#how-messages-are-signed","nodejs/mcp.html#outgoing-messages","nodejs/mcp.html#incoming-messages","nodejs/mcp.html#complete-example","nodejs/mcp.html#server-mcpserverjs","nodejs/mcp.html#client-mcpclientjs","nodejs/mcp.html#security-considerations","nodejs/mcp.html#message-verification","nodejs/mcp.html#passthrough-mode","nodejs/mcp.html#key-management","nodejs/mcp.html#debugging","nodejs/mcp.html#enable-debug-logging","nodejs/mcp.html#stdio-debug-note","nodejs/mcp.html#common-issues","nodejs/mcp.html#next-steps","nodejs/http.html#http-server","nodejs/http.html#overview","nodejs/http.html#core-concepts","nodejs/http.html#requestresponse-flow","nodejs/http.html#http-client","nodejs/http.html#basic-client-usage","nodejs/http.html#using-fetch","nodejs/http.html#express-server","nodejs/http.html#using-express-middleware","nodejs/http.html#middleware-configuration","nodejs/http.html#manual-requestresponse-handling","nodejs/http.html#koa-server","nodejs/http.html#using-koa-middleware","nodejs/http.html#api-reference","nodejs/http.html#jacssignrequestpayload","nodejs/http.html#jacsverifyresponseresponsestring","nodejs/http.html#jacssignresponsepayload","nodejs/http.html#jacsexpressmiddlewareoptions","nodejs/http.html#jacskoamiddlewareoptions","nodejs/http.html#complete-example","nodejs/http.html#server-serverjs","nodejs/http.html#client-clientjs","nodejs/http.html#security-considerations","nodejs/http.html#content-type","nodejs/http.html#error-handling","nodejs/http.html#agent-keys","nodejs/http.html#middleware-order","nodejs/http.html#next-steps","nodejs/express.html#express-middleware","nodejs/express.html#overview","nodejs/express.html#quick-start","nodejs/express.html#middleware-configuration","nodejs/express.html#basic-configuration","nodejs/express.html#per-route-configuration","nodejs/express.html#multiple-jacs-agents","nodejs/express.html#request-handling","nodejs/express.html#accessing-verified-payload","nodejs/express.html#handling-missing-payload","nodejs/express.html#validation-helper","nodejs/express.html#response-handling","nodejs/express.html#automatic-signing","nodejs/express.html#sending-unsigned-responses","nodejs/express.html#custom-response-format","nodejs/express.html#error-handling","nodejs/express.html#global-error-handler","nodejs/express.html#typed-errors","nodejs/express.html#advanced-patterns","nodejs/express.html#router-level-middleware","nodejs/express.html#middleware-composition","nodejs/express.html#logging-middleware","nodejs/express.html#authentication-integration","nodejs/express.html#testing","nodejs/express.html#unit-testing-routes","nodejs/express.html#mock-jacs-for-testing","nodejs/express.html#complete-application-example","nodejs/express.html#troubleshooting","nodejs/express.html#body-parsing-issues","nodejs/express.html#json-body-parser-conflict","nodejs/express.html#response-not-signed","nodejs/express.html#next-steps","nodejs/api.html#api-reference","nodejs/api.html#installation","nodejs/api.html#core-module","nodejs/api.html#jacsagent-class","nodejs/api.html#constructor","nodejs/api.html#agentloadconfigpath","nodejs/api.html#agentcreatedocumentdocumentstring-customschema-outputfilename-nosave-attachments-embed","nodejs/api.html#agentverifydocumentdocumentstring","nodejs/api.html#agentverifysignaturedocumentstring-signaturefield","nodejs/api.html#agentupdatedocumentdocumentkey-newdocumentstring-attachments-embed","nodejs/api.html#agentcreateagreementdocumentstring-agentids-question-context-agreementfieldname","nodejs/api.html#agentsignagreementdocumentstring-agreementfieldname","nodejs/api.html#agentcheckagreementdocumentstring-agreementfieldname","nodejs/api.html#agentsignstringdata","nodejs/api.html#agentverifystringdata-signaturebase64-publickey-publickeyenctype","nodejs/api.html#agentsignrequestparams","nodejs/api.html#agentverifyresponsedocumentstring","nodejs/api.html#agentverifyresponsewithagentiddocumentstring","nodejs/api.html#agentverifyagentagentfile","nodejs/api.html#agentupdateagentnewagentstring","nodejs/api.html#agentsignagentagentstring-publickey-publickeyenctype","nodejs/api.html#utility-functions","nodejs/api.html#hashstringdata","nodejs/api.html#createconfigoptions","nodejs/api.html#http-module","nodejs/api.html#jacsexpressmiddlewareoptions","nodejs/api.html#jacskoamiddlewareoptions","nodejs/api.html#mcp-module","nodejs/api.html#jacstransportproxy","nodejs/api.html#createjacstransportproxytransport-configpath-role","nodejs/api.html#createjacstransportproxyasynctransport-configpath-role","nodejs/api.html#typescript-support","nodejs/api.html#deprecated-functions","nodejs/api.html#error-handling","nodejs/api.html#see-also","python/installation.html#python-installation","python/installation.html#requirements","python/installation.html#installation","python/installation.html#using-pip","python/installation.html#using-conda","python/installation.html#using-poetry","python/installation.html#development-installation","python/installation.html#verify-installation","python/installation.html#package-structure","python/installation.html#core-module","python/installation.html#jacsagent-methods","python/installation.html#configuration","python/installation.html#configuration-file","python/installation.html#load-configuration-in-python","python/installation.html#programmatic-configuration","python/installation.html#environment-variables","python/installation.html#storage-backends","python/installation.html#file-system-default","python/installation.html#s3-storage","python/installation.html#memory-storage-testing","python/installation.html#cryptographic-algorithms","python/installation.html#ring-ed25519-recommended","python/installation.html#rsa-pss","python/installation.html#pq-dilithium-post-quantum","python/installation.html#pq2025-post-quantum-hybrid","python/installation.html#development-setup","python/installation.html#project-structure","python/installation.html#requirementstxt-setup","python/installation.html#basic-application","python/installation.html#virtual-environment-setup","python/installation.html#using-venv","python/installation.html#using-conda-1","python/installation.html#using-poetry-1","python/installation.html#jupyter-notebook-setup","python/installation.html#common-issues","python/installation.html#module-not-found","python/installation.html#permission-errors","python/installation.html#binary-compatibility","python/installation.html#windows-issues","python/installation.html#type-hints-and-ide-support","python/installation.html#testing-setup","python/installation.html#next-steps","python/installation.html#examples","python/simple-api.html#simplified-api","python/simple-api.html#quick-start","python/simple-api.html#when-to-use-the-simplified-api","python/simple-api.html#api-reference","python/simple-api.html#loadconfig_pathnone","python/simple-api.html#is_loaded","python/simple-api.html#get_agent_info","python/simple-api.html#verify_self","python/simple-api.html#sign_messagedata","python/simple-api.html#sign_filefile_path-embedfalse","python/simple-api.html#verifysigned_document","python/simple-api.html#verify_standalonedocument-key_resolutionlocal-data_directorynone-key_directorynone","python/simple-api.html#auditconfig_pathnone-recent_nnone","python/simple-api.html#update_agentnew_agent_data","python/simple-api.html#update_documentdocument_id-new_document_data-attachmentsnone-embedfalse","python/simple-api.html#export_agent","python/simple-api.html#get_dns_recorddomain-ttl3600","python/simple-api.html#get_well_known_json","python/simple-api.html#get_public_key","python/simple-api.html#type-definitions","python/simple-api.html#agentinfo","python/simple-api.html#signeddocument","python/simple-api.html#verificationresult","python/simple-api.html#attachment","python/simple-api.html#exceptions","python/simple-api.html#complete-example","python/simple-api.html#mcp-integration","python/simple-api.html#error-handling","python/simple-api.html#see-also","python/basic-usage.html#basic-usage","python/basic-usage.html#initializing-an-agent","python/basic-usage.html#create-and-load-agent","python/basic-usage.html#configuration-file","python/basic-usage.html#creating-documents","python/basic-usage.html#basic-document-creation","python/basic-usage.html#with-custom-schema","python/basic-usage.html#with-output-file","python/basic-usage.html#without-saving","python/basic-usage.html#with-attachments","python/basic-usage.html#verifying-documents","python/basic-usage.html#verify-document-signature","python/basic-usage.html#verify-specific-signature-field","python/basic-usage.html#updating-documents","python/basic-usage.html#update-existing-document","python/basic-usage.html#update-with-new-attachments","python/basic-usage.html#signing-and-verification","python/basic-usage.html#sign-arbitrary-data","python/basic-usage.html#verify-arbitrary-data","python/basic-usage.html#working-with-agreements","python/basic-usage.html#create-an-agreement","python/basic-usage.html#sign-an-agreement","python/basic-usage.html#check-agreement-status","python/basic-usage.html#agent-operations","python/basic-usage.html#verify-agent","python/basic-usage.html#update-agent","python/basic-usage.html#sign-external-agent","python/basic-usage.html#requestresponse-signing","python/basic-usage.html#sign-a-request","python/basic-usage.html#verify-a-response","python/basic-usage.html#utility-functions","python/basic-usage.html#hash-string","python/basic-usage.html#create-configuration","python/basic-usage.html#error-handling","python/basic-usage.html#complete-example","python/basic-usage.html#working-with-document-data","python/basic-usage.html#parse-signed-documents","python/basic-usage.html#document-key-format","python/basic-usage.html#configuration-management","python/basic-usage.html#load-from-file","python/basic-usage.html#environment-variables","python/basic-usage.html#programmatic-configuration","python/basic-usage.html#next-steps","python/mcp.html#mcp-integration","python/mcp.html#overview","python/mcp.html#quick-start","python/mcp.html#basic-mcp-server-with-jacs","python/mcp.html#basic-mcp-client-with-jacs","python/mcp.html#how-it-works","python/mcp.html#jacsmcpserver","python/mcp.html#jacsmcpclient","python/mcp.html#configuration","python/mcp.html#jacs-configuration-file","python/mcp.html#initializing-the-agent","python/mcp.html#integration-patterns","python/mcp.html#fastmcp-with-jacs-middleware","python/mcp.html#manual-requestresponse-signing","python/mcp.html#error-handling","python/mcp.html#common-errors","python/mcp.html#debugging","python/mcp.html#production-deployment","python/mcp.html#security-best-practices","python/mcp.html#docker-deployment","python/mcp.html#testing","python/mcp.html#unit-testing-mcp-tools","python/mcp.html#api-reference","python/mcp.html#jacsmcpservermcp_server","python/mcp.html#jacsmcpclienturl-kwargs","python/mcp.html#module-functions","python/mcp.html#next-steps","python/api.html#api-reference","python/api.html#installation","python/api.html#core-module","python/api.html#jacsagent-class","python/api.html#constructor","python/api.html#agentloadconfig_path","python/api.html#agentcreate_documentdocument_string-custom_schemanone-output_filenamenone-no_savefalse-attachmentsnone-embedfalse","python/api.html#agentverify_documentdocument_string","python/api.html#agentverify_signaturedocument_string-signature_fieldnone","python/api.html#agentupdate_documentdocument_key-new_document_string-attachmentsnone-embedfalse","python/api.html#agentcreate_agreementdocument_string-agent_ids-questionnone-contextnone-agreement_field_namenone","python/api.html#agentsign_agreementdocument_string-agreement_field_namenone","python/api.html#agentcheck_agreementdocument_string-agreement_field_namenone","python/api.html#agentsign_stringdata","python/api.html#agentverify_stringdata-signature_base64-public_key-public_key_enc_type","python/api.html#agentsign_requestparams","python/api.html#agentverify_responsedocument_string","python/api.html#agentverify_response_with_agent_iddocument_string","python/api.html#agentverify_agentagent_filenone","python/api.html#agentupdate_agentnew_agent_string","python/api.html#agentsign_agentagent_string-public_key-public_key_enc_type","python/api.html#module-level-functions","python/api.html#jacsloadconfig_path","python/api.html#jacssign_requestdata","python/api.html#jacsverify_requestdata","python/api.html#jacssign_responsedata","python/api.html#jacsverify_responsedata","python/api.html#mcp-module","python/api.html#jacsmcpservermcp_server","python/api.html#jacsmcpclienturl-kwargs","python/api.html#configuration","python/api.html#configuration-file-format","python/api.html#configuration-options","python/api.html#error-handling","python/api.html#common-exceptions","python/api.html#type-hints","python/api.html#thread-safety","python/api.html#see-also","schemas/overview.html#json-schemas","schemas/overview.html#schema-architecture","schemas/overview.html#schema-categories","schemas/overview.html#configuration-schema","schemas/overview.html#document-schemas","schemas/overview.html#component-schemas","schemas/overview.html#schema-locations","schemas/overview.html#using-schemas","schemas/overview.html#in-documents","schemas/overview.html#in-configuration-files","schemas/overview.html#custom-schema-validation","schemas/overview.html#hai-extensions","schemas/overview.html#versioning","schemas/overview.html#schema-composition","schemas/overview.html#creating-custom-schemas","schemas/overview.html#validation-rules","schemas/overview.html#required-fields","schemas/overview.html#format-validation","schemas/overview.html#enum-constraints","schemas/overview.html#schema-reference","schemas/overview.html#see-also","schemas/agent.html#agent-schema","schemas/agent.html#schema-location","schemas/agent.html#overview","schemas/agent.html#schema-structure","schemas/agent.html#agent-types","schemas/agent.html#contact-requirements","schemas/agent.html#agent-properties","schemas/agent.html#core-fields-from-header","schemas/agent.html#agent-specific-fields","schemas/agent.html#services","schemas/agent.html#service-schema-fields","schemas/agent.html#pii-types","schemas/agent.html#contacts","schemas/agent.html#contact-schema-fields","schemas/agent.html#dns-verification","schemas/agent.html#complete-example","schemas/agent.html#ai-agent","schemas/agent.html#human-agent","schemas/agent.html#organization-agent","schemas/agent.html#creating-agents","schemas/agent.html#python","schemas/agent.html#nodejs","schemas/agent.html#cli","schemas/agent.html#verifying-agents","schemas/agent.html#see-also","schemas/document.html#document-schema","schemas/document.html#schema-location","schemas/document.html#overview","schemas/document.html#core-fields","schemas/document.html#identification","schemas/document.html#versioning","schemas/document.html#document-level","schemas/document.html#cryptographic-fields","schemas/document.html#signature","schemas/document.html#registration","schemas/document.html#hash","schemas/document.html#agreements","schemas/document.html#agreement-schema-fields","schemas/document.html#file-attachments","schemas/document.html#file-schema-fields","schemas/document.html#vector-embeddings","schemas/document.html#embedding-schema-fields","schemas/document.html#complete-example","schemas/document.html#hai-field-categories","schemas/document.html#working-with-documents","schemas/document.html#creating-documents","schemas/document.html#verifying-documents","schemas/document.html#updating-documents","schemas/document.html#adding-attachments","schemas/document.html#version-history","schemas/document.html#see-also","schemas/task.html#task-schema","schemas/task.html#schema-location","schemas/task.html#overview","schemas/task.html#schema-structure","schemas/task.html#task-states","schemas/task.html#state-transitions","schemas/task.html#task-properties","schemas/task.html#core-fields-from-header","schemas/task.html#task-specific-fields","schemas/task.html#relationship-fields","schemas/task.html#actions","schemas/task.html#action-schema-fields","schemas/task.html#unit-schema","schemas/task.html#agreements","schemas/task.html#start-agreement","schemas/task.html#end-agreement","schemas/task.html#complete-example","schemas/task.html#task-relationships","schemas/task.html#sub-tasks","schemas/task.html#task-copies-branching","schemas/task.html#merged-tasks","schemas/task.html#task-workflow","schemas/task.html#1-creating-a-task","schemas/task.html#2-assigning-an-agent","schemas/task.html#3-signing-start-agreement","schemas/task.html#4-completing-work","schemas/task.html#5-final-completion","schemas/task.html#state-machine-rules","schemas/task.html#see-also","schemas/agentstate.html#agent-state-schema","schemas/agentstate.html#schema-location","schemas/agentstate.html#overview","schemas/agentstate.html#schema-structure","schemas/agentstate.html#state-types","schemas/agentstate.html#properties","schemas/agentstate.html#required-fields","schemas/agentstate.html#optional-fields","schemas/agentstate.html#origin-tracking","schemas/agentstate.html#file-references","schemas/agentstate.html#examples","schemas/agentstate.html#minimal-agent-state","schemas/agentstate.html#memory-file-with-embedding","schemas/agentstate.html#adopted-skill","schemas/agentstate.html#general-purpose-signed-document","schemas/agentstate.html#rust-api","schemas/agentstate.html#creating-agent-state-documents","schemas/agentstate.html#signing-and-verification","schemas/agentstate.html#mcp-tools","schemas/agentstate.html#mcp-example-sign-a-memory-file","schemas/agentstate.html#mcp-example-sign-any-document","schemas/agentstate.html#security-notes","schemas/agentstate.html#see-also","schemas/commitment.html#commitment-schema","schemas/commitment.html#schema","schemas/commitment.html#required-fields","schemas/commitment.html#status-lifecycle","schemas/commitment.html#optional-fields","schemas/commitment.html#cross-references","schemas/commitment.html#multi-agent-agreements","schemas/commitment.html#example","schemas/commitment.html#rust-api","schemas/commitment.html#versioning","schemas/commitment.html#see-also","schemas/todo.html#todo-list-schema","schemas/todo.html#schema","schemas/todo.html#required-fields","schemas/todo.html#optional-fields","schemas/todo.html#todo-items","schemas/todo.html#required-item-fields","schemas/todo.html#optional-item-fields","schemas/todo.html#cross-references","schemas/todo.html#item-hierarchy","schemas/todo.html#example","schemas/todo.html#rust-api","schemas/todo.html#versioning","schemas/todo.html#see-also","schemas/conversation.html#conversation-schema","schemas/conversation.html#schema","schemas/conversation.html#message-fields","schemas/conversation.html#required","schemas/conversation.html#optional","schemas/conversation.html#threading-model","schemas/conversation.html#immutability","schemas/conversation.html#example","schemas/conversation.html#rust-api","schemas/conversation.html#cross-references","schemas/conversation.html#see-also","schemas/configuration.html#configuration","schemas/configuration.html#schema-location","schemas/configuration.html#quick-start","schemas/configuration.html#required-fields","schemas/configuration.html#configuration-options","schemas/configuration.html#key-configuration","schemas/configuration.html#storage-configuration","schemas/configuration.html#agent-identity","schemas/configuration.html#schema-versions","schemas/configuration.html#dns-configuration","schemas/configuration.html#security","schemas/configuration.html#observability-configuration","schemas/configuration.html#logs-configuration","schemas/configuration.html#metrics-configuration","schemas/configuration.html#tracing-configuration","schemas/configuration.html#complete-configuration-example","schemas/configuration.html#environment-variables","schemas/configuration.html#loading-configuration","schemas/configuration.html#python","schemas/configuration.html#nodejs","schemas/configuration.html#cli","schemas/configuration.html#production-best-practices","schemas/configuration.html#see-also","advanced/security.html#security-model","advanced/security.html#security-model-v060","advanced/security.html#core-security-principles","advanced/security.html#1-cryptographic-identity","advanced/security.html#2-document-integrity","advanced/security.html#3-non-repudiation","advanced/security.html#security-audit-audit","advanced/security.html#threat-model","advanced/security.html#protected-against","advanced/security.html#trust-assumptions","advanced/security.html#signature-process","advanced/security.html#signing-a-document","advanced/security.html#verifying-a-document","advanced/security.html#key-management","advanced/security.html#key-generation","advanced/security.html#key-protection","advanced/security.html#key-rotation","advanced/security.html#tls-certificate-validation","advanced/security.html#default-behavior-development","advanced/security.html#production-configuration","advanced/security.html#security-implications","advanced/security.html#signature-timestamp-validation","advanced/security.html#how-it-works","advanced/security.html#configuring-signature-expiration","advanced/security.html#protection-against-replay-attacks","advanced/security.html#clock-synchronization","advanced/security.html#verification-claims","advanced/security.html#claim-levels","advanced/security.html#setting-a-verification-claim","advanced/security.html#claim-enforcement","advanced/security.html#backward-compatibility","advanced/security.html#error-messages","advanced/security.html#security-considerations","advanced/security.html#dns-based-verification","advanced/security.html#how-it-works-1","advanced/security.html#configuration","advanced/security.html#security-levels","advanced/security.html#trust-store-management","advanced/security.html#trusting-agents","advanced/security.html#untrusting-agents","advanced/security.html#trust-store-security","advanced/security.html#best-practices","advanced/security.html#agreement-security","advanced/security.html#agreement-structure","advanced/security.html#agreement-guarantees","advanced/security.html#requestresponse-security","advanced/security.html#request-signing","advanced/security.html#response-verification","advanced/security.html#algorithm-security","advanced/security.html#supported-algorithms","advanced/security.html#algorithm-selection","advanced/security.html#security-best-practices","advanced/security.html#1-key-storage","advanced/security.html#2-password-handling","advanced/security.html#3-transport-security","advanced/security.html#4-verification-policies","advanced/security.html#5-audit-logging","advanced/security.html#security-checklist","advanced/security.html#development","advanced/security.html#production","advanced/security.html#verification","advanced/security.html#security-considerations-1","advanced/security.html#supply-chain","advanced/security.html#side-channels","advanced/security.html#recovery","advanced/security.html#troubleshooting-verification-claims","advanced/security.html#common-issues-and-solutions","advanced/security.html#claim-level-reference","advanced/security.html#upgrade-vs-downgrade-rules","advanced/security.html#quick-diagnostic-commands","advanced/security.html#see-also","advanced/key-rotation.html#key-rotation","advanced/key-rotation.html#why-key-rotation-matters","advanced/key-rotation.html#key-compromise-recovery","advanced/key-rotation.html#cryptographic-agility","advanced/key-rotation.html#compliance-requirements","advanced/key-rotation.html#agent-versioning","advanced/key-rotation.html#version-format","advanced/key-rotation.html#version-chain","advanced/key-rotation.html#version-aware-verification","advanced/key-rotation.html#signature-structure","advanced/key-rotation.html#key-resolution-process","advanced/key-rotation.html#key-lookup-priority","advanced/key-rotation.html#key-rotation-process","advanced/key-rotation.html#step-by-step-rotation","advanced/key-rotation.html#transition-signature","advanced/key-rotation.html#cli-commands-planned","advanced/key-rotation.html#example-rotation-flow","advanced/key-rotation.html#trust-store-with-version-history","advanced/key-rotation.html#trustedagent-structure","advanced/key-rotation.html#key-status-values","advanced/key-rotation.html#looking-up-keys","advanced/key-rotation.html#dns-support-for-key-versions","advanced/key-rotation.html#multi-version-dns-records","advanced/key-rotation.html#dns-record-generation","advanced/key-rotation.html#security-considerations","advanced/key-rotation.html#key-revocation","advanced/key-rotation.html#overlap-period","advanced/key-rotation.html#secure-deletion","advanced/key-rotation.html#best-practices","advanced/key-rotation.html#rotation-schedule","advanced/key-rotation.html#pre-rotation-checklist","advanced/key-rotation.html#post-rotation-checklist","advanced/key-rotation.html#see-also","advanced/crypto.html#cryptographic-algorithms","advanced/crypto.html#supported-algorithms","advanced/crypto.html#ed25519-ring-ed25519","advanced/crypto.html#overview","advanced/crypto.html#characteristics","advanced/crypto.html#configuration","advanced/crypto.html#use-cases","advanced/crypto.html#example","advanced/crypto.html#rsa-pss","advanced/crypto.html#overview-1","advanced/crypto.html#characteristics-1","advanced/crypto.html#configuration-1","advanced/crypto.html#use-cases-1","advanced/crypto.html#considerations","advanced/crypto.html#dilithium-pq-dilithium","advanced/crypto.html#overview-2","advanced/crypto.html#characteristics-2","advanced/crypto.html#configuration-2","advanced/crypto.html#use-cases-2","advanced/crypto.html#considerations-1","advanced/crypto.html#pq2025-hybrid","advanced/crypto.html#overview-3","advanced/crypto.html#characteristics-3","advanced/crypto.html#configuration-3","advanced/crypto.html#use-cases-3","advanced/crypto.html#considerations-2","advanced/crypto.html#algorithm-selection-guide","advanced/crypto.html#decision-matrix","advanced/crypto.html#by-use-case","advanced/crypto.html#key-generation","advanced/crypto.html#key-formats","advanced/crypto.html#signature-structure","advanced/crypto.html#hashing","advanced/crypto.html#algorithm-migration","advanced/crypto.html#performance-comparison","advanced/crypto.html#security-considerations","advanced/crypto.html#algorithm-agility","advanced/crypto.html#forward-secrecy","advanced/crypto.html#key-compromise","advanced/crypto.html#see-also","advanced/storage.html#storage-backends","advanced/storage.html#available-backends","advanced/storage.html#configuration","advanced/storage.html#filesystem-storage-fs","advanced/storage.html#configuration-1","advanced/storage.html#directory-structure","advanced/storage.html#use-cases","advanced/storage.html#advantages","advanced/storage.html#considerations","advanced/storage.html#example","advanced/storage.html#aws-s3-storage-aws","advanced/storage.html#configuration-2","advanced/storage.html#environment-variables","advanced/storage.html#bucket-structure","advanced/storage.html#use-cases-1","advanced/storage.html#advantages-1","advanced/storage.html#considerations-1","advanced/storage.html#iam-policy","advanced/storage.html#example-1","advanced/storage.html#hai-cloud-storage-hai","advanced/storage.html#configuration-3","advanced/storage.html#features","advanced/storage.html#use-cases-2","advanced/storage.html#postgresql-database-storage-database","advanced/storage.html#compile-time-setup","advanced/storage.html#configuration-4","advanced/storage.html#how-it-works","advanced/storage.html#table-schema","advanced/storage.html#append-only-model","advanced/storage.html#query-capabilities","advanced/storage.html#rust-api-example","advanced/storage.html#security-note","advanced/storage.html#use-cases-3","advanced/storage.html#considerations-2","advanced/storage.html#in-memory-storage","advanced/storage.html#storage-selection-guide","advanced/storage.html#file-storage","advanced/storage.html#embedded-files","advanced/storage.html#external-files","advanced/storage.html#data-migration","advanced/storage.html#filesystem-to-s3","advanced/storage.html#exportimport","advanced/storage.html#backup-and-recovery","advanced/storage.html#filesystem-backup","advanced/storage.html#s3-backup","advanced/storage.html#cross-region-replication","advanced/storage.html#performance-optimization","advanced/storage.html#filesystem","advanced/storage.html#s3","advanced/storage.html#caching","advanced/storage.html#security-considerations","advanced/storage.html#filesystem-1","advanced/storage.html#s3-1","advanced/storage.html#see-also","advanced/custom-schemas.html#custom-schemas","advanced/custom-schemas.html#overview","advanced/custom-schemas.html#creating-a-custom-schema","advanced/custom-schemas.html#basic-structure","advanced/custom-schemas.html#step-by-step-guide","advanced/custom-schemas.html#schema-best-practices","advanced/custom-schemas.html#use-meaningful-ids","advanced/custom-schemas.html#document-everything","advanced/custom-schemas.html#use-appropriate-validation","advanced/custom-schemas.html#group-related-fields","advanced/custom-schemas.html#advanced-schema-features","advanced/custom-schemas.html#conditional-validation","advanced/custom-schemas.html#reusable-definitions","advanced/custom-schemas.html#array-constraints","advanced/custom-schemas.html#pattern-properties","advanced/custom-schemas.html#schema-inheritance","advanced/custom-schemas.html#extending-custom-schemas","advanced/custom-schemas.html#validation","advanced/custom-schemas.html#python-validation","advanced/custom-schemas.html#nodejs-validation","advanced/custom-schemas.html#example-schemas","advanced/custom-schemas.html#medical-record","advanced/custom-schemas.html#legal-contract","advanced/custom-schemas.html#iot-sensor-reading","advanced/custom-schemas.html#schema-versioning","advanced/custom-schemas.html#version-in-path","advanced/custom-schemas.html#version-field","advanced/custom-schemas.html#migration-strategy","advanced/custom-schemas.html#see-also","advanced/testing.html#testing","advanced/testing.html#testing-fundamentals","advanced/testing.html#test-agent-setup","advanced/testing.html#test-fixtures","advanced/testing.html#unit-testing","advanced/testing.html#testing-document-operations","advanced/testing.html#testing-agreements","advanced/testing.html#agreement-completion-semantics-strict","advanced/testing.html#two-agent-agreement-harness-separate-agents","advanced/testing.html#testing-requestresponse-signing","advanced/testing.html#integration-testing","advanced/testing.html#testing-mcp-integration","advanced/testing.html#testing-http-endpoints","advanced/testing.html#mocking","advanced/testing.html#mocking-jacs-agent","advanced/testing.html#mocking-mcp-transport","advanced/testing.html#test-coverage","advanced/testing.html#rust-coverage","advanced/testing.html#python-coverage","advanced/testing.html#nodejs-coverage","advanced/testing.html#cicd-integration","advanced/testing.html#github-actions","advanced/testing.html#test-environment-variables","advanced/testing.html#raii-test-fixtures-rust","advanced/testing.html#trusttestguard-pattern","advanced/testing.html#property-based-testing","advanced/testing.html#key-properties-to-test","advanced/testing.html#fuzzing","advanced/testing.html#recommended-tool-cargo-fuzz","advanced/testing.html#priority-fuzz-targets-for-jacs","advanced/testing.html#best-practices","advanced/testing.html#1-isolate-tests","advanced/testing.html#2-test-edge-cases","advanced/testing.html#3-test-security-properties","advanced/testing.html#4-test-error-handling","advanced/testing.html#see-also","integrations/mcp.html#model-context-protocol-mcp","integrations/mcp.html#what-is-mcp","integrations/mcp.html#why-jacs--mcp","integrations/mcp.html#architecture","integrations/mcp.html#how-it-works","integrations/mcp.html#quick-start","integrations/mcp.html#nodejs","integrations/mcp.html#python","integrations/mcp.html#language-support","integrations/mcp.html#nodejs-haiaijacs","integrations/mcp.html#python-jacspy","integrations/mcp.html#message-flow","integrations/mcp.html#tool-call-example","integrations/mcp.html#signed-message-structure","integrations/mcp.html#configuration","integrations/mcp.html#server-configuration","integrations/mcp.html#client-configuration","integrations/mcp.html#transports","integrations/mcp.html#stdio","integrations/mcp.html#server-sent-events-sse","integrations/mcp.html#security-model","integrations/mcp.html#signing-is-sacred","integrations/mcp.html#what-gets-signed","integrations/mcp.html#what-gets-verified","integrations/mcp.html#passthrough-mode","integrations/mcp.html#debugging","integrations/mcp.html#enable-debug-logging","integrations/mcp.html#common-issues","integrations/mcp.html#best-practices","integrations/mcp.html#1-separate-keys-for-server-and-client","integrations/mcp.html#2-use-tls-for-network-transports","integrations/mcp.html#3-implement-key-rotation","integrations/mcp.html#4-log-security-events","integrations/mcp.html#example-multi-agent-system","integrations/mcp.html#hai-mcp-server-tools","integrations/mcp.html#identity--registration-tools","integrations/mcp.html#agent-state-tools","integrations/mcp.html#see-also","integrations/a2a.html#a2a-interoperability","integrations/a2a.html#what-jacs-adds","integrations/a2a.html#interoperability-contract","integrations/a2a.html#verification-model","integrations/a2a.html#12-factor-runtime-configuration","integrations/a2a.html#rust-example","integrations/a2a.html#python-example","integrations/a2a.html#nodejs-example","integrations/a2a.html#devex-expectations","integrations/a2a.html#troubleshooting","integrations/openclaw.html#openclaw-integration","integrations/openclaw.html#overview","integrations/openclaw.html#installation","integrations/openclaw.html#setup","integrations/openclaw.html#initialize-jacs-identity","integrations/openclaw.html#configuration","integrations/openclaw.html#configuration-options","integrations/openclaw.html#directory-structure","integrations/openclaw.html#cli-commands","integrations/openclaw.html#status","integrations/openclaw.html#sign-document","integrations/openclaw.html#verify-document","integrations/openclaw.html#lookup-agent","integrations/openclaw.html#export-agent-card","integrations/openclaw.html#generate-dns-record","integrations/openclaw.html#agent-tools","integrations/openclaw.html#jacs_sign","integrations/openclaw.html#jacs_verify","integrations/openclaw.html#jacs_fetch_pubkey","integrations/openclaw.html#jacs_verify_with_key","integrations/openclaw.html#jacs_lookup_agent","integrations/openclaw.html#jacs_create_agreement","integrations/openclaw.html#well-known-endpoints","integrations/openclaw.html#well-knownagent-cardjson","integrations/openclaw.html#well-knownjacs-pubkeyjson","integrations/openclaw.html#p2p-agent-verification","integrations/openclaw.html#flow","integrations/openclaw.html#example-workflow","integrations/openclaw.html#dns-based-discovery","integrations/openclaw.html#generate-dns-record-1","integrations/openclaw.html#dns-lookup","integrations/openclaw.html#security","integrations/openclaw.html#key-protection","integrations/openclaw.html#post-quantum-cryptography","integrations/openclaw.html#signature-binding","integrations/openclaw.html#skill-usage","integrations/openclaw.html#troubleshooting","integrations/openclaw.html#jacs-not-initialized","integrations/openclaw.html#failed-to-fetch-public-key","integrations/openclaw.html#signature-verification-failed","integrations/openclaw.html#next-steps","integrations/web-servers.html#web-servers","integrations/web-servers.html#overview","integrations/web-servers.html#supported-frameworks","integrations/web-servers.html#requestresponse-flow","integrations/web-servers.html#nodejs-integration","integrations/web-servers.html#expressjs","integrations/web-servers.html#koa","integrations/web-servers.html#python-integration","integrations/web-servers.html#fastapi","integrations/web-servers.html#flask","integrations/web-servers.html#http-client","integrations/web-servers.html#nodejs-client","integrations/web-servers.html#python-client","integrations/web-servers.html#middleware-patterns","integrations/web-servers.html#route-level-protection","integrations/web-servers.html#multiple-agent-configurations","integrations/web-servers.html#validation-middleware","integrations/web-servers.html#content-type-considerations","integrations/web-servers.html#error-handling","integrations/web-servers.html#server-side-errors","integrations/web-servers.html#client-side-errors","integrations/web-servers.html#security-best-practices","integrations/web-servers.html#1-use-tls-in-production","integrations/web-servers.html#2-separate-server-and-client-keys","integrations/web-servers.html#3-middleware-order-matters","integrations/web-servers.html#4-avoid-json-body-parser-conflicts","integrations/web-servers.html#logging-and-auditing","integrations/web-servers.html#testing","integrations/web-servers.html#testing-with-supertest","integrations/web-servers.html#troubleshooting","integrations/web-servers.html#common-issues","integrations/web-servers.html#debug-logging","integrations/web-servers.html#see-also","integrations/databases.html#databases","integrations/databases.html#built-in-postgresql-backend","integrations/databases.html#custom-database-integrations","integrations/databases.html#why-use-a-custom-database-integration","integrations/databases.html#postgresql-integration","integrations/databases.html#schema-design","integrations/databases.html#nodejs-example","integrations/databases.html#python-example","integrations/databases.html#mongodb-integration","integrations/databases.html#collection-design","integrations/databases.html#example","integrations/databases.html#sqlite-integration","integrations/databases.html#redis-caching","integrations/databases.html#indexing-strategies","integrations/databases.html#extracting-searchable-fields","integrations/databases.html#full-text-search","integrations/databases.html#best-practices","integrations/databases.html#1-store-complete-documents","integrations/databases.html#2-verify-after-retrieval","integrations/databases.html#3-handle-version-history","integrations/databases.html#4-batch-verification","integrations/databases.html#see-also","examples/cli.html#cli-examples","examples/cli.html#quick-reference","examples/cli.html#getting-started","examples/cli.html#first-time-setup","examples/cli.html#verify-your-setup","examples/cli.html#document-operations","examples/cli.html#creating-documents","examples/cli.html#verifying-documents","examples/cli.html#updating-documents","examples/cli.html#extracting-embedded-content","examples/cli.html#agreement-workflows","examples/cli.html#creating-an-agreement","examples/cli.html#signing-an-agreement","examples/cli.html#complete-agreement-workflow","examples/cli.html#agent-operations","examples/cli.html#creating-a-custom-agent","examples/cli.html#dns-based-identity","examples/cli.html#agent-verification","examples/cli.html#task-management","examples/cli.html#creating-tasks","examples/cli.html#scripting-examples","examples/cli.html#batch-document-processing","examples/cli.html#verification-report","examples/cli.html#watch-for-new-documents","examples/cli.html#environment-configuration","examples/cli.html#using-environment-variables","examples/cli.html#multiple-configurations","examples/cli.html#error-handling","examples/cli.html#understanding-exit-codes","examples/cli.html#handling-failures","examples/cli.html#see-also","examples/nodejs.html#nodejs-examples","examples/nodejs.html#setup","examples/nodejs.html#basic-document-operations","examples/nodejs.html#creating-and-signing-documents","examples/nodejs.html#verifying-documents","examples/nodejs.html#updating-documents","examples/nodejs.html#http-server-with-express","examples/nodejs.html#complete-express-server","examples/nodejs.html#http-client","examples/nodejs.html#mcp-integration","examples/nodejs.html#mcp-server","examples/nodejs.html#mcp-client","examples/nodejs.html#agreements","examples/nodejs.html#creating-multi-party-agreements","examples/nodejs.html#signing-agreements","examples/nodejs.html#checking-agreement-status","examples/nodejs.html#document-store","examples/nodejs.html#simple-file-based-store","examples/nodejs.html#error-handling","examples/nodejs.html#robust-error-handling-pattern","examples/nodejs.html#testing","examples/nodejs.html#jest-test-setup","examples/nodejs.html#see-also","examples/python.html#python-examples","examples/python.html#setup","examples/python.html#basic-document-operations","examples/python.html#creating-and-signing-documents","examples/python.html#verifying-documents","examples/python.html#updating-documents","examples/python.html#http-server-with-fastapi","examples/python.html#complete-fastapi-server","examples/python.html#http-client","examples/python.html#mcp-integration","examples/python.html#fastmcp-server-with-jacs","examples/python.html#mcp-client-with-jacs","examples/python.html#agreements","examples/python.html#creating-multi-party-agreements","examples/python.html#signing-agreements","examples/python.html#checking-agreement-status","examples/python.html#document-store","examples/python.html#simple-file-based-store","examples/python.html#batch-processing","examples/python.html#batch-document-creator","examples/python.html#testing","examples/python.html#pytest-setup","examples/python.html#error-handling","examples/python.html#robust-error-handling-pattern","examples/python.html#see-also","examples/integrations.html#integration-examples","examples/integrations.html#multi-agent-contract-signing-system","examples/integrations.html#overview","examples/integrations.html#implementation","examples/integrations.html#secure-api-gateway-with-mcp-tools","examples/integrations.html#nodejs-implementation","examples/integrations.html#python-implementation","examples/integrations.html#document-audit-trail-system","examples/integrations.html#multi-tenant-document-service","examples/integrations.html#webhook-notification-system","examples/integrations.html#see-also","reference/cli-commands.html#cli-command-reference","reference/cli-commands.html#global-commands","reference/cli-commands.html#jacs-version","reference/cli-commands.html#jacs-init","reference/cli-commands.html#jacs-help","reference/cli-commands.html#configuration-commands","reference/cli-commands.html#jacs-config","reference/cli-commands.html#agent-commands","reference/cli-commands.html#jacs-agent","reference/cli-commands.html#task-commands","reference/cli-commands.html#jacs-task","reference/cli-commands.html#document-commands","reference/cli-commands.html#jacs-document-create","reference/cli-commands.html#jacs-document-update","reference/cli-commands.html#jacs-document-verify","reference/cli-commands.html#jacs-document-extract","reference/cli-commands.html#agreement-commands","reference/cli-commands.html#common-patterns","reference/cli-commands.html#basic-document-lifecycle","reference/cli-commands.html#working-with-attachments","reference/cli-commands.html#schema-validation-workflow","reference/cli-commands.html#global-options","reference/cli-commands.html#exit-codes","reference/cli-commands.html#environment-variables","reference/cli-commands.html#file-formats","reference/cli-commands.html#input-files","reference/cli-commands.html#output-files","reference/configuration.html#configuration-reference","reference/configuration.html#overview","reference/configuration.html#key-resolution-for-verifiers","reference/configuration.html#complete-example-configuration","reference/configuration.html#observability-configuration","reference/configuration.html#logs-configuration","reference/configuration.html#metrics-configuration","reference/configuration.html#tracing-configuration","reference/configuration.html#authentication--headers","reference/configuration.html#common-patterns","reference/configuration.html#development-configuration","reference/configuration.html#production-configuration","reference/configuration.html#file-based-configuration","reference/configuration.html#environment-variable-integration","reference/configuration.html#required-environment-variable","reference/configuration.html#configuration-based-settings","reference/configuration.html#storage-configuration","reference/configuration.html#available-storage-backends","reference/configuration.html#backend-specific-configuration","reference/configuration.html#storage-behavior","reference/configuration.html#configuration-examples","reference/configuration.html#security-considerations","reference/configuration.html#migration-between-storage-backends","reference/errors.html#error-codes","reference/errors.html#cli-exit-codes","reference/errors.html#configuration-errors","reference/errors.html#missing-configuration","reference/errors.html#invalid-configuration","reference/errors.html#key-directory-not-found","reference/errors.html#cryptographic-errors","reference/errors.html#private-key-not-found","reference/errors.html#invalid-key-format","reference/errors.html#key-password-required","reference/errors.html#algorithm-mismatch","reference/errors.html#signature-errors","reference/errors.html#verification-failed","reference/errors.html#missing-signature","reference/errors.html#invalid-signature-format","reference/errors.html#unknown-signing-algorithm","reference/errors.html#dns-verification-errors","reference/errors.html#dnssec-validation-failed","reference/errors.html#dns-record-not-found","reference/errors.html#dns-required","reference/errors.html#dns-lookup-timeout","reference/errors.html#document-errors","reference/errors.html#invalid-json","reference/errors.html#schema-validation-failed","reference/errors.html#document-not-found","reference/errors.html#version-mismatch","reference/errors.html#agreement-errors","reference/errors.html#agreement-not-found","reference/errors.html#already-signed","reference/errors.html#not-authorized","reference/errors.html#agreement-locked","reference/errors.html#storage-errors","reference/errors.html#storage-backend-error","reference/errors.html#aws-s3-error","reference/errors.html#connection-error","reference/errors.html#httpmcp-errors","reference/errors.html#request-verification-failed","reference/errors.html#response-verification-failed","reference/errors.html#middleware-configuration-error","reference/errors.html#debugging-tips","reference/errors.html#enable-verbose-output","reference/errors.html#check-configuration","reference/errors.html#verify-agent","reference/errors.html#test-signing","reference/errors.html#see-also","reference/migration.html#migration-guide","reference/migration.html#version-compatibility","reference/migration.html#migrating-from-051-to-052","reference/migration.html#migration-notes","reference/migration.html#deprecated-environment-variables","reference/migration.html#new-environment-variables","reference/migration.html#migrating-from-02x-to-03x","reference/migration.html#configuration-changes","reference/migration.html#migration-steps","reference/migration.html#migrating-storage-backends","reference/migration.html#filesystem-to-aws-s3","reference/migration.html#aws-s3-to-filesystem","reference/migration.html#migrating-cryptographic-algorithms","reference/migration.html#ed25519-to-post-quantum","reference/migration.html#migrating-between-platforms","reference/migration.html#nodejs-to-python","reference/migration.html#sharing-agents-between-platforms","reference/migration.html#migrating-key-formats","reference/migration.html#unencrypted-to-encrypted-keys","reference/migration.html#database-migration","reference/migration.html#adding-database-storage","reference/migration.html#mcp-integration-migration","reference/migration.html#adding-jacs-to-existing-mcp-server","reference/migration.html#http-api-migration","reference/migration.html#adding-jacs-to-existing-express-api","reference/migration.html#troubleshooting-migration","reference/migration.html#common-issues","reference/migration.html#verification-checklist","reference/migration.html#rollback-procedures","reference/migration.html#see-also"],"index":{"documentStore":{"docInfo":{"0":{"body":24,"breadcrumbs":6,"title":5},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":8,"breadcrumbs":2,"title":1},"100":{"body":10,"breadcrumbs":2,"title":1},"1000":{"body":22,"breadcrumbs":5,"title":3},"1001":{"body":42,"breadcrumbs":5,"title":3},"1002":{"body":7,"breadcrumbs":6,"title":4},"1003":{"body":33,"breadcrumbs":6,"title":4},"1004":{"body":9,"breadcrumbs":5,"title":3},"1005":{"body":0,"breadcrumbs":4,"title":2},"1006":{"body":22,"breadcrumbs":4,"title":2},"1007":{"body":24,"breadcrumbs":4,"title":2},"1008":{"body":14,"breadcrumbs":4,"title":2},"1009":{"body":0,"breadcrumbs":4,"title":2},"101":{"body":12,"breadcrumbs":4,"title":3},"1010":{"body":15,"breadcrumbs":4,"title":2},"1011":{"body":19,"breadcrumbs":5,"title":3},"1012":{"body":21,"breadcrumbs":5,"title":3},"1013":{"body":15,"breadcrumbs":3,"title":1},"1014":{"body":18,"breadcrumbs":4,"title":2},"1015":{"body":54,"breadcrumbs":4,"title":2},"1016":{"body":4,"breadcrumbs":5,"title":3},"1017":{"body":13,"breadcrumbs":3,"title":1},"1018":{"body":24,"breadcrumbs":3,"title":1},"1019":{"body":3,"breadcrumbs":3,"title":1},"102":{"body":0,"breadcrumbs":3,"title":2},"1020":{"body":11,"breadcrumbs":4,"title":2},"1021":{"body":21,"breadcrumbs":3,"title":1},"1022":{"body":7,"breadcrumbs":4,"title":2},"1023":{"body":14,"breadcrumbs":3,"title":1},"1024":{"body":24,"breadcrumbs":3,"title":1},"1025":{"body":3,"breadcrumbs":3,"title":1},"1026":{"body":10,"breadcrumbs":4,"title":2},"1027":{"body":12,"breadcrumbs":3,"title":1},"1028":{"body":7,"breadcrumbs":5,"title":3},"1029":{"body":18,"breadcrumbs":3,"title":1},"103":{"body":5,"breadcrumbs":3,"title":2},"1030":{"body":27,"breadcrumbs":3,"title":1},"1031":{"body":3,"breadcrumbs":3,"title":1},"1032":{"body":14,"breadcrumbs":4,"title":2},"1033":{"body":13,"breadcrumbs":3,"title":1},"1034":{"body":8,"breadcrumbs":4,"title":2},"1035":{"body":18,"breadcrumbs":3,"title":1},"1036":{"body":20,"breadcrumbs":3,"title":1},"1037":{"body":2,"breadcrumbs":3,"title":1},"1038":{"body":12,"breadcrumbs":4,"title":2},"1039":{"body":8,"breadcrumbs":3,"title":1},"104":{"body":10,"breadcrumbs":2,"title":1},"1040":{"body":0,"breadcrumbs":5,"title":3},"1041":{"body":26,"breadcrumbs":4,"title":2},"1042":{"body":41,"breadcrumbs":4,"title":2},"1043":{"body":20,"breadcrumbs":4,"title":2},"1044":{"body":30,"breadcrumbs":4,"title":2},"1045":{"body":46,"breadcrumbs":4,"title":2},"1046":{"body":20,"breadcrumbs":3,"title":1},"1047":{"body":56,"breadcrumbs":4,"title":2},"1048":{"body":32,"breadcrumbs":4,"title":2},"1049":{"body":0,"breadcrumbs":4,"title":2},"105":{"body":2,"breadcrumbs":3,"title":2},"1050":{"body":15,"breadcrumbs":4,"title":2},"1051":{"body":13,"breadcrumbs":4,"title":2},"1052":{"body":19,"breadcrumbs":4,"title":2},"1053":{"body":14,"breadcrumbs":3,"title":1},"1054":{"body":17,"breadcrumbs":4,"title":2},"1055":{"body":31,"breadcrumbs":4,"title":2},"1056":{"body":8,"breadcrumbs":3,"title":1},"1057":{"body":9,"breadcrumbs":5,"title":3},"1058":{"body":4,"breadcrumbs":3,"title":1},"1059":{"body":14,"breadcrumbs":4,"title":2},"106":{"body":6,"breadcrumbs":3,"title":2},"1060":{"body":10,"breadcrumbs":4,"title":2},"1061":{"body":10,"breadcrumbs":3,"title":1},"1062":{"body":10,"breadcrumbs":3,"title":1},"1063":{"body":21,"breadcrumbs":3,"title":1},"1064":{"body":6,"breadcrumbs":6,"title":4},"1065":{"body":6,"breadcrumbs":3,"title":1},"1066":{"body":12,"breadcrumbs":4,"title":2},"1067":{"body":16,"breadcrumbs":4,"title":2},"1068":{"body":10,"breadcrumbs":4,"title":2},"1069":{"body":10,"breadcrumbs":3,"title":1},"107":{"body":49,"breadcrumbs":3,"title":2},"1070":{"body":10,"breadcrumbs":3,"title":1},"1071":{"body":22,"breadcrumbs":4,"title":2},"1072":{"body":27,"breadcrumbs":3,"title":1},"1073":{"body":4,"breadcrumbs":6,"title":4},"1074":{"body":2,"breadcrumbs":3,"title":1},"1075":{"body":12,"breadcrumbs":3,"title":1},"1076":{"body":11,"breadcrumbs":4,"title":2},"1077":{"body":28,"breadcrumbs":6,"title":4},"1078":{"body":19,"breadcrumbs":5,"title":3},"1079":{"body":24,"breadcrumbs":3,"title":1},"108":{"body":41,"breadcrumbs":3,"title":2},"1080":{"body":37,"breadcrumbs":3,"title":1},"1081":{"body":29,"breadcrumbs":4,"title":2},"1082":{"body":24,"breadcrumbs":4,"title":2},"1083":{"body":43,"breadcrumbs":4,"title":2},"1084":{"body":53,"breadcrumbs":5,"title":3},"1085":{"body":17,"breadcrumbs":4,"title":2},"1086":{"body":22,"breadcrumbs":4,"title":2},"1087":{"body":17,"breadcrumbs":3,"title":1},"1088":{"body":31,"breadcrumbs":4,"title":2},"1089":{"body":29,"breadcrumbs":5,"title":3},"109":{"body":29,"breadcrumbs":3,"title":2},"1090":{"body":0,"breadcrumbs":4,"title":2},"1091":{"body":17,"breadcrumbs":4,"title":2},"1092":{"body":19,"breadcrumbs":4,"title":2},"1093":{"body":0,"breadcrumbs":4,"title":2},"1094":{"body":40,"breadcrumbs":4,"title":2},"1095":{"body":16,"breadcrumbs":3,"title":1},"1096":{"body":0,"breadcrumbs":4,"title":2},"1097":{"body":12,"breadcrumbs":4,"title":2},"1098":{"body":16,"breadcrumbs":4,"title":2},"1099":{"body":14,"breadcrumbs":5,"title":3},"11":{"body":39,"breadcrumbs":3,"title":2},"110":{"body":18,"breadcrumbs":3,"title":2},"1100":{"body":0,"breadcrumbs":4,"title":2},"1101":{"body":10,"breadcrumbs":3,"title":1},"1102":{"body":14,"breadcrumbs":3,"title":1},"1103":{"body":15,"breadcrumbs":3,"title":1},"1104":{"body":0,"breadcrumbs":4,"title":2},"1105":{"body":8,"breadcrumbs":3,"title":1},"1106":{"body":25,"breadcrumbs":3,"title":1},"1107":{"body":12,"breadcrumbs":3,"title":1},"1108":{"body":18,"breadcrumbs":4,"title":2},"1109":{"body":24,"breadcrumbs":3,"title":1},"111":{"body":20,"breadcrumbs":2,"title":1},"1110":{"body":0,"breadcrumbs":5,"title":3},"1111":{"body":48,"breadcrumbs":4,"title":2},"1112":{"body":161,"breadcrumbs":5,"title":3},"1113":{"body":0,"breadcrumbs":5,"title":3},"1114":{"body":7,"breadcrumbs":5,"title":3},"1115":{"body":16,"breadcrumbs":4,"title":2},"1116":{"body":19,"breadcrumbs":5,"title":3},"1117":{"body":33,"breadcrumbs":5,"title":3},"1118":{"body":0,"breadcrumbs":5,"title":3},"1119":{"body":31,"breadcrumbs":4,"title":2},"112":{"body":19,"breadcrumbs":3,"title":2},"1120":{"body":28,"breadcrumbs":4,"title":2},"1121":{"body":13,"breadcrumbs":4,"title":2},"1122":{"body":13,"breadcrumbs":4,"title":2},"1123":{"body":0,"breadcrumbs":4,"title":2},"1124":{"body":56,"breadcrumbs":5,"title":3},"1125":{"body":0,"breadcrumbs":3,"title":1},"1126":{"body":31,"breadcrumbs":4,"title":2},"1127":{"body":42,"breadcrumbs":4,"title":2},"1128":{"body":0,"breadcrumbs":4,"title":2},"1129":{"body":58,"breadcrumbs":4,"title":2},"113":{"body":45,"breadcrumbs":3,"title":2},"1130":{"body":59,"breadcrumbs":4,"title":2},"1131":{"body":54,"breadcrumbs":5,"title":3},"1132":{"body":0,"breadcrumbs":4,"title":2},"1133":{"body":2,"breadcrumbs":4,"title":2},"1134":{"body":6,"breadcrumbs":4,"title":2},"1135":{"body":15,"breadcrumbs":4,"title":2},"1136":{"body":12,"breadcrumbs":3,"title":1},"1137":{"body":14,"breadcrumbs":2,"title":1},"1138":{"body":0,"breadcrumbs":3,"title":2},"1139":{"body":23,"breadcrumbs":4,"title":3},"114":{"body":0,"breadcrumbs":2,"title":1},"1140":{"body":169,"breadcrumbs":3,"title":2},"1141":{"body":0,"breadcrumbs":3,"title":2},"1142":{"body":63,"breadcrumbs":4,"title":3},"1143":{"body":64,"breadcrumbs":3,"title":2},"1144":{"body":33,"breadcrumbs":5,"title":4},"1145":{"body":187,"breadcrumbs":7,"title":6},"1146":{"body":28,"breadcrumbs":4,"title":3},"1147":{"body":0,"breadcrumbs":3,"title":2},"1148":{"body":125,"breadcrumbs":4,"title":3},"1149":{"body":63,"breadcrumbs":4,"title":3},"115":{"body":34,"breadcrumbs":3,"title":2},"1150":{"body":0,"breadcrumbs":2,"title":1},"1151":{"body":93,"breadcrumbs":4,"title":3},"1152":{"body":27,"breadcrumbs":4,"title":3},"1153":{"body":0,"breadcrumbs":3,"title":2},"1154":{"body":96,"breadcrumbs":3,"title":2},"1155":{"body":13,"breadcrumbs":3,"title":2},"1156":{"body":10,"breadcrumbs":3,"title":2},"1157":{"body":0,"breadcrumbs":3,"title":2},"1158":{"body":55,"breadcrumbs":3,"title":2},"1159":{"body":7,"breadcrumbs":4,"title":3},"116":{"body":30,"breadcrumbs":3,"title":2},"1160":{"body":22,"breadcrumbs":5,"title":4},"1161":{"body":140,"breadcrumbs":3,"title":2},"1162":{"body":15,"breadcrumbs":4,"title":3},"1163":{"body":39,"breadcrumbs":4,"title":3},"1164":{"body":12,"breadcrumbs":2,"title":1},"1165":{"body":22,"breadcrumbs":5,"title":4},"1166":{"body":31,"breadcrumbs":5,"title":4},"1167":{"body":0,"breadcrumbs":3,"title":2},"1168":{"body":17,"breadcrumbs":4,"title":3},"1169":{"body":33,"breadcrumbs":5,"title":4},"117":{"body":16,"breadcrumbs":3,"title":2},"1170":{"body":21,"breadcrumbs":5,"title":4},"1171":{"body":20,"breadcrumbs":5,"title":4},"1172":{"body":15,"breadcrumbs":2,"title":1},"1173":{"body":18,"breadcrumbs":8,"title":4},"1174":{"body":38,"breadcrumbs":5,"title":1},"1175":{"body":51,"breadcrumbs":6,"title":2},"1176":{"body":27,"breadcrumbs":5,"title":1},"1177":{"body":30,"breadcrumbs":5,"title":1},"1178":{"body":0,"breadcrumbs":6,"title":2},"1179":{"body":60,"breadcrumbs":5,"title":1},"118":{"body":11,"breadcrumbs":4,"title":2},"1180":{"body":48,"breadcrumbs":5,"title":1},"1181":{"body":8,"breadcrumbs":6,"title":2},"1182":{"body":36,"breadcrumbs":6,"title":2},"1183":{"body":33,"breadcrumbs":6,"title":2},"1184":{"body":0,"breadcrumbs":6,"title":2},"1185":{"body":33,"breadcrumbs":7,"title":3},"1186":{"body":47,"breadcrumbs":7,"title":3},"1187":{"body":0,"breadcrumbs":5,"title":1},"1188":{"body":15,"breadcrumbs":6,"title":2},"1189":{"body":22,"breadcrumbs":6,"title":2},"119":{"body":16,"breadcrumbs":4,"title":2},"1190":{"body":0,"breadcrumbs":5,"title":1},"1191":{"body":29,"breadcrumbs":5,"title":1},"1192":{"body":48,"breadcrumbs":8,"title":4},"1193":{"body":0,"breadcrumbs":6,"title":2},"1194":{"body":122,"breadcrumbs":6,"title":2},"1195":{"body":13,"breadcrumbs":6,"title":2},"1196":{"body":14,"breadcrumbs":6,"title":2},"1197":{"body":30,"breadcrumbs":6,"title":2},"1198":{"body":0,"breadcrumbs":5,"title":1},"1199":{"body":7,"breadcrumbs":7,"title":3},"12":{"body":0,"breadcrumbs":2,"title":1},"120":{"body":31,"breadcrumbs":4,"title":2},"1200":{"body":35,"breadcrumbs":6,"title":2},"1201":{"body":0,"breadcrumbs":6,"title":2},"1202":{"body":11,"breadcrumbs":9,"title":5},"1203":{"body":5,"breadcrumbs":9,"title":5},"1204":{"body":7,"breadcrumbs":8,"title":4},"1205":{"body":7,"breadcrumbs":8,"title":4},"1206":{"body":48,"breadcrumbs":8,"title":4},"1207":{"body":8,"breadcrumbs":8,"title":4},"1208":{"body":32,"breadcrumbs":7,"title":3},"1209":{"body":75,"breadcrumbs":7,"title":3},"121":{"body":0,"breadcrumbs":3,"title":1},"1210":{"body":25,"breadcrumbs":5,"title":1},"1211":{"body":10,"breadcrumbs":4,"title":2},"1212":{"body":33,"breadcrumbs":4,"title":2},"1213":{"body":30,"breadcrumbs":4,"title":2},"1214":{"body":47,"breadcrumbs":4,"title":2},"1215":{"body":19,"breadcrumbs":6,"title":4},"1216":{"body":20,"breadcrumbs":4,"title":2},"1217":{"body":21,"breadcrumbs":4,"title":2},"1218":{"body":21,"breadcrumbs":4,"title":2},"1219":{"body":35,"breadcrumbs":4,"title":2},"122":{"body":18,"breadcrumbs":4,"title":2},"1220":{"body":28,"breadcrumbs":3,"title":1},"1221":{"body":16,"breadcrumbs":3,"title":2},"1222":{"body":42,"breadcrumbs":2,"title":1},"1223":{"body":8,"breadcrumbs":2,"title":1},"1224":{"body":0,"breadcrumbs":2,"title":1},"1225":{"body":20,"breadcrumbs":4,"title":3},"1226":{"body":31,"breadcrumbs":2,"title":1},"1227":{"body":49,"breadcrumbs":3,"title":2},"1228":{"body":29,"breadcrumbs":3,"title":2},"1229":{"body":0,"breadcrumbs":3,"title":2},"123":{"body":0,"breadcrumbs":4,"title":2},"1230":{"body":11,"breadcrumbs":2,"title":1},"1231":{"body":9,"breadcrumbs":3,"title":2},"1232":{"body":8,"breadcrumbs":3,"title":2},"1233":{"body":11,"breadcrumbs":3,"title":2},"1234":{"body":9,"breadcrumbs":4,"title":3},"1235":{"body":13,"breadcrumbs":4,"title":3},"1236":{"body":6,"breadcrumbs":3,"title":2},"1237":{"body":13,"breadcrumbs":2,"title":1},"1238":{"body":10,"breadcrumbs":2,"title":1},"1239":{"body":11,"breadcrumbs":2,"title":1},"124":{"body":11,"breadcrumbs":4,"title":2},"1240":{"body":16,"breadcrumbs":2,"title":1},"1241":{"body":10,"breadcrumbs":2,"title":1},"1242":{"body":23,"breadcrumbs":2,"title":1},"1243":{"body":5,"breadcrumbs":4,"title":3},"1244":{"body":6,"breadcrumbs":4,"title":3},"1245":{"body":20,"breadcrumbs":4,"title":3},"1246":{"body":6,"breadcrumbs":4,"title":3},"1247":{"body":34,"breadcrumbs":2,"title":1},"1248":{"body":55,"breadcrumbs":3,"title":2},"1249":{"body":8,"breadcrumbs":4,"title":3},"125":{"body":13,"breadcrumbs":4,"title":2},"1250":{"body":20,"breadcrumbs":4,"title":3},"1251":{"body":23,"breadcrumbs":3,"title":2},"1252":{"body":0,"breadcrumbs":2,"title":1},"1253":{"body":18,"breadcrumbs":3,"title":2},"1254":{"body":15,"breadcrumbs":4,"title":3},"1255":{"body":14,"breadcrumbs":3,"title":2},"1256":{"body":20,"breadcrumbs":3,"title":2},"1257":{"body":0,"breadcrumbs":2,"title":1},"1258":{"body":8,"breadcrumbs":3,"title":2},"1259":{"body":7,"breadcrumbs":5,"title":4},"126":{"body":0,"breadcrumbs":4,"title":2},"1260":{"body":13,"breadcrumbs":4,"title":3},"1261":{"body":15,"breadcrumbs":3,"title":2},"1262":{"body":13,"breadcrumbs":4,"title":2},"1263":{"body":31,"breadcrumbs":3,"title":1},"1264":{"body":15,"breadcrumbs":4,"title":2},"1265":{"body":14,"breadcrumbs":4,"title":2},"1266":{"body":0,"breadcrumbs":4,"title":2},"1267":{"body":55,"breadcrumbs":3,"title":1},"1268":{"body":56,"breadcrumbs":3,"title":1},"1269":{"body":0,"breadcrumbs":4,"title":2},"127":{"body":51,"breadcrumbs":4,"title":2},"1270":{"body":71,"breadcrumbs":3,"title":1},"1271":{"body":62,"breadcrumbs":3,"title":1},"1272":{"body":0,"breadcrumbs":4,"title":2},"1273":{"body":55,"breadcrumbs":4,"title":2},"1274":{"body":43,"breadcrumbs":4,"title":2},"1275":{"body":0,"breadcrumbs":4,"title":2},"1276":{"body":49,"breadcrumbs":5,"title":3},"1277":{"body":29,"breadcrumbs":5,"title":3},"1278":{"body":34,"breadcrumbs":4,"title":2},"1279":{"body":33,"breadcrumbs":5,"title":3},"128":{"body":69,"breadcrumbs":4,"title":2},"1280":{"body":0,"breadcrumbs":4,"title":2},"1281":{"body":35,"breadcrumbs":5,"title":3},"1282":{"body":16,"breadcrumbs":5,"title":3},"1283":{"body":0,"breadcrumbs":5,"title":3},"1284":{"body":9,"breadcrumbs":6,"title":4},"1285":{"body":16,"breadcrumbs":7,"title":5},"1286":{"body":30,"breadcrumbs":6,"title":4},"1287":{"body":19,"breadcrumbs":8,"title":6},"1288":{"body":34,"breadcrumbs":4,"title":2},"1289":{"body":0,"breadcrumbs":3,"title":1},"129":{"body":76,"breadcrumbs":4,"title":2},"1290":{"body":62,"breadcrumbs":4,"title":2},"1291":{"body":0,"breadcrumbs":3,"title":1},"1292":{"body":39,"breadcrumbs":4,"title":2},"1293":{"body":7,"breadcrumbs":4,"title":2},"1294":{"body":22,"breadcrumbs":3,"title":1},"1295":{"body":28,"breadcrumbs":2,"title":1},"1296":{"body":38,"breadcrumbs":4,"title":3},"1297":{"body":67,"breadcrumbs":4,"title":3},"1298":{"body":34,"breadcrumbs":5,"title":4},"1299":{"body":0,"breadcrumbs":3,"title":2},"13":{"body":16,"breadcrumbs":4,"title":3},"130":{"body":27,"breadcrumbs":4,"title":2},"1300":{"body":67,"breadcrumbs":3,"title":2},"1301":{"body":173,"breadcrumbs":3,"title":2},"1302":{"body":175,"breadcrumbs":3,"title":2},"1303":{"body":0,"breadcrumbs":3,"title":2},"1304":{"body":54,"breadcrumbs":3,"title":2},"1305":{"body":112,"breadcrumbs":2,"title":1},"1306":{"body":140,"breadcrumbs":3,"title":2},"1307":{"body":82,"breadcrumbs":3,"title":2},"1308":{"body":0,"breadcrumbs":3,"title":2},"1309":{"body":33,"breadcrumbs":4,"title":3},"131":{"body":0,"breadcrumbs":4,"title":2},"1310":{"body":80,"breadcrumbs":4,"title":3},"1311":{"body":0,"breadcrumbs":3,"title":2},"1312":{"body":40,"breadcrumbs":5,"title":4},"1313":{"body":39,"breadcrumbs":4,"title":3},"1314":{"body":22,"breadcrumbs":5,"title":4},"1315":{"body":37,"breadcrumbs":4,"title":3},"1316":{"body":13,"breadcrumbs":2,"title":1},"1317":{"body":9,"breadcrumbs":4,"title":2},"1318":{"body":31,"breadcrumbs":4,"title":2},"1319":{"body":0,"breadcrumbs":4,"title":2},"132":{"body":62,"breadcrumbs":4,"title":2},"1320":{"body":30,"breadcrumbs":5,"title":3},"1321":{"body":29,"breadcrumbs":4,"title":2},"1322":{"body":0,"breadcrumbs":4,"title":2},"1323":{"body":118,"breadcrumbs":4,"title":2},"1324":{"body":73,"breadcrumbs":4,"title":2},"1325":{"body":69,"breadcrumbs":4,"title":2},"1326":{"body":21,"breadcrumbs":5,"title":3},"1327":{"body":0,"breadcrumbs":4,"title":2},"1328":{"body":72,"breadcrumbs":4,"title":2},"1329":{"body":65,"breadcrumbs":4,"title":2},"133":{"body":0,"breadcrumbs":4,"title":2},"1330":{"body":159,"breadcrumbs":5,"title":3},"1331":{"body":0,"breadcrumbs":4,"title":2},"1332":{"body":54,"breadcrumbs":5,"title":3},"1333":{"body":93,"breadcrumbs":5,"title":3},"1334":{"body":47,"breadcrumbs":4,"title":2},"1335":{"body":0,"breadcrumbs":4,"title":2},"1336":{"body":45,"breadcrumbs":4,"title":2},"1337":{"body":0,"breadcrumbs":4,"title":2},"1338":{"body":43,"breadcrumbs":5,"title":3},"1339":{"body":59,"breadcrumbs":4,"title":2},"134":{"body":118,"breadcrumbs":4,"title":2},"1340":{"body":52,"breadcrumbs":5,"title":3},"1341":{"body":0,"breadcrumbs":4,"title":2},"1342":{"body":36,"breadcrumbs":5,"title":3},"1343":{"body":32,"breadcrumbs":4,"title":2},"1344":{"body":0,"breadcrumbs":4,"title":2},"1345":{"body":36,"breadcrumbs":5,"title":3},"1346":{"body":56,"breadcrumbs":4,"title":2},"1347":{"body":16,"breadcrumbs":3,"title":1},"1348":{"body":8,"breadcrumbs":4,"title":2},"1349":{"body":21,"breadcrumbs":3,"title":1},"135":{"body":65,"breadcrumbs":4,"title":2},"1350":{"body":0,"breadcrumbs":5,"title":3},"1351":{"body":58,"breadcrumbs":5,"title":3},"1352":{"body":49,"breadcrumbs":4,"title":2},"1353":{"body":68,"breadcrumbs":4,"title":2},"1354":{"body":0,"breadcrumbs":5,"title":3},"1355":{"body":173,"breadcrumbs":5,"title":3},"1356":{"body":85,"breadcrumbs":4,"title":2},"1357":{"body":0,"breadcrumbs":4,"title":2},"1358":{"body":149,"breadcrumbs":4,"title":2},"1359":{"body":98,"breadcrumbs":4,"title":2},"136":{"body":62,"breadcrumbs":4,"title":2},"1360":{"body":0,"breadcrumbs":3,"title":1},"1361":{"body":91,"breadcrumbs":6,"title":4},"1362":{"body":56,"breadcrumbs":4,"title":2},"1363":{"body":45,"breadcrumbs":5,"title":3},"1364":{"body":0,"breadcrumbs":4,"title":2},"1365":{"body":152,"breadcrumbs":6,"title":4},"1366":{"body":0,"breadcrumbs":4,"title":2},"1367":{"body":130,"breadcrumbs":6,"title":4},"1368":{"body":0,"breadcrumbs":3,"title":1},"1369":{"body":137,"breadcrumbs":5,"title":3},"137":{"body":17,"breadcrumbs":5,"title":3},"1370":{"body":18,"breadcrumbs":3,"title":1},"1371":{"body":9,"breadcrumbs":4,"title":2},"1372":{"body":15,"breadcrumbs":3,"title":1},"1373":{"body":0,"breadcrumbs":5,"title":3},"1374":{"body":56,"breadcrumbs":5,"title":3},"1375":{"body":48,"breadcrumbs":4,"title":2},"1376":{"body":63,"breadcrumbs":4,"title":2},"1377":{"body":0,"breadcrumbs":5,"title":3},"1378":{"body":208,"breadcrumbs":5,"title":3},"1379":{"body":69,"breadcrumbs":4,"title":2},"138":{"body":59,"breadcrumbs":4,"title":2},"1380":{"body":0,"breadcrumbs":4,"title":2},"1381":{"body":108,"breadcrumbs":5,"title":3},"1382":{"body":58,"breadcrumbs":5,"title":3},"1383":{"body":0,"breadcrumbs":3,"title":1},"1384":{"body":88,"breadcrumbs":6,"title":4},"1385":{"body":53,"breadcrumbs":4,"title":2},"1386":{"body":42,"breadcrumbs":5,"title":3},"1387":{"body":0,"breadcrumbs":4,"title":2},"1388":{"body":143,"breadcrumbs":6,"title":4},"1389":{"body":0,"breadcrumbs":4,"title":2},"139":{"body":29,"breadcrumbs":4,"title":2},"1390":{"body":163,"breadcrumbs":5,"title":3},"1391":{"body":0,"breadcrumbs":3,"title":1},"1392":{"body":142,"breadcrumbs":4,"title":2},"1393":{"body":0,"breadcrumbs":4,"title":2},"1394":{"body":145,"breadcrumbs":6,"title":4},"1395":{"body":15,"breadcrumbs":3,"title":1},"1396":{"body":11,"breadcrumbs":4,"title":2},"1397":{"body":7,"breadcrumbs":7,"title":5},"1398":{"body":8,"breadcrumbs":3,"title":1},"1399":{"body":262,"breadcrumbs":3,"title":1},"14":{"body":13,"breadcrumbs":3,"title":2},"140":{"body":0,"breadcrumbs":4,"title":2},"1400":{"body":8,"breadcrumbs":7,"title":5},"1401":{"body":295,"breadcrumbs":4,"title":2},"1402":{"body":198,"breadcrumbs":4,"title":2},"1403":{"body":329,"breadcrumbs":6,"title":4},"1404":{"body":352,"breadcrumbs":6,"title":4},"1405":{"body":178,"breadcrumbs":5,"title":3},"1406":{"body":23,"breadcrumbs":3,"title":1},"1407":{"body":9,"breadcrumbs":6,"title":3},"1408":{"body":0,"breadcrumbs":5,"title":2},"1409":{"body":8,"breadcrumbs":5,"title":2},"141":{"body":23,"breadcrumbs":5,"title":3},"1410":{"body":17,"breadcrumbs":5,"title":2},"1411":{"body":8,"breadcrumbs":5,"title":2},"1412":{"body":0,"breadcrumbs":5,"title":2},"1413":{"body":15,"breadcrumbs":5,"title":2},"1414":{"body":0,"breadcrumbs":5,"title":2},"1415":{"body":20,"breadcrumbs":5,"title":2},"1416":{"body":0,"breadcrumbs":5,"title":2},"1417":{"body":20,"breadcrumbs":5,"title":2},"1418":{"body":8,"breadcrumbs":5,"title":2},"1419":{"body":157,"breadcrumbs":6,"title":3},"142":{"body":46,"breadcrumbs":5,"title":3},"1420":{"body":112,"breadcrumbs":6,"title":3},"1421":{"body":105,"breadcrumbs":6,"title":3},"1422":{"body":86,"breadcrumbs":6,"title":3},"1423":{"body":61,"breadcrumbs":5,"title":2},"1424":{"body":0,"breadcrumbs":5,"title":2},"1425":{"body":49,"breadcrumbs":6,"title":3},"1426":{"body":42,"breadcrumbs":5,"title":2},"1427":{"body":21,"breadcrumbs":6,"title":3},"1428":{"body":24,"breadcrumbs":5,"title":2},"1429":{"body":22,"breadcrumbs":5,"title":2},"143":{"body":18,"breadcrumbs":5,"title":3},"1430":{"body":18,"breadcrumbs":5,"title":2},"1431":{"body":0,"breadcrumbs":5,"title":2},"1432":{"body":27,"breadcrumbs":5,"title":2},"1433":{"body":14,"breadcrumbs":5,"title":2},"1434":{"body":0,"breadcrumbs":4,"title":2},"1435":{"body":0,"breadcrumbs":3,"title":1},"1436":{"body":52,"breadcrumbs":5,"title":3},"1437":{"body":77,"breadcrumbs":5,"title":3},"1438":{"body":15,"breadcrumbs":4,"title":2},"1439":{"body":91,"breadcrumbs":4,"title":2},"144":{"body":19,"breadcrumbs":4,"title":2},"1440":{"body":91,"breadcrumbs":4,"title":2},"1441":{"body":117,"breadcrumbs":4,"title":2},"1442":{"body":35,"breadcrumbs":4,"title":2},"1443":{"body":0,"breadcrumbs":4,"title":2},"1444":{"body":15,"breadcrumbs":4,"title":2},"1445":{"body":41,"breadcrumbs":4,"title":2},"1446":{"body":21,"breadcrumbs":5,"title":3},"1447":{"body":8,"breadcrumbs":5,"title":3},"1448":{"body":13,"breadcrumbs":5,"title":3},"1449":{"body":65,"breadcrumbs":5,"title":3},"145":{"body":15,"breadcrumbs":4,"title":2},"1450":{"body":15,"breadcrumbs":4,"title":2},"1451":{"body":53,"breadcrumbs":5,"title":3},"1452":{"body":103,"breadcrumbs":5,"title":3},"1453":{"body":30,"breadcrumbs":4,"title":2},"1454":{"body":39,"breadcrumbs":4,"title":2},"1455":{"body":33,"breadcrumbs":4,"title":2},"1456":{"body":36,"breadcrumbs":6,"title":4},"1457":{"body":8,"breadcrumbs":4,"title":2},"1458":{"body":40,"breadcrumbs":5,"title":3},"1459":{"body":0,"breadcrumbs":4,"title":2},"146":{"body":15,"breadcrumbs":4,"title":2},"1460":{"body":25,"breadcrumbs":4,"title":2},"1461":{"body":28,"breadcrumbs":4,"title":2},"1462":{"body":22,"breadcrumbs":5,"title":3},"1463":{"body":0,"breadcrumbs":4,"title":2},"1464":{"body":23,"breadcrumbs":5,"title":3},"1465":{"body":27,"breadcrumbs":5,"title":3},"1466":{"body":21,"breadcrumbs":5,"title":3},"1467":{"body":27,"breadcrumbs":4,"title":2},"1468":{"body":0,"breadcrumbs":4,"title":2},"1469":{"body":20,"breadcrumbs":4,"title":2},"147":{"body":20,"breadcrumbs":3,"title":1},"1470":{"body":20,"breadcrumbs":4,"title":2},"1471":{"body":20,"breadcrumbs":5,"title":3},"1472":{"body":22,"breadcrumbs":5,"title":3},"1473":{"body":0,"breadcrumbs":5,"title":3},"1474":{"body":35,"breadcrumbs":5,"title":3},"1475":{"body":37,"breadcrumbs":5,"title":3},"1476":{"body":30,"breadcrumbs":4,"title":2},"1477":{"body":22,"breadcrumbs":5,"title":3},"1478":{"body":0,"breadcrumbs":4,"title":2},"1479":{"body":24,"breadcrumbs":4,"title":2},"148":{"body":0,"breadcrumbs":5,"title":3},"1480":{"body":27,"breadcrumbs":5,"title":3},"1481":{"body":23,"breadcrumbs":4,"title":2},"1482":{"body":21,"breadcrumbs":4,"title":2},"1483":{"body":0,"breadcrumbs":4,"title":2},"1484":{"body":24,"breadcrumbs":4,"title":2},"1485":{"body":18,"breadcrumbs":4,"title":2},"1486":{"body":16,"breadcrumbs":3,"title":1},"1487":{"body":17,"breadcrumbs":4,"title":2},"1488":{"body":0,"breadcrumbs":4,"title":2},"1489":{"body":23,"breadcrumbs":5,"title":3},"149":{"body":16,"breadcrumbs":5,"title":3},"1490":{"body":23,"breadcrumbs":5,"title":3},"1491":{"body":22,"breadcrumbs":4,"title":2},"1492":{"body":0,"breadcrumbs":4,"title":2},"1493":{"body":24,"breadcrumbs":5,"title":3},"1494":{"body":19,"breadcrumbs":5,"title":3},"1495":{"body":18,"breadcrumbs":5,"title":3},"1496":{"body":0,"breadcrumbs":4,"title":2},"1497":{"body":13,"breadcrumbs":5,"title":3},"1498":{"body":6,"breadcrumbs":4,"title":2},"1499":{"body":8,"breadcrumbs":4,"title":2},"15":{"body":13,"breadcrumbs":4,"title":3},"150":{"body":17,"breadcrumbs":4,"title":2},"1500":{"body":13,"breadcrumbs":4,"title":2},"1501":{"body":13,"breadcrumbs":3,"title":1},"1502":{"body":9,"breadcrumbs":4,"title":2},"1503":{"body":22,"breadcrumbs":4,"title":2},"1504":{"body":0,"breadcrumbs":5,"title":3},"1505":{"body":32,"breadcrumbs":4,"title":2},"1506":{"body":9,"breadcrumbs":5,"title":3},"1507":{"body":32,"breadcrumbs":5,"title":3},"1508":{"body":0,"breadcrumbs":5,"title":3},"1509":{"body":23,"breadcrumbs":4,"title":2},"151":{"body":50,"breadcrumbs":5,"title":3},"1510":{"body":34,"breadcrumbs":4,"title":2},"1511":{"body":0,"breadcrumbs":5,"title":3},"1512":{"body":51,"breadcrumbs":5,"title":3},"1513":{"body":22,"breadcrumbs":5,"title":3},"1514":{"body":0,"breadcrumbs":5,"title":3},"1515":{"body":78,"breadcrumbs":5,"title":3},"1516":{"body":0,"breadcrumbs":5,"title":3},"1517":{"body":26,"breadcrumbs":4,"title":2},"1518":{"body":21,"breadcrumbs":6,"title":4},"1519":{"body":0,"breadcrumbs":5,"title":3},"152":{"body":28,"breadcrumbs":4,"title":2},"1520":{"body":38,"breadcrumbs":5,"title":3},"1521":{"body":0,"breadcrumbs":4,"title":2},"1522":{"body":98,"breadcrumbs":5,"title":3},"1523":{"body":0,"breadcrumbs":5,"title":3},"1524":{"body":51,"breadcrumbs":7,"title":5},"1525":{"body":0,"breadcrumbs":5,"title":3},"1526":{"body":49,"breadcrumbs":7,"title":5},"1527":{"body":0,"breadcrumbs":4,"title":2},"1528":{"body":46,"breadcrumbs":4,"title":2},"1529":{"body":36,"breadcrumbs":4,"title":2},"153":{"body":18,"breadcrumbs":5,"title":3},"1530":{"body":35,"breadcrumbs":4,"title":2},"1531":{"body":12,"breadcrumbs":3,"title":1},"154":{"body":24,"breadcrumbs":5,"title":3},"155":{"body":25,"breadcrumbs":4,"title":2},"156":{"body":29,"breadcrumbs":4,"title":2},"157":{"body":20,"breadcrumbs":4,"title":2},"158":{"body":0,"breadcrumbs":4,"title":2},"159":{"body":32,"breadcrumbs":4,"title":2},"16":{"body":12,"breadcrumbs":3,"title":2},"160":{"body":15,"breadcrumbs":5,"title":3},"161":{"body":16,"breadcrumbs":4,"title":2},"162":{"body":0,"breadcrumbs":4,"title":2},"163":{"body":3,"breadcrumbs":4,"title":2},"164":{"body":4,"breadcrumbs":6,"title":4},"165":{"body":17,"breadcrumbs":4,"title":2},"166":{"body":20,"breadcrumbs":4,"title":2},"167":{"body":95,"breadcrumbs":5,"title":3},"168":{"body":0,"breadcrumbs":4,"title":2},"169":{"body":26,"breadcrumbs":3,"title":1},"17":{"body":13,"breadcrumbs":3,"title":2},"170":{"body":22,"breadcrumbs":4,"title":2},"171":{"body":18,"breadcrumbs":3,"title":1},"172":{"body":14,"breadcrumbs":4,"title":2},"173":{"body":16,"breadcrumbs":4,"title":2},"174":{"body":22,"breadcrumbs":4,"title":2},"175":{"body":0,"breadcrumbs":4,"title":2},"176":{"body":32,"breadcrumbs":4,"title":2},"177":{"body":9,"breadcrumbs":3,"title":1},"178":{"body":12,"breadcrumbs":4,"title":2},"179":{"body":29,"breadcrumbs":4,"title":2},"18":{"body":21,"breadcrumbs":3,"title":2},"180":{"body":72,"breadcrumbs":4,"title":2},"181":{"body":46,"breadcrumbs":5,"title":3},"182":{"body":32,"breadcrumbs":4,"title":2},"183":{"body":0,"breadcrumbs":4,"title":2},"184":{"body":20,"breadcrumbs":4,"title":2},"185":{"body":33,"breadcrumbs":5,"title":3},"186":{"body":17,"breadcrumbs":4,"title":2},"187":{"body":0,"breadcrumbs":4,"title":2},"188":{"body":22,"breadcrumbs":4,"title":2},"189":{"body":7,"breadcrumbs":4,"title":2},"19":{"body":21,"breadcrumbs":3,"title":2},"190":{"body":5,"breadcrumbs":4,"title":2},"191":{"body":6,"breadcrumbs":4,"title":2},"192":{"body":34,"breadcrumbs":4,"title":2},"193":{"body":10,"breadcrumbs":4,"title":2},"194":{"body":17,"breadcrumbs":5,"title":3},"195":{"body":0,"breadcrumbs":4,"title":2},"196":{"body":19,"breadcrumbs":4,"title":2},"197":{"body":16,"breadcrumbs":4,"title":2},"198":{"body":17,"breadcrumbs":4,"title":2},"199":{"body":28,"breadcrumbs":4,"title":2},"2":{"body":51,"breadcrumbs":3,"title":2},"20":{"body":19,"breadcrumbs":2,"title":1},"200":{"body":0,"breadcrumbs":5,"title":3},"201":{"body":10,"breadcrumbs":6,"title":4},"202":{"body":12,"breadcrumbs":6,"title":4},"203":{"body":0,"breadcrumbs":4,"title":2},"204":{"body":23,"breadcrumbs":4,"title":2},"205":{"body":19,"breadcrumbs":3,"title":1},"206":{"body":18,"breadcrumbs":3,"title":1},"207":{"body":0,"breadcrumbs":4,"title":2},"208":{"body":23,"breadcrumbs":5,"title":3},"209":{"body":35,"breadcrumbs":5,"title":3},"21":{"body":60,"breadcrumbs":4,"title":3},"210":{"body":17,"breadcrumbs":5,"title":3},"211":{"body":13,"breadcrumbs":4,"title":2},"212":{"body":17,"breadcrumbs":6,"title":3},"213":{"body":18,"breadcrumbs":4,"title":1},"214":{"body":34,"breadcrumbs":5,"title":2},"215":{"body":0,"breadcrumbs":5,"title":2},"216":{"body":15,"breadcrumbs":5,"title":2},"217":{"body":19,"breadcrumbs":4,"title":1},"218":{"body":0,"breadcrumbs":5,"title":2},"219":{"body":7,"breadcrumbs":6,"title":3},"22":{"body":0,"breadcrumbs":4,"title":3},"220":{"body":10,"breadcrumbs":6,"title":3},"221":{"body":39,"breadcrumbs":5,"title":2},"222":{"body":0,"breadcrumbs":6,"title":3},"223":{"body":16,"breadcrumbs":5,"title":2},"224":{"body":63,"breadcrumbs":5,"title":2},"225":{"body":31,"breadcrumbs":5,"title":2},"226":{"body":64,"breadcrumbs":7,"title":4},"227":{"body":25,"breadcrumbs":5,"title":2},"228":{"body":27,"breadcrumbs":5,"title":2},"229":{"body":14,"breadcrumbs":5,"title":2},"23":{"body":27,"breadcrumbs":4,"title":3},"230":{"body":22,"breadcrumbs":7,"title":4},"231":{"body":33,"breadcrumbs":4,"title":1},"232":{"body":27,"breadcrumbs":5,"title":2},"233":{"body":0,"breadcrumbs":6,"title":3},"234":{"body":51,"breadcrumbs":6,"title":3},"235":{"body":48,"breadcrumbs":6,"title":3},"236":{"body":23,"breadcrumbs":6,"title":3},"237":{"body":51,"breadcrumbs":8,"title":5},"238":{"body":26,"breadcrumbs":6,"title":3},"239":{"body":18,"breadcrumbs":7,"title":4},"24":{"body":19,"breadcrumbs":4,"title":3},"240":{"body":0,"breadcrumbs":6,"title":3},"241":{"body":25,"breadcrumbs":7,"title":4},"242":{"body":58,"breadcrumbs":6,"title":3},"243":{"body":46,"breadcrumbs":6,"title":3},"244":{"body":23,"breadcrumbs":6,"title":3},"245":{"body":26,"breadcrumbs":5,"title":2},"246":{"body":20,"breadcrumbs":6,"title":3},"247":{"body":0,"breadcrumbs":5,"title":2},"248":{"body":22,"breadcrumbs":5,"title":2},"249":{"body":32,"breadcrumbs":5,"title":2},"25":{"body":22,"breadcrumbs":3,"title":2},"250":{"body":21,"breadcrumbs":4,"title":1},"251":{"body":0,"breadcrumbs":4,"title":1},"252":{"body":20,"breadcrumbs":6,"title":3},"253":{"body":20,"breadcrumbs":6,"title":3},"254":{"body":20,"breadcrumbs":5,"title":2},"255":{"body":51,"breadcrumbs":5,"title":2},"256":{"body":19,"breadcrumbs":5,"title":2},"257":{"body":15,"breadcrumbs":6,"title":3},"258":{"body":6,"breadcrumbs":6,"title":3},"259":{"body":25,"breadcrumbs":5,"title":2},"26":{"body":0,"breadcrumbs":3,"title":2},"260":{"body":0,"breadcrumbs":5,"title":2},"261":{"body":36,"breadcrumbs":4,"title":1},"262":{"body":41,"breadcrumbs":4,"title":1},"263":{"body":0,"breadcrumbs":5,"title":2},"264":{"body":41,"breadcrumbs":5,"title":2},"265":{"body":21,"breadcrumbs":5,"title":2},"266":{"body":19,"breadcrumbs":6,"title":3},"267":{"body":0,"breadcrumbs":5,"title":2},"268":{"body":35,"breadcrumbs":5,"title":2},"269":{"body":16,"breadcrumbs":6,"title":3},"27":{"body":16,"breadcrumbs":2,"title":1},"270":{"body":20,"breadcrumbs":5,"title":2},"271":{"body":23,"breadcrumbs":5,"title":2},"272":{"body":37,"breadcrumbs":5,"title":2},"273":{"body":18,"breadcrumbs":5,"title":2},"274":{"body":28,"breadcrumbs":5,"title":2},"275":{"body":0,"breadcrumbs":5,"title":2},"276":{"body":25,"breadcrumbs":5,"title":2},"277":{"body":35,"breadcrumbs":4,"title":1},"278":{"body":14,"breadcrumbs":6,"title":3},"279":{"body":0,"breadcrumbs":4,"title":1},"28":{"body":21,"breadcrumbs":2,"title":1},"280":{"body":47,"breadcrumbs":5,"title":2},"281":{"body":13,"breadcrumbs":5,"title":2},"282":{"body":0,"breadcrumbs":4,"title":1},"283":{"body":16,"breadcrumbs":6,"title":3},"284":{"body":47,"breadcrumbs":6,"title":3},"285":{"body":20,"breadcrumbs":5,"title":2},"286":{"body":21,"breadcrumbs":5,"title":2},"287":{"body":34,"breadcrumbs":5,"title":2},"288":{"body":70,"breadcrumbs":5,"title":2},"289":{"body":15,"breadcrumbs":5,"title":2},"29":{"body":14,"breadcrumbs":2,"title":1},"290":{"body":16,"breadcrumbs":2,"title":1},"291":{"body":21,"breadcrumbs":2,"title":1},"292":{"body":40,"breadcrumbs":3,"title":2},"293":{"body":0,"breadcrumbs":3,"title":2},"294":{"body":29,"breadcrumbs":3,"title":2},"295":{"body":43,"breadcrumbs":3,"title":2},"296":{"body":0,"breadcrumbs":2,"title":1},"297":{"body":9,"breadcrumbs":3,"title":2},"298":{"body":44,"breadcrumbs":3,"title":2},"299":{"body":22,"breadcrumbs":3,"title":2},"3":{"body":6,"breadcrumbs":3,"title":2},"30":{"body":20,"breadcrumbs":2,"title":1},"300":{"body":0,"breadcrumbs":2,"title":1},"301":{"body":13,"breadcrumbs":3,"title":2},"302":{"body":45,"breadcrumbs":3,"title":2},"303":{"body":41,"breadcrumbs":3,"title":2},"304":{"body":19,"breadcrumbs":3,"title":2},"305":{"body":0,"breadcrumbs":3,"title":2},"306":{"body":43,"breadcrumbs":3,"title":2},"307":{"body":12,"breadcrumbs":3,"title":2},"308":{"body":23,"breadcrumbs":3,"title":2},"309":{"body":27,"breadcrumbs":4,"title":3},"31":{"body":64,"breadcrumbs":3,"title":2},"310":{"body":52,"breadcrumbs":3,"title":2},"311":{"body":51,"breadcrumbs":4,"title":3},"312":{"body":19,"breadcrumbs":3,"title":2},"313":{"body":0,"breadcrumbs":3,"title":2},"314":{"body":24,"breadcrumbs":2,"title":1},"315":{"body":62,"breadcrumbs":2,"title":1},"316":{"body":0,"breadcrumbs":2,"title":1},"317":{"body":16,"breadcrumbs":3,"title":2},"318":{"body":13,"breadcrumbs":3,"title":2},"319":{"body":15,"breadcrumbs":3,"title":2},"32":{"body":0,"breadcrumbs":4,"title":3},"320":{"body":15,"breadcrumbs":3,"title":2},"321":{"body":19,"breadcrumbs":3,"title":2},"322":{"body":14,"breadcrumbs":2,"title":1},"323":{"body":0,"breadcrumbs":2,"title":1},"324":{"body":3,"breadcrumbs":3,"title":2},"325":{"body":3,"breadcrumbs":3,"title":2},"326":{"body":3,"breadcrumbs":3,"title":2},"327":{"body":37,"breadcrumbs":3,"title":2},"328":{"body":5,"breadcrumbs":3,"title":2},"329":{"body":6,"breadcrumbs":4,"title":3},"33":{"body":17,"breadcrumbs":4,"title":3},"330":{"body":4,"breadcrumbs":4,"title":3},"331":{"body":4,"breadcrumbs":4,"title":3},"332":{"body":56,"breadcrumbs":3,"title":2},"333":{"body":0,"breadcrumbs":2,"title":1},"334":{"body":32,"breadcrumbs":3,"title":2},"335":{"body":24,"breadcrumbs":3,"title":2},"336":{"body":17,"breadcrumbs":3,"title":2},"337":{"body":3,"breadcrumbs":3,"title":2},"338":{"body":6,"breadcrumbs":4,"title":3},"339":{"body":9,"breadcrumbs":3,"title":2},"34":{"body":17,"breadcrumbs":4,"title":3},"340":{"body":2,"breadcrumbs":4,"title":3},"341":{"body":0,"breadcrumbs":3,"title":2},"342":{"body":13,"breadcrumbs":4,"title":3},"343":{"body":12,"breadcrumbs":3,"title":2},"344":{"body":10,"breadcrumbs":5,"title":4},"345":{"body":14,"breadcrumbs":5,"title":4},"346":{"body":0,"breadcrumbs":3,"title":2},"347":{"body":15,"breadcrumbs":3,"title":2},"348":{"body":22,"breadcrumbs":3,"title":2},"349":{"body":40,"breadcrumbs":3,"title":2},"35":{"body":17,"breadcrumbs":4,"title":3},"350":{"body":0,"breadcrumbs":3,"title":2},"351":{"body":19,"breadcrumbs":3,"title":2},"352":{"body":20,"breadcrumbs":3,"title":2},"353":{"body":15,"breadcrumbs":3,"title":2},"354":{"body":12,"breadcrumbs":3,"title":2},"355":{"body":31,"breadcrumbs":3,"title":2},"356":{"body":17,"breadcrumbs":2,"title":1},"357":{"body":18,"breadcrumbs":4,"title":2},"358":{"body":26,"breadcrumbs":4,"title":2},"359":{"body":29,"breadcrumbs":5,"title":3},"36":{"body":56,"breadcrumbs":4,"title":3},"360":{"body":0,"breadcrumbs":4,"title":2},"361":{"body":26,"breadcrumbs":3,"title":1},"362":{"body":8,"breadcrumbs":3,"title":1},"363":{"body":15,"breadcrumbs":3,"title":1},"364":{"body":21,"breadcrumbs":3,"title":1},"365":{"body":41,"breadcrumbs":3,"title":1},"366":{"body":45,"breadcrumbs":4,"title":2},"367":{"body":30,"breadcrumbs":3,"title":1},"368":{"body":42,"breadcrumbs":4,"title":2},"369":{"body":45,"breadcrumbs":3,"title":1},"37":{"body":41,"breadcrumbs":3,"title":2},"370":{"body":85,"breadcrumbs":3,"title":1},"371":{"body":86,"breadcrumbs":6,"title":4},"372":{"body":27,"breadcrumbs":3,"title":1},"373":{"body":24,"breadcrumbs":3,"title":1},"374":{"body":25,"breadcrumbs":4,"title":2},"375":{"body":18,"breadcrumbs":3,"title":1},"376":{"body":28,"breadcrumbs":3,"title":1},"377":{"body":0,"breadcrumbs":4,"title":2},"378":{"body":22,"breadcrumbs":3,"title":1},"379":{"body":23,"breadcrumbs":3,"title":1},"38":{"body":19,"breadcrumbs":3,"title":2},"380":{"body":27,"breadcrumbs":3,"title":1},"381":{"body":25,"breadcrumbs":3,"title":1},"382":{"body":107,"breadcrumbs":4,"title":2},"383":{"body":46,"breadcrumbs":4,"title":2},"384":{"body":43,"breadcrumbs":4,"title":2},"385":{"body":15,"breadcrumbs":3,"title":1},"386":{"body":13,"breadcrumbs":4,"title":2},"387":{"body":0,"breadcrumbs":4,"title":2},"388":{"body":15,"breadcrumbs":5,"title":3},"389":{"body":17,"breadcrumbs":4,"title":2},"39":{"body":16,"breadcrumbs":4,"title":2},"390":{"body":0,"breadcrumbs":4,"title":2},"391":{"body":28,"breadcrumbs":5,"title":3},"392":{"body":13,"breadcrumbs":4,"title":2},"393":{"body":10,"breadcrumbs":4,"title":2},"394":{"body":13,"breadcrumbs":4,"title":2},"395":{"body":19,"breadcrumbs":3,"title":1},"396":{"body":0,"breadcrumbs":4,"title":2},"397":{"body":10,"breadcrumbs":5,"title":3},"398":{"body":12,"breadcrumbs":6,"title":4},"399":{"body":0,"breadcrumbs":4,"title":2},"4":{"body":27,"breadcrumbs":5,"title":4},"40":{"body":10,"breadcrumbs":3,"title":1},"400":{"body":38,"breadcrumbs":5,"title":3},"401":{"body":12,"breadcrumbs":5,"title":3},"402":{"body":0,"breadcrumbs":4,"title":2},"403":{"body":10,"breadcrumbs":5,"title":3},"404":{"body":22,"breadcrumbs":5,"title":3},"405":{"body":0,"breadcrumbs":4,"title":2},"406":{"body":27,"breadcrumbs":4,"title":2},"407":{"body":12,"breadcrumbs":4,"title":2},"408":{"body":11,"breadcrumbs":5,"title":3},"409":{"body":0,"breadcrumbs":4,"title":2},"41":{"body":50,"breadcrumbs":4,"title":2},"410":{"body":18,"breadcrumbs":4,"title":2},"411":{"body":19,"breadcrumbs":4,"title":2},"412":{"body":13,"breadcrumbs":5,"title":3},"413":{"body":0,"breadcrumbs":4,"title":2},"414":{"body":17,"breadcrumbs":4,"title":2},"415":{"body":19,"breadcrumbs":4,"title":2},"416":{"body":0,"breadcrumbs":4,"title":2},"417":{"body":13,"breadcrumbs":4,"title":2},"418":{"body":42,"breadcrumbs":4,"title":2},"419":{"body":38,"breadcrumbs":4,"title":2},"42":{"body":24,"breadcrumbs":4,"title":2},"420":{"body":85,"breadcrumbs":4,"title":2},"421":{"body":20,"breadcrumbs":4,"title":2},"422":{"body":26,"breadcrumbs":7,"title":5},"423":{"body":32,"breadcrumbs":3,"title":1},"424":{"body":43,"breadcrumbs":5,"title":3},"425":{"body":0,"breadcrumbs":4,"title":2},"426":{"body":76,"breadcrumbs":6,"title":4},"427":{"body":87,"breadcrumbs":5,"title":3},"428":{"body":0,"breadcrumbs":4,"title":2},"429":{"body":26,"breadcrumbs":3,"title":1},"43":{"body":73,"breadcrumbs":6,"title":4},"430":{"body":21,"breadcrumbs":3,"title":1},"431":{"body":18,"breadcrumbs":3,"title":1},"432":{"body":0,"breadcrumbs":4,"title":2},"433":{"body":35,"breadcrumbs":4,"title":2},"434":{"body":50,"breadcrumbs":5,"title":3},"435":{"body":0,"breadcrumbs":3,"title":1},"436":{"body":19,"breadcrumbs":5,"title":3},"437":{"body":7,"breadcrumbs":4,"title":2},"438":{"body":0,"breadcrumbs":4,"title":2},"439":{"body":42,"breadcrumbs":4,"title":2},"44":{"body":10,"breadcrumbs":3,"title":1},"440":{"body":28,"breadcrumbs":4,"title":2},"441":{"body":0,"breadcrumbs":4,"title":2},"442":{"body":114,"breadcrumbs":4,"title":2},"443":{"body":97,"breadcrumbs":4,"title":2},"444":{"body":0,"breadcrumbs":4,"title":2},"445":{"body":18,"breadcrumbs":4,"title":2},"446":{"body":28,"breadcrumbs":4,"title":2},"447":{"body":15,"breadcrumbs":4,"title":2},"448":{"body":0,"breadcrumbs":3,"title":1},"449":{"body":8,"breadcrumbs":5,"title":3},"45":{"body":58,"breadcrumbs":4,"title":2},"450":{"body":12,"breadcrumbs":5,"title":3},"451":{"body":34,"breadcrumbs":4,"title":2},"452":{"body":15,"breadcrumbs":4,"title":2},"453":{"body":18,"breadcrumbs":4,"title":2},"454":{"body":41,"breadcrumbs":3,"title":1},"455":{"body":0,"breadcrumbs":4,"title":2},"456":{"body":24,"breadcrumbs":4,"title":2},"457":{"body":0,"breadcrumbs":4,"title":2},"458":{"body":105,"breadcrumbs":5,"title":3},"459":{"body":56,"breadcrumbs":4,"title":2},"46":{"body":75,"breadcrumbs":5,"title":3},"460":{"body":0,"breadcrumbs":4,"title":2},"461":{"body":96,"breadcrumbs":5,"title":3},"462":{"body":7,"breadcrumbs":4,"title":2},"463":{"body":66,"breadcrumbs":5,"title":3},"464":{"body":0,"breadcrumbs":4,"title":2},"465":{"body":86,"breadcrumbs":5,"title":3},"466":{"body":0,"breadcrumbs":4,"title":2},"467":{"body":18,"breadcrumbs":3,"title":1},"468":{"body":16,"breadcrumbs":3,"title":1},"469":{"body":18,"breadcrumbs":3,"title":1},"47":{"body":51,"breadcrumbs":4,"title":2},"470":{"body":40,"breadcrumbs":3,"title":1},"471":{"body":36,"breadcrumbs":3,"title":1},"472":{"body":0,"breadcrumbs":4,"title":2},"473":{"body":81,"breadcrumbs":4,"title":2},"474":{"body":67,"breadcrumbs":4,"title":2},"475":{"body":0,"breadcrumbs":4,"title":2},"476":{"body":11,"breadcrumbs":4,"title":2},"477":{"body":21,"breadcrumbs":4,"title":2},"478":{"body":16,"breadcrumbs":4,"title":2},"479":{"body":27,"breadcrumbs":4,"title":2},"48":{"body":8,"breadcrumbs":3,"title":1},"480":{"body":17,"breadcrumbs":4,"title":2},"481":{"body":12,"breadcrumbs":4,"title":2},"482":{"body":22,"breadcrumbs":3,"title":1},"483":{"body":44,"breadcrumbs":4,"title":2},"484":{"body":0,"breadcrumbs":4,"title":2},"485":{"body":7,"breadcrumbs":4,"title":2},"486":{"body":46,"breadcrumbs":5,"title":3},"487":{"body":28,"breadcrumbs":5,"title":3},"488":{"body":0,"breadcrumbs":4,"title":2},"489":{"body":28,"breadcrumbs":5,"title":3},"49":{"body":40,"breadcrumbs":4,"title":2},"490":{"body":21,"breadcrumbs":5,"title":3},"491":{"body":34,"breadcrumbs":4,"title":2},"492":{"body":0,"breadcrumbs":4,"title":2},"493":{"body":22,"breadcrumbs":4,"title":2},"494":{"body":15,"breadcrumbs":5,"title":3},"495":{"body":23,"breadcrumbs":5,"title":3},"496":{"body":0,"breadcrumbs":4,"title":2},"497":{"body":51,"breadcrumbs":5,"title":3},"498":{"body":51,"breadcrumbs":4,"title":2},"499":{"body":0,"breadcrumbs":4,"title":2},"5":{"body":25,"breadcrumbs":3,"title":2},"50":{"body":32,"breadcrumbs":4,"title":2},"500":{"body":39,"breadcrumbs":5,"title":3},"501":{"body":48,"breadcrumbs":4,"title":2},"502":{"body":33,"breadcrumbs":4,"title":2},"503":{"body":48,"breadcrumbs":4,"title":2},"504":{"body":0,"breadcrumbs":3,"title":1},"505":{"body":62,"breadcrumbs":5,"title":3},"506":{"body":48,"breadcrumbs":5,"title":3},"507":{"body":119,"breadcrumbs":5,"title":3},"508":{"body":0,"breadcrumbs":3,"title":1},"509":{"body":25,"breadcrumbs":5,"title":3},"51":{"body":37,"breadcrumbs":4,"title":2},"510":{"body":25,"breadcrumbs":6,"title":4},"511":{"body":20,"breadcrumbs":4,"title":2},"512":{"body":17,"breadcrumbs":4,"title":2},"513":{"body":6,"breadcrumbs":4,"title":2},"514":{"body":3,"breadcrumbs":3,"title":1},"515":{"body":5,"breadcrumbs":4,"title":2},"516":{"body":17,"breadcrumbs":4,"title":2},"517":{"body":17,"breadcrumbs":3,"title":1},"518":{"body":28,"breadcrumbs":3,"title":1},"519":{"body":105,"breadcrumbs":8,"title":6},"52":{"body":8,"breadcrumbs":3,"title":1},"520":{"body":28,"breadcrumbs":3,"title":1},"521":{"body":43,"breadcrumbs":4,"title":2},"522":{"body":63,"breadcrumbs":6,"title":4},"523":{"body":66,"breadcrumbs":7,"title":5},"524":{"body":31,"breadcrumbs":4,"title":2},"525":{"body":41,"breadcrumbs":4,"title":2},"526":{"body":24,"breadcrumbs":3,"title":1},"527":{"body":42,"breadcrumbs":6,"title":4},"528":{"body":31,"breadcrumbs":3,"title":1},"529":{"body":28,"breadcrumbs":3,"title":1},"53":{"body":67,"breadcrumbs":4,"title":2},"530":{"body":29,"breadcrumbs":3,"title":1},"531":{"body":36,"breadcrumbs":3,"title":1},"532":{"body":29,"breadcrumbs":3,"title":1},"533":{"body":34,"breadcrumbs":5,"title":3},"534":{"body":0,"breadcrumbs":4,"title":2},"535":{"body":26,"breadcrumbs":3,"title":1},"536":{"body":103,"breadcrumbs":3,"title":1},"537":{"body":4,"breadcrumbs":4,"title":2},"538":{"body":37,"breadcrumbs":3,"title":1},"539":{"body":32,"breadcrumbs":3,"title":1},"54":{"body":33,"breadcrumbs":4,"title":2},"540":{"body":5,"breadcrumbs":4,"title":2},"541":{"body":28,"breadcrumbs":3,"title":1},"542":{"body":40,"breadcrumbs":5,"title":3},"543":{"body":19,"breadcrumbs":5,"title":3},"544":{"body":29,"breadcrumbs":4,"title":2},"545":{"body":88,"breadcrumbs":4,"title":2},"546":{"body":23,"breadcrumbs":4,"title":2},"547":{"body":21,"breadcrumbs":3,"title":1},"548":{"body":21,"breadcrumbs":3,"title":2},"549":{"body":16,"breadcrumbs":2,"title":1},"55":{"body":26,"breadcrumbs":4,"title":2},"550":{"body":0,"breadcrumbs":2,"title":1},"551":{"body":3,"breadcrumbs":3,"title":2},"552":{"body":6,"breadcrumbs":3,"title":2},"553":{"body":3,"breadcrumbs":3,"title":2},"554":{"body":24,"breadcrumbs":3,"title":2},"555":{"body":35,"breadcrumbs":3,"title":2},"556":{"body":8,"breadcrumbs":3,"title":2},"557":{"body":19,"breadcrumbs":3,"title":2},"558":{"body":20,"breadcrumbs":3,"title":2},"559":{"body":0,"breadcrumbs":2,"title":1},"56":{"body":7,"breadcrumbs":4,"title":2},"560":{"body":18,"breadcrumbs":3,"title":2},"561":{"body":9,"breadcrumbs":4,"title":3},"562":{"body":14,"breadcrumbs":3,"title":2},"563":{"body":17,"breadcrumbs":3,"title":2},"564":{"body":3,"breadcrumbs":3,"title":2},"565":{"body":6,"breadcrumbs":4,"title":3},"566":{"body":9,"breadcrumbs":3,"title":2},"567":{"body":2,"breadcrumbs":4,"title":3},"568":{"body":0,"breadcrumbs":3,"title":2},"569":{"body":13,"breadcrumbs":4,"title":3},"57":{"body":28,"breadcrumbs":4,"title":2},"570":{"body":12,"breadcrumbs":3,"title":2},"571":{"body":10,"breadcrumbs":5,"title":4},"572":{"body":14,"breadcrumbs":5,"title":4},"573":{"body":0,"breadcrumbs":3,"title":2},"574":{"body":17,"breadcrumbs":3,"title":2},"575":{"body":10,"breadcrumbs":3,"title":2},"576":{"body":42,"breadcrumbs":3,"title":2},"577":{"body":0,"breadcrumbs":4,"title":3},"578":{"body":22,"breadcrumbs":3,"title":2},"579":{"body":20,"breadcrumbs":3,"title":2},"58":{"body":27,"breadcrumbs":4,"title":2},"580":{"body":19,"breadcrumbs":3,"title":2},"581":{"body":42,"breadcrumbs":4,"title":3},"582":{"body":0,"breadcrumbs":3,"title":2},"583":{"body":25,"breadcrumbs":3,"title":2},"584":{"body":20,"breadcrumbs":3,"title":2},"585":{"body":18,"breadcrumbs":3,"title":2},"586":{"body":20,"breadcrumbs":3,"title":2},"587":{"body":28,"breadcrumbs":5,"title":4},"588":{"body":62,"breadcrumbs":3,"title":2},"589":{"body":27,"breadcrumbs":3,"title":2},"59":{"body":30,"breadcrumbs":4,"title":2},"590":{"body":20,"breadcrumbs":2,"title":1},"591":{"body":18,"breadcrumbs":4,"title":2},"592":{"body":22,"breadcrumbs":4,"title":2},"593":{"body":29,"breadcrumbs":5,"title":3},"594":{"body":0,"breadcrumbs":4,"title":2},"595":{"body":30,"breadcrumbs":3,"title":1},"596":{"body":8,"breadcrumbs":3,"title":1},"597":{"body":14,"breadcrumbs":3,"title":1},"598":{"body":20,"breadcrumbs":3,"title":1},"599":{"body":40,"breadcrumbs":3,"title":1},"6":{"body":26,"breadcrumbs":3,"title":2},"60":{"body":7,"breadcrumbs":5,"title":3},"600":{"body":43,"breadcrumbs":4,"title":2},"601":{"body":27,"breadcrumbs":3,"title":1},"602":{"body":25,"breadcrumbs":6,"title":4},"603":{"body":31,"breadcrumbs":4,"title":2},"604":{"body":85,"breadcrumbs":3,"title":1},"605":{"body":82,"breadcrumbs":6,"title":4},"606":{"body":25,"breadcrumbs":3,"title":1},"607":{"body":17,"breadcrumbs":4,"title":2},"608":{"body":18,"breadcrumbs":3,"title":1},"609":{"body":27,"breadcrumbs":3,"title":1},"61":{"body":22,"breadcrumbs":4,"title":2},"610":{"body":5,"breadcrumbs":4,"title":2},"611":{"body":19,"breadcrumbs":3,"title":1},"612":{"body":24,"breadcrumbs":3,"title":1},"613":{"body":24,"breadcrumbs":3,"title":1},"614":{"body":27,"breadcrumbs":3,"title":1},"615":{"body":15,"breadcrumbs":3,"title":1},"616":{"body":105,"breadcrumbs":4,"title":2},"617":{"body":58,"breadcrumbs":4,"title":2},"618":{"body":48,"breadcrumbs":4,"title":2},"619":{"body":15,"breadcrumbs":3,"title":1},"62":{"body":20,"breadcrumbs":5,"title":3},"620":{"body":13,"breadcrumbs":4,"title":2},"621":{"body":0,"breadcrumbs":4,"title":2},"622":{"body":12,"breadcrumbs":5,"title":3},"623":{"body":17,"breadcrumbs":4,"title":2},"624":{"body":0,"breadcrumbs":4,"title":2},"625":{"body":25,"breadcrumbs":5,"title":3},"626":{"body":12,"breadcrumbs":4,"title":2},"627":{"body":9,"breadcrumbs":4,"title":2},"628":{"body":12,"breadcrumbs":4,"title":2},"629":{"body":18,"breadcrumbs":3,"title":1},"63":{"body":6,"breadcrumbs":4,"title":2},"630":{"body":0,"breadcrumbs":4,"title":2},"631":{"body":9,"breadcrumbs":5,"title":3},"632":{"body":11,"breadcrumbs":6,"title":4},"633":{"body":0,"breadcrumbs":4,"title":2},"634":{"body":38,"breadcrumbs":5,"title":3},"635":{"body":11,"breadcrumbs":5,"title":3},"636":{"body":0,"breadcrumbs":4,"title":2},"637":{"body":9,"breadcrumbs":5,"title":3},"638":{"body":21,"breadcrumbs":5,"title":3},"639":{"body":0,"breadcrumbs":4,"title":2},"64":{"body":23,"breadcrumbs":4,"title":2},"640":{"body":26,"breadcrumbs":4,"title":2},"641":{"body":11,"breadcrumbs":4,"title":2},"642":{"body":10,"breadcrumbs":5,"title":3},"643":{"body":0,"breadcrumbs":4,"title":2},"644":{"body":16,"breadcrumbs":4,"title":2},"645":{"body":18,"breadcrumbs":4,"title":2},"646":{"body":12,"breadcrumbs":5,"title":3},"647":{"body":0,"breadcrumbs":4,"title":2},"648":{"body":15,"breadcrumbs":4,"title":2},"649":{"body":17,"breadcrumbs":4,"title":2},"65":{"body":19,"breadcrumbs":4,"title":2},"650":{"body":0,"breadcrumbs":4,"title":2},"651":{"body":11,"breadcrumbs":4,"title":2},"652":{"body":16,"breadcrumbs":4,"title":2},"653":{"body":35,"breadcrumbs":4,"title":2},"654":{"body":78,"breadcrumbs":4,"title":2},"655":{"body":0,"breadcrumbs":5,"title":3},"656":{"body":29,"breadcrumbs":5,"title":3},"657":{"body":21,"breadcrumbs":5,"title":3},"658":{"body":0,"breadcrumbs":4,"title":2},"659":{"body":5,"breadcrumbs":4,"title":2},"66":{"body":19,"breadcrumbs":4,"title":2},"660":{"body":17,"breadcrumbs":4,"title":2},"661":{"body":26,"breadcrumbs":4,"title":2},"662":{"body":17,"breadcrumbs":4,"title":2},"663":{"body":29,"breadcrumbs":4,"title":2},"664":{"body":32,"breadcrumbs":3,"title":1},"665":{"body":0,"breadcrumbs":4,"title":2},"666":{"body":82,"breadcrumbs":6,"title":4},"667":{"body":65,"breadcrumbs":6,"title":4},"668":{"body":0,"breadcrumbs":3,"title":1},"669":{"body":58,"breadcrumbs":3,"title":1},"67":{"body":28,"breadcrumbs":4,"title":2},"670":{"body":30,"breadcrumbs":3,"title":1},"671":{"body":0,"breadcrumbs":3,"title":1},"672":{"body":23,"breadcrumbs":5,"title":3},"673":{"body":20,"breadcrumbs":4,"title":2},"674":{"body":0,"breadcrumbs":4,"title":2},"675":{"body":45,"breadcrumbs":5,"title":3},"676":{"body":33,"breadcrumbs":5,"title":3},"677":{"body":0,"breadcrumbs":4,"title":2},"678":{"body":43,"breadcrumbs":4,"title":2},"679":{"body":14,"breadcrumbs":3,"title":1},"68":{"body":17,"breadcrumbs":5,"title":3},"680":{"body":0,"breadcrumbs":4,"title":2},"681":{"body":37,"breadcrumbs":5,"title":3},"682":{"body":38,"breadcrumbs":4,"title":2},"683":{"body":0,"breadcrumbs":3,"title":1},"684":{"body":51,"breadcrumbs":6,"title":4},"685":{"body":0,"breadcrumbs":4,"title":2},"686":{"body":30,"breadcrumbs":3,"title":1},"687":{"body":37,"breadcrumbs":4,"title":2},"688":{"body":21,"breadcrumbs":4,"title":2},"689":{"body":14,"breadcrumbs":4,"title":2},"69":{"body":7,"breadcrumbs":4,"title":2},"690":{"body":6,"breadcrumbs":4,"title":2},"691":{"body":3,"breadcrumbs":3,"title":1},"692":{"body":5,"breadcrumbs":4,"title":2},"693":{"body":17,"breadcrumbs":4,"title":2},"694":{"body":14,"breadcrumbs":3,"title":1},"695":{"body":25,"breadcrumbs":3,"title":1},"696":{"body":89,"breadcrumbs":8,"title":6},"697":{"body":27,"breadcrumbs":3,"title":1},"698":{"body":41,"breadcrumbs":4,"title":2},"699":{"body":60,"breadcrumbs":6,"title":4},"7":{"body":4,"breadcrumbs":3,"title":2},"70":{"body":16,"breadcrumbs":5,"title":3},"700":{"body":66,"breadcrumbs":7,"title":5},"701":{"body":30,"breadcrumbs":4,"title":2},"702":{"body":39,"breadcrumbs":4,"title":2},"703":{"body":23,"breadcrumbs":3,"title":1},"704":{"body":41,"breadcrumbs":6,"title":4},"705":{"body":30,"breadcrumbs":3,"title":1},"706":{"body":26,"breadcrumbs":3,"title":1},"707":{"body":28,"breadcrumbs":3,"title":1},"708":{"body":34,"breadcrumbs":3,"title":1},"709":{"body":27,"breadcrumbs":3,"title":1},"71":{"body":15,"breadcrumbs":4,"title":2},"710":{"body":33,"breadcrumbs":5,"title":3},"711":{"body":14,"breadcrumbs":5,"title":3},"712":{"body":8,"breadcrumbs":3,"title":1},"713":{"body":9,"breadcrumbs":3,"title":1},"714":{"body":8,"breadcrumbs":3,"title":1},"715":{"body":8,"breadcrumbs":3,"title":1},"716":{"body":10,"breadcrumbs":3,"title":1},"717":{"body":4,"breadcrumbs":4,"title":2},"718":{"body":30,"breadcrumbs":3,"title":1},"719":{"body":37,"breadcrumbs":4,"title":2},"72":{"body":40,"breadcrumbs":5,"title":3},"720":{"body":0,"breadcrumbs":3,"title":1},"721":{"body":21,"breadcrumbs":5,"title":3},"722":{"body":48,"breadcrumbs":4,"title":2},"723":{"body":33,"breadcrumbs":4,"title":2},"724":{"body":19,"breadcrumbs":4,"title":2},"725":{"body":43,"breadcrumbs":4,"title":2},"726":{"body":42,"breadcrumbs":4,"title":2},"727":{"body":17,"breadcrumbs":3,"title":1},"728":{"body":22,"breadcrumbs":4,"title":2},"729":{"body":27,"breadcrumbs":4,"title":2},"73":{"body":24,"breadcrumbs":5,"title":3},"730":{"body":0,"breadcrumbs":4,"title":2},"731":{"body":7,"breadcrumbs":4,"title":2},"732":{"body":55,"breadcrumbs":4,"title":2},"733":{"body":36,"breadcrumbs":4,"title":2},"734":{"body":15,"breadcrumbs":4,"title":2},"735":{"body":0,"breadcrumbs":4,"title":2},"736":{"body":21,"breadcrumbs":3,"title":1},"737":{"body":11,"breadcrumbs":4,"title":2},"738":{"body":46,"breadcrumbs":5,"title":3},"739":{"body":36,"breadcrumbs":4,"title":2},"74":{"body":3,"breadcrumbs":5,"title":3},"740":{"body":28,"breadcrumbs":3,"title":1},"741":{"body":35,"breadcrumbs":4,"title":2},"742":{"body":71,"breadcrumbs":5,"title":3},"743":{"body":0,"breadcrumbs":4,"title":2},"744":{"body":43,"breadcrumbs":4,"title":2},"745":{"body":21,"breadcrumbs":4,"title":2},"746":{"body":27,"breadcrumbs":4,"title":2},"747":{"body":49,"breadcrumbs":4,"title":2},"748":{"body":16,"breadcrumbs":3,"title":1},"749":{"body":17,"breadcrumbs":4,"title":2},"75":{"body":38,"breadcrumbs":4,"title":2},"750":{"body":1,"breadcrumbs":4,"title":2},"751":{"body":27,"breadcrumbs":3,"title":1},"752":{"body":30,"breadcrumbs":4,"title":2},"753":{"body":35,"breadcrumbs":4,"title":2},"754":{"body":15,"breadcrumbs":4,"title":2},"755":{"body":0,"breadcrumbs":4,"title":2},"756":{"body":61,"breadcrumbs":5,"title":3},"757":{"body":27,"breadcrumbs":5,"title":3},"758":{"body":45,"breadcrumbs":3,"title":1},"759":{"body":70,"breadcrumbs":5,"title":3},"76":{"body":50,"breadcrumbs":5,"title":3},"760":{"body":62,"breadcrumbs":4,"title":2},"761":{"body":28,"breadcrumbs":3,"title":1},"762":{"body":52,"breadcrumbs":5,"title":3},"763":{"body":24,"breadcrumbs":4,"title":2},"764":{"body":0,"breadcrumbs":4,"title":2},"765":{"body":93,"breadcrumbs":4,"title":2},"766":{"body":62,"breadcrumbs":4,"title":2},"767":{"body":81,"breadcrumbs":4,"title":2},"768":{"body":0,"breadcrumbs":4,"title":2},"769":{"body":26,"breadcrumbs":3,"title":1},"77":{"body":66,"breadcrumbs":4,"title":2},"770":{"body":19,"breadcrumbs":3,"title":1},"771":{"body":12,"breadcrumbs":3,"title":1},"772":{"body":26,"breadcrumbs":4,"title":2},"773":{"body":21,"breadcrumbs":3,"title":1},"774":{"body":18,"breadcrumbs":4,"title":2},"775":{"body":1,"breadcrumbs":4,"title":2},"776":{"body":39,"breadcrumbs":3,"title":1},"777":{"body":0,"breadcrumbs":4,"title":2},"778":{"body":35,"breadcrumbs":3,"title":1},"779":{"body":73,"breadcrumbs":3,"title":1},"78":{"body":3,"breadcrumbs":5,"title":3},"780":{"body":24,"breadcrumbs":4,"title":2},"781":{"body":0,"breadcrumbs":4,"title":2},"782":{"body":108,"breadcrumbs":3,"title":1},"783":{"body":31,"breadcrumbs":3,"title":1},"784":{"body":12,"breadcrumbs":3,"title":1},"785":{"body":43,"breadcrumbs":3,"title":1},"786":{"body":21,"breadcrumbs":5,"title":3},"787":{"body":32,"breadcrumbs":4,"title":2},"788":{"body":34,"breadcrumbs":5,"title":3},"789":{"body":17,"breadcrumbs":4,"title":2},"79":{"body":43,"breadcrumbs":4,"title":2},"790":{"body":15,"breadcrumbs":5,"title":3},"791":{"body":81,"breadcrumbs":4,"title":2},"792":{"body":35,"breadcrumbs":5,"title":3},"793":{"body":0,"breadcrumbs":4,"title":2},"794":{"body":35,"breadcrumbs":4,"title":2},"795":{"body":5,"breadcrumbs":4,"title":2},"796":{"body":25,"breadcrumbs":4,"title":2},"797":{"body":22,"breadcrumbs":4,"title":2},"798":{"body":26,"breadcrumbs":4,"title":2},"799":{"body":19,"breadcrumbs":3,"title":1},"8":{"body":20,"breadcrumbs":3,"title":2},"80":{"body":46,"breadcrumbs":5,"title":3},"800":{"body":17,"breadcrumbs":4,"title":2},"801":{"body":1,"breadcrumbs":4,"title":2},"802":{"body":30,"breadcrumbs":3,"title":1},"803":{"body":25,"breadcrumbs":4,"title":2},"804":{"body":37,"breadcrumbs":4,"title":2},"805":{"body":11,"breadcrumbs":4,"title":2},"806":{"body":0,"breadcrumbs":4,"title":2},"807":{"body":9,"breadcrumbs":5,"title":3},"808":{"body":59,"breadcrumbs":5,"title":3},"809":{"body":19,"breadcrumbs":4,"title":2},"81":{"body":61,"breadcrumbs":4,"title":2},"810":{"body":28,"breadcrumbs":3,"title":1},"811":{"body":30,"breadcrumbs":5,"title":3},"812":{"body":15,"breadcrumbs":4,"title":2},"813":{"body":5,"breadcrumbs":3,"title":1},"814":{"body":21,"breadcrumbs":4,"title":2},"815":{"body":20,"breadcrumbs":4,"title":2},"816":{"body":211,"breadcrumbs":4,"title":2},"817":{"body":0,"breadcrumbs":4,"title":2},"818":{"body":9,"breadcrumbs":4,"title":2},"819":{"body":7,"breadcrumbs":5,"title":3},"82":{"body":92,"breadcrumbs":7,"title":5},"820":{"body":10,"breadcrumbs":4,"title":2},"821":{"body":0,"breadcrumbs":4,"title":2},"822":{"body":28,"breadcrumbs":5,"title":3},"823":{"body":9,"breadcrumbs":5,"title":3},"824":{"body":8,"breadcrumbs":6,"title":4},"825":{"body":8,"breadcrumbs":5,"title":3},"826":{"body":7,"breadcrumbs":5,"title":3},"827":{"body":23,"breadcrumbs":5,"title":3},"828":{"body":17,"breadcrumbs":3,"title":1},"829":{"body":28,"breadcrumbs":6,"title":3},"83":{"body":7,"breadcrumbs":4,"title":2},"830":{"body":1,"breadcrumbs":5,"title":2},"831":{"body":62,"breadcrumbs":4,"title":1},"832":{"body":35,"breadcrumbs":5,"title":2},"833":{"body":50,"breadcrumbs":5,"title":2},"834":{"body":0,"breadcrumbs":4,"title":1},"835":{"body":21,"breadcrumbs":5,"title":2},"836":{"body":53,"breadcrumbs":5,"title":2},"837":{"body":25,"breadcrumbs":5,"title":2},"838":{"body":41,"breadcrumbs":5,"title":2},"839":{"body":0,"breadcrumbs":4,"title":1},"84":{"body":19,"breadcrumbs":5,"title":3},"840":{"body":11,"breadcrumbs":6,"title":3},"841":{"body":39,"breadcrumbs":6,"title":3},"842":{"body":19,"breadcrumbs":5,"title":2},"843":{"body":27,"breadcrumbs":7,"title":4},"844":{"body":0,"breadcrumbs":5,"title":2},"845":{"body":62,"breadcrumbs":7,"title":4},"846":{"body":14,"breadcrumbs":5,"title":2},"847":{"body":48,"breadcrumbs":5,"title":2},"848":{"body":21,"breadcrumbs":8,"title":5},"849":{"body":14,"breadcrumbs":7,"title":4},"85":{"body":10,"breadcrumbs":5,"title":3},"850":{"body":39,"breadcrumbs":5,"title":2},"851":{"body":19,"breadcrumbs":4,"title":1},"852":{"body":30,"breadcrumbs":4,"title":2},"853":{"body":14,"breadcrumbs":3,"title":1},"854":{"body":13,"breadcrumbs":4,"title":2},"855":{"body":34,"breadcrumbs":4,"title":2},"856":{"body":79,"breadcrumbs":4,"title":2},"857":{"body":28,"breadcrumbs":4,"title":2},"858":{"body":16,"breadcrumbs":5,"title":3},"859":{"body":32,"breadcrumbs":3,"title":1},"86":{"body":20,"breadcrumbs":5,"title":3},"860":{"body":38,"breadcrumbs":4,"title":2},"861":{"body":21,"breadcrumbs":3,"title":1},"862":{"body":15,"breadcrumbs":3,"title":1},"863":{"body":18,"breadcrumbs":6,"title":3},"864":{"body":18,"breadcrumbs":4,"title":1},"865":{"body":14,"breadcrumbs":5,"title":2},"866":{"body":9,"breadcrumbs":5,"title":2},"867":{"body":7,"breadcrumbs":5,"title":2},"868":{"body":29,"breadcrumbs":6,"title":3},"869":{"body":41,"breadcrumbs":6,"title":3},"87":{"body":102,"breadcrumbs":5,"title":3},"870":{"body":32,"breadcrumbs":5,"title":2},"871":{"body":29,"breadcrumbs":5,"title":2},"872":{"body":57,"breadcrumbs":4,"title":1},"873":{"body":55,"breadcrumbs":5,"title":2},"874":{"body":25,"breadcrumbs":4,"title":1},"875":{"body":13,"breadcrumbs":4,"title":1},"876":{"body":20,"breadcrumbs":4,"title":2},"877":{"body":15,"breadcrumbs":3,"title":1},"878":{"body":0,"breadcrumbs":4,"title":2},"879":{"body":18,"breadcrumbs":3,"title":1},"88":{"body":231,"breadcrumbs":7,"title":5},"880":{"body":18,"breadcrumbs":3,"title":1},"881":{"body":43,"breadcrumbs":4,"title":2},"882":{"body":20,"breadcrumbs":3,"title":1},"883":{"body":32,"breadcrumbs":3,"title":1},"884":{"body":44,"breadcrumbs":4,"title":2},"885":{"body":23,"breadcrumbs":4,"title":2},"886":{"body":16,"breadcrumbs":3,"title":1},"887":{"body":13,"breadcrumbs":2,"title":1},"888":{"body":1,"breadcrumbs":3,"title":2},"889":{"body":19,"breadcrumbs":3,"title":2},"89":{"body":27,"breadcrumbs":4,"title":2},"890":{"body":33,"breadcrumbs":3,"title":2},"891":{"body":0,"breadcrumbs":3,"title":2},"892":{"body":69,"breadcrumbs":3,"title":2},"893":{"body":26,"breadcrumbs":3,"title":2},"894":{"body":16,"breadcrumbs":3,"title":2},"895":{"body":10,"breadcrumbs":3,"title":2},"896":{"body":35,"breadcrumbs":3,"title":2},"897":{"body":12,"breadcrumbs":2,"title":1},"898":{"body":8,"breadcrumbs":3,"title":2},"899":{"body":54,"breadcrumbs":3,"title":2},"9":{"body":11,"breadcrumbs":2,"title":1},"90":{"body":29,"breadcrumbs":4,"title":2},"900":{"body":35,"breadcrumbs":3,"title":2},"901":{"body":47,"breadcrumbs":3,"title":2},"902":{"body":64,"breadcrumbs":4,"title":3},"903":{"body":16,"breadcrumbs":3,"title":2},"904":{"body":0,"breadcrumbs":3,"title":2},"905":{"body":5,"breadcrumbs":2,"title":1},"906":{"body":8,"breadcrumbs":2,"title":1},"907":{"body":5,"breadcrumbs":2,"title":1},"908":{"body":45,"breadcrumbs":4,"title":3},"909":{"body":18,"breadcrumbs":2,"title":1},"91":{"body":33,"breadcrumbs":4,"title":2},"910":{"body":14,"breadcrumbs":4,"title":2},"911":{"body":155,"breadcrumbs":5,"title":3},"912":{"body":0,"breadcrumbs":5,"title":3},"913":{"body":42,"breadcrumbs":5,"title":3},"914":{"body":21,"breadcrumbs":5,"title":3},"915":{"body":17,"breadcrumbs":5,"title":3},"916":{"body":112,"breadcrumbs":5,"title":3},"917":{"body":0,"breadcrumbs":4,"title":2},"918":{"body":53,"breadcrumbs":4,"title":2},"919":{"body":11,"breadcrumbs":4,"title":2},"92":{"body":42,"breadcrumbs":3,"title":1},"920":{"body":0,"breadcrumbs":4,"title":2},"921":{"body":45,"breadcrumbs":4,"title":2},"922":{"body":23,"breadcrumbs":4,"title":2},"923":{"body":0,"breadcrumbs":4,"title":2},"924":{"body":23,"breadcrumbs":4,"title":2},"925":{"body":130,"breadcrumbs":4,"title":2},"926":{"body":23,"breadcrumbs":4,"title":2},"927":{"body":9,"breadcrumbs":5,"title":3},"928":{"body":21,"breadcrumbs":5,"title":3},"929":{"body":35,"breadcrumbs":4,"title":2},"93":{"body":45,"breadcrumbs":4,"title":2},"930":{"body":33,"breadcrumbs":4,"title":2},"931":{"body":10,"breadcrumbs":5,"title":3},"932":{"body":37,"breadcrumbs":3,"title":1},"933":{"body":24,"breadcrumbs":5,"title":3},"934":{"body":41,"breadcrumbs":6,"title":4},"935":{"body":24,"breadcrumbs":4,"title":2},"936":{"body":11,"breadcrumbs":4,"title":2},"937":{"body":32,"breadcrumbs":4,"title":2},"938":{"body":12,"breadcrumbs":5,"title":3},"939":{"body":63,"breadcrumbs":4,"title":2},"94":{"body":50,"breadcrumbs":8,"title":6},"940":{"body":19,"breadcrumbs":4,"title":2},"941":{"body":38,"breadcrumbs":4,"title":2},"942":{"body":32,"breadcrumbs":4,"title":2},"943":{"body":6,"breadcrumbs":5,"title":3},"944":{"body":22,"breadcrumbs":3,"title":1},"945":{"body":6,"breadcrumbs":3,"title":1},"946":{"body":23,"breadcrumbs":4,"title":2},"947":{"body":8,"breadcrumbs":5,"title":3},"948":{"body":17,"breadcrumbs":4,"title":2},"949":{"body":20,"breadcrumbs":4,"title":2},"95":{"body":43,"breadcrumbs":7,"title":5},"950":{"body":119,"breadcrumbs":5,"title":3},"951":{"body":31,"breadcrumbs":4,"title":2},"952":{"body":6,"breadcrumbs":4,"title":2},"953":{"body":23,"breadcrumbs":4,"title":2},"954":{"body":26,"breadcrumbs":4,"title":2},"955":{"body":3,"breadcrumbs":4,"title":2},"956":{"body":22,"breadcrumbs":4,"title":2},"957":{"body":8,"breadcrumbs":4,"title":2},"958":{"body":0,"breadcrumbs":4,"title":2},"959":{"body":23,"breadcrumbs":4,"title":2},"96":{"body":43,"breadcrumbs":7,"title":5},"960":{"body":28,"breadcrumbs":4,"title":2},"961":{"body":0,"breadcrumbs":5,"title":3},"962":{"body":17,"breadcrumbs":5,"title":3},"963":{"body":8,"breadcrumbs":5,"title":3},"964":{"body":15,"breadcrumbs":5,"title":3},"965":{"body":6,"breadcrumbs":5,"title":3},"966":{"body":10,"breadcrumbs":5,"title":3},"967":{"body":0,"breadcrumbs":4,"title":2},"968":{"body":14,"breadcrumbs":3,"title":1},"969":{"body":74,"breadcrumbs":3,"title":1},"97":{"body":47,"breadcrumbs":10,"title":8},"970":{"body":15,"breadcrumbs":3,"title":1},"971":{"body":0,"breadcrumbs":4,"title":2},"972":{"body":11,"breadcrumbs":4,"title":2},"973":{"body":13,"breadcrumbs":4,"title":2},"974":{"body":12,"breadcrumbs":3,"title":1},"975":{"body":0,"breadcrumbs":5,"title":3},"976":{"body":160,"breadcrumbs":5,"title":3},"977":{"body":25,"breadcrumbs":5,"title":3},"978":{"body":20,"breadcrumbs":6,"title":4},"979":{"body":22,"breadcrumbs":5,"title":3},"98":{"body":31,"breadcrumbs":9,"title":7},"980":{"body":16,"breadcrumbs":3,"title":1},"981":{"body":25,"breadcrumbs":4,"title":2},"982":{"body":0,"breadcrumbs":5,"title":3},"983":{"body":19,"breadcrumbs":5,"title":3},"984":{"body":22,"breadcrumbs":4,"title":2},"985":{"body":24,"breadcrumbs":4,"title":2},"986":{"body":12,"breadcrumbs":4,"title":2},"987":{"body":52,"breadcrumbs":4,"title":2},"988":{"body":27,"breadcrumbs":4,"title":2},"989":{"body":12,"breadcrumbs":5,"title":3},"99":{"body":7,"breadcrumbs":2,"title":1},"990":{"body":28,"breadcrumbs":4,"title":2},"991":{"body":42,"breadcrumbs":5,"title":3},"992":{"body":35,"breadcrumbs":5,"title":3},"993":{"body":0,"breadcrumbs":5,"title":3},"994":{"body":33,"breadcrumbs":5,"title":3},"995":{"body":24,"breadcrumbs":4,"title":2},"996":{"body":56,"breadcrumbs":5,"title":3},"997":{"body":80,"breadcrumbs":5,"title":3},"998":{"body":9,"breadcrumbs":6,"title":4},"999":{"body":70,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"Welcome to the JSON Agent Communication Standard (JACS) documentation! JACS is a comprehensive framework for creating, signing, and verifying JSON documents with cryptographic integrity, designed specifically for AI agent communication and task management.","breadcrumbs":"Introduction » JACS: JSON Agent Communication Standard","id":"0","title":"JACS: JSON Agent Communication Standard"},"1":{"body":"JACS provides a standard way for AI agents to: Create and sign JSON documents with cryptographic signatures Verify authenticity and integrity of documents Manage tasks and agreements between multiple agents Maintain audit trails of modifications and versioning Ensure trust in multi-agent systems As a developer, JACS gives you the tools to build trustworthy AI systems where agents can securely exchange tasks, agreements, and data with verifiable integrity.","breadcrumbs":"Introduction » What is JACS?","id":"1","title":"What is JACS?"},"10":{"body":"pip install jacs import jacs agent = jacs.JacsAgent()\nagent.load(\"./config.json\")","breadcrumbs":"Introduction » Python","id":"10","title":"Python"},"100":{"body":"Rust : Version 1.93 or later (Edition 2024) Cargo : Included with Rust installation","breadcrumbs":"Installation » Requirements","id":"100","title":"Requirements"},"1000":{"body":"Status Description active Currently in use for signing rotated Superseded by newer key, still valid for old signatures revoked Compromised, signatures should not be trusted expired Past validity period","breadcrumbs":"Key Rotation » Key Status Values","id":"1000","title":"Key Status Values"},"1001":{"body":"impl TrustedAgent { /// Get the public key that was active for a specific agent version fn get_key_for_version(&self, version: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|entry| { match (&entry.first_version, &entry.last_version) { (Some(first), Some(last)) => { version >= first && version <= last } (Some(first), None) => { version >= first // Current key } _ => false } }) } /// Get the public key by its hash fn get_key_by_hash(&self, hash: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|e| e.public_key_hash == hash) }\n}","breadcrumbs":"Key Rotation » Looking Up Keys","id":"1001","title":"Looking Up Keys"},"1002":{"body":"DNS records can advertise multiple key versions for an agent.","breadcrumbs":"Key Rotation » DNS Support for Key Versions","id":"1002","title":"DNS Support for Key Versions"},"1003":{"body":"Each key version gets its own TXT record: ; Current key\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=current; alg=SHA-256; hash={hash1}\" ; Previous key (still valid for old signatures)\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=rotated; valid_until=2025-01-15; hash={hash2}\"","breadcrumbs":"Key Rotation » Multi-Version DNS Records","id":"1003","title":"Multi-Version DNS Records"},"1004":{"body":"# Generate DNS records for all active keys\njacs agent dns --all-keys","breadcrumbs":"Key Rotation » DNS Record Generation","id":"1004","title":"DNS Record Generation"},"1005":{"body":"","breadcrumbs":"Key Rotation » Security Considerations","id":"1005","title":"Security Considerations"},"1006":{"body":"When a key is compromised: Mark as revoked in the agent's key history Update DNS to include revocation status Signatures fail verification when made with revoked keys Notify trusted peers if possible","breadcrumbs":"Key Rotation » Key Revocation","id":"1006","title":"Key Revocation"},"1007":{"body":"During rotation, both old and new keys may be valid: New documents should be signed with the new key Old documents remain verifiable with the old key DNS may advertise both keys during transition","breadcrumbs":"Key Rotation » Overlap Period","id":"1007","title":"Overlap Period"},"1008":{"body":"After rotation: Old private keys should be securely deleted Only public keys are retained for verification Key metadata must be protected from modification","breadcrumbs":"Key Rotation » Secure Deletion","id":"1008","title":"Secure Deletion"},"1009":{"body":"","breadcrumbs":"Key Rotation » Best Practices","id":"1009","title":"Best Practices"},"101":{"body":"rustc --version\n# Should show rustc 1.93.0 or later If you need to update Rust: rustup update stable","breadcrumbs":"Installation » Verify Rust Version","id":"101","title":"Verify Rust Version"},"1010":{"body":"Regular rotation : Quarterly or annually for compliance Algorithm upgrade : When transitioning to stronger cryptography Incident response : Immediately after suspected compromise","breadcrumbs":"Key Rotation » Rotation Schedule","id":"1010","title":"Rotation Schedule"},"1011":{"body":"Backup current agent state Verify all systems can handle new key format Plan DNS propagation time Notify dependent systems of upcoming change","breadcrumbs":"Key Rotation » Pre-Rotation Checklist","id":"1011","title":"Pre-Rotation Checklist"},"1012":{"body":"Verify new key is active Confirm old documents still verify Update DNS records Securely delete old private key Test signing with new key","breadcrumbs":"Key Rotation » Post-Rotation Checklist","id":"1012","title":"Post-Rotation Checklist"},"1013":{"body":"Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity verification","breadcrumbs":"Key Rotation » See Also","id":"1013","title":"See Also"},"1014":{"body":"JACS supports multiple cryptographic algorithms for digital signatures, providing flexibility for different security requirements and future-proofing against quantum computing threats.","breadcrumbs":"Cryptographic Algorithms » Cryptographic Algorithms","id":"1014","title":"Cryptographic Algorithms"},"1015":{"body":"Algorithm Config Value Type Key Size Signature Size Recommended Use Ed25519 ring-Ed25519 Elliptic Curve 32 bytes 64 bytes General purpose (default) RSA-PSS RSA-PSS RSA 2048-4096 bits 256-512 bytes Legacy systems Dilithium pq-dilithium Lattice-based ~1.3 KB ~2.4 KB Post-quantum PQ2025 pq2025 Hybrid ~1.3 KB ~2.5 KB Transitional","breadcrumbs":"Cryptographic Algorithms » Supported Algorithms","id":"1015","title":"Supported Algorithms"},"1016":{"body":"The recommended algorithm for most use cases.","breadcrumbs":"Cryptographic Algorithms » Ed25519 (ring-Ed25519)","id":"1016","title":"Ed25519 (ring-Ed25519)"},"1017":{"body":"Ed25519 is an elliptic curve signature scheme using Curve25519. JACS uses the ring cryptographic library implementation.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1017","title":"Overview"},"1018":{"body":"Speed : Extremely fast signing and verification Key Size : 32-byte private key, 32-byte public key Signature Size : 64 bytes Security Level : ~128 bits (classical)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1018","title":"Characteristics"},"1019":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1019","title":"Configuration"},"102":{"body":"","breadcrumbs":"Installation » Installing the CLI","id":"102","title":"Installing the CLI"},"1020":{"body":"General agent communication MCP message signing HTTP request/response signing Document signing","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1020","title":"Use Cases"},"1021":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using ring-Ed25519 # Sign a message\nsignature = agent.sign_string(\"Hello, World!\")\nprint(f\"Signature (64 bytes): {len(signature)} characters base64\")","breadcrumbs":"Cryptographic Algorithms » Example","id":"1021","title":"Example"},"1022":{"body":"Industry-standard RSA with Probabilistic Signature Scheme padding.","breadcrumbs":"Cryptographic Algorithms » RSA-PSS","id":"1022","title":"RSA-PSS"},"1023":{"body":"RSA-PSS provides compatibility with systems that require RSA signatures. JACS uses 2048-bit or larger keys.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1023","title":"Overview"},"1024":{"body":"Speed : Slower than Ed25519 Key Size : 2048-4096 bits Signature Size : Same as key size (256-512 bytes) Security Level : ~112-128 bits (2048-bit key)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1024","title":"Characteristics"},"1025":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1025","title":"Configuration"},"1026":{"body":"Integration with legacy systems Compliance requirements mandating RSA Interoperability with enterprise PKI","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1026","title":"Use Cases"},"1027":{"body":"Larger signatures increase document size Slower than Ed25519 Larger keys needed for equivalent security","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1027","title":"Considerations"},"1028":{"body":"NIST-standardized post-quantum digital signature algorithm.","breadcrumbs":"Cryptographic Algorithms » Dilithium (pq-dilithium)","id":"1028","title":"Dilithium (pq-dilithium)"},"1029":{"body":"Dilithium is a lattice-based signature scheme selected by NIST for post-quantum cryptography standardization. It provides security against both classical and quantum computers.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1029","title":"Overview"},"103":{"body":"cargo install jacs --features cli","breadcrumbs":"Installation » From crates.io (Recommended)","id":"103","title":"From crates.io (Recommended)"},"1030":{"body":"Speed : Moderate (faster than RSA, slower than Ed25519) Key Size : ~1.3 KB public key, ~2.5 KB private key Signature Size : ~2.4 KB Security Level : NIST Level 3 (quantum-resistant)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1030","title":"Characteristics"},"1031":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1031","title":"Configuration"},"1032":{"body":"Long-term document security Protection against future quantum attacks High-security applications Government/defense requirements","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1032","title":"Use Cases"},"1033":{"body":"Larger signatures and keys than classical algorithms Newer algorithm (less battle-tested) May be required for future compliance","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1033","title":"Considerations"},"1034":{"body":"Transitional hybrid scheme combining classical and post-quantum algorithms.","breadcrumbs":"Cryptographic Algorithms » PQ2025 (Hybrid)","id":"1034","title":"PQ2025 (Hybrid)"},"1035":{"body":"PQ2025 combines Ed25519 with Dilithium, providing security even if one algorithm is broken. This approach is recommended by security researchers during the quantum transition period.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1035","title":"Overview"},"1036":{"body":"Speed : Slower (two signatures computed) Key Size : Combined Ed25519 + Dilithium Signature Size : ~2.5 KB (combined) Security Level : Max of both algorithms","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1036","title":"Characteristics"},"1037":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1037","title":"Configuration"},"1038":{"body":"Transitioning to post-quantum Maximum security requirements Uncertainty about algorithm security Long-lived documents","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1038","title":"Use Cases"},"1039":{"body":"Largest signatures Slowest signing/verification Best for paranoid security requirements","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1039","title":"Considerations"},"104":{"body":"git clone https://github.com/HumanAssisted/JACS\ncd JACS/jacs\ncargo install --path . --features cli","breadcrumbs":"Installation » From Source","id":"104","title":"From Source"},"1040":{"body":"","breadcrumbs":"Cryptographic Algorithms » Algorithm Selection Guide","id":"1040","title":"Algorithm Selection Guide"},"1041":{"body":"Requirement Recommended Algorithm Best performance ring-Ed25519 Smallest signatures ring-Ed25519 Legacy compatibility RSA-PSS Quantum resistance pq-dilithium Maximum security pq2025 General purpose ring-Ed25519","breadcrumbs":"Cryptographic Algorithms » Decision Matrix","id":"1041","title":"Decision Matrix"},"1042":{"body":"Web APIs and MCP : { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Fast signing is critical for real-time communication. Legal/Financial Documents : { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Long-term validity requires quantum resistance. Enterprise Integration : { \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Compatibility with existing PKI infrastructure. High-Security : { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Belt-and-suspenders approach for maximum protection.","breadcrumbs":"Cryptographic Algorithms » By Use Case","id":"1042","title":"By Use Case"},"1043":{"body":"Keys are generated automatically when creating an agent: # Directory structure after agent creation\njacs_keys/\n├── private.pem # Algorithm-specific private key\n└── public.pem # Algorithm-specific public key","breadcrumbs":"Cryptographic Algorithms » Key Generation","id":"1043","title":"Key Generation"},"1044":{"body":"Algorithm Private Key Format Public Key Format ring-Ed25519 PEM (PKCS#8) PEM (SPKI) RSA-PSS PEM (PKCS#8) PEM (SPKI) pq-dilithium PEM (custom) PEM (custom) pq2025 PEM (combined) PEM (combined)","breadcrumbs":"Cryptographic Algorithms » Key Formats","id":"1044","title":"Key Formats"},"1045":{"body":"Signatures in JACS documents include algorithm metadata: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"content\"] }\n} The signingAlgorithm field enables verifiers to use the correct verification method.","breadcrumbs":"Cryptographic Algorithms » Signature Structure","id":"1045","title":"Signature Structure"},"1046":{"body":"JACS uses SHA-256 for all hash operations: Document content hashing (jacsSha256) Public key fingerprints (publicKeyHash) Agreement content locking (jacsAgreementHash) { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Cryptographic Algorithms » Hashing","id":"1046","title":"Hashing"},"1047":{"body":"To migrate to a new algorithm: Generate New Keys { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Create New Agent Version # Load with old algorithm\nagent.load('./old-config.json') # Update to new algorithm and generate new version\nnew_agent = agent.update_agent(json.dumps({ # ... agent data with new keys\n})) Update Configuration { \"jacs_agent_id_and_version\": \"agent-id:new-version\", \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Maintain Backward Compatibility Keep old agent versions for verifying old documents Old signatures remain valid with old public keys","breadcrumbs":"Cryptographic Algorithms » Algorithm Migration","id":"1047","title":"Algorithm Migration"},"1048":{"body":"Approximate performance (varies by hardware): Algorithm Sign (ops/sec) Verify (ops/sec) Key Gen (ms) ring-Ed25519 ~50,000 ~20,000 <1 RSA-PSS (2048) ~1,000 ~30,000 ~100 pq-dilithium ~5,000 ~10,000 ~1 pq2025 ~4,000 ~8,000 ~2","breadcrumbs":"Cryptographic Algorithms » Performance Comparison","id":"1048","title":"Performance Comparison"},"1049":{"body":"","breadcrumbs":"Cryptographic Algorithms » Security Considerations","id":"1049","title":"Security Considerations"},"105":{"body":"jacs --help","breadcrumbs":"Installation » Verify Installation","id":"105","title":"Verify Installation"},"1050":{"body":"JACS documents include the signing algorithm, enabling: Verification with correct algorithm Graceful algorithm transitions Multi-algorithm environments","breadcrumbs":"Cryptographic Algorithms » Algorithm Agility","id":"1050","title":"Algorithm Agility"},"1051":{"body":"Signatures don't provide forward secrecy. For confidentiality: Use TLS for transport Consider additional encryption layers","breadcrumbs":"Cryptographic Algorithms » Forward Secrecy","id":"1051","title":"Forward Secrecy"},"1052":{"body":"If a private key is compromised: Generate new key pair Create new agent version Revoke trust in compromised version Re-sign critical documents","breadcrumbs":"Cryptographic Algorithms » Key Compromise","id":"1052","title":"Key Compromise"},"1053":{"body":"Security Model - Overall security architecture Configuration - Algorithm configuration DNS Verification - Public key fingerprint verification","breadcrumbs":"Cryptographic Algorithms » See Also","id":"1053","title":"See Also"},"1054":{"body":"JACS supports multiple storage backends for persisting documents and agents. This flexibility allows deployment in various environments from local development to cloud infrastructure.","breadcrumbs":"Storage Backends » Storage Backends","id":"1054","title":"Storage Backends"},"1055":{"body":"Backend Config Value Description Filesystem fs Local file storage (default) AWS S3 aws Amazon S3 object storage HAI Cloud hai HAI managed storage PostgreSQL database PostgreSQL with JSONB queries (requires database feature)","breadcrumbs":"Storage Backends » Available Backends","id":"1055","title":"Available Backends"},"1056":{"body":"Set the storage backend in your configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1056","title":"Configuration"},"1057":{"body":"The default storage backend, storing documents as JSON files on the local filesystem.","breadcrumbs":"Storage Backends » Filesystem Storage (fs)","id":"1057","title":"Filesystem Storage (fs)"},"1058":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1058","title":"Configuration"},"1059":{"body":"jacs_data/\n├── agents/\n│ └── {agent-id}/\n│ └── {version-id}.json\n├── documents/\n│ └── {document-id}/\n│ └── {version-id}.json\n└── files/ └── {attachment-hash}","breadcrumbs":"Storage Backends » Directory Structure","id":"1059","title":"Directory Structure"},"106":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Installation » Using as a Library","id":"106","title":"Using as a Library"},"1060":{"body":"Local development Single-server deployments Testing and prototyping Air-gapped environments","breadcrumbs":"Storage Backends » Use Cases","id":"1060","title":"Use Cases"},"1061":{"body":"Simple setup No network dependencies Fast local access Easy backup and migration","breadcrumbs":"Storage Backends » Advantages","id":"1061","title":"Advantages"},"1062":{"body":"Not suitable for distributed systems Limited by local disk space Single point of failure","breadcrumbs":"Storage Backends » Considerations","id":"1062","title":"Considerations"},"1063":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using filesystem storage # Documents are saved to jacs_data/documents/\ndoc = agent.create_document(json.dumps({ 'title': 'My Document'\n}))\n# Saved to: jacs_data/documents/{doc-id}/{version-id}.json","breadcrumbs":"Storage Backends » Example","id":"1063","title":"Example"},"1064":{"body":"Cloud object storage using Amazon S3.","breadcrumbs":"Storage Backends » AWS S3 Storage (aws)","id":"1064","title":"AWS S3 Storage (aws)"},"1065":{"body":"{ \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1065","title":"Configuration"},"1066":{"body":"export AWS_ACCESS_KEY_ID=\"your-access-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret-key\"\nexport AWS_REGION=\"us-east-1\"","breadcrumbs":"Storage Backends » Environment Variables","id":"1066","title":"Environment Variables"},"1067":{"body":"my-jacs-bucket/\n├── data/\n│ ├── agents/\n│ │ └── {agent-id}/\n│ │ └── {version-id}.json\n│ ├── documents/\n│ │ └── {document-id}/\n│ │ └── {version-id}.json\n│ └── files/\n│ └── {attachment-hash}","breadcrumbs":"Storage Backends » Bucket Structure","id":"1067","title":"Bucket Structure"},"1068":{"body":"Production deployments Distributed systems High availability requirements Large document volumes","breadcrumbs":"Storage Backends » Use Cases","id":"1068","title":"Use Cases"},"1069":{"body":"Scalable storage High durability (99.999999999%) Geographic redundancy Built-in versioning support","breadcrumbs":"Storage Backends » Advantages","id":"1069","title":"Advantages"},"107":{"body":"JACS supports several optional features for observability and integrations: [dependencies]\n# Basic library usage\njacs = \"0.3\" # With OpenTelemetry logging\njacs = { version = \"0.3\", features = [\"otlp-logs\"] } # With OpenTelemetry metrics\njacs = { version = \"0.3\", features = [\"otlp-metrics\"] } # With OpenTelemetry tracing\njacs = { version = \"0.3\", features = [\"otlp-tracing\"] } # With all observability features\njacs = { version = \"0.3\", features = [\"otlp-logs\", \"otlp-metrics\", \"otlp-tracing\"] }","breadcrumbs":"Installation » With Optional Features","id":"107","title":"With Optional Features"},"1070":{"body":"Requires AWS account Network latency Storage costs IAM configuration needed","breadcrumbs":"Storage Backends » Considerations","id":"1070","title":"Considerations"},"1071":{"body":"Minimum required permissions: { \"Version\": \"2012-10-17\", \"Statement\": [ { \"Effect\": \"Allow\", \"Action\": [ \"s3:GetObject\", \"s3:PutObject\", \"s3:DeleteObject\", \"s3:ListBucket\" ], \"Resource\": [ \"arn:aws:s3:::my-jacs-bucket\", \"arn:aws:s3:::my-jacs-bucket/*\" ] } ]\n}","breadcrumbs":"Storage Backends » IAM Policy","id":"1071","title":"IAM Policy"},"1072":{"body":"import jacs\nimport json\nimport os # Set AWS credentials\nos.environ['AWS_ACCESS_KEY_ID'] = 'your-key'\nos.environ['AWS_SECRET_ACCESS_KEY'] = 'your-secret'\nos.environ['AWS_REGION'] = 'us-east-1' agent = jacs.JacsAgent()\nagent.load('./jacs.s3.config.json') # Documents are saved to S3\ndoc = agent.create_document(json.dumps({ 'title': 'Cloud Document'\n}))","breadcrumbs":"Storage Backends » Example","id":"1072","title":"Example"},"1073":{"body":"Managed storage provided by HAI.","breadcrumbs":"Storage Backends » HAI Cloud Storage (hai)","id":"1073","title":"HAI Cloud Storage (hai)"},"1074":{"body":"{ \"jacs_default_storage\": \"hai\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1074","title":"Configuration"},"1075":{"body":"Managed infrastructure Built-in agent registry Cross-organization document sharing Integrated DNS verification","breadcrumbs":"Storage Backends » Features","id":"1075","title":"Features"},"1076":{"body":"Multi-agent ecosystems Cross-organization collaboration Managed deployments Integration with HAI services","breadcrumbs":"Storage Backends » Use Cases","id":"1076","title":"Use Cases"},"1077":{"body":"The database storage backend stores JACS documents in PostgreSQL, enabling JSONB queries, pagination, and agent-based lookups while preserving cryptographic signatures. This backend is behind a compile-time feature flag and requires the database Cargo feature to be enabled.","breadcrumbs":"Storage Backends » PostgreSQL Database Storage (database)","id":"1077","title":"PostgreSQL Database Storage (database)"},"1078":{"body":"# Build with database support\ncargo build --features database # Run tests with database support (requires Docker for testcontainers)\ncargo test --features database-tests","breadcrumbs":"Storage Backends » Compile-Time Setup","id":"1078","title":"Compile-Time Setup"},"1079":{"body":"{ \"jacs_default_storage\": \"database\"\n} Environment variables (12-Factor compliant): export JACS_DATABASE_URL=\"postgres://user:password@localhost:5432/jacs\"\nexport JACS_DATABASE_MAX_CONNECTIONS=10 # optional, default 10\nexport JACS_DATABASE_MIN_CONNECTIONS=1 # optional, default 1\nexport JACS_DATABASE_CONNECT_TIMEOUT_SECS=30 # optional, default 30","breadcrumbs":"Storage Backends » Configuration","id":"1079","title":"Configuration"},"108":{"body":"Feature Description cli Enables CLI binary build with clap and ratatui otlp-logs OpenTelemetry Protocol logging backend otlp-metrics OpenTelemetry Protocol metrics backend otlp-tracing OpenTelemetry Protocol distributed tracing observability-convenience Helper wrappers for metrics and logging mcp-server Model Context Protocol server integration surface","breadcrumbs":"Installation » Available Features","id":"108","title":"Available Features"},"1080":{"body":"JACS uses a TEXT + JSONB dual-column strategy: raw_contents (TEXT) : Stores the exact JSON bytes as-is. This is used when retrieving documents to preserve cryptographic signatures (PostgreSQL JSONB normalizes key ordering, which would break signatures). file_contents (JSONB) : Stores the same document as JSONB for efficient queries, field extraction, and indexing.","breadcrumbs":"Storage Backends » How It Works","id":"1080","title":"How It Works"},"1081":{"body":"CREATE TABLE jacs_document ( jacs_id TEXT NOT NULL, jacs_version TEXT NOT NULL, agent_id TEXT, jacs_type TEXT NOT NULL, raw_contents TEXT NOT NULL, file_contents JSONB NOT NULL, created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), PRIMARY KEY (jacs_id, jacs_version)\n);","breadcrumbs":"Storage Backends » Table Schema","id":"1081","title":"Table Schema"},"1082":{"body":"Documents are immutable once stored . New versions create new rows keyed by (jacs_id, jacs_version). There are no UPDATE operations on existing rows. Inserting a duplicate (jacs_id, jacs_version) is silently ignored (ON CONFLICT DO NOTHING).","breadcrumbs":"Storage Backends » Append-Only Model","id":"1082","title":"Append-Only Model"},"1083":{"body":"The database backend provides additional query methods beyond basic CRUD: Method Description query_by_type(type, limit, offset) Paginated queries by document type query_by_field(field, value, type, limit, offset) JSONB field queries count_by_type(type) Count documents by type get_versions(id) All versions of a document get_latest(id) Most recent version query_by_agent(agent_id, type, limit, offset) Documents by signing agent","breadcrumbs":"Storage Backends » Query Capabilities","id":"1083","title":"Query Capabilities"},"1084":{"body":"use jacs::storage::{DatabaseStorage, DatabaseDocumentTraits, StorageDocumentTraits}; // Create storage (requires tokio runtime)\nlet storage = DatabaseStorage::new( \"postgres://localhost/jacs\", Some(10), // max connections Some(1), // min connections Some(30), // timeout seconds\n)?; // Run migrations (creates table + indexes)\nstorage.run_migrations()?; // Store a document\nstorage.store_document(&doc)?; // Query by type with pagination\nlet commitments = storage.query_by_type(\"commitment\", 10, 0)?; // Query by JSONB field\nlet active = storage.query_by_field( \"jacsCommitmentStatus\", \"active\", Some(\"commitment\"), 10, 0\n)?; // Get latest version\nlet latest = storage.get_latest(\"some-document-id\")?;","breadcrumbs":"Storage Backends » Rust API Example","id":"1084","title":"Rust API Example"},"1085":{"body":"Even when using database storage, keys are always loaded from the filesystem or keyservers -- never from the database or configuration providers. The database stores only signed documents.","breadcrumbs":"Storage Backends » Security Note","id":"1085","title":"Security Note"},"1086":{"body":"Production deployments requiring complex queries Multi-agent systems with shared document visibility Applications needing pagination and aggregation Environments where JSONB indexing provides significant query performance","breadcrumbs":"Storage Backends » Use Cases","id":"1086","title":"Use Cases"},"1087":{"body":"Requires PostgreSQL 14+ Requires tokio runtime (not available in WASM) Compile-time feature flag (database) Network dependency on PostgreSQL server","breadcrumbs":"Storage Backends » Considerations","id":"1087","title":"Considerations"},"1088":{"body":"For testing and temporary operations, documents can be created without saving: # Create document without saving\ndoc = agent.create_document( json.dumps({'temp': 'data'}), no_save=True # Don't persist\n) const doc = agent.createDocument( JSON.stringify({ temp: 'data' }), null, // custom_schema null, // output_filename true // no_save = true\n);","breadcrumbs":"Storage Backends » In-Memory Storage","id":"1088","title":"In-Memory Storage"},"1089":{"body":"Scenario Recommended Backend Development fs Single server fs Complex queries needed database Multi-agent with shared queries database Cloud deployment aws High availability aws Multi-organization hai Testing In-memory (no_save)","breadcrumbs":"Storage Backends » Storage Selection Guide","id":"1089","title":"Storage Selection Guide"},"109":{"body":"JACS supports the following platforms: Platform Architecture Support Linux x86_64, aarch64 Full support macOS x86_64, aarch64 Full support Windows x86_64 Full support WebAssembly wasm32 Partial (no post-quantum crypto, limited storage)","breadcrumbs":"Installation » Platform Support","id":"109","title":"Platform Support"},"1090":{"body":"","breadcrumbs":"Storage Backends » File Storage","id":"1090","title":"File Storage"},"1091":{"body":"Files can be embedded directly in documents: doc = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n) The file contents are base64-encoded and stored in jacsFiles.","breadcrumbs":"Storage Backends » Embedded Files","id":"1091","title":"Embedded Files"},"1092":{"body":"Or reference files without embedding: doc = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=False\n) Only the file path and hash are stored. The file must be available when the document is accessed.","breadcrumbs":"Storage Backends » External Files","id":"1092","title":"External Files"},"1093":{"body":"","breadcrumbs":"Storage Backends » Data Migration","id":"1093","title":"Data Migration"},"1094":{"body":"import jacs\nimport json\nimport os # Load from filesystem\nfs_agent = jacs.JacsAgent()\nfs_agent.load('./jacs.fs.config.json') # Read all documents\n# (implementation depends on your document tracking) # Configure S3\ns3_agent = jacs.JacsAgent()\ns3_agent.load('./jacs.s3.config.json') # Re-create documents in S3\nfor doc_json in documents: doc = json.loads(doc_json) # Remove existing signatures for re-signing del doc['jacsSignature'] del doc['jacsSha256'] s3_agent.create_document(json.dumps(doc))","breadcrumbs":"Storage Backends » Filesystem to S3","id":"1094","title":"Filesystem to S3"},"1095":{"body":"For manual migration: # Export from filesystem\ntar -czf jacs_backup.tar.gz ./jacs_data # Import to new location\ntar -xzf jacs_backup.tar.gz -C /new/location","breadcrumbs":"Storage Backends » Export/Import","id":"1095","title":"Export/Import"},"1096":{"body":"","breadcrumbs":"Storage Backends » Backup and Recovery","id":"1096","title":"Backup and Recovery"},"1097":{"body":"# Regular backups\nrsync -av ./jacs_data/ /backup/jacs_data/ # Or with timestamp\ntar -czf jacs_backup_$(date +%Y%m%d).tar.gz ./jacs_data","breadcrumbs":"Storage Backends » Filesystem Backup","id":"1097","title":"Filesystem Backup"},"1098":{"body":"Enable S3 versioning for automatic backups: aws s3api put-bucket-versioning \\ --bucket my-jacs-bucket \\ --versioning-configuration Status=Enabled","breadcrumbs":"Storage Backends » S3 Backup","id":"1098","title":"S3 Backup"},"1099":{"body":"For disaster recovery with S3: aws s3api put-bucket-replication \\ --bucket my-jacs-bucket \\ --replication-configuration file://replication.json","breadcrumbs":"Storage Backends » Cross-Region Replication","id":"1099","title":"Cross-Region Replication"},"11":{"body":"JACS is ideal for scenarios where you need: Multi-agent systems where agents need to trust each other Task delegation with verifiable completion and approval Audit trails for AI decision-making processes Secure data exchange between AI systems Compliance requirements for AI system interactions Version control for AI-generated content and decisions","breadcrumbs":"Introduction » When to Use JACS","id":"11","title":"When to Use JACS"},"110":{"body":"When targeting WebAssembly, some features are unavailable: Post-quantum cryptographic algorithms (pq-dilithium) File system storage backend HTTP-based remote operations","breadcrumbs":"Installation » WebAssembly Notes","id":"110","title":"WebAssembly Notes"},"1100":{"body":"","breadcrumbs":"Storage Backends » Performance Optimization","id":"1100","title":"Performance Optimization"},"1101":{"body":"Use SSD storage Consider separate disk for jacs_data Enable filesystem caching","breadcrumbs":"Storage Backends » Filesystem","id":"1101","title":"Filesystem"},"1102":{"body":"Use regional endpoints Enable transfer acceleration for global access Consider S3 Intelligent-Tiering for cost optimization","breadcrumbs":"Storage Backends » S3","id":"1102","title":"S3"},"1103":{"body":"Implement application-level caching for frequently accessed documents: import functools @functools.lru_cache(maxsize=100)\ndef get_document(doc_id, version_id): return agent.get_document(f\"{doc_id}:{version_id}\")","breadcrumbs":"Storage Backends » Caching","id":"1103","title":"Caching"},"1104":{"body":"","breadcrumbs":"Storage Backends » Security Considerations","id":"1104","title":"Security Considerations"},"1105":{"body":"# Restrict permissions\nchmod 700 ./jacs_data\nchmod 600 ./jacs_data/**/*.json","breadcrumbs":"Storage Backends » Filesystem","id":"1105","title":"Filesystem"},"1106":{"body":"Enable encryption at rest (SSE-S3 or SSE-KMS) Use VPC endpoints for private access Enable access logging Configure bucket policies carefully { \"jacs_data_directory\": \"s3://my-jacs-bucket/data\", \"aws_s3_encryption\": \"AES256\"\n}","breadcrumbs":"Storage Backends » S3","id":"1106","title":"S3"},"1107":{"body":"Configuration - Storage configuration options Security Model - Storage security Quick Start - Initial setup","breadcrumbs":"Storage Backends » See Also","id":"1107","title":"See Also"},"1108":{"body":"JACS allows you to define custom document schemas that extend the base header schema, enabling type-safe, validated documents for your specific use cases.","breadcrumbs":"Custom Schemas » Custom Schemas","id":"1108","title":"Custom Schemas"},"1109":{"body":"Custom schemas: Inherit all JACS header fields (jacsId, jacsVersion, jacsSignature, etc.) Add domain-specific fields with validation Enable IDE autocompletion and type checking Ensure document consistency across your application","breadcrumbs":"Custom Schemas » Overview","id":"1109","title":"Overview"},"111":{"body":"After installation, initialize JACS: # Create configuration and agent in one step\njacs init This creates: ~/.jacs/jacs.config.json - Configuration file Cryptographic keys for your agent Initial agent document","breadcrumbs":"Installation » Configuration","id":"111","title":"Configuration"},"1110":{"body":"","breadcrumbs":"Custom Schemas » Creating a Custom Schema","id":"1110","title":"Creating a Custom Schema"},"1111":{"body":"Custom schemas extend the JACS header using allOf: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"description\": \"Invoice document with JACS signing\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0 }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"] } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"Custom Schemas » Basic Structure","id":"1111","title":"Basic Structure"},"1112":{"body":"Create the schema file // schemas/order.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://mycompany.com/schemas/order.schema.json\", \"title\": \"Order\", \"description\": \"E-commerce order document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"orderId\": { \"type\": \"string\", \"pattern\": \"^ORD-[0-9]{6}$\" }, \"customer\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"email\": { \"type\": \"string\", \"format\": \"email\" } }, \"required\": [\"name\", \"email\"] }, \"items\": { \"type\": \"array\", \"minItems\": 1, \"items\": { \"type\": \"object\", \"properties\": { \"sku\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"price\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"sku\", \"quantity\", \"price\"] } }, \"total\": { \"type\": \"number\", \"minimum\": 0 }, \"status\": { \"type\": \"string\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }, \"required\": [\"orderId\", \"customer\", \"items\", \"total\", \"status\"] } ]\n} Use the schema when creating documents import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') order = agent.create_document( json.dumps({ 'orderId': 'ORD-123456', 'customer': { 'name': 'Jane Smith', 'email': 'jane@example.com' }, 'items': [ {'sku': 'WIDGET-001', 'quantity': 2, 'price': 29.99} ], 'total': 59.98, 'status': 'pending' }), custom_schema='./schemas/order.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const order = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane Smith', email: 'jane@example.com' }, items: [ { sku: 'WIDGET-001', quantity: 2, price: 29.99 } ], total: 59.98, status: 'pending' }), './schemas/order.schema.json'\n);","breadcrumbs":"Custom Schemas » Step-by-Step Guide","id":"1112","title":"Step-by-Step Guide"},"1113":{"body":"","breadcrumbs":"Custom Schemas » Schema Best Practices","id":"1113","title":"Schema Best Practices"},"1114":{"body":"{ \"$id\": \"https://mycompany.com/schemas/v1/order.schema.json\"\n} Include version in the path for schema evolution.","breadcrumbs":"Custom Schemas » Use Meaningful IDs","id":"1114","title":"Use Meaningful IDs"},"1115":{"body":"{ \"properties\": { \"status\": { \"type\": \"string\", \"description\": \"Current order status in the fulfillment workflow\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }\n}","breadcrumbs":"Custom Schemas » Document Everything","id":"1115","title":"Document Everything"},"1116":{"body":"{ \"properties\": { \"email\": { \"type\": \"string\", \"format\": \"email\" }, \"phone\": { \"type\": \"string\", \"pattern\": \"^\\\\+?[1-9]\\\\d{1,14}$\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1, \"maximum\": 1000 } }\n}","breadcrumbs":"Custom Schemas » Use Appropriate Validation","id":"1116","title":"Use Appropriate Validation"},"1117":{"body":"{ \"properties\": { \"shipping\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } }, \"billing\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } } }\n}","breadcrumbs":"Custom Schemas » Group Related Fields","id":"1117","title":"Group Related Fields"},"1118":{"body":"","breadcrumbs":"Custom Schemas » Advanced Schema Features","id":"1118","title":"Advanced Schema Features"},"1119":{"body":"Different requirements based on field values: { \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\", \"enum\": [\"credit_card\", \"bank_transfer\", \"crypto\"] } } } ], \"if\": { \"properties\": { \"paymentMethod\": { \"const\": \"credit_card\" } } }, \"then\": { \"properties\": { \"cardLastFour\": { \"type\": \"string\", \"pattern\": \"^[0-9]{4}$\" } }, \"required\": [\"cardLastFour\"] }\n}","breadcrumbs":"Custom Schemas » Conditional Validation","id":"1119","title":"Conditional Validation"},"112":{"body":"Alternatively, create configuration and agent separately: # Create configuration only\njacs config create # Create agent with keys\njacs agent create --create-keys true","breadcrumbs":"Installation » Manual Configuration","id":"112","title":"Manual Configuration"},"1120":{"body":"{ \"$defs\": { \"address\": { \"type\": \"object\", \"properties\": { \"street\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } }, \"required\": [\"street\", \"city\", \"country\"] } }, \"properties\": { \"shippingAddress\": { \"$ref\": \"#/$defs/address\" }, \"billingAddress\": { \"$ref\": \"#/$defs/address\" } }\n}","breadcrumbs":"Custom Schemas » Reusable Definitions","id":"1120","title":"Reusable Definitions"},"1121":{"body":"{ \"properties\": { \"tags\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"minItems\": 1, \"maxItems\": 10, \"uniqueItems\": true } }\n}","breadcrumbs":"Custom Schemas » Array Constraints","id":"1121","title":"Array Constraints"},"1122":{"body":"For dynamic field names: { \"properties\": { \"metadata\": { \"type\": \"object\", \"patternProperties\": { \"^x-\": { \"type\": \"string\" } }, \"additionalProperties\": false } }\n}","breadcrumbs":"Custom Schemas » Pattern Properties","id":"1122","title":"Pattern Properties"},"1123":{"body":"","breadcrumbs":"Custom Schemas » Schema Inheritance","id":"1123","title":"Schema Inheritance"},"1124":{"body":"Create schema hierarchies: // schemas/base-transaction.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/base-transaction.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"transactionId\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"amount\": { \"type\": \"number\" } }, \"required\": [\"transactionId\", \"timestamp\", \"amount\"] } ]\n} // schemas/payment.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/payment.schema.json\", \"allOf\": [ { \"$ref\": \"https://example.com/schemas/base-transaction.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\" }, \"processorId\": { \"type\": \"string\" } }, \"required\": [\"paymentMethod\"] } ]\n}","breadcrumbs":"Custom Schemas » Extending Custom Schemas","id":"1124","title":"Extending Custom Schemas"},"1125":{"body":"","breadcrumbs":"Custom Schemas » Validation","id":"1125","title":"Validation"},"1126":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') try: # This will fail validation - missing required field doc = agent.create_document( json.dumps({ 'orderId': 'ORD-123456' # Missing: customer, items, total, status }), custom_schema='./schemas/order.schema.json' )\nexcept Exception as e: print(f\"Validation failed: {e}\")","breadcrumbs":"Custom Schemas » Python Validation","id":"1126","title":"Python Validation"},"1127":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); try { // This will fail - invalid enum value const doc = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane', email: 'jane@example.com' }, items: [{ sku: 'A', quantity: 1, price: 10 }], total: 10, status: 'invalid_status' // Not in enum }), './schemas/order.schema.json' );\n} catch (error) { console.error('Validation failed:', error.message);\n}","breadcrumbs":"Custom Schemas » Node.js Validation","id":"1127","title":"Node.js Validation"},"1128":{"body":"","breadcrumbs":"Custom Schemas » Example Schemas","id":"1128","title":"Example Schemas"},"1129":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://healthcare.example.com/schemas/medical-record.schema.json\", \"title\": \"Medical Record\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"patientId\": { \"type\": \"string\" }, \"recordType\": { \"type\": \"string\", \"enum\": [\"visit\", \"lab_result\", \"prescription\", \"diagnosis\"] }, \"provider\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"npi\": { \"type\": \"string\", \"pattern\": \"^[0-9]{10}$\" } } }, \"date\": { \"type\": \"string\", \"format\": \"date\" }, \"notes\": { \"type\": \"string\" }, \"confidential\": { \"type\": \"boolean\", \"default\": true } }, \"required\": [\"patientId\", \"recordType\", \"provider\", \"date\"] } ]\n}","breadcrumbs":"Custom Schemas » Medical Record","id":"1129","title":"Medical Record"},"113":{"body":"JACS respects the following environment variables: Variable Description Default JACS_CONFIG_PATH Path to configuration file ./jacs.config.json JACS_USE_SECURITY Enable/disable security features true JACS_DATA_DIRECTORY Directory for document storage ./jacs_data JACS_KEY_DIRECTORY Directory for cryptographic keys ./jacs_keys JACS_DEFAULT_STORAGE Storage backend (fs, memory) fs JACS_AGENT_KEY_ALGORITHM Key algorithm (ring-Ed25519, RSA-PSS, pq-dilithium) ring-Ed25519","breadcrumbs":"Installation » Environment Variables","id":"113","title":"Environment Variables"},"1130":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://legal.example.com/schemas/contract.schema.json\", \"title\": \"Legal Contract\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"contractNumber\": { \"type\": \"string\" }, \"parties\": { \"type\": \"array\", \"minItems\": 2, \"items\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"role\": { \"type\": \"string\" }, \"agentId\": { \"type\": \"string\", \"format\": \"uuid\" } } } }, \"effectiveDate\": { \"type\": \"string\", \"format\": \"date\" }, \"expirationDate\": { \"type\": \"string\", \"format\": \"date\" }, \"terms\": { \"type\": \"string\" }, \"jurisdiction\": { \"type\": \"string\" } }, \"required\": [\"contractNumber\", \"parties\", \"effectiveDate\", \"terms\"] } ]\n}","breadcrumbs":"Custom Schemas » Legal Contract","id":"1130","title":"Legal Contract"},"1131":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://iot.example.com/schemas/sensor-reading.schema.json\", \"title\": \"Sensor Reading\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"deviceId\": { \"type\": \"string\" }, \"sensorType\": { \"type\": \"string\", \"enum\": [\"temperature\", \"humidity\", \"pressure\", \"motion\"] }, \"value\": { \"type\": \"number\" }, \"unit\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"location\": { \"type\": \"object\", \"properties\": { \"latitude\": { \"type\": \"number\" }, \"longitude\": { \"type\": \"number\" } } } }, \"required\": [\"deviceId\", \"sensorType\", \"value\", \"timestamp\"] } ]\n}","breadcrumbs":"Custom Schemas » IoT Sensor Reading","id":"1131","title":"IoT Sensor Reading"},"1132":{"body":"","breadcrumbs":"Custom Schemas » Schema Versioning","id":"1132","title":"Schema Versioning"},"1133":{"body":"{ \"$id\": \"https://example.com/schemas/v1/order.schema.json\"\n}","breadcrumbs":"Custom Schemas » Version in Path","id":"1133","title":"Version in Path"},"1134":{"body":"{ \"properties\": { \"schemaVersion\": { \"type\": \"string\", \"const\": \"1.0.0\" } }\n}","breadcrumbs":"Custom Schemas » Version Field","id":"1134","title":"Version Field"},"1135":{"body":"Create new schema version Update application to support both versions Migrate existing documents Deprecate old version","breadcrumbs":"Custom Schemas » Migration Strategy","id":"1135","title":"Migration Strategy"},"1136":{"body":"JSON Schemas Overview - Built-in schemas Document Schema - Header fields Configuration - Schema configuration","breadcrumbs":"Custom Schemas » See Also","id":"1136","title":"See Also"},"1137":{"body":"This chapter covers testing strategies for applications that use JACS, including unit testing, integration testing, and mocking approaches.","breadcrumbs":"Testing » Testing","id":"1137","title":"Testing"},"1138":{"body":"","breadcrumbs":"Testing » Testing Fundamentals","id":"1138","title":"Testing Fundamentals"},"1139":{"body":"Create dedicated test configurations to isolate tests from production: // jacs.test.config.json\n{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./test_data\", \"jacs_key_directory\": \"./test_keys\", \"jacs_agent_private_key_filename\": \"test_private.pem\", \"jacs_agent_public_key_filename\": \"test_public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Testing » Test Agent Setup","id":"1139","title":"Test Agent Setup"},"114":{"body":"","breadcrumbs":"Installation » Troubleshooting","id":"114","title":"Troubleshooting"},"1140":{"body":"Set up test fixtures before running tests: Python (pytest) : import pytest\nimport jacs\nimport tempfile\nimport shutil @pytest.fixture\ndef test_agent(): \"\"\"Create a test agent with temporary directories.\"\"\" temp_dir = tempfile.mkdtemp() data_dir = f\"{temp_dir}/data\" key_dir = f\"{temp_dir}/keys\" # Initialize directories import os os.makedirs(data_dir) os.makedirs(key_dir) # Create test config config = { \"jacs_data_directory\": data_dir, \"jacs_key_directory\": key_dir, \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = f\"{temp_dir}/jacs.config.json\" with open(config_path, 'w') as f: import json json.dump(config, f) agent = jacs.JacsAgent() agent.load(config_path) yield agent # Cleanup shutil.rmtree(temp_dir) def test_create_document(test_agent): \"\"\"Test document creation.\"\"\" import json doc = test_agent.create_document(json.dumps({ 'title': 'Test Document' })) assert doc is not None parsed = json.loads(doc) assert 'jacsId' in parsed assert 'jacsSignature' in parsed Node.js (Jest) : import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Tests', () => { let agent; let tempDir; beforeAll(() => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; const configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); agent = new JacsAgent(); agent.load(configPath); }); afterAll(() => { // Cleanup fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', () => { const doc = agent.createDocument(JSON.stringify({ title: 'Test Document' })); const parsed = JSON.parse(doc); expect(parsed.jacsId).toBeDefined(); expect(parsed.jacsSignature).toBeDefined(); });\n});","breadcrumbs":"Testing » Test Fixtures","id":"1140","title":"Test Fixtures"},"1141":{"body":"","breadcrumbs":"Testing » Unit Testing","id":"1141","title":"Unit Testing"},"1142":{"body":"import pytest\nimport jacs\nimport json def test_document_verification(test_agent): \"\"\"Test that created documents verify correctly.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Test content' })) is_valid = test_agent.verify_document(doc) assert is_valid is True def test_document_tampering_detected(test_agent): \"\"\"Test that tampered documents fail verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Original content' })) # Tamper with the document parsed = json.loads(doc) parsed['content'] = 'Tampered content' tampered = json.dumps(parsed) is_valid = test_agent.verify_document(tampered) assert is_valid is False def test_signature_verification(test_agent): \"\"\"Test signature verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'data': 'test' })) is_valid = test_agent.verify_signature(doc) assert is_valid is True","breadcrumbs":"Testing » Testing Document Operations","id":"1142","title":"Testing Document Operations"},"1143":{"body":"def test_agreement_creation(test_agent): \"\"\"Test creating a document with agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Service Agreement' })) # Add agreement doc_with_agreement = test_agent.create_agreement( doc, ['agent-1-id', 'agent-2-id'], question='Do you agree to these terms?', context='Test agreement' ) parsed = json.loads(doc_with_agreement) assert 'jacsAgreement' in parsed assert len(parsed['jacsAgreement']['agentIDs']) == 2 def test_agreement_signing(test_agent): \"\"\"Test signing an agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Test' })) agent_json = test_agent.load('./jacs.test.config.json') agent_data = json.loads(agent_json) agent_id = agent_data['jacsId'] doc_with_agreement = test_agent.create_agreement( doc, [agent_id], question='Agree?' ) signed = test_agent.sign_agreement(doc_with_agreement) status_json = test_agent.check_agreement(signed) status = json.loads(status_json) assert status['complete'] is True","breadcrumbs":"Testing » Testing Agreements","id":"1143","title":"Testing Agreements"},"1144":{"body":"check_agreement() is intentionally strict: it should fail until all required signers have signed. Add explicit tests for each state: Unsigned agreement: must fail. Partially signed agreement: must still fail. Fully signed agreement: must pass with complete == true. This prevents accidental \"partial approval\" workflows in production.","breadcrumbs":"Testing » Agreement Completion Semantics (Strict)","id":"1144","title":"Agreement Completion Semantics (Strict)"},"1145":{"body":"For realistic interoperability tests, use two separate agents with: Separate key directories (agent1/keys, agent2/keys) Shared data directory (shared-data) so both public keys are locally resolvable Relative paths from a temporary test working directory Python (pytest) : def test_two_party_agreement_requires_both_signatures(tmp_path): import os import pytest import jacs.simple as simple (tmp_path / \"shared-data\").mkdir() (tmp_path / \"agent1\").mkdir() (tmp_path / \"agent2\").mkdir() original_cwd = os.getcwd() try: os.chdir(tmp_path) a1 = simple.create( name=\"agent-1\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent1/keys\", config_path=\"agent1/jacs.config.json\", ) a2 = simple.create( name=\"agent-2\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent2/keys\", config_path=\"agent2/jacs.config.json\", ) simple.load(\"agent1/jacs.config.json\") agreement = simple.create_agreement( {\"proposal\": \"two-party-approval\"}, [a1.agent_id, a2.agent_id], question=\"Approve?\", ) with pytest.raises(Exception): simple.check_agreement(agreement) signed_by_a1 = simple.sign_agreement(agreement) with pytest.raises(Exception): simple.check_agreement(signed_by_a1) simple.load(\"agent2/jacs.config.json\") signed_by_both = simple.sign_agreement(signed_by_a1) status = simple.check_agreement(signed_by_both) assert status.complete is True finally: os.chdir(original_cwd) Node.js (Mocha/Jest style) : const root = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-two-agent-'));\nconst originalCwd = process.cwd();\ntry { process.chdir(root); fs.mkdirSync('agent1', { recursive: true }); fs.mkdirSync('agent2', { recursive: true }); simpleA.create({ name: 'agent-a', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent1/keys', configPath: 'agent1/jacs.config.json' }); simpleB.create({ name: 'agent-b', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent2/keys', configPath: 'agent2/jacs.config.json' }); simpleA.load('agent1/jacs.config.json'); simpleB.load('agent2/jacs.config.json'); const infoA = simpleA.getAgentInfo(); const infoB = simpleB.getAgentInfo(); const agreement = simpleA.createAgreement( { proposal: 'two-party-approval' }, [infoA.agentId, infoB.agentId] ); expect(() => simpleA.checkAgreement(agreement)).to.throw(); const signedByA = simpleA.signAgreement(agreement); expect(() => simpleA.checkAgreement(signedByA)).to.throw(); const signedByBoth = simpleB.signAgreement(signedByA); const status = simpleB.checkAgreement(signedByBoth); expect(status.complete).to.equal(true);\n} finally { process.chdir(originalCwd); fs.rmSync(root, { recursive: true, force: true });\n}","breadcrumbs":"Testing » Two-Agent Agreement Harness (Separate Agents)","id":"1145","title":"Two-Agent Agreement Harness (Separate Agents)"},"1146":{"body":"def test_request_signing(test_agent): \"\"\"Test signing a request payload.\"\"\" payload = { 'method': 'tools/call', 'params': {'name': 'test_tool'} } signed = test_agent.sign_request(payload) assert signed is not None # Verify the signed request result = test_agent.verify_response(signed) assert result is not None assert 'payload' in result","breadcrumbs":"Testing » Testing Request/Response Signing","id":"1146","title":"Testing Request/Response Signing"},"1147":{"body":"","breadcrumbs":"Testing » Integration Testing","id":"1147","title":"Integration Testing"},"1148":{"body":"Python : import pytest\nimport asyncio\nfrom jacs.mcp import JACSMCPServer, JACSMCPClient\nfrom fastmcp import FastMCP @pytest.fixture\ndef mcp_server(test_agent): \"\"\"Create a test MCP server.\"\"\" mcp = FastMCP(\"Test Server\") @mcp.tool() def echo(text: str) -> str: return f\"Echo: {text}\" return JACSMCPServer(mcp) @pytest.mark.asyncio\nasync def test_mcp_tool_call(mcp_server, test_agent): \"\"\"Test calling an MCP tool with JACS authentication.\"\"\" # This would require setting up actual server/client connection # For unit testing, test the signing/verification separately pass Node.js : import { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport express from 'express';\nimport request from 'supertest'; describe('JACS Express Middleware', () => { let app; let agent; beforeAll(() => { app = express(); app.use('/api', express.text({ type: '*/*' })); app.use('/api', JACSExpressMiddleware({ configPath: './jacs.test.config.json' })); app.post('/api/echo', (req, res) => { res.send({ echo: req.jacsPayload }); }); agent = new JacsAgent(); agent.load('./jacs.test.config.json'); }); test('accepts valid JACS requests', async () => { const signedRequest = agent.signRequest({ message: 'Hello' }); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); }); test('rejects invalid requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Testing » Testing MCP Integration","id":"1148","title":"Testing MCP Integration"},"1149":{"body":"import pytest\nfrom fastapi import FastAPI\nfrom fastapi.testclient import TestClient\nimport jacs\nimport json app = FastAPI() @app.post(\"/api/document\")\nasync def create_doc(request_body: str): agent = jacs.JacsAgent() agent.load('./jacs.test.config.json') result = agent.verify_response(request_body) if result: # Process the verified payload return {\"status\": \"success\", \"payload\": result.get(\"payload\")} return {\"status\": \"error\"} @pytest.fixture\ndef client(): return TestClient(app) def test_endpoint_accepts_signed_request(client, test_agent): \"\"\"Test that endpoint accepts properly signed requests.\"\"\" signed = test_agent.sign_request({ 'action': 'create', 'data': {'title': 'Test'} }) response = client.post(\"/api/document\", content=signed) assert response.status_code == 200","breadcrumbs":"Testing » Testing HTTP Endpoints","id":"1149","title":"Testing HTTP Endpoints"},"115":{"body":"\"edition 2024 is required\" Update Rust to version 1.93 or later: rustup update stable Missing dependencies on Linux Install build essentials: # Debian/Ubuntu\nsudo apt-get install build-essential pkg-config libssl-dev # Fedora\nsudo dnf install gcc openssl-devel","breadcrumbs":"Installation » Build Errors","id":"115","title":"Build Errors"},"1150":{"body":"","breadcrumbs":"Testing » Mocking","id":"1150","title":"Mocking"},"1151":{"body":"Python : from unittest.mock import Mock, patch\nimport json def test_with_mocked_agent(): \"\"\"Test with a mocked JACS agent.\"\"\" mock_agent = Mock() # Mock create_document to return a fake signed document mock_agent.create_document.return_value = json.dumps({ 'jacsId': 'mock-id', 'jacsVersion': 'mock-version', 'content': 'test', 'jacsSignature': {'signature': 'mock-sig'} }) # Mock verify_document to always return True mock_agent.verify_document.return_value = True # Use the mock in your tests doc = mock_agent.create_document(json.dumps({'content': 'test'})) assert mock_agent.verify_document(doc) is True Node.js : // Mock for testing\nconst mockAgent = { createDocument: jest.fn().mockReturnValue(JSON.stringify({ jacsId: 'mock-id', jacsVersion: 'mock-version', content: 'test', jacsSignature: { signature: 'mock-sig' } })), verifyDocument: jest.fn().mockReturnValue(true), signRequest: jest.fn().mockImplementation((payload) => JSON.stringify({ payload, jacsSignature: { signature: 'mock' } }) ), verifyResponse: jest.fn().mockImplementation((response) => ({ payload: JSON.parse(response).payload }) )\n}; test('uses mocked agent', () => { const doc = mockAgent.createDocument(JSON.stringify({ test: true })); expect(mockAgent.createDocument).toHaveBeenCalled(); expect(mockAgent.verifyDocument(doc)).toBe(true);\n});","breadcrumbs":"Testing » Mocking JACS Agent","id":"1151","title":"Mocking JACS Agent"},"1152":{"body":"// Mock transport for MCP testing\nclass MockTransport { constructor() { this.messages = []; } send(message) { this.messages.push(message); } async receive() { return this.messages.shift(); }\n} test('MCP client with mock transport', async () => { const mockTransport = new MockTransport(); // Use mock transport in tests\n});","breadcrumbs":"Testing » Mocking MCP Transport","id":"1152","title":"Mocking MCP Transport"},"1153":{"body":"","breadcrumbs":"Testing » Test Coverage","id":"1153","title":"Test Coverage"},"1154":{"body":"For Rust coverage, we recommend cargo-llvm-cov for its cross-platform support and accuracy with cryptographic code. Installation: cargo install cargo-llvm-cov Running coverage: # Print coverage summary to stdout\ncargo llvm-cov # Generate and open HTML report in browser\ncargo llvm-cov --open # With specific features enabled\ncargo llvm-cov --features cli # Export LCOV format for CI integration\ncargo llvm-cov --lcov --output-path lcov.info Why cargo-llvm-cov? Factor cargo-llvm-cov tarpaulin Platform support Linux, macOS, Windows Linux primarily Accuracy LLVM source-based (highly accurate) Ptrace-based (some inaccuracies) Coverage types Line, region, branch Line primarily For CI integration, export to LCOV format and upload to Codecov or similar services.","breadcrumbs":"Testing » Rust Coverage","id":"1154","title":"Rust Coverage"},"1155":{"body":"# Run tests with coverage\npytest --cov=myapp --cov-report=html tests/ # View coverage report\nopen htmlcov/index.html","breadcrumbs":"Testing » Python Coverage","id":"1155","title":"Python Coverage"},"1156":{"body":"# Run tests with coverage\nnpm test -- --coverage # Or with Jest directly\njest --coverage","breadcrumbs":"Testing » Node.js Coverage","id":"1156","title":"Node.js Coverage"},"1157":{"body":"","breadcrumbs":"Testing » CI/CD Integration","id":"1157","title":"CI/CD Integration"},"1158":{"body":"# .github/workflows/test.yml\nname: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install dependencies run: npm install - name: Generate test keys run: | mkdir -p test_keys test_data # Generate test keys (implementation depends on your setup) - name: Run tests run: npm test - name: Upload coverage uses: codecov/codecov-action@v3","breadcrumbs":"Testing » GitHub Actions","id":"1158","title":"GitHub Actions"},"1159":{"body":"# Set test environment\nexport JACS_TEST_MODE=1\nexport JACS_TEST_CONFIG=./jacs.test.config.json","breadcrumbs":"Testing » Test Environment Variables","id":"1159","title":"Test Environment Variables"},"116":{"body":"\"Configuration file not found\" Run jacs init or set JACS_CONFIG_PATH environment variable. \"Key directory does not exist\" Create the key directory or run jacs init: mkdir -p ./jacs_keys \"Permission denied\" Ensure you have write permissions to the data and key directories.","breadcrumbs":"Installation » Runtime Errors","id":"116","title":"Runtime Errors"},"1160":{"body":"For Rust tests that modify global state (environment variables, file system, etc.), use RAII guards to ensure cleanup even on panic. This pattern is essential for test isolation and reliability.","breadcrumbs":"Testing » RAII Test Fixtures (Rust)","id":"1160","title":"RAII Test Fixtures (Rust)"},"1161":{"body":"The JACS codebase uses a TrustTestGuard pattern for tests that modify the HOME environment variable: use std::env;\nuse tempfile::TempDir; /// RAII guard for test isolation that ensures HOME is restored even on panic.\nstruct TrustTestGuard { _temp_dir: TempDir, original_home: Option,\n} impl TrustTestGuard { fn new() -> Self { // Save original HOME before modifying let original_home = env::var(\"HOME\").ok(); let temp_dir = TempDir::new().expect(\"Failed to create temp directory\"); // SAFETY: Only used in #[serial] tests - no concurrent access unsafe { env::set_var(\"HOME\", temp_dir.path().to_str().unwrap()); } Self { _temp_dir: temp_dir, original_home, } }\n} impl Drop for TrustTestGuard { fn drop(&mut self) { // Restore original HOME even during panic unwinding unsafe { match &self.original_home { Some(home) => env::set_var(\"HOME\", home), None => env::remove_var(\"HOME\"), } } }\n} // Usage in tests:\n#[test]\n#[serial] // Use serial_test crate to prevent parallel execution\nfn test_with_isolated_home() { let _guard = TrustTestGuard::new(); // Setup // Test code here - HOME points to temp directory // Guard automatically restores HOME on drop, even if test panics\n} Key benefits: Panic safety : Cleanup runs even if the test panics No manual cleanup : Drop trait handles restoration automatically Environment isolation : Each test gets a fresh temporary directory Composable : Multiple guards can be combined for complex setups","breadcrumbs":"Testing » TrustTestGuard Pattern","id":"1161","title":"TrustTestGuard Pattern"},"1162":{"body":"For cryptographic code, property-based testing helps verify invariants that hold across many random inputs. We recommend proptest for Rust.","breadcrumbs":"Testing » Property-Based Testing","id":"1162","title":"Property-Based Testing"},"1163":{"body":"Round-trip : Sign then verify should always succeed Tamper detection : Modified content should fail verification Key independence : Different keys produce different signatures use proptest::prelude::*; proptest! { #[test] fn signature_roundtrip(content in \".*\") { let signed = sign_content(&content)?; prop_assert!(verify_signature(&signed).is_ok()); } #[test] fn tamper_detection(content in \".*\", tamper_pos in 0usize..1000) { let signed = sign_content(&content)?; let tampered = tamper_at_position(&signed, tamper_pos); prop_assert!(verify_signature(&tampered).is_err()); }\n}","breadcrumbs":"Testing » Key Properties to Test","id":"1163","title":"Key Properties to Test"},"1164":{"body":"Fuzz testing is recommended for parsing and decoding functions to discover edge cases and potential security issues.","breadcrumbs":"Testing » Fuzzing","id":"1164","title":"Fuzzing"},"1165":{"body":"# Install\ncargo install cargo-fuzz # Create a fuzz target\ncargo fuzz init\ncargo fuzz add base64_decode # Run fuzzing\ncargo +nightly fuzz run base64_decode","breadcrumbs":"Testing » Recommended Tool: cargo-fuzz","id":"1165","title":"Recommended Tool: cargo-fuzz"},"1166":{"body":"Base64 decoding - Handles untrusted input from signatures Agent JSON parsing - Complex nested structures Document validation - Schema compliance checking Timestamp parsing - Date/time format handling Fuzzing documentation will be expanded as fuzz targets are added to the JACS test suite.","breadcrumbs":"Testing » Priority Fuzz Targets for JACS","id":"1166","title":"Priority Fuzz Targets for JACS"},"1167":{"body":"","breadcrumbs":"Testing » Best Practices","id":"1167","title":"Best Practices"},"1168":{"body":"Use separate test configurations Create temporary directories for each test run Clean up after tests (use RAII guards in Rust)","breadcrumbs":"Testing » 1. Isolate Tests","id":"1168","title":"1. Isolate Tests"},"1169":{"body":"def test_empty_document(): \"\"\"Test handling of empty documents.\"\"\" with pytest.raises(Exception): test_agent.create_document('') def test_invalid_json(): \"\"\"Test handling of invalid JSON.\"\"\" with pytest.raises(Exception): test_agent.create_document('not json') def test_large_document(): \"\"\"Test handling of large documents.\"\"\" large_content = 'x' * 1000000 doc = test_agent.create_document(json.dumps({ 'content': large_content })) assert doc is not None","breadcrumbs":"Testing » 2. Test Edge Cases","id":"1169","title":"2. Test Edge Cases"},"117":{"body":"CLI Usage - Learn CLI commands Creating an Agent - Create your first agent Rust Library API - Use JACS as a library","breadcrumbs":"Installation » Next Steps","id":"117","title":"Next Steps"},"1170":{"body":"def test_signature_changes_with_content(): \"\"\"Verify different content produces different signatures.\"\"\" doc1 = test_agent.create_document(json.dumps({'a': 1})) doc2 = test_agent.create_document(json.dumps({'a': 2})) sig1 = json.loads(doc1)['jacsSignature']['signature'] sig2 = json.loads(doc2)['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Testing » 3. Test Security Properties","id":"1170","title":"3. Test Security Properties"},"1171":{"body":"def test_verify_invalid_signature(): \"\"\"Test that invalid signatures are rejected.\"\"\" doc = test_agent.create_document(json.dumps({'data': 'test'})) parsed = json.loads(doc) # Corrupt the signature parsed['jacsSignature']['signature'] = 'invalid' corrupted = json.dumps(parsed) assert test_agent.verify_document(corrupted) is False","breadcrumbs":"Testing » 4. Test Error Handling","id":"1171","title":"4. Test Error Handling"},"1172":{"body":"Python API Reference - API documentation Node.js API Reference - API documentation Security Model - Security testing considerations","breadcrumbs":"Testing » See Also","id":"1172","title":"See Also"},"1173":{"body":"JACS provides comprehensive integration with the Model Context Protocol (MCP) , enabling cryptographically signed and verified communication between AI agents and MCP servers.","breadcrumbs":"Model Context Protocol (MCP) » Model Context Protocol (MCP)","id":"1173","title":"Model Context Protocol (MCP)"},"1174":{"body":"Model Context Protocol is an open standard created by Anthropic for AI models to securely access external tools, data, and services. MCP defines: Tools : Functions that AI models can call Resources : Data sources that models can read Prompts : Pre-defined prompt templates Transports : Communication channels (STDIO, SSE, WebSocket)","breadcrumbs":"Model Context Protocol (MCP) » What is MCP?","id":"1174","title":"What is MCP?"},"1175":{"body":"JACS enhances MCP by adding a security layer that standard MCP lacks: Feature Standard MCP JACS MCP Message Signing No Yes Identity Verification No Yes Tamper Detection No Yes Audit Trail No Yes Non-Repudiation No Yes This makes JACS MCP suitable for: Multi-agent systems requiring trust Financial and legal AI applications Healthcare AI systems Enterprise deployments Any scenario where message authenticity matters","breadcrumbs":"Model Context Protocol (MCP) » Why JACS + MCP?","id":"1175","title":"Why JACS + MCP?"},"1176":{"body":"JACS uses a transport proxy pattern that wraps any MCP transport with cryptographic signing and verification: ┌─────────────────────────────────────────────────────────────┐\n│ MCP Application │\n├─────────────────────────────────────────────────────────────┤\n│ MCP SDK │\n├─────────────────────────────────────────────────────────────┤\n│ JACS Transport Proxy │\n│ ┌─────────────┐ ┌──────────────┐ │\n│ │ Outgoing: │ │ Incoming: │ │\n│ │ signRequest │ │ verifyResp │ │\n│ └─────────────┘ └──────────────┘ │\n├─────────────────────────────────────────────────────────────┤\n│ Underlying Transport │\n│ (STDIO / SSE / WebSocket) │\n└─────────────────────────────────────────────────────────────┘","breadcrumbs":"Model Context Protocol (MCP) » Architecture","id":"1176","title":"Architecture"},"1177":{"body":"Outgoing Messages : The proxy intercepts JSON-RPC messages and signs them with the agent's private key Incoming Messages : The proxy verifies signatures before passing messages to the application Graceful Fallback : If verification fails, messages can be passed through as plain JSON for interoperability","breadcrumbs":"Model Context Protocol (MCP) » How It Works","id":"1177","title":"How It Works"},"1178":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Quick Start","id":"1178","title":"Quick Start"},"1179":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; // Create transport with JACS encryption\nconst baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); // Create MCP server\nconst server = new McpServer({ name: \"my-secure-server\", version: \"1.0.0\"\n}); // Register tools (standard MCP API)\nserver.tool(\"add\", { a: z.number(), b: z.number()\n}, async ({ a, b }) => { return { content: [{ type: \"text\", text: `${a + b}` }] };\n}); // Connect with JACS encryption\nawait server.connect(secureTransport);","breadcrumbs":"Model Context Protocol (MCP) » Node.js","id":"1179","title":"Node.js"},"118":{"body":"The JACS CLI provides a command-line interface for managing agents, documents, tasks, and agreements.","breadcrumbs":"CLI Usage » CLI Usage","id":"118","title":"CLI Usage"},"1180":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Create FastMCP server with JACS authentication\nmcp = JACSMCPServer(FastMCP(\"Secure Server\")) @mcp.tool()\ndef add(a: int, b: int) -> str: \"\"\"Add two numbers\"\"\" return str(a + b) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Model Context Protocol (MCP) » Python","id":"1180","title":"Python"},"1181":{"body":"JACS provides native MCP integration for both major platforms:","breadcrumbs":"Model Context Protocol (MCP) » Language Support","id":"1181","title":"Language Support"},"1182":{"body":"The Node.js integration uses a transport proxy pattern that works with any MCP transport: STDIO : For CLI tools and subprocess communication SSE : For web-based servers WebSocket : For bidirectional streaming Key classes: JACSTransportProxy - Wraps any transport with signing/verification createJACSTransportProxy() - Factory function See Node.js MCP Integration for complete documentation.","breadcrumbs":"Model Context Protocol (MCP) » Node.js (@hai.ai/jacs)","id":"1182","title":"Node.js (@hai.ai/jacs)"},"1183":{"body":"The Python integration uses middleware wrappers for FastMCP: JACSMCPServer - Wraps FastMCP servers with authentication JACSMCPClient - Wraps FastMCP clients with signing Key classes: JACSMCPServer - Server wrapper with JACS middleware JACSMCPClient - Client wrapper with interceptors See Python MCP Integration for complete documentation.","breadcrumbs":"Model Context Protocol (MCP) » Python (jacspy)","id":"1183","title":"Python (jacspy)"},"1184":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Message Flow","id":"1184","title":"Message Flow"},"1185":{"body":"When a client calls a tool on a JACS-enabled MCP server: Client Server │ │ │ 1. Create JSON-RPC request │ │ 2. Sign with signRequest() │ │ ──────────────────────────> │ │ │ 3. Verify with verifyRequest() │ │ 4. Execute tool │ │ 5. Sign response with signResponse() │ <────────────────────────── │ │ 6. Verify with verifyResponse() │ │ 7. Extract payload │","breadcrumbs":"Model Context Protocol (MCP) » Tool Call Example","id":"1185","title":"Tool Call Example"},"1186":{"body":"A JACS-signed MCP message contains: { \"jacsId\": \"unique-document-id\", \"jacsVersion\": \"version-uuid\", \"jacsSignature\": { \"agentID\": \"signing-agent-id\", \"agentVersion\": \"agent-version\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\" }, \"jacsSha256\": \"content-hash\", \"payload\": { \"jsonrpc\": \"2.0\", \"method\": \"tools/call\", \"params\": { \"name\": \"add\", \"arguments\": { \"a\": 5, \"b\": 3 } }, \"id\": 1 }\n}","breadcrumbs":"Model Context Protocol (MCP) » Signed Message Structure","id":"1186","title":"Signed Message Structure"},"1187":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Configuration","id":"1187","title":"Configuration"},"1188":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"server-agent-id:version\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Model Context Protocol (MCP) » Server Configuration","id":"1188","title":"Server Configuration"},"1189":{"body":"Each MCP client needs its own JACS agent identity: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"client-agent-id:version\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Model Context Protocol (MCP) » Client Configuration","id":"1189","title":"Client Configuration"},"119":{"body":"# General help\njacs --help # Command-specific help\njacs agent --help\njacs document --help\njacs task --help","breadcrumbs":"CLI Usage » Getting Help","id":"119","title":"Getting Help"},"1190":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Transports","id":"1190","title":"Transports"},"1191":{"body":"Best for CLI tools and subprocess communication: // Node.js\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\"; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); Important : Debug logging goes to stderr to keep stdout clean for JSON-RPC.","breadcrumbs":"Model Context Protocol (MCP) » STDIO","id":"1191","title":"STDIO"},"1192":{"body":"For web-based MCP servers: # Python with FastMCP\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP mcp = JACSMCPServer(FastMCP(\"Web Server\"))\napp = mcp.sse_app() # Returns ASGI app with JACS middleware // Node.js with Express\nimport { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport express from 'express'; const app = express();\napp.get('/sse', (req, res) => { const baseTransport = new SSEServerTransport('/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\" ); server.connect(secureTransport);\n});","breadcrumbs":"Model Context Protocol (MCP) » Server-Sent Events (SSE)","id":"1192","title":"Server-Sent Events (SSE)"},"1193":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Security Model","id":"1193","title":"Security Model"},"1194":{"body":"CRITICAL GUIDANCE FOR AI AGENTS AND DEVELOPERS Signing a document or message with JACS is a sacred, irreversible act . When an agent signs: Permanent Commitment : The signature creates permanent cryptographic proof that the signer attested to the content. This proof exists forever and can be verified by anyone. Non-Repudiation : The signer cannot later deny having signed. The signature is mathematically bound to their private key. Accountability : The signer is accountable for the content they signed. In multi-agent systems, signatures establish trust chains and responsibility. Irreversibility : There is no \"unsign\" operation. Once signed, the commitment exists permanently. Before signing any document, message, or agreement: Read and understand the complete content Verify the content represents your actual intent Confirm you have authority to make this commitment Understand the implications of your signature For AI agents : Do not sign automatically or without verification. Signing carelessly can: Create binding commitments you didn't intend Establish false audit trails Damage trust relationships with other agents Create legal or ethical liability For MCP tool implementations : When exposing signing capabilities as tools, include appropriate warnings and consider requiring explicit confirmation.","breadcrumbs":"Model Context Protocol (MCP) » Signing is Sacred","id":"1194","title":"Signing is Sacred"},"1195":{"body":"All JSON-RPC requests and responses Tool calls and results Resource requests and data Prompt requests and templates","breadcrumbs":"Model Context Protocol (MCP) » What Gets Signed","id":"1195","title":"What Gets Signed"},"1196":{"body":"Agent identity (agentID) Message integrity (jacsSha256) Signature validity (jacsSignature) Optional: DNS-based identity verification","breadcrumbs":"Model Context Protocol (MCP) » What Gets Verified","id":"1196","title":"What Gets Verified"},"1197":{"body":"For interoperability with non-JACS MCP systems, the proxy can fall back to plain JSON: Try to verify as JACS artifact If verification fails, parse as plain JSON Pass clean message to application To enforce JACS-only communication, implement custom validation in your tools.","breadcrumbs":"Model Context Protocol (MCP) » Passthrough Mode","id":"1197","title":"Passthrough Mode"},"1198":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Debugging","id":"1198","title":"Debugging"},"1199":{"body":"# Node.js\nexport JACS_MCP_DEBUG=true # Python\nimport logging\nlogging.basicConfig(level=logging.DEBUG)","breadcrumbs":"Model Context Protocol (MCP) » Enable Debug Logging","id":"1199","title":"Enable Debug Logging"},"12":{"body":"","breadcrumbs":"Introduction » Why JACS?","id":"12","title":"Why JACS?"},"120":{"body":"Command Description jacs init Initialize JACS (create config and agent with keys) jacs version Print version information jacs config Manage configuration jacs agent Manage agents jacs document Manage documents jacs task Manage tasks","breadcrumbs":"CLI Usage » Commands Overview","id":"120","title":"Commands Overview"},"1200":{"body":"Issue Cause Solution \"JACS not operational\" Config path incorrect Verify config file path Verification failures Incompatible keys Ensure matching key algorithms Empty responses Null value handling Check message serialization Connection timeouts Network issues Verify server is running","breadcrumbs":"Model Context Protocol (MCP) » Common Issues","id":"1200","title":"Common Issues"},"1201":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Best Practices","id":"1201","title":"Best Practices"},"1202":{"body":"project/\n├── server/\n│ ├── jacs.config.json\n│ └── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── client/ ├── jacs.config.json └── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Model Context Protocol (MCP) » 1. Separate Keys for Server and Client","id":"1202","title":"1. Separate Keys for Server and Client"},"1203":{"body":"# Use HTTPS for SSE\nclient = JACSMCPClient(\"https://server.example.com/sse\")","breadcrumbs":"Model Context Protocol (MCP) » 2. Use TLS for Network Transports","id":"1203","title":"2. Use TLS for Network Transports"},"1204":{"body":"Update agent versions when rotating keys: { \"jacs_agent_id_and_version\": \"my-agent:v2\"\n}","breadcrumbs":"Model Context Protocol (MCP) » 3. Implement Key Rotation","id":"1204","title":"3. Implement Key Rotation"},"1205":{"body":"# Production logging setup\nimport logging logging.getLogger(\"jacs\").setLevel(logging.INFO)\nlogging.getLogger(\"jacs.security\").setLevel(logging.WARNING)","breadcrumbs":"Model Context Protocol (MCP) » 4. Log Security Events","id":"1205","title":"4. Log Security Events"},"1206":{"body":"A complete example with multiple JACS-authenticated agents: ┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐\n│ Agent A │ │ MCP Server │ │ Agent B │\n│ (Data Analyst) │────>│ (Tool Provider) │<────│ (Report Writer) │\n│ │ │ │ │ │\n│ Signs requests │ │ Verifies both │ │ Signs requests │\n│ Verifies resps │ │ Signs responses │ │ Verifies resps │\n└──────────────────┘ └──────────────────┘ └──────────────────┘ Each agent has its own: JACS agent ID and version Private/public key pair Configuration file The MCP server verifies requests from both agents and signs all responses.","breadcrumbs":"Model Context Protocol (MCP) » Example: Multi-Agent System","id":"1206","title":"Example: Multi-Agent System"},"1207":{"body":"The jacs-mcp server provides built-in tools for agent operations:","breadcrumbs":"Model Context Protocol (MCP) » HAI MCP Server Tools","id":"1207","title":"HAI MCP Server Tools"},"1208":{"body":"Tool Description fetch_agent_key Fetch a public key from HAI's key distribution service register_agent Register the local agent with HAI (requires JACS_MCP_ALLOW_REGISTRATION=true) verify_agent Verify another agent's attestation level check_agent_status Check registration status with HAI unregister_agent Unregister an agent from HAI","breadcrumbs":"Model Context Protocol (MCP) » Identity & Registration Tools","id":"1208","title":"Identity & Registration Tools"},"1209":{"body":"These tools allow agents to sign, verify, and manage state documents (memory files, skills, plans, configs, hooks, or any document): Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document's signature jacs_load_state Load an agent state document by key jacs_update_state Update and re-sign an agent state document jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state All documents are stored within the JACS data directory for security. Use state_type: \"other\" for general-purpose signing of any document. See Agent State Schema for full documentation.","breadcrumbs":"Model Context Protocol (MCP) » Agent State Tools","id":"1209","title":"Agent State Tools"},"121":{"body":"","breadcrumbs":"CLI Usage » Initialization","id":"121","title":"Initialization"},"1210":{"body":"Node.js MCP Integration - Node.js specific details Python MCP Integration - Python specific details Security Model - JACS security architecture Cryptographic Algorithms - Signing algorithms Testing - Testing MCP integrations","breadcrumbs":"Model Context Protocol (MCP) » See Also","id":"1210","title":"See Also"},"1211":{"body":"This guide describes how JACS interoperates with Agent-to-Agent (A2A) systems in real deployments.","breadcrumbs":"A2A Interoperability » A2A Interoperability","id":"1211","title":"A2A Interoperability"},"1212":{"body":"JACS adds cryptographic provenance to A2A artifacts: Signed artifact envelopes (a2a-task, a2a-message, etc.) Verifiable signer identity via public key resolution Chain-of-custody support through parent signatures Well-known discovery documents for external verifiers","breadcrumbs":"A2A Interoperability » What JACS Adds","id":"1212","title":"What JACS Adds"},"1213":{"body":"JACS A2A integration currently targets the v0.4.0 Agent Card shape used in this repository's Rust, Python, and Node bindings. Required well-known documents: /.well-known/agent-card.json /.well-known/jwks.json /.well-known/jacs-agent.json /.well-known/jacs-pubkey.json","breadcrumbs":"A2A Interoperability » Interoperability Contract","id":"1213","title":"Interoperability Contract"},"1214":{"body":"When verifying foreign-agent A2A artifacts, JACS resolves keys using JACS_KEY_RESOLUTION order: local: trusted local key cache dns: identity validation only (does not return key bytes) hai: remote key retrieval from HAI key service If a key is found, JACS performs full signature verification and returns a verified status. If no key is found, verification is explicitly marked unverified (not silently accepted).","breadcrumbs":"A2A Interoperability » Verification Model","id":"1214","title":"Verification Model"},"1215":{"body":"Use environment variables for deploy-time behavior: export JACS_PRIVATE_KEY_PASSWORD=\"your-strong-password\"\nexport JACS_KEY_RESOLUTION=\"local,hai\"\nexport HAI_KEYS_BASE_URL=\"https://keys.hai.ai\" For offline/air-gapped operation: export JACS_KEY_RESOLUTION=\"local\"","breadcrumbs":"A2A Interoperability » 12-Factor Runtime Configuration","id":"1215","title":"12-Factor Runtime Configuration"},"1216":{"body":"use jacs::a2a::provenance::{wrap_artifact_with_provenance, verify_wrapped_artifact};\nuse serde_json::json; let wrapped = wrap_artifact_with_provenance( &mut agent, json!({\"taskId\": \"task-123\", \"operation\": \"classify\"}), \"task\", None,\n)?; let result = verify_wrapped_artifact(&agent, &wrapped)?;\nassert!(result.valid);","breadcrumbs":"A2A Interoperability » Rust Example","id":"1216","title":"Rust Example"},"1217":{"body":"from jacs.a2a import JACSA2AIntegration a2a = JACSA2AIntegration(\"jacs.config.json\")\nagent_card = a2a.export_agent_card(agent_data)\ndocs = a2a.generate_well_known_documents( agent_card=agent_card, jws_signature=\"...\", public_key_b64=\"...\", agent_data={\"jacsId\": \"...\", \"jacsVersion\": \"...\", \"keyAlgorithm\": \"RSA-PSS\"},\n) assert \"/.well-known/jwks.json\" in docs","breadcrumbs":"A2A Interoperability » Python Example","id":"1217","title":"Python Example"},"1218":{"body":"const { JACSA2AIntegration } = require('@hai.ai/jacs/a2a'); const a2a = new JACSA2AIntegration('./jacs.config.json');\nconst wrapped = a2a.wrapArtifactWithProvenance( { taskId: 'task-123', operation: 'classify' }, 'task'\n); const result = a2a.verifyWrappedArtifact(wrapped);\nconsole.log(result.valid, result.parentSignaturesValid);","breadcrumbs":"A2A Interoperability » Node.js Example","id":"1218","title":"Node.js Example"},"1219":{"body":"Before merging A2A changes, ensure: Rust, Python, and Node A2A tests all pass. Foreign-signature verification is covered by tests (resolved and unresolved key paths). Documentation snippets match package names and executable APIs. Well-known docs include jwks.json and match output from all bindings.","breadcrumbs":"A2A Interoperability » DevEx Expectations","id":"1219","title":"DevEx Expectations"},"122":{"body":"# Initialize everything in one step\njacs init This command: Creates a configuration file (jacs.config.json) Generates cryptographic keys Creates an initial agent document","breadcrumbs":"CLI Usage » Quick Start","id":"122","title":"Quick Start"},"1220":{"body":"Unverified foreign signatures: no signer key available from configured resolution order. Invalid signatures: signature bytes, signer key, or signed payload fields do not match. Missing jwks.json: ensure you are using current A2A helper APIs in your binding.","breadcrumbs":"A2A Interoperability » Troubleshooting","id":"1220","title":"Troubleshooting"},"1221":{"body":"OpenClaw is a personal AI assistant platform. This chapter covers integrating JACS with OpenClaw to enable cryptographically signed agent-to-agent communication.","breadcrumbs":"OpenClaw » OpenClaw Integration","id":"1221","title":"OpenClaw Integration"},"1222":{"body":"The JACS OpenClaw plugin enables: Bootstrap JACS identity via openclaw plugin setup jacs Securely store cryptographic keys using OpenClaw's configuration system Sign and verify all agent communications with post-quantum cryptographic provenance Publish agent identity via .well-known endpoints P2P agent verification without requiring a central registry","breadcrumbs":"OpenClaw » Overview","id":"1222","title":"Overview"},"1223":{"body":"# Install the JACS plugin for OpenClaw\nopenclaw plugins install @openclaw/jacs","breadcrumbs":"OpenClaw » Installation","id":"1223","title":"Installation"},"1224":{"body":"","breadcrumbs":"OpenClaw » Setup","id":"1224","title":"Setup"},"1225":{"body":"# Interactive setup wizard\nopenclaw jacs init This will: Select a key algorithm (pq2025/dilithium/rsa/ecdsa) Generate a cryptographic key pair Create an agent identity Store keys in ~/.openclaw/jacs_keys/","breadcrumbs":"OpenClaw » Initialize JACS Identity","id":"1225","title":"Initialize JACS Identity"},"1226":{"body":"The plugin configuration is stored in ~/.openclaw/openclaw.json: { \"plugins\": { \"entries\": { \"jacs\": { \"enabled\": true, \"config\": { \"keyAlgorithm\": \"pq2025\", \"autoSign\": false, \"autoVerify\": false, \"agentId\": \"89fb9d88-6990-420f-8df9-252ccdfdfd3d\", \"agentName\": \"My OpenClaw Agent\", \"agentDescription\": \"Personal AI assistant with JACS identity\" } } } }\n}","breadcrumbs":"OpenClaw » Configuration","id":"1226","title":"Configuration"},"1227":{"body":"Option Type Default Description keyAlgorithm string pq2025 Signing algorithm (pq2025, pq-dilithium, rsa, ecdsa) autoSign boolean false Automatically sign outbound messages autoVerify boolean false Automatically verify inbound JACS-signed messages agentName string - Human-readable agent name agentDescription string - Agent description for A2A discovery agentDomain string - Domain for agent identity (DNSSEC validated)","breadcrumbs":"OpenClaw » Configuration Options","id":"1227","title":"Configuration Options"},"1228":{"body":"~/.openclaw/\n├── openclaw.json # Plugin config (non-sensitive)\n├── jacs/ # JACS data directory\n│ ├── jacs.config.json # JACS configuration\n│ └── agent/ # Agent documents\n└── jacs_keys/ # Key directory (encrypted) ├── agent.private.pem.enc # AES-256-GCM encrypted └── agent.public.pem # Public key (shareable)","breadcrumbs":"OpenClaw » Directory Structure","id":"1228","title":"Directory Structure"},"1229":{"body":"","breadcrumbs":"OpenClaw » CLI Commands","id":"1229","title":"CLI Commands"},"123":{"body":"","breadcrumbs":"CLI Usage » Configuration Commands","id":"123","title":"Configuration Commands"},"1230":{"body":"openclaw jacs status Shows JACS status, agent ID, algorithm, and registration state.","breadcrumbs":"OpenClaw » Status","id":"1230","title":"Status"},"1231":{"body":"openclaw jacs sign  Sign a JSON document with your JACS identity.","breadcrumbs":"OpenClaw » Sign Document","id":"1231","title":"Sign Document"},"1232":{"body":"openclaw jacs verify  Verify a JACS-signed document.","breadcrumbs":"OpenClaw » Verify Document","id":"1232","title":"Verify Document"},"1233":{"body":"openclaw jacs lookup  Look up another agent's public key from their domain.","breadcrumbs":"OpenClaw » Lookup Agent","id":"1233","title":"Lookup Agent"},"1234":{"body":"openclaw jacs export-card Export your agent as an A2A Agent Card.","breadcrumbs":"OpenClaw » Export Agent Card","id":"1234","title":"Export Agent Card"},"1235":{"body":"openclaw jacs dns-record  Generate DNS TXT record commands for publishing your agent fingerprint.","breadcrumbs":"OpenClaw » Generate DNS Record","id":"1235","title":"Generate DNS Record"},"1236":{"body":"The plugin provides tools for use in agent conversations:","breadcrumbs":"OpenClaw » Agent Tools","id":"1236","title":"Agent Tools"},"1237":{"body":"Sign a document with JACS cryptographic provenance. { \"name\": \"jacs_sign\", \"parameters\": { \"document\": { \"message\": \"hello\" }, \"artifactType\": \"message\" }\n}","breadcrumbs":"OpenClaw » jacs_sign","id":"1237","title":"jacs_sign"},"1238":{"body":"Verify a JACS-signed document. { \"name\": \"jacs_verify\", \"parameters\": { \"document\": { \"...signed document...\" } }\n}","breadcrumbs":"OpenClaw » jacs_verify","id":"1238","title":"jacs_verify"},"1239":{"body":"Fetch another agent's public key from their domain. { \"name\": \"jacs_fetch_pubkey\", \"parameters\": { \"domain\": \"other-agent.example.com\" }\n}","breadcrumbs":"OpenClaw » jacs_fetch_pubkey","id":"1239","title":"jacs_fetch_pubkey"},"124":{"body":"jacs config create Creates a new jacs.config.json file in the current directory with default settings.","breadcrumbs":"CLI Usage » Create Configuration","id":"124","title":"Create Configuration"},"1240":{"body":"Verify a document using a fetched public key. { \"name\": \"jacs_verify_with_key\", \"parameters\": { \"document\": { \"...signed document...\" }, \"publicKey\": \"-----BEGIN PUBLIC KEY-----...\" }\n}","breadcrumbs":"OpenClaw » jacs_verify_with_key","id":"1240","title":"jacs_verify_with_key"},"1241":{"body":"Lookup a JACS agent by domain or ID. { \"name\": \"jacs_lookup_agent\", \"parameters\": { \"domain\": \"agent.example.com\" }\n}","breadcrumbs":"OpenClaw » jacs_lookup_agent","id":"1241","title":"jacs_lookup_agent"},"1242":{"body":"Create a multi-party agreement requiring signatures from multiple agents. { \"name\": \"jacs_create_agreement\", \"parameters\": { \"document\": { \"terms\": \"...\" }, \"agentIds\": [\"agent-1-uuid\", \"agent-2-uuid\"], \"question\": \"Do you agree to these terms?\" }\n}","breadcrumbs":"OpenClaw » jacs_create_agreement","id":"1242","title":"jacs_create_agreement"},"1243":{"body":"When OpenClaw's gateway is running, the plugin serves:","breadcrumbs":"OpenClaw » Well-Known Endpoints","id":"1243","title":"Well-Known Endpoints"},"1244":{"body":"A2A v0.4.0 Agent Card with JACS extension.","breadcrumbs":"OpenClaw » /.well-known/agent-card.json","id":"1244","title":"/.well-known/agent-card.json"},"1245":{"body":"Your agent's public key for verification: { \"publicKey\": \"-----BEGIN PUBLIC KEY-----...\", \"publicKeyHash\": \"sha256-hash\", \"algorithm\": \"pq2025\", \"agentId\": \"agent-uuid\", \"timestamp\": \"2024-01-15T10:30:00Z\"\n}","breadcrumbs":"OpenClaw » /.well-known/jacs-pubkey.json","id":"1245","title":"/.well-known/jacs-pubkey.json"},"1246":{"body":"Agents can verify each other without a central registry:","breadcrumbs":"OpenClaw » P2P Agent Verification","id":"1246","title":"P2P Agent Verification"},"1247":{"body":"Agent A publishes their public key at /.well-known/jacs-pubkey.json Agent A optionally sets DNS TXT record at _v1.agent.jacs.. Agent A signs a document with jacs_sign Agent B receives the signed document Agent B fetches Agent A's key with jacs_fetch_pubkey Agent B verifies with jacs_verify_with_key","breadcrumbs":"OpenClaw » Flow","id":"1247","title":"Flow"},"1248":{"body":"Agent A (agent-a.example.com) Agent B (agent-b.example.com)\n================================ ================================ 1. Initialize JACS openclaw jacs init 2. Publish public key (served at /.well-known/jacs-pubkey.json) 3. Sign a message jacs_sign({ message: \"hello\" }) → signed_doc 4. Send signed_doc to Agent B 5. Receive signed_doc 6. Fetch Agent A's public key jacs_fetch_pubkey(\"agent-a.example.com\") → pubkey_a 7. Verify signature jacs_verify_with_key(signed_doc, pubkey_a) → { valid: true, signer: \"agent-a-uuid\" }","breadcrumbs":"OpenClaw » Example Workflow","id":"1248","title":"Example Workflow"},"1249":{"body":"For additional verification, agents can publish their public key fingerprint in DNS:","breadcrumbs":"OpenClaw » DNS-Based Discovery","id":"1249","title":"DNS-Based Discovery"},"125":{"body":"jacs config read Displays the current configuration, including values from both the config file and environment variables.","breadcrumbs":"CLI Usage » Read Configuration","id":"125","title":"Read Configuration"},"1250":{"body":"openclaw jacs dns-record agent.example.com This outputs commands for your DNS provider: _v1.agent.jacs.agent.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id=; alg=SHA-256; enc=base64; jac_public_key_hash=<44-char-b64>\"","breadcrumbs":"OpenClaw » Generate DNS Record","id":"1250","title":"Generate DNS Record"},"1251":{"body":"openclaw jacs lookup agent.example.com The plugin will: Query DNS TXT record at _v1.agent.jacs.agent.example.com Fetch full public key from /.well-known/jacs-pubkey.json Verify the DNS hash matches the fetched key","breadcrumbs":"OpenClaw » DNS Lookup","id":"1251","title":"DNS Lookup"},"1252":{"body":"","breadcrumbs":"OpenClaw » Security","id":"1252","title":"Security"},"1253":{"body":"Private keys are encrypted with AES-256-GCM Password-derived key using PBKDF2 (100k iterations) Keys stored with restricted file permissions","breadcrumbs":"OpenClaw » Key Protection","id":"1253","title":"Key Protection"},"1254":{"body":"The default algorithm (pq2025 / ML-DSA-87) is quantum-resistant, providing protection against future quantum computing attacks.","breadcrumbs":"OpenClaw » Post-Quantum Cryptography","id":"1254","title":"Post-Quantum Cryptography"},"1255":{"body":"Signatures include: Document hash (prevents modification) Signer's agent ID and version Timestamp List of signed fields","breadcrumbs":"OpenClaw » Signature Binding","id":"1255","title":"Signature Binding"},"1256":{"body":"The plugin provides a skill for agent conversations: /jacs sign {\"task\": \"analyze data\", \"result\": \"completed\"}\n/jacs verify \n/jacs lookup agent.example.com","breadcrumbs":"OpenClaw » Skill Usage","id":"1256","title":"Skill Usage"},"1257":{"body":"","breadcrumbs":"OpenClaw » Troubleshooting","id":"1257","title":"Troubleshooting"},"1258":{"body":"Run openclaw jacs init to set up your JACS identity.","breadcrumbs":"OpenClaw » \"JACS not initialized\"","id":"1258","title":"\"JACS not initialized\""},"1259":{"body":"Verify the domain is correct and serving /.well-known/jacs-pubkey.json.","breadcrumbs":"OpenClaw » \"Failed to fetch public key\"","id":"1259","title":"\"Failed to fetch public key\""},"126":{"body":"","breadcrumbs":"CLI Usage » Agent Commands","id":"126","title":"Agent Commands"},"1260":{"body":"Check that the document hasn't been modified Verify you have the correct public key for the signer Ensure the signing algorithm matches","breadcrumbs":"OpenClaw » \"Signature verification failed\"","id":"1260","title":"\"Signature verification failed\""},"1261":{"body":"DNS-Based Verification - Detailed DNS setup Agreements - Multi-agent coordination MCP Integration - Model Context Protocol","breadcrumbs":"OpenClaw » Next Steps","id":"1261","title":"Next Steps"},"1262":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing across multiple frameworks and languages.","breadcrumbs":"Web Servers » Web Servers","id":"1262","title":"Web Servers"},"1263":{"body":"Web server integration with JACS enables: Request Authentication : Verify incoming requests were signed by valid agents Response Signing : Automatically sign outgoing responses Tamper Detection : Ensure message integrity end-to-end Audit Trail : Track all authenticated interactions","breadcrumbs":"Web Servers » Overview","id":"1263","title":"Overview"},"1264":{"body":"Framework Language Module Express.js Node.js @hai.ai/jacs/http Koa Node.js @hai.ai/jacs/http FastAPI Python jacs.http Flask Python jacs.http","breadcrumbs":"Web Servers » Supported Frameworks","id":"1264","title":"Supported Frameworks"},"1265":{"body":"All JACS web integrations follow the same flow: Client Server │ │ │── signRequest(payload) ────> │ │ │── verifyRequest() │ │── process request │ │── signResponse(result) │<── verifyResponse(result) ── │ │","breadcrumbs":"Web Servers » Request/Response Flow","id":"1265","title":"Request/Response Flow"},"1266":{"body":"","breadcrumbs":"Web Servers » Node.js Integration","id":"1266","title":"Node.js Integration"},"1267":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // IMPORTANT: Parse body as text BEFORE JACS middleware\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Route handlers receive verified payload in req.jacsPayload\napp.post('/api/data', (req, res) => { const payload = req.jacsPayload; if (!payload) { return res.status(400).send({ error: 'Invalid JACS request' }); } // Response objects are automatically signed res.send({ received: payload, status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Web Servers » Express.js","id":"1267","title":"Express.js"},"1268":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa(); // Apply JACS middleware (handles body parsing internally)\napp.use(JACSKoaMiddleware({ configPath: './jacs.config.json'\n})); app.use(async (ctx) => { if (ctx.path === '/api/data' && ctx.method === 'POST') { const payload = ctx.state.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = { error: 'Invalid JACS request' }; return; } // Response objects are automatically signed ctx.body = { received: payload, status: 'ok' }; }\n}); app.listen(3000); See Node.js HTTP Server and Express Middleware for complete documentation.","breadcrumbs":"Web Servers » Koa","id":"1268","title":"Koa"},"1269":{"body":"","breadcrumbs":"Web Servers » Python Integration","id":"1269","title":"Python Integration"},"127":{"body":"jacs agent create --create-keys true # With a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Without creating new keys (use existing)\njacs agent create --create-keys false -f my-agent.json Options: Option Short Required Description --create-keys Yes Whether to create new cryptographic keys -f No Path to JSON file with agent definition","breadcrumbs":"CLI Usage » Create Agent","id":"127","title":"Create Agent"},"1270":{"body":"from fastapi import FastAPI, Request\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI() # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") @app.post(\"/api/data\")\nasync def handle_data(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: return PlainTextResponse( content=json.dumps({\"error\": \"Invalid JACS request\"}), status_code=400 ) # Process request result = {\"received\": payload, \"status\": \"ok\"} # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Web Servers » FastAPI","id":"1270","title":"FastAPI"},"1271":{"body":"from flask import Flask, request\nimport jacs\nimport json app = Flask(__name__) # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") @app.route(\"/api/data\", methods=[\"POST\"])\ndef handle_data(): # Read raw body body_str = request.get_data(as_text=True) # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: return json.dumps({\"error\": \"Invalid JACS request\"}), 400 # Process request result = {\"received\": payload, \"status\": \"ok\"} # Sign response signed_response = jacs.sign_response(result) return signed_response, 200, {\"Content-Type\": \"text/plain\"} if __name__ == \"__main__\": app.run(port=8000)","breadcrumbs":"Web Servers » Flask","id":"1271","title":"Flask"},"1272":{"body":"","breadcrumbs":"Web Servers » HTTP Client","id":"1272","title":"HTTP Client"},"1273":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { // Load JACS agent await jacs.load('./jacs.client.config.json'); // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"Web Servers » Node.js Client","id":"1273","title":"Node.js Client"},"1274":{"body":"import jacs\nimport requests\nimport json def send_jacs_request(url, payload): # Initialize JACS agent agent = jacs.JacsAgent() agent.load(\"./jacs.client.config.json\") # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) # Verify response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') # Usage\nresult = send_jacs_request(\"http://localhost:8000/api/data\", { \"action\": \"fetch\", \"query\": {\"id\": 42}\n})","breadcrumbs":"Web Servers » Python Client","id":"1274","title":"Python Client"},"1275":{"body":"","breadcrumbs":"Web Servers » Middleware Patterns","id":"1275","title":"Middleware Patterns"},"1276":{"body":"Protect specific routes while leaving others public: // Node.js Express\nconst app = express(); // Public routes (no JACS)\napp.get('/health', (req, res) => res.send({ status: 'ok' }));\napp.get('/public/info', (req, res) => res.send({ name: 'My API' })); // Protected routes (JACS required)\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/secure', (req, res) => { // Only JACS-signed requests reach here res.send({ data: 'secure response' });\n});","breadcrumbs":"Web Servers » Route-Level Protection","id":"1276","title":"Route-Level Protection"},"1277":{"body":"Use different JACS agents for different route groups: // Admin routes with admin agent\napp.use('/admin', express.text({ type: '*/*' }));\napp.use('/admin', JACSExpressMiddleware({ configPath: './jacs.admin.config.json'\n})); // User routes with user agent\napp.use('/user', express.text({ type: '*/*' }));\napp.use('/user', JACSExpressMiddleware({ configPath: './jacs.user.config.json'\n}));","breadcrumbs":"Web Servers » Multiple Agent Configurations","id":"1277","title":"Multiple Agent Configurations"},"1278":{"body":"Create reusable validation helpers: function requireJacsPayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'JACS verification failed', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Apply to routes\napp.post('/api/secure', requireJacsPayload, (req, res) => { // Guaranteed to have valid req.jacsPayload res.send({ data: req.jacsPayload });\n});","breadcrumbs":"Web Servers » Validation Middleware","id":"1278","title":"Validation Middleware"},"1279":{"body":"JACS requests should use text/plain content type since they are signed JSON strings: // Client side\nconst response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, // Not application/json body: signedRequest\n}); // Server side (Express)\napp.use('/api', express.text({ type: '*/*' })); // Parse as text, not JSON","breadcrumbs":"Web Servers » Content-Type Considerations","id":"1279","title":"Content-Type Considerations"},"128":{"body":"# Verify agent from config\njacs agent verify # Verify specific agent file\njacs agent verify -a ./path/to/agent.json # With DNS validation options\njacs agent verify --require-dns\njacs agent verify --require-strict-dns\njacs agent verify --no-dns\njacs agent verify --ignore-dns Options: Option Short Description -a --agent-file Path to agent file (optional) --no-dns Disable DNS validation --require-dns Require DNS validation (not strict) --require-strict-dns Require DNSSEC validation --ignore-dns Ignore DNS validation entirely","breadcrumbs":"CLI Usage » Verify Agent","id":"128","title":"Verify Agent"},"1280":{"body":"","breadcrumbs":"Web Servers » Error Handling","id":"1280","title":"Error Handling"},"1281":{"body":"app.post('/api/process', (req, res, next) => { try { if (!req.jacsPayload) { throw new Error('Missing JACS payload'); } const result = processData(req.jacsPayload); res.send({ result }); } catch (error) { next(error); }\n}); // Global error handler\napp.use((error, req, res, next) => { console.error('Error:', error.message); res.status(500).send({ error: 'Internal server error', message: error.message });\n});","breadcrumbs":"Web Servers » Server-Side Errors","id":"1281","title":"Server-Side Errors"},"1282":{"body":"try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"Web Servers » Client-Side Errors","id":"1282","title":"Client-Side Errors"},"1283":{"body":"","breadcrumbs":"Web Servers » Security Best Practices","id":"1283","title":"Security Best Practices"},"1284":{"body":"Always use HTTPS for production deployments: // Client\nawait sendJacsRequest('https://api.example.com/data', payload);","breadcrumbs":"Web Servers » 1. Use TLS in Production","id":"1284","title":"1. Use TLS in Production"},"1285":{"body":"Each endpoint needs its own JACS identity: project/\n├── server/\n│ ├── jacs.config.json\n│ └── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── client/ ├── jacs.config.json └── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Web Servers » 2. Separate Server and Client Keys","id":"1285","title":"2. Separate Server and Client Keys"},"1286":{"body":"For Express, ensure correct middleware order: // Correct order\napp.use('/api', express.text({ type: '*/*' })); // 1. Parse body\napp.use('/api', JACSExpressMiddleware({ ... })); // 2. JACS verification // Wrong order - JACS won't receive string body\napp.use('/api', JACSExpressMiddleware({ ... }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"Web Servers » 3. Middleware Order Matters","id":"1286","title":"3. Middleware Order Matters"},"1287":{"body":"Don't mix express.json() with JACS routes: // JSON for non-JACS routes\napp.use('/public', express.json()); // Text for JACS routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ ... }));","breadcrumbs":"Web Servers » 4. Avoid JSON Body Parser Conflicts","id":"1287","title":"4. Avoid JSON Body Parser Conflicts"},"1288":{"body":"Log JACS requests for security auditing: function jacsLogger(req, res, next) { if (req.jacsPayload) { console.log(JSON.stringify({ timestamp: new Date().toISOString(), method: req.method, path: req.path, jacsPayload: req.jacsPayload, ip: req.ip })); } next();\n} app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' }));\napp.use('/api', jacsLogger); // After JACS middleware","breadcrumbs":"Web Servers » Logging and Auditing","id":"1288","title":"Logging and Auditing"},"1289":{"body":"","breadcrumbs":"Web Servers » Testing","id":"1289","title":"Testing"},"129":{"body":"# Generate DNS TXT record commands for agent publishing\njacs agent dns --domain example.com --agent-id [uuid] # With different output formats\njacs agent dns --domain example.com --encoding hex\njacs agent dns --domain example.com --provider aws # With custom TTL\njacs agent dns --domain example.com --ttl 7200 Options: Option Default Description --domain Domain for DNS record --agent-id Agent UUID (optional, uses config if not provided) --ttl 3600 Time-to-live in seconds --encoding base64 Encoding format (base64, hex) --provider plain Output format (plain, aws, azure, cloudflare)","breadcrumbs":"CLI Usage » DNS Commands","id":"129","title":"DNS Commands"},"1290":{"body":"import request from 'supertest';\nimport jacs from '@hai.ai/jacs'; describe('JACS API', () => { beforeAll(async () => { await jacs.load('./jacs.test.config.json'); }); it('should accept valid JACS requests', async () => { const payload = { action: 'test', data: 'hello' }; const signedRequest = await jacs.signRequest(payload); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); // Verify response is JACS-signed const verified = await jacs.verifyResponse(response.text); expect(verified.payload.echo).toEqual(payload); }); it('should reject unsigned requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Web Servers » Testing with Supertest","id":"1290","title":"Testing with Supertest"},"1291":{"body":"","breadcrumbs":"Web Servers » Troubleshooting","id":"1291","title":"Troubleshooting"},"1292":{"body":"Issue Cause Solution req.jacsPayload undefined Wrong middleware order Put express.text() before JACS middleware Response not signed Sending string instead of object Use res.send({ ... }) not res.send(JSON.stringify(...)) Verification failures Key mismatch Ensure compatible JACS configurations Connection refused Server not running Verify server is listening on correct port","breadcrumbs":"Web Servers » Common Issues","id":"1292","title":"Common Issues"},"1293":{"body":"// Node.js\nprocess.env.JACS_DEBUG = 'true'; # Python\nimport logging\nlogging.basicConfig(level=logging.DEBUG)","breadcrumbs":"Web Servers » Debug Logging","id":"1293","title":"Debug Logging"},"1294":{"body":"Node.js HTTP Server - Detailed Node.js documentation Express Middleware - Express-specific patterns MCP Integration - Model Context Protocol support Security Model - JACS security architecture","breadcrumbs":"Web Servers » See Also","id":"1294","title":"See Also"},"1295":{"body":"JACS includes a built-in PostgreSQL storage backend (behind the database feature flag) that handles document storage, JSONB queries, and signature preservation automatically. For most use cases, this is the recommended approach. For custom integrations with other databases, see the examples below.","breadcrumbs":"Databases » Databases","id":"1295","title":"Databases"},"1296":{"body":"JACS ships with native PostgreSQL support via the database Cargo feature. This uses a TEXT + JSONB dual-column strategy to preserve cryptographic signatures while enabling efficient queries. See Storage Backends for full documentation. # Enable at compile time\ncargo build --features database # Configure via environment\nexport JACS_DATABASE_URL=\"postgres://user:pass@localhost:5432/jacs\"","breadcrumbs":"Databases » Built-in PostgreSQL Backend","id":"1296","title":"Built-in PostgreSQL Backend"},"1297":{"body":"If you need to integrate JACS documents with other databases (MongoDB, SQLite, Redis) or need application-specific table structures, you can store JACS documents directly. JACS documents are JSON objects with cryptographic signatures. They can be stored in any database that supports JSON or text storage: Database Type Storage Method Best For PostgreSQL (built-in) TEXT + JSONB Complex queries, signature preservation PostgreSQL (custom) JSONB column Application-specific schemas MongoDB Native documents Document-centric apps SQLite TEXT column Local/embedded apps Redis Key-value Caching, high-speed access","breadcrumbs":"Databases » Custom Database Integrations","id":"1297","title":"Custom Database Integrations"},"1298":{"body":"The built-in PostgreSQL backend covers most query needs. Use a custom integration when you need: Different Database : MongoDB, SQLite, Redis, etc. Custom Schema : Application-specific table structures Relations : Link JACS documents to non-JACS data Existing Infrastructure : Integrate with current systems","breadcrumbs":"Databases » Why Use a Custom Database Integration?","id":"1298","title":"Why Use a Custom Database Integration?"},"1299":{"body":"","breadcrumbs":"Databases » PostgreSQL Integration","id":"1299","title":"PostgreSQL Integration"},"13":{"body":"Unlike general-purpose signing frameworks, JACS is specifically designed for AI agent communication patterns - tasks, agreements, and collaborative workflows.","breadcrumbs":"Introduction » 🎯 Agent-Focused Design","id":"13","title":"🎯 Agent-Focused Design"},"130":{"body":"# Look up another agent's public key from their domain\njacs agent lookup agent.example.com # With strict DNSSEC validation\njacs agent lookup agent.example.com --strict # Skip DNS lookup\njacs agent lookup agent.example.com --no-dns","breadcrumbs":"CLI Usage » Lookup Agent","id":"130","title":"Lookup Agent"},"1300":{"body":"-- JACS documents table\nCREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, signature_valid BOOLEAN DEFAULT TRUE, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), updated_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), -- Extracted fields for indexing agent_id UUID, document_type VARCHAR(100), UNIQUE(id, version_id)\n); -- Index on JACS fields\nCREATE INDEX idx_jacs_agent ON jacs_documents(agent_id);\nCREATE INDEX idx_jacs_type ON jacs_documents(document_type);\nCREATE INDEX idx_jacs_created ON jacs_documents(created_at); -- GIN index for JSONB queries\nCREATE INDEX idx_jacs_document ON jacs_documents USING GIN (document);","breadcrumbs":"Databases » Schema Design","id":"1300","title":"Schema Design"},"1301":{"body":"import { Pool } from 'pg';\nimport jacs from '@hai.ai/jacs'; const pool = new Pool({ connectionString: process.env.DATABASE_URL\n}); class JacsDocumentStore { constructor(configPath) { this.configPath = configPath; } async initialize() { await jacs.load(this.configPath); } async createAndStore(content, options = {}) { // Create JACS document const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); // Store in database const result = await pool.query(` INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES ($1, $2, $3, $4, $5) RETURNING * `, [ doc.jacsId, doc.jacsVersion, doc, doc.jacsSignature?.agentID, content.type || 'document' ]); return result.rows[0]; } async getDocument(id, versionId = null) { let query = 'SELECT * FROM jacs_documents WHERE id = $1'; const params = [id]; if (versionId) { query += ' AND version_id = $2'; params.push(versionId); } else { query += ' ORDER BY created_at DESC LIMIT 1'; } const result = await pool.query(query, params); return result.rows[0]; } async verifyDocument(id) { const row = await this.getDocument(id); if (!row) return null; const isValid = await jacs.verifyDocument(JSON.stringify(row.document)); // Update signature_valid flag await pool.query( 'UPDATE jacs_documents SET signature_valid = $1 WHERE id = $2 AND version_id = $3', [isValid, row.id, row.version_id] ); return { document: row.document, isValid }; } async searchDocuments(query) { const result = await pool.query(` SELECT * FROM jacs_documents WHERE document @> $1 ORDER BY created_at DESC `, [JSON.stringify(query)]); return result.rows; }\n} // Usage\nconst store = new JacsDocumentStore('./jacs.config.json');\nawait store.initialize(); // Create and store a document\nconst doc = await store.createAndStore({ type: 'invoice', amount: 1500, customer: 'Acme Corp'\n}); // Search documents\nconst invoices = await store.searchDocuments({ type: 'invoice' });","breadcrumbs":"Databases » Node.js Example","id":"1301","title":"Node.js Example"},"1302":{"body":"import json\nimport jacs\nimport psycopg2\nfrom psycopg2.extras import RealDictCursor class JacsDocumentStore: def __init__(self, config_path, database_url): self.config_path = config_path self.database_url = database_url self.conn = None def initialize(self): # Initialize JACS agent = jacs.JacsAgent() agent.load(self.config_path) # Connect to database self.conn = psycopg2.connect(self.database_url) def create_and_store(self, content, custom_schema=None): # Create JACS document doc_string = jacs.create_document( json.dumps(content), custom_schema=custom_schema ) doc = json.loads(doc_string) # Store in database with self.conn.cursor(cursor_factory=RealDictCursor) as cur: cur.execute(\"\"\" INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES (%s, %s, %s, %s, %s) RETURNING * \"\"\", ( doc['jacsId'], doc['jacsVersion'], json.dumps(doc), doc.get('jacsSignature', {}).get('agentID'), content.get('type', 'document') )) self.conn.commit() return cur.fetchone() def get_document(self, doc_id, version_id=None): with self.conn.cursor(cursor_factory=RealDictCursor) as cur: if version_id: cur.execute( \"SELECT * FROM jacs_documents WHERE id = %s AND version_id = %s\", (doc_id, version_id) ) else: cur.execute( \"SELECT * FROM jacs_documents WHERE id = %s ORDER BY created_at DESC LIMIT 1\", (doc_id,) ) return cur.fetchone() def verify_document(self, doc_id): row = self.get_document(doc_id) if not row: return None is_valid = jacs.verify_document(json.dumps(row['document'])) # Update verification status with self.conn.cursor() as cur: cur.execute( \"UPDATE jacs_documents SET signature_valid = %s WHERE id = %s AND version_id = %s\", (is_valid, row['id'], row['version_id']) ) self.conn.commit() return {'document': row['document'], 'is_valid': is_valid} def search_documents(self, query): with self.conn.cursor(cursor_factory=RealDictCursor) as cur: cur.execute( \"SELECT * FROM jacs_documents WHERE document @> %s ORDER BY created_at DESC\", (json.dumps(query),) ) return cur.fetchall() # Usage\nstore = JacsDocumentStore('./jacs.config.json', 'postgresql://localhost/mydb')\nstore.initialize() # Create and store a document\ndoc = store.create_and_store({ 'type': 'invoice', 'amount': 1500, 'customer': 'Acme Corp'\n}) # Search documents\ninvoices = store.search_documents({'type': 'invoice'})","breadcrumbs":"Databases » Python Example","id":"1302","title":"Python Example"},"1303":{"body":"","breadcrumbs":"Databases » MongoDB Integration","id":"1303","title":"MongoDB Integration"},"1304":{"body":"// MongoDB schema (using Mongoose)\nconst jacsDocumentSchema = new mongoose.Schema({ jacsId: { type: String, required: true, index: true }, jacsVersion: { type: String, required: true }, document: { type: mongoose.Schema.Types.Mixed, required: true }, signatureValid: { type: Boolean, default: true }, agentId: { type: String, index: true }, documentType: { type: String, index: true }, createdAt: { type: Date, default: Date.now, index: true }\n}); jacsDocumentSchema.index({ jacsId: 1, jacsVersion: 1 }, { unique: true });","breadcrumbs":"Databases » Collection Design","id":"1304","title":"Collection Design"},"1305":{"body":"import mongoose from 'mongoose';\nimport jacs from '@hai.ai/jacs'; const JacsDocument = mongoose.model('JacsDocument', jacsDocumentSchema); class MongoJacsStore { async initialize(configPath) { await jacs.load(configPath); await mongoose.connect(process.env.MONGODB_URI); } async createAndStore(content, options = {}) { const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); const stored = await JacsDocument.create({ jacsId: doc.jacsId, jacsVersion: doc.jacsVersion, document: doc, agentId: doc.jacsSignature?.agentID, documentType: content.type || 'document' }); return stored; } async getDocument(jacsId, versionId = null) { const query = { jacsId }; if (versionId) { query.jacsVersion = versionId; } return JacsDocument.findOne(query).sort({ createdAt: -1 }); } async searchDocuments(query) { // Build MongoDB query from content fields const mongoQuery = {}; for (const [key, value] of Object.entries(query)) { mongoQuery[`document.${key}`] = value; } return JacsDocument.find(mongoQuery).sort({ createdAt: -1 }); } async getDocumentsByAgent(agentId) { return JacsDocument.find({ agentId }).sort({ createdAt: -1 }); }\n} // Usage\nconst store = new MongoJacsStore();\nawait store.initialize('./jacs.config.json'); const doc = await store.createAndStore({ type: 'contract', parties: ['Alice', 'Bob'], value: 50000\n}); const contracts = await store.searchDocuments({ type: 'contract' });","breadcrumbs":"Databases » Example","id":"1305","title":"Example"},"1306":{"body":"For embedded or local applications: import Database from 'better-sqlite3';\nimport jacs from '@hai.ai/jacs'; class SqliteJacsStore { constructor(dbPath) { this.db = new Database(dbPath); this.initSchema(); } initSchema() { this.db.exec(` CREATE TABLE IF NOT EXISTS jacs_documents ( id TEXT NOT NULL, version_id TEXT NOT NULL, document TEXT NOT NULL, agent_id TEXT, document_type TEXT, signature_valid INTEGER DEFAULT 1, created_at TEXT DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id, version_id) ); CREATE INDEX IF NOT EXISTS idx_agent ON jacs_documents(agent_id); CREATE INDEX IF NOT EXISTS idx_type ON jacs_documents(document_type); `); } async initialize(configPath) { await jacs.load(configPath); } async createAndStore(content, options = {}) { const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); const stmt = this.db.prepare(` INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES (?, ?, ?, ?, ?) `); stmt.run( doc.jacsId, doc.jacsVersion, docString, doc.jacsSignature?.agentID, content.type || 'document' ); return doc; } getDocument(id, versionId = null) { let query = 'SELECT * FROM jacs_documents WHERE id = ?'; const params = [id]; if (versionId) { query += ' AND version_id = ?'; params.push(versionId); } else { query += ' ORDER BY created_at DESC LIMIT 1'; } const stmt = this.db.prepare(query); const row = stmt.get(...params); if (row) { row.document = JSON.parse(row.document); } return row; } searchByType(documentType) { const stmt = this.db.prepare( 'SELECT * FROM jacs_documents WHERE document_type = ? ORDER BY created_at DESC' ); return stmt.all(documentType).map(row => ({ ...row, document: JSON.parse(row.document) })); }\n}","breadcrumbs":"Databases » SQLite Integration","id":"1306","title":"SQLite Integration"},"1307":{"body":"Use Redis for high-speed document access: import Redis from 'ioredis';\nimport jacs from '@hai.ai/jacs'; class JacsRedisCache { constructor(redisUrl) { this.redis = new Redis(redisUrl); this.ttl = 3600; // 1 hour default TTL } async initialize(configPath) { await jacs.load(configPath); } async cacheDocument(docString) { const doc = JSON.parse(docString); const key = `jacs:${doc.jacsId}:${doc.jacsVersion}`; await this.redis.setex(key, this.ttl, docString); // Also cache as latest version await this.redis.setex(`jacs:${doc.jacsId}:latest`, this.ttl, docString); return doc; } async getDocument(jacsId, versionId = 'latest') { const key = `jacs:${jacsId}:${versionId}`; const docString = await this.redis.get(key); if (!docString) return null; return JSON.parse(docString); } async invalidate(jacsId, versionId = null) { if (versionId) { await this.redis.del(`jacs:${jacsId}:${versionId}`); } else { // Invalidate all versions const keys = await this.redis.keys(`jacs:${jacsId}:*`); if (keys.length > 0) { await this.redis.del(...keys); } } }\n}","breadcrumbs":"Databases » Redis Caching","id":"1307","title":"Redis Caching"},"1308":{"body":"","breadcrumbs":"Databases » Indexing Strategies","id":"1308","title":"Indexing Strategies"},"1309":{"body":"Extract key fields during storage for efficient querying: async function extractIndexFields(jacsDocument) { return { jacsId: jacsDocument.jacsId, jacsVersion: jacsDocument.jacsVersion, agentId: jacsDocument.jacsSignature?.agentID, createdDate: jacsDocument.jacsSignature?.date, hasAgreement: !!jacsDocument.jacsAgreement, agreementComplete: jacsDocument.jacsAgreement?.signatures?.length === jacsDocument.jacsAgreement?.agentIDs?.length, // Application-specific fields documentType: jacsDocument.type, status: jacsDocument.status, tags: jacsDocument.tags || [] };\n}","breadcrumbs":"Databases » Extracting Searchable Fields","id":"1309","title":"Extracting Searchable Fields"},"131":{"body":"","breadcrumbs":"CLI Usage » Task Commands","id":"131","title":"Task Commands"},"1310":{"body":"PostgreSQL example with full-text search: -- Add text search column\nALTER TABLE jacs_documents ADD COLUMN search_vector tsvector; -- Create index\nCREATE INDEX idx_search ON jacs_documents USING GIN(search_vector); -- Update trigger\nCREATE OR REPLACE FUNCTION update_search_vector() RETURNS trigger AS $$\nBEGIN NEW.search_vector := to_tsvector('english', coalesce(NEW.document->>'title', '') || ' ' || coalesce(NEW.document->>'content', '') || ' ' || coalesce(NEW.document->>'description', '') ); RETURN NEW;\nEND;\n$$ LANGUAGE plpgsql; CREATE TRIGGER jacs_search_update BEFORE INSERT OR UPDATE ON jacs_documents FOR EACH ROW EXECUTE FUNCTION update_search_vector(); // Search example\nasync function fullTextSearch(searchQuery) { const result = await pool.query(` SELECT *, ts_rank(search_vector, plainto_tsquery($1)) as rank FROM jacs_documents WHERE search_vector @@ plainto_tsquery($1) ORDER BY rank DESC `, [searchQuery]); return result.rows;\n}","breadcrumbs":"Databases » Full-Text Search","id":"1310","title":"Full-Text Search"},"1311":{"body":"","breadcrumbs":"Databases » Best Practices","id":"1311","title":"Best Practices"},"1312":{"body":"Always store the complete JACS document to preserve signatures: // Good - stores complete document\nawait pool.query( 'INSERT INTO jacs_documents (id, document) VALUES ($1, $2)', [doc.jacsId, JSON.stringify(doc)] // Complete document\n); // Bad - loses signature data\nawait pool.query( 'INSERT INTO documents (id, content) VALUES ($1, $2)', [doc.jacsId, JSON.stringify(doc.content)] // Only content\n);","breadcrumbs":"Databases » 1. Store Complete Documents","id":"1312","title":"1. Store Complete Documents"},"1313":{"body":"Always verify signatures when retrieving documents for sensitive operations: async function getVerifiedDocument(id) { const row = await pool.query( 'SELECT document FROM jacs_documents WHERE id = $1', [id] ); if (!row.rows[0]) return null; const docString = JSON.stringify(row.rows[0].document); const isValid = await jacs.verifyDocument(docString); if (!isValid) { throw new Error('Document signature verification failed'); } return row.rows[0].document;\n}","breadcrumbs":"Databases » 2. Verify After Retrieval","id":"1313","title":"2. Verify After Retrieval"},"1314":{"body":"Maintain version history for audit trails: async function getDocumentHistory(jacsId) { const result = await pool.query(` SELECT * FROM jacs_documents WHERE id = $1 ORDER BY created_at ASC `, [jacsId]); return result.rows;\n}","breadcrumbs":"Databases » 3. Handle Version History","id":"1314","title":"3. Handle Version History"},"1315":{"body":"Periodically verify stored documents: async function verifyAllDocuments() { const docs = await pool.query('SELECT * FROM jacs_documents'); for (const row of docs.rows) { const docString = JSON.stringify(row.document); const isValid = await jacs.verifyDocument(docString); if (!isValid) { console.warn(`Document ${row.id} failed verification`); await pool.query( 'UPDATE jacs_documents SET signature_valid = false WHERE id = $1', [row.id] ); } }\n}","breadcrumbs":"Databases » 4. Batch Verification","id":"1315","title":"4. Batch Verification"},"1316":{"body":"Storage Backends - Built-in JACS storage Security Model - Document security Testing - Testing database integrations","breadcrumbs":"Databases » See Also","id":"1316","title":"See Also"},"1317":{"body":"This chapter provides practical examples of using the JACS CLI for common workflows.","breadcrumbs":"CLI Examples » CLI Examples","id":"1317","title":"CLI Examples"},"1318":{"body":"jacs init # Initialize JACS (config + agent + keys)\njacs agent create # Create a new agent\njacs document create # Create a signed document\njacs document verify # Verify a document signature\njacs document sign-agreement # Sign an agreement","breadcrumbs":"CLI Examples » Quick Reference","id":"1318","title":"Quick Reference"},"1319":{"body":"","breadcrumbs":"CLI Examples » Getting Started","id":"1319","title":"Getting Started"},"132":{"body":"jacs task create -n \"Task Name\" -d \"Task description\" # With optional agent file\njacs task create -n \"Task Name\" -d \"Description\" -a ./agent.json # With input file\njacs task create -n \"Task Name\" -d \"Description\" -f ./task-details.json Options: Option Short Required Description -n --name Yes Name of the task -d --description Yes Description of the task -a --agent-file No Path to agent file -f --filename No Path to JSON file with additional task data","breadcrumbs":"CLI Usage » Create Task","id":"132","title":"Create Task"},"1320":{"body":"Initialize JACS in a new project: # Create a new directory\nmkdir my-jacs-project\ncd my-jacs-project # Initialize JACS\njacs init # This creates:\n# - jacs.config.json (configuration)\n# - jacs_keys/ (private and public keys)\n# - jacs_data/ (document storage)\n# - An initial agent document","breadcrumbs":"CLI Examples » First-Time Setup","id":"1320","title":"First-Time Setup"},"1321":{"body":"# Check the configuration\njacs config read # Verify your agent\njacs agent verify # Expected output:\n# Agent verification successful\n# Agent ID: 550e8400-e29b-41d4-a716-446655440000\n# Agent Version: f47ac10b-58cc-4372-a567-0e02b2c3d479","breadcrumbs":"CLI Examples » Verify Your Setup","id":"1321","title":"Verify Your Setup"},"1322":{"body":"","breadcrumbs":"CLI Examples » Document Operations","id":"1322","title":"Document Operations"},"1323":{"body":"Create from a JSON file: # Create input file\ncat > invoice.json << 'EOF'\n{ \"type\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"customer\": \"Acme Corp\", \"amount\": 1500.00, \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ]\n}\nEOF # Create signed document\njacs document create -f invoice.json # Output shows the saved document path\n# Document saved to: jacs_data/documents/[uuid]/[version].json Create with custom output: # Specify output filename\njacs document create -f invoice.json -o signed-invoice.json # Print to stdout (don't save)\njacs document create -f invoice.json --no-save Create with file attachments: # Create document with PDF attachment\njacs document create -f contract.json --attach ./contract.pdf # Embed attachment content in document\njacs document create -f contract.json --attach ./contract.pdf --embed true # Attach entire directory\njacs document create -f report.json --attach ./attachments/ Create with custom schema: # Use a custom schema for validation\njacs document create -f order.json -s ./schemas/order.schema.json","breadcrumbs":"CLI Examples » Creating Documents","id":"1323","title":"Creating Documents"},"1324":{"body":"Basic verification: # Verify a document\njacs document verify -f ./signed-invoice.json # Expected output:\n# Document verified successfully\n# Document ID: 550e8400-e29b-41d4-a716-446655440000\n# Signer: Agent Name (agent-uuid) Verbose verification: # Get detailed verification info\njacs document verify -f ./signed-invoice.json -v # Output includes:\n# - Document ID and version\n# - Signature algorithm used\n# - Signing agent details\n# - Timestamp\n# - Schema validation results Batch verification: # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -d ./invoices/ -s ./schemas/invoice.schema.json","breadcrumbs":"CLI Examples » Verifying Documents","id":"1324","title":"Verifying Documents"},"1325":{"body":"Create a new version of an existing document: # Original document\ncat > original.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"draft\", \"content\": \"Initial version\"\n}\nEOF jacs document create -f original.json -o project-v1.json # Updated content\ncat > updated.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"approved\", \"content\": \"Final version with updates\"\n}\nEOF # Create new version (maintains version history)\njacs document update -f project-v1.json -n updated.json -o project-v2.json # Verify the updated document\njacs document verify -f project-v2.json -v","breadcrumbs":"CLI Examples » Updating Documents","id":"1325","title":"Updating Documents"},"1326":{"body":"# Extract embedded files from a document\njacs document extract -f ./document-with-attachments.json # Extracts to: jacs_data/extracted/[document-id]/ # Extract from multiple documents\njacs document extract -d ./documents/","breadcrumbs":"CLI Examples » Extracting Embedded Content","id":"1326","title":"Extracting Embedded Content"},"1327":{"body":"","breadcrumbs":"CLI Examples » Agreement Workflows","id":"1327","title":"Agreement Workflows"},"1328":{"body":"An agreement requires multiple agents to sign a document: # First, create the document to be agreed upon\ncat > service-agreement.json << 'EOF'\n{ \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"...\", \"effectiveDate\": \"2024-02-01\"\n}\nEOF jacs document create -f service-agreement.json -o agreement.json # Create agreement requiring signatures from two agents\n# (Use actual agent UUIDs)\njacs document create-agreement \\ -f agreement.json \\ -i \"agent1-uuid-here,agent2-uuid-here\" \\ -o agreement-pending.json # Output:\n# Agreement created\n# Required signatures: 2\n# Current signatures: 0","breadcrumbs":"CLI Examples » Creating an Agreement","id":"1328","title":"Creating an Agreement"},"1329":{"body":"# First agent signs\njacs document sign-agreement -f agreement-pending.json -o agreement-signed-1.json # Check status\njacs document check-agreement -f agreement-signed-1.json\n# Output:\n# Agreement status: pending\n# Signatures: 1/2\n# Missing: agent2-uuid # Second agent signs (using their configuration)\nJACS_CONFIG_PATH=./agent2.config.json \\ jacs document sign-agreement -f agreement-signed-1.json -o agreement-complete.json # Verify completion\njacs document check-agreement -f agreement-complete.json\n# Output:\n# Agreement status: complete\n# Signatures: 2/2","breadcrumbs":"CLI Examples » Signing an Agreement","id":"1329","title":"Signing an Agreement"},"133":{"body":"","breadcrumbs":"CLI Usage » Document Commands","id":"133","title":"Document Commands"},"1330":{"body":"#!/bin/bash\n# agreement-workflow.sh # Step 1: Create the contract document\ncat > contract.json << 'EOF'\n{ \"type\": \"contract\", \"parties\": { \"seller\": \"Widget Corp\", \"buyer\": \"Acme Inc\" }, \"terms\": \"Sale of 1000 widgets at $10 each\", \"totalValue\": 10000\n}\nEOF echo \"Creating contract document...\"\njacs document create -f contract.json -o contract-signed.json # Step 2: Get agent IDs\nSELLER_AGENT=$(jacs config read | grep agent_id | cut -d: -f2 | tr -d ' ')\nBUYER_AGENT=\"buyer-agent-uuid-here\" # Replace with actual ID # Step 3: Create agreement\necho \"Creating agreement...\"\njacs document create-agreement \\ -f contract-signed.json \\ -i \"$SELLER_AGENT,$BUYER_AGENT\" \\ -o contract-agreement.json # Step 4: Seller signs\necho \"Seller signing...\"\njacs document sign-agreement \\ -f contract-agreement.json \\ -o contract-seller-signed.json # Step 5: Check intermediate status\necho \"Checking status...\"\njacs document check-agreement -f contract-seller-signed.json # Step 6: Buyer signs\necho \"Buyer signing...\"\nJACS_CONFIG_PATH=./buyer.config.json \\ jacs document sign-agreement \\ -f contract-seller-signed.json \\ -o contract-complete.json # Step 7: Verify complete agreement\necho \"Final verification...\"\njacs document verify -f contract-complete.json -v\njacs document check-agreement -f contract-complete.json echo \"Agreement workflow complete!\"","breadcrumbs":"CLI Examples » Complete Agreement Workflow","id":"1330","title":"Complete Agreement Workflow"},"1331":{"body":"","breadcrumbs":"CLI Examples » Agent Operations","id":"1331","title":"Agent Operations"},"1332":{"body":"# Create agent definition file\ncat > my-agent.json << 'EOF'\n{ \"jacsAgentType\": \"ai\", \"name\": \"My Custom Agent\", \"description\": \"An AI agent for document processing\", \"contact\": { \"email\": \"agent@example.com\" }, \"services\": [ { \"name\": \"document-processing\", \"description\": \"Process and sign documents\" } ]\n}\nEOF # Create agent with new keys\njacs agent create --create-keys true -f my-agent.json # Create agent using existing keys\njacs agent create --create-keys false -f my-agent.json","breadcrumbs":"CLI Examples » Creating a Custom Agent","id":"1332","title":"Creating a Custom Agent"},"1333":{"body":"Generate DNS record commands: # Generate TXT record for your domain\njacs agent dns --domain myagent.example.com # Output (example):\n# Add the following DNS TXT record:\n# _v1.agent.jacs.myagent.example.com TXT \"pk=\" # Different providers\njacs agent dns --domain myagent.example.com --provider aws\njacs agent dns --domain myagent.example.com --provider cloudflare\njacs agent dns --domain myagent.example.com --provider azure # Custom TTL\njacs agent dns --domain myagent.example.com --ttl 7200 Verify DNS-published agent: # Look up agent by domain\njacs agent lookup partner.example.com # Require strict DNSSEC validation\njacs agent lookup partner.example.com --strict # Verify local agent file against DNS\njacs agent verify -a ./partner-agent.json --require-strict-dns","breadcrumbs":"CLI Examples » DNS-Based Identity","id":"1333","title":"DNS-Based Identity"},"1334":{"body":"# Basic verification\njacs agent verify # Verify another agent's file\njacs agent verify -a ./other-agent.json # With DNS requirements\njacs agent verify --require-dns # Require DNS (not strict)\njacs agent verify --require-strict-dns # Require DNSSEC\njacs agent verify --no-dns # Skip DNS entirely\njacs agent verify --ignore-dns # Ignore DNS validation failures","breadcrumbs":"CLI Examples » Agent Verification","id":"1334","title":"Agent Verification"},"1335":{"body":"","breadcrumbs":"CLI Examples » Task Management","id":"1335","title":"Task Management"},"1336":{"body":"# Simple task\njacs task create \\ -n \"Review Contract\" \\ -d \"Review the service contract and provide feedback\" # Task with additional data from file\ncat > task-details.json << 'EOF'\n{ \"priority\": \"high\", \"dueDate\": \"2024-02-15\", \"assignee\": \"legal-team\"\n}\nEOF jacs task create \\ -n \"Contract Review\" \\ -d \"Detailed review required\" \\ -f task-details.json","breadcrumbs":"CLI Examples » Creating Tasks","id":"1336","title":"Creating Tasks"},"1337":{"body":"","breadcrumbs":"CLI Examples » Scripting Examples","id":"1337","title":"Scripting Examples"},"1338":{"body":"#!/bin/bash\n# batch-sign.sh - Sign all JSON files in a directory INPUT_DIR=$1\nOUTPUT_DIR=${2:-\"./signed\"} mkdir -p \"$OUTPUT_DIR\" for file in \"$INPUT_DIR\"/*.json; do filename=$(basename \"$file\") echo \"Signing: $filename\" jacs document create -f \"$file\" -o \"$OUTPUT_DIR/$filename\" if [ $? -eq 0 ]; then echo \" ✓ Signed successfully\" else echo \" ✗ Signing failed\" fi\ndone echo \"Batch signing complete. Output in $OUTPUT_DIR\"","breadcrumbs":"CLI Examples » Batch Document Processing","id":"1338","title":"Batch Document Processing"},"1339":{"body":"#!/bin/bash\n# verify-report.sh - Generate verification report DOC_DIR=$1\nREPORT=\"verification-report.txt\" echo \"JACS Document Verification Report\" > $REPORT\necho \"Generated: $(date)\" >> $REPORT\necho \"=================================\" >> $REPORT\necho \"\" >> $REPORT passed=0\nfailed=0 for file in \"$DOC_DIR\"/*.json; do filename=$(basename \"$file\") if jacs document verify -f \"$file\" > /dev/null 2>&1; then echo \"✓ PASS: $filename\" >> $REPORT ((passed++)) else echo \"✗ FAIL: $filename\" >> $REPORT ((failed++)) fi\ndone echo \"\" >> $REPORT\necho \"Summary: $passed passed, $failed failed\" >> $REPORT cat $REPORT","breadcrumbs":"CLI Examples » Verification Report","id":"1339","title":"Verification Report"},"134":{"body":"# Create from a JSON file\njacs document create -f ./document.json # Create from a directory of files\njacs document create -d ./documents/ # With custom schema\njacs document create -f ./document.json -s ./custom-schema.json # With file attachments\njacs document create -f ./document.json --attach ./attachment.pdf # Embed attachments in document\njacs document create -f ./document.json --attach ./files/ --embed true # Output to specific file\njacs document create -f ./document.json -o ./output.json # Print to stdout instead of saving\njacs document create -f ./document.json --no-save Options: Option Short Description -f --filename Path to input JSON file -d --directory Path to directory of JSON files -o --output Output filename -s --schema Path to custom JSON schema --attach Path to file/directory for attachments --embed -e Embed documents (true/false) --no-save -n Print to stdout instead of saving -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Usage » Create Document","id":"134","title":"Create Document"},"1340":{"body":"#!/bin/bash\n# watch-and-verify.sh - Monitor directory and verify new documents WATCH_DIR=${1:-\"./incoming\"} echo \"Watching $WATCH_DIR for new documents...\" inotifywait -m \"$WATCH_DIR\" -e create -e moved_to | while read dir action file; do if [[ \"$file\" == *.json ]]; then echo \"New document: $file\" if jacs document verify -f \"$WATCH_DIR/$file\"; then mv \"$WATCH_DIR/$file\" \"./verified/\" echo \" Moved to verified/\" else mv \"$WATCH_DIR/$file\" \"./rejected/\" echo \" Moved to rejected/\" fi fi done","breadcrumbs":"CLI Examples » Watch for New Documents","id":"1340","title":"Watch for New Documents"},"1341":{"body":"","breadcrumbs":"CLI Examples » Environment Configuration","id":"1341","title":"Environment Configuration"},"1342":{"body":"# Use a specific config file\nexport JACS_CONFIG_PATH=./production.config.json\njacs document create -f invoice.json # Override specific settings\nexport JACS_DATA_DIRECTORY=./custom-data\nexport JACS_KEY_DIRECTORY=./secure-keys\njacs agent create --create-keys true # One-time override\nJACS_CONFIG_PATH=./test.config.json jacs document verify -f test-doc.json","breadcrumbs":"CLI Examples » Using Environment Variables","id":"1342","title":"Using Environment Variables"},"1343":{"body":"# Development\nalias jacs-dev='JACS_CONFIG_PATH=./dev.config.json jacs'\njacs-dev document create -f test.json # Production\nalias jacs-prod='JACS_CONFIG_PATH=./prod.config.json jacs'\njacs-prod document verify -f important.json # Different agents\nalias jacs-alice='JACS_CONFIG_PATH=./alice.config.json jacs'\nalias jacs-bob='JACS_CONFIG_PATH=./bob.config.json jacs'","breadcrumbs":"CLI Examples » Multiple Configurations","id":"1343","title":"Multiple Configurations"},"1344":{"body":"","breadcrumbs":"CLI Examples » Error Handling","id":"1344","title":"Error Handling"},"1345":{"body":"jacs document verify -f document.json\nexit_code=$? case $exit_code in 0) echo \"Success\" ;; 1) echo \"General error\" ;; 2) echo \"Invalid arguments\" ;; 3) echo \"File not found\" ;; 4) echo \"Verification failed\" ;; 5) echo \"Signature invalid\" ;; *) echo \"Unknown error: $exit_code\" ;;\nesac","breadcrumbs":"CLI Examples » Understanding Exit Codes","id":"1345","title":"Understanding Exit Codes"},"1346":{"body":"#!/bin/bash\n# robust-signing.sh sign_document() { local input=$1 local output=$2 if ! jacs document create -f \"$input\" -o \"$output\" 2>/dev/null; then echo \"Error: Failed to sign $input\" >&2 return 1 fi if ! jacs document verify -f \"$output\" 2>/dev/null; then echo \"Error: Verification failed for $output\" >&2 rm -f \"$output\" return 1 fi echo \"Successfully signed: $output\" return 0\n} # Usage\nsign_document \"invoice.json\" \"signed-invoice.json\" || exit 1","breadcrumbs":"CLI Examples » Handling Failures","id":"1346","title":"Handling Failures"},"1347":{"body":"CLI Command Reference - Complete command reference Configuration Reference - Configuration options Rust CLI Usage - Detailed CLI documentation","breadcrumbs":"CLI Examples » See Also","id":"1347","title":"See Also"},"1348":{"body":"This chapter provides practical Node.js examples using the @hai.ai/jacs package.","breadcrumbs":"Node.js Examples » Node.js Examples","id":"1348","title":"Node.js Examples"},"1349":{"body":"# Install dependencies\nnpm install @hai.ai/jacs express @modelcontextprotocol/sdk zod // Initialize JACS (ES Modules)\nimport { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"Node.js Examples » Setup","id":"1349","title":"Setup"},"135":{"body":"# Update an existing document with new content\njacs document update -f ./original.json -n ./updated.json # With output file\njacs document update -f ./original.json -n ./updated.json -o ./result.json # With file attachments\njacs document update -f ./original.json -n ./updated.json --attach ./new-file.pdf Options: Option Short Required Description -f --filename Yes Path to original document -n --new Yes Path to new version -o --output No Output filename --attach No Path to file attachments --embed -e No Embed documents (true/false)","breadcrumbs":"CLI Usage » Update Document","id":"135","title":"Update Document"},"1350":{"body":"","breadcrumbs":"Node.js Examples » Basic Document Operations","id":"1350","title":"Basic Document Operations"},"1351":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function createSignedDocument() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a simple document const content = { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', items: [ { description: 'Consulting', quantity: 10, price: 150 } ] }; // Create and sign the document const signedDoc = await agent.createDocument(JSON.stringify(content)); // Parse the result const doc = JSON.parse(signedDoc); console.log('Document ID:', doc.jacsId); console.log('Version:', doc.jacsVersion); console.log('Signature:', doc.jacsSignature ? 'Present' : 'Missing'); return doc;\n} createSignedDocument();","breadcrumbs":"Node.js Examples » Creating and Signing Documents","id":"1351","title":"Creating and Signing Documents"},"1352":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function verifyDocument(filePath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read the document const docString = fs.readFileSync(filePath, 'utf-8'); // Verify signature const isValid = await agent.verifyDocument(docString); if (isValid) { console.log('✓ Document signature is valid'); const doc = JSON.parse(docString); console.log(' Signed by:', doc.jacsSignature?.agentID); console.log(' Signed at:', doc.jacsSignature?.date); } else { console.log('✗ Document signature is INVALID'); } return isValid;\n} verifyDocument('./invoice.json');","breadcrumbs":"Node.js Examples » Verifying Documents","id":"1352","title":"Verifying Documents"},"1353":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function updateDocument(originalPath, newContent) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read original document const originalDoc = fs.readFileSync(originalPath, 'utf-8'); // Update with new content (preserves version chain) const updatedDoc = await agent.updateDocument( originalDoc, JSON.stringify(newContent) ); const doc = JSON.parse(updatedDoc); console.log('Updated Document ID:', doc.jacsId); console.log('New Version:', doc.jacsVersion); return doc;\n} // Usage\nconst updated = await updateDocument('./invoice-v1.json', { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', status: 'paid' // New field\n});","breadcrumbs":"Node.js Examples » Updating Documents","id":"1353","title":"Updating Documents"},"1354":{"body":"","breadcrumbs":"Node.js Examples » HTTP Server with Express","id":"1354","title":"HTTP Server with Express"},"1355":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { JacsAgent } from '@hai.ai/jacs'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Health check (no JACS)\napp.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() });\n}); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Echo endpoint\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', requirePayload, (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : null; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); // Create document endpoint\napp.post('/api/documents', requirePayload, async (req, res) => { try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); app.listen(PORT, () => { console.log(`JACS Express server running on port ${PORT}`);\n});","breadcrumbs":"Node.js Examples » Complete Express Server","id":"1355","title":"Complete Express Server"},"1356":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function callJacsApi(url, payload) { const agent = new JacsAgent(); await agent.load('./jacs.client.config.json'); // Sign the request const signedRequest = await agent.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify and extract response const responseText = await response.text(); const verified = await agent.verifyResponse(responseText); return verified.payload;\n} // Usage\nasync function main() { // Call echo endpoint const echoResult = await callJacsApi( 'http://localhost:3000/api/echo', { message: 'Hello, server!' } ); console.log('Echo:', echoResult); // Call calculate endpoint const calcResult = await callJacsApi( 'http://localhost:3000/api/calculate', { operation: 'multiply', a: 7, b: 6 } ); console.log('Calculate:', calcResult);\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » HTTP Client","id":"1356","title":"HTTP Client"},"1357":{"body":"","breadcrumbs":"Node.js Examples » MCP Integration","id":"1357","title":"MCP Integration"},"1358":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; const JACS_CONFIG = \"./jacs.server.config.json\"; async function main() { console.error(\"JACS MCP Server starting...\"); // Create transport with JACS encryption const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG, \"server\" ); // Create MCP server const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"calculate\", { operation: z.enum([\"add\", \"subtract\", \"multiply\", \"divide\"]), a: z.number(), b: z.number() }, async ({ operation, a, b }) => { let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : 'undefined'; break; } return { content: [{ type: \"text\", text: `${a} ${operation} ${b} = ${result}` }] }; }); // Register resource server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: JSON.stringify({ name: \"JACS Demo Server\", version: \"1.0.0\", capabilities: [\"echo\", \"calculate\"] }), mimeType: \"application/json\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"Node.js Examples » MCP Server","id":"1358","title":"MCP Server"},"1359":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const JACS_CONFIG = \"./jacs.client.config.json\"; async function main() { console.log(\"JACS MCP Client starting...\"); // Connect to server const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp-server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG, \"client\" ); const client = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await client.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await client.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo const echoResult = await client.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo:\", echoResult.content[0].text); // Call calculate const calcResult = await client.callTool({ name: \"calculate\", arguments: { operation: \"multiply\", a: 6, b: 7 } }); console.log(\"Calculate:\", calcResult.content[0].text); await client.close(); console.log(\"Done!\");\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » MCP Client","id":"1359","title":"MCP Client"},"136":{"body":"# Verify a document\njacs document verify -f ./document.json # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -f ./document.json -s ./schema.json # Verbose output\njacs document verify -f ./document.json -v Options: Option Short Description -f --filename Path to document file -d --directory Path to directory of documents -s --schema Path to JSON schema for validation -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Usage » Verify Document","id":"136","title":"Verify Document"},"1360":{"body":"","breadcrumbs":"Node.js Examples » Agreements","id":"1360","title":"Agreements"},"1361":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function createAgreement() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create the contract document const contract = { type: 'service_agreement', title: 'Professional Services Agreement', parties: ['Company A', 'Company B'], terms: 'Terms and conditions here...', value: 50000, effectiveDate: '2024-02-01' }; const signedContract = await agent.createDocument(JSON.stringify(contract)); // Get agent IDs (replace with actual UUIDs) const agentIds = [ 'agent1-uuid-here', 'agent2-uuid-here' ]; // Create agreement const agreementDoc = await agent.createAgreement( signedContract, agentIds, 'Do you agree to the terms of this service agreement?', 'This is a legally binding agreement' ); console.log('Agreement created'); const doc = JSON.parse(agreementDoc); console.log('Document ID:', doc.jacsId); console.log('Required signatures:', doc.jacsAgreement?.agentIDs?.length); // Save for signing fs.writeFileSync('agreement-pending.json', agreementDoc); return doc;\n} createAgreement();","breadcrumbs":"Node.js Examples » Creating Multi-Party Agreements","id":"1361","title":"Creating Multi-Party Agreements"},"1362":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function signAgreement(agreementPath, outputPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read agreement const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); // Sign agreement const signedAgreement = await agent.signAgreement(agreementDoc); // Check status const statusJson = await agent.checkAgreement(signedAgreement); const status = JSON.parse(statusJson); console.log('Agreement signed'); console.log('Status:', status.complete ? 'Complete' : 'Pending'); console.log('Signatures:', status.signatures?.length || 0); // Save fs.writeFileSync(outputPath, signedAgreement); return status;\n} signAgreement('./agreement-pending.json', './agreement-signed.json');","breadcrumbs":"Node.js Examples » Signing Agreements","id":"1362","title":"Signing Agreements"},"1363":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function checkAgreementStatus(agreementPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); const statusJson = await agent.checkAgreement(agreementDoc); const status = JSON.parse(statusJson); console.log('Agreement Status:'); console.log(' Complete:', status.complete); console.log(' Required agents:', status.requiredAgents); console.log(' Signed by:', status.signedBy || []); console.log(' Missing:', status.missing || []); return status;\n} checkAgreementStatus('./agreement.json');","breadcrumbs":"Node.js Examples » Checking Agreement Status","id":"1363","title":"Checking Agreement Status"},"1364":{"body":"","breadcrumbs":"Node.js Examples » Document Store","id":"1364","title":"Document Store"},"1365":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class JacsDocumentStore { constructor(configPath, dataDir = './documents') { this.configPath = configPath; this.dataDir = dataDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.dataDir)) { fs.mkdirSync(this.dataDir, { recursive: true }); } } async create(content) { const signedDoc = await this.agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); const filename = `${doc.jacsId}.json`; const filepath = path.join(this.dataDir, filename); fs.writeFileSync(filepath, signedDoc); return { id: doc.jacsId, version: doc.jacsVersion, path: filepath }; } async get(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return null; } const docString = fs.readFileSync(filepath, 'utf-8'); return JSON.parse(docString); } async verify(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return { valid: false, error: 'Document not found' }; } const docString = fs.readFileSync(filepath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); return { valid: isValid, document: JSON.parse(docString) }; } list() { const files = fs.readdirSync(this.dataDir); return files .filter(f => f.endsWith('.json')) .map(f => f.replace('.json', '')); }\n} // Usage\nasync function main() { const store = new JacsDocumentStore('./jacs.config.json'); await store.initialize(); // Create document const result = await store.create({ type: 'note', title: 'Meeting Notes', content: 'Discussed project timeline...' }); console.log('Created:', result.id); // Verify document const verification = await store.verify(result.id); console.log('Valid:', verification.valid); // List all documents const docs = store.list(); console.log('Documents:', docs);\n} main();","breadcrumbs":"Node.js Examples » Simple File-Based Store","id":"1365","title":"Simple File-Based Store"},"1366":{"body":"","breadcrumbs":"Node.js Examples » Error Handling","id":"1366","title":"Error Handling"},"1367":{"body":"import { JacsAgent } from '@hai.ai/jacs'; class JacsError extends Error { constructor(message, code, details = {}) { super(message); this.name = 'JacsError'; this.code = code; this.details = details; }\n} async function robustDocumentCreate(configPath, content) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const signedDoc = await agent.createDocument(JSON.stringify(content)); return JSON.parse(signedDoc); } catch (error) { throw new JacsError( 'Failed to create document', 'CREATE_ERROR', { originalError: error.message, content } ); }\n} async function robustDocumentVerify(configPath, docString) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const isValid = await agent.verifyDocument(docString); return { valid: isValid }; } catch (error) { throw new JacsError( 'Verification error', 'VERIFY_ERROR', { originalError: error.message } ); }\n} // Usage with error handling\nasync function main() { try { const doc = await robustDocumentCreate('./jacs.config.json', { title: 'Test' }); console.log('Created:', doc.jacsId); } catch (error) { if (error instanceof JacsError) { console.error(`JACS Error [${error.code}]:`, error.message); console.error('Details:', error.details); } else { console.error('Unexpected error:', error); } }\n} main();","breadcrumbs":"Node.js Examples » Robust Error Handling Pattern","id":"1367","title":"Robust Error Handling Pattern"},"1368":{"body":"","breadcrumbs":"Node.js Examples » Testing","id":"1368","title":"Testing"},"1369":{"body":"// tests/jacs.test.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Operations', () => { let agent; let tempDir; let configPath; beforeAll(async () => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); // Initialize agent agent = new JacsAgent(); await agent.load(configPath); }); afterAll(() => { fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', async () => { const content = { title: 'Test Document', value: 42 }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); expect(doc.jacsId).toBeDefined(); expect(doc.jacsVersion).toBeDefined(); expect(doc.jacsSignature).toBeDefined(); expect(doc.title).toBe('Test Document'); }); test('verifies a valid document', async () => { const content = { title: 'Verify Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const isValid = await agent.verifyDocument(signedDoc); expect(isValid).toBe(true); }); test('detects tampered document', async () => { const content = { title: 'Tamper Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); // Tamper with document const doc = JSON.parse(signedDoc); doc.title = 'Modified Title'; const tamperedDoc = JSON.stringify(doc); const isValid = await agent.verifyDocument(tamperedDoc); expect(isValid).toBe(false); });\n});","breadcrumbs":"Node.js Examples » Jest Test Setup","id":"1369","title":"Jest Test Setup"},"137":{"body":"# Extract embedded content from a document\njacs document extract -f ./document.json # Extract from all documents in directory\njacs document extract -d ./documents/","breadcrumbs":"CLI Usage » Extract Embedded Content","id":"137","title":"Extract Embedded Content"},"1370":{"body":"Node.js Installation - Setup guide Node.js API Reference - Complete API documentation MCP Integration - MCP details HTTP Server - HTTP integration","breadcrumbs":"Node.js Examples » See Also","id":"1370","title":"See Also"},"1371":{"body":"This chapter provides practical Python examples using the jacs (jacspy) package.","breadcrumbs":"Python Examples » Python Examples","id":"1371","title":"Python Examples"},"1372":{"body":"# Install dependencies\npip install jacs fastmcp fastapi uvicorn # Initialize JACS\nimport jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Python Examples » Setup","id":"1372","title":"Setup"},"1373":{"body":"","breadcrumbs":"Python Examples » Basic Document Operations","id":"1373","title":"Basic Document Operations"},"1374":{"body":"import jacs\nimport json def create_signed_document(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create document content content = { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ] } # Create and sign the document signed_doc = agent.create_document(json.dumps(content)) # Parse the result doc = json.loads(signed_doc) print(f\"Document ID: {doc['jacsId']}\") print(f\"Version: {doc['jacsVersion']}\") print(f\"Signature: {'Present' if 'jacsSignature' in doc else 'Missing'}\") return doc if __name__ == \"__main__\": create_signed_document()","breadcrumbs":"Python Examples » Creating and Signing Documents","id":"1374","title":"Creating and Signing Documents"},"1375":{"body":"import jacs\nimport json def verify_document(file_path: str) -> bool: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read the document with open(file_path, 'r') as f: doc_string = f.read() # Verify signature is_valid = agent.verify_document(doc_string) if is_valid: doc = json.loads(doc_string) print(\"✓ Document signature is valid\") print(f\" Signed by: {doc.get('jacsSignature', {}).get('agentID')}\") print(f\" Signed at: {doc.get('jacsSignature', {}).get('date')}\") else: print(\"✗ Document signature is INVALID\") return is_valid if __name__ == \"__main__\": verify_document('./invoice.json')","breadcrumbs":"Python Examples » Verifying Documents","id":"1375","title":"Verifying Documents"},"1376":{"body":"import jacs\nimport json def update_document(original_path: str, new_content: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read original document with open(original_path, 'r') as f: original_doc = f.read() # Update with new content (preserves version chain) updated_doc = agent.update_document( original_doc, json.dumps(new_content) ) doc = json.loads(updated_doc) print(f\"Updated Document ID: {doc['jacsId']}\") print(f\"New Version: {doc['jacsVersion']}\") return doc if __name__ == \"__main__\": updated = update_document('./invoice-v1.json', { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"status\": \"paid\" # New field })","breadcrumbs":"Python Examples » Updating Documents","id":"1376","title":"Updating Documents"},"1377":{"body":"","breadcrumbs":"Python Examples » HTTP Server with FastAPI","id":"1377","title":"HTTP Server with FastAPI"},"1378":{"body":"from fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI(title=\"JACS API\") # Initialize JACS agent at startup\nagent = None @app.on_event(\"startup\")\nasync def startup(): global agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Health check (no JACS)\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"ok\"} # JACS-protected endpoint\n@app.post(\"/api/echo\")\nasync def echo(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Process and respond result = { \"echo\": payload, \"serverTime\": str(datetime.now()) } # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Create document endpoint\n@app.post(\"/api/documents\")\nasync def create_document(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Create signed document signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc['jacsId'], \"version\": doc['jacsVersion'] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Calculate endpoint\n@app.post(\"/api/calculate\")\nasync def calculate(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") operation = payload.get('operation') a = payload.get('a', 0) b = payload.get('b', 0) if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else None else: raise HTTPException(status_code=400, detail=\"Unknown operation\") response = {\"operation\": operation, \"a\": a, \"b\": b, \"result\": result} signed_response = jacs.sign_response(response) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » Complete FastAPI Server","id":"1378","title":"Complete FastAPI Server"},"1379":{"body":"import jacs\nimport requests\nimport json def call_jacs_api(url: str, payload: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) if response.status_code != 200: raise Exception(f\"HTTP {response.status_code}\") # Verify and extract response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') if __name__ == \"__main__\": # Call echo endpoint echo_result = call_jacs_api( 'http://localhost:8000/api/echo', {\"message\": \"Hello, server!\"} ) print(\"Echo:\", echo_result) # Call calculate endpoint calc_result = call_jacs_api( 'http://localhost:8000/api/calculate', {\"operation\": \"multiply\", \"a\": 7, \"b\": 6} ) print(\"Calculate:\", calc_result)","breadcrumbs":"Python Examples » HTTP Client","id":"1379","title":"HTTP Client"},"138":{"body":"# Create an agreement requiring signatures from specified agents\njacs document create-agreement -f ./document.json -i agent1-uuid,agent2-uuid # Check agreement status\njacs document check-agreement -f ./document.json # Sign an agreement\njacs document sign-agreement -f ./document.json Create Agreement Options: Option Short Required Description -f --filename Yes Path to document -i --agentids Yes Comma-separated list of agent UUIDs -o --output No Output filename --no-save -n No Print to stdout","breadcrumbs":"CLI Usage » Agreement Commands","id":"138","title":"Agreement Commands"},"1380":{"body":"","breadcrumbs":"Python Examples » MCP Integration","id":"1380","title":"MCP Integration"},"1381":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create FastMCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"JACS Demo Server\")) @mcp.tool()\ndef echo(message: str) -> str: \"\"\"Echo the input message\"\"\" return f\"Echo: {message}\" @mcp.tool()\ndef calculate(operation: str, a: float, b: float) -> str: \"\"\"Perform basic arithmetic\"\"\" if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else \"undefined\" else: return f\"Unknown operation: {operation}\" return f\"{a} {operation} {b} = {result}\" @mcp.resource(\"info://server\")\ndef server_info() -> str: \"\"\"Get server information\"\"\" return json.dumps({ \"name\": \"JACS Demo Server\", \"version\": \"1.0.0\", \"tools\": [\"echo\", \"calculate\"] }) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS MCP Server...\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » FastMCP Server with JACS","id":"1381","title":"FastMCP Server with JACS"},"1382":{"body":"import asyncio\nimport jacs\nfrom jacs.mcp import JACSMCPClient async def main(): # Initialize JACS agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Create authenticated client client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: # Call echo tool echo_result = await client.call_tool(\"echo\", { \"message\": \"Hello from JACS client!\" }) print(f\"Echo: {echo_result}\") # Call calculate tool calc_result = await client.call_tool(\"calculate\", { \"operation\": \"multiply\", \"a\": 6, \"b\": 7 }) print(f\"Calculate: {calc_result}\") # Read resource info = await client.read_resource(\"info://server\") print(f\"Server info: {info}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"Python Examples » MCP Client with JACS","id":"1382","title":"MCP Client with JACS"},"1383":{"body":"","breadcrumbs":"Python Examples » Agreements","id":"1383","title":"Agreements"},"1384":{"body":"import jacs\nimport json def create_agreement(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create contract document contract = { \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"Terms and conditions here...\", \"value\": 50000, \"effectiveDate\": \"2024-02-01\" } signed_contract = agent.create_document(json.dumps(contract)) # Define required signers (replace with actual UUIDs) agent_ids = [ \"agent1-uuid-here\", \"agent2-uuid-here\" ] # Create agreement agreement_doc = agent.create_agreement( signed_contract, agent_ids, question=\"Do you agree to the terms of this service agreement?\", context=\"This is a legally binding agreement\" ) doc = json.loads(agreement_doc) print(\"Agreement created\") print(f\"Document ID: {doc['jacsId']}\") print(f\"Required signatures: {len(doc.get('jacsAgreement', {}).get('agentIDs', []))}\") # Save for signing with open('agreement-pending.json', 'w') as f: f.write(agreement_doc) return doc if __name__ == \"__main__\": create_agreement()","breadcrumbs":"Python Examples » Creating Multi-Party Agreements","id":"1384","title":"Creating Multi-Party Agreements"},"1385":{"body":"import jacs\nimport json def sign_agreement(agreement_path: str, output_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read agreement with open(agreement_path, 'r') as f: agreement_doc = f.read() # Sign agreement signed_agreement = agent.sign_agreement(agreement_doc) # Check status status_json = agent.check_agreement(signed_agreement) status = json.loads(status_json) print(\"Agreement signed\") print(f\"Status: {'Complete' if status.get('complete') else 'Pending'}\") print(f\"Signatures: {len(status.get('signatures', []))}\") # Save with open(output_path, 'w') as f: f.write(signed_agreement) return status if __name__ == \"__main__\": sign_agreement('./agreement-pending.json', './agreement-signed.json')","breadcrumbs":"Python Examples » Signing Agreements","id":"1385","title":"Signing Agreements"},"1386":{"body":"import jacs\nimport json def check_agreement_status(agreement_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') with open(agreement_path, 'r') as f: agreement_doc = f.read() status_json = agent.check_agreement(agreement_doc) status = json.loads(status_json) print(\"Agreement Status:\") print(f\" Complete: {status.get('complete')}\") print(f\" Required agents: {status.get('requiredAgents', [])}\") print(f\" Signed by: {status.get('signedBy', [])}\") print(f\" Missing: {status.get('missing', [])}\") return status if __name__ == \"__main__\": check_agreement_status('./agreement.json')","breadcrumbs":"Python Examples » Checking Agreement Status","id":"1386","title":"Checking Agreement Status"},"1387":{"body":"","breadcrumbs":"Python Examples » Document Store","id":"1387","title":"Document Store"},"1388":{"body":"import jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Optional, Dict, List class JacsDocumentStore: def __init__(self, config_path: str, data_dir: str = './documents'): self.config_path = config_path self.data_dir = Path(data_dir) self.agent = None def initialize(self): self.agent = jacs.JacsAgent() self.agent.load(self.config_path) self.data_dir.mkdir(parents=True, exist_ok=True) def create(self, content: dict) -> dict: signed_doc = self.agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = self.data_dir / filename with open(filepath, 'w') as f: f.write(signed_doc) return { 'id': doc['jacsId'], 'version': doc['jacsVersion'], 'path': str(filepath) } def get(self, document_id: str) -> Optional[dict]: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return None with open(filepath, 'r') as f: return json.load(f) def verify(self, document_id: str) -> dict: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return {'valid': False, 'error': 'Document not found'} with open(filepath, 'r') as f: doc_string = f.read() is_valid = self.agent.verify_document(doc_string) return {'valid': is_valid, 'document': json.loads(doc_string)} def list(self) -> List[str]: return [ f.stem for f in self.data_dir.glob('*.json') ] if __name__ == \"__main__\": store = JacsDocumentStore('./jacs.config.json') store.initialize() # Create document result = store.create({ 'type': 'note', 'title': 'Meeting Notes', 'content': 'Discussed project timeline...' }) print(f\"Created: {result['id']}\") # Verify document verification = store.verify(result['id']) print(f\"Valid: {verification['valid']}\") # List all documents docs = store.list() print(f\"Documents: {docs}\")","breadcrumbs":"Python Examples » Simple File-Based Store","id":"1388","title":"Simple File-Based Store"},"1389":{"body":"","breadcrumbs":"Python Examples » Batch Processing","id":"1389","title":"Batch Processing"},"139":{"body":"The CLI respects the following environment variables: # Use a specific configuration file\nJACS_CONFIG_PATH=./custom-config.json jacs agent verify # Override settings\nJACS_DATA_DIRECTORY=./data jacs document create -f ./doc.json\nJACS_KEY_DIRECTORY=./keys jacs agent create --create-keys true","breadcrumbs":"CLI Usage » Environment Variables","id":"139","title":"Environment Variables"},"1390":{"body":"import jacs\nimport json\nfrom pathlib import Path\nfrom concurrent.futures import ThreadPoolExecutor class BatchDocumentProcessor: def __init__(self, config_path: str): self.config_path = config_path def create_documents(self, documents: list, output_dir: str) -> list: \"\"\"Create multiple signed documents\"\"\" output_path = Path(output_dir) output_path.mkdir(parents=True, exist_ok=True) results = [] # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) for i, content in enumerate(documents): try: signed_doc = agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = output_path / filename with open(filepath, 'w') as f: f.write(signed_doc) results.append({ 'success': True, 'index': i, 'id': doc['jacsId'], 'path': str(filepath) }) except Exception as e: results.append({ 'success': False, 'index': i, 'error': str(e) }) return results def verify_documents(self, input_dir: str) -> list: \"\"\"Verify all documents in a directory\"\"\" input_path = Path(input_dir) # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) results = [] for filepath in input_path.glob('*.json'): try: with open(filepath, 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string) doc = json.loads(doc_string) results.append({ 'file': filepath.name, 'valid': is_valid, 'id': doc.get('jacsId') }) except Exception as e: results.append({ 'file': filepath.name, 'valid': False, 'error': str(e) }) return results if __name__ == \"__main__\": processor = BatchDocumentProcessor('./jacs.config.json') # Create batch of documents documents = [ {'type': 'invoice', 'number': f'INV-{i:03d}', 'amount': i * 100} for i in range(1, 11) ] results = processor.create_documents(documents, './batch-output') success_count = sum(1 for r in results if r['success']) print(f\"Created {success_count}/{len(documents)} documents\") # Verify all documents verification_results = processor.verify_documents('./batch-output') valid_count = sum(1 for r in verification_results if r['valid']) print(f\"Valid: {valid_count}/{len(verification_results)} documents\")","breadcrumbs":"Python Examples » Batch Document Creator","id":"1390","title":"Batch Document Creator"},"1391":{"body":"","breadcrumbs":"Python Examples » Testing","id":"1391","title":"Testing"},"1392":{"body":"# tests/test_jacs.py\nimport pytest\nimport jacs\nimport json\nimport tempfile\nimport shutil\nfrom pathlib import Path @pytest.fixture\ndef jacs_agent(): \"\"\"Create a test JACS agent with temporary directories\"\"\" temp_dir = tempfile.mkdtemp() data_dir = Path(temp_dir) / 'data' key_dir = Path(temp_dir) / 'keys' data_dir.mkdir() key_dir.mkdir() config = { 'jacs_data_directory': str(data_dir), 'jacs_key_directory': str(key_dir), 'jacs_agent_key_algorithm': 'ring-Ed25519', 'jacs_default_storage': 'fs' } config_path = Path(temp_dir) / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f) agent = jacs.JacsAgent() agent.load(str(config_path)) yield agent shutil.rmtree(temp_dir) class TestDocumentOperations: def test_create_document(self, jacs_agent): content = {'title': 'Test Document', 'value': 42} signed_doc = jacs_agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) assert 'jacsId' in doc assert 'jacsVersion' in doc assert 'jacsSignature' in doc assert doc['title'] == 'Test Document' def test_verify_valid_document(self, jacs_agent): content = {'title': 'Verify Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) is_valid = jacs_agent.verify_document(signed_doc) assert is_valid is True def test_detect_tampered_document(self, jacs_agent): content = {'title': 'Tamper Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) # Tamper with document doc = json.loads(signed_doc) doc['title'] = 'Modified Title' tampered_doc = json.dumps(doc) is_valid = jacs_agent.verify_document(tampered_doc) assert is_valid is False def test_different_content_different_signatures(self, jacs_agent): doc1 = jacs_agent.create_document(json.dumps({'a': 1})) doc2 = jacs_agent.create_document(json.dumps({'a': 2})) parsed1 = json.loads(doc1) parsed2 = json.loads(doc2) sig1 = parsed1['jacsSignature']['signature'] sig2 = parsed2['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Python Examples » Pytest Setup","id":"1392","title":"Pytest Setup"},"1393":{"body":"","breadcrumbs":"Python Examples » Error Handling","id":"1393","title":"Error Handling"},"1394":{"body":"import jacs\nimport json\nfrom typing import Optional class JacsError(Exception): def __init__(self, message: str, code: str, details: dict = None): super().__init__(message) self.code = code self.details = details or {} def robust_create_document(config_path: str, content: dict) -> dict: \"\"\"Create a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except FileNotFoundError: raise JacsError( \"Configuration file not found\", \"CONFIG_NOT_FOUND\", {\"path\": config_path} ) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) except Exception as e: raise JacsError( \"Failed to create document\", \"CREATE_ERROR\", {\"original_error\": str(e), \"content\": content} ) def robust_verify_document(config_path: str, doc_string: str) -> dict: \"\"\"Verify a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: is_valid = agent.verify_document(doc_string) return {\"valid\": is_valid} except Exception as e: raise JacsError( \"Verification error\", \"VERIFY_ERROR\", {\"original_error\": str(e)} ) if __name__ == \"__main__\": try: doc = robust_create_document('./jacs.config.json', {'title': 'Test'}) print(f\"Created: {doc['jacsId']}\") except JacsError as e: print(f\"JACS Error [{e.code}]: {e}\") print(f\"Details: {e.details}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"Python Examples » Robust Error Handling Pattern","id":"1394","title":"Robust Error Handling Pattern"},"1395":{"body":"Python Installation - Setup guide Python API Reference - Complete API documentation Python MCP Integration - MCP details","breadcrumbs":"Python Examples » See Also","id":"1395","title":"See Also"},"1396":{"body":"This chapter provides complete, production-ready integration examples combining multiple JACS features.","breadcrumbs":"Integration Examples » Integration Examples","id":"1396","title":"Integration Examples"},"1397":{"body":"A complete example of a contract signing workflow with multiple agents.","breadcrumbs":"Integration Examples » Multi-Agent Contract Signing System","id":"1397","title":"Multi-Agent Contract Signing System"},"1398":{"body":"┌──────────────┐ ┌──────────────┐ ┌──────────────┐\n│ Seller │ │ Contract │ │ Buyer │\n│ Agent │────>│ Document │<────│ Agent │\n└──────────────┘ └──────────────┘ └──────────────┘ │ │ │ └────────────────────┼────────────────────┘ ↓ ┌──────────────┐ │ Signed │ │ Agreement │ └──────────────┘","breadcrumbs":"Integration Examples » Overview","id":"1398","title":"Overview"},"1399":{"body":"// contract-system.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; class ContractSigningSystem { constructor() { this.agents = new Map(); } async registerAgent(name, configPath) { const agent = new JacsAgent(); await agent.load(configPath); this.agents.set(name, { agent, configPath }); return agent; } async createContract(content, sellerName) { const seller = this.agents.get(sellerName); if (!seller) throw new Error(`Agent ${sellerName} not found`); // Create and sign the contract const signedContract = await seller.agent.createDocument( JSON.stringify(content) ); return JSON.parse(signedContract); } async createAgreement(contract, agentNames, question) { const firstAgent = this.agents.get(agentNames[0]); if (!firstAgent) throw new Error(`Agent ${agentNames[0]} not found`); // Get agent IDs const agentIds = []; for (const name of agentNames) { const agent = this.agents.get(name); if (!agent) throw new Error(`Agent ${name} not found`); // Get agent ID from config const config = JSON.parse(fs.readFileSync(agent.configPath, 'utf-8')); agentIds.push(config.jacs_agent_id_and_version.split(':')[0]); } const agreementDoc = await firstAgent.agent.createAgreement( JSON.stringify(contract), agentIds, question, 'Legal contract requiring signatures from all parties' ); return JSON.parse(agreementDoc); } async signAgreement(agreement, agentName) { const agent = this.agents.get(agentName); if (!agent) throw new Error(`Agent ${agentName} not found`); const signedDoc = await agent.agent.signAgreement( JSON.stringify(agreement) ); return JSON.parse(signedDoc); } async checkAgreementStatus(agreement, agentName) { const agent = this.agents.get(agentName); if (!agent) throw new Error(`Agent ${agentName} not found`); const statusJson = await agent.agent.checkAgreement( JSON.stringify(agreement) ); return JSON.parse(statusJson); }\n} // Usage\nasync function runContractWorkflow() { const system = new ContractSigningSystem(); // Register agents await system.registerAgent('seller', './seller.config.json'); await system.registerAgent('buyer', './buyer.config.json'); // Create contract const contract = await system.createContract({ type: 'purchase_agreement', parties: { seller: 'Widget Corp', buyer: 'Acme Inc' }, items: [ { name: 'Premium Widgets', quantity: 1000, unitPrice: 10.00 } ], totalValue: 10000, terms: 'Payment due within 30 days of delivery', effectiveDate: new Date().toISOString() }, 'seller'); console.log('Contract created:', contract.jacsId); // Create agreement const agreement = await system.createAgreement( contract, ['seller', 'buyer'], 'Do you agree to the terms of this purchase agreement?' ); console.log('Agreement created, awaiting signatures'); // Seller signs let signedAgreement = await system.signAgreement(agreement, 'seller'); console.log('Seller signed'); // Check status let status = await system.checkAgreementStatus(signedAgreement, 'seller'); console.log('Status after seller:', status.complete ? 'Complete' : 'Pending'); // Buyer signs signedAgreement = await system.signAgreement(signedAgreement, 'buyer'); console.log('Buyer signed'); // Final status status = await system.checkAgreementStatus(signedAgreement, 'buyer'); console.log('Final status:', status.complete ? 'Complete' : 'Pending'); // Save completed agreement fs.writeFileSync( './completed-agreement.json', JSON.stringify(signedAgreement, null, 2) ); return signedAgreement;\n} runContractWorkflow().catch(console.error);","breadcrumbs":"Integration Examples » Implementation","id":"1399","title":"Implementation"},"14":{"body":"With built-in observability, multiple storage backends, and comprehensive error handling, JACS is ready for production AI systems.","breadcrumbs":"Introduction » 🚀 Production Ready","id":"14","title":"🚀 Production Ready"},"140":{"body":"","breadcrumbs":"CLI Usage » Common Workflows","id":"140","title":"Common Workflows"},"1400":{"body":"A complete API gateway that authenticates requests and provides MCP tools.","breadcrumbs":"Integration Examples » Secure API Gateway with MCP Tools","id":"1400","title":"Secure API Gateway with MCP Tools"},"1401":{"body":"// api-gateway.js\nimport express from 'express';\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { JacsAgent } from '@hai.ai/jacs';\nimport { z } from 'zod'; // Initialize Express\nconst app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Create MCP server with tools\nconst mcpServer = new McpServer({ name: \"secure-api-gateway\", version: \"1.0.0\"\n}); // Document operations tool\nmcpServer.tool(\"create_document\", { content: z.object({}).passthrough().describe(\"Document content\"), type: z.string().optional().describe(\"Document type\")\n}, async ({ content, type }) => { const doc = await agent.createDocument(JSON.stringify({ ...content, documentType: type || 'generic' })); const parsed = JSON.parse(doc); return { content: [{ type: \"text\", text: JSON.stringify({ success: true, documentId: parsed.jacsId, version: parsed.jacsVersion }) }] };\n}); mcpServer.tool(\"verify_document\", { document: z.string().describe(\"JSON document string to verify\")\n}, async ({ document }) => { try { const isValid = await agent.verifyDocument(document); return { content: [{ type: \"text\", text: JSON.stringify({ valid: isValid }) }] }; } catch (error) { return { content: [{ type: \"text\", text: JSON.stringify({ valid: false, error: error.message }) }] }; }\n}); // Health check (unauthenticated)\napp.get('/health', (req, res) => { res.json({ status: 'healthy', timestamp: new Date().toISOString() });\n}); // REST API routes (JACS authenticated)\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Document REST endpoint\napp.post('/api/documents', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); app.post('/api/documents/verify', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } try { const isValid = await agent.verifyDocument( JSON.stringify(req.jacsPayload.document) ); res.send({ valid: isValid }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // MCP SSE endpoint (JACS authenticated)\nconst activeSessions = new Map(); app.get('/mcp/sse', async (req, res) => { const sessionId = Date.now().toString(); // Create SSE transport with JACS const baseTransport = new SSEServerTransport('/mcp/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server' ); activeSessions.set(sessionId, { transport: secureTransport, res }); // Connect MCP server await mcpServer.connect(secureTransport); res.on('close', () => { activeSessions.delete(sessionId); });\n}); app.post('/mcp/messages', express.text({ type: '*/*' }), async (req, res) => { // Find the active session and handle the message for (const [id, session] of activeSessions) { try { await session.transport.handlePostMessage(req, res, req.body); return; } catch (error) { // Try next session } } res.status(404).send({ error: 'No active session' });\n}); // Start server\napp.listen(PORT, () => { console.log(`Secure API Gateway running on port ${PORT}`); console.log(` REST API: http://localhost:${PORT}/api`); console.log(` MCP SSE: http://localhost:${PORT}/mcp/sse`);\n});","breadcrumbs":"Integration Examples » Node.js Implementation","id":"1401","title":"Node.js Implementation"},"1402":{"body":"# api_gateway.py\nfrom fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn\nimport json app = FastAPI(title=\"Secure API Gateway\") # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create MCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"secure-api-gateway\")) @mcp.tool()\ndef create_document(content: dict, document_type: str = \"generic\") -> str: \"\"\"Create a signed JACS document\"\"\" doc_content = {**content, \"documentType\": document_type} signed_doc = agent.create_document(json.dumps(doc_content)) parsed = json.loads(signed_doc) return json.dumps({ \"success\": True, \"documentId\": parsed[\"jacsId\"], \"version\": parsed[\"jacsVersion\"] }) @mcp.tool()\ndef verify_document(document: str) -> str: \"\"\"Verify a JACS document signature\"\"\" try: is_valid = agent.verify_document(document) return json.dumps({\"valid\": is_valid}) except Exception as e: return json.dumps({\"valid\": False, \"error\": str(e)}) # Health check\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"healthy\"} # REST API endpoints\n@app.post(\"/api/documents\")\nasync def create_doc(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc[\"jacsId\"], \"version\": doc[\"jacsVersion\"] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) @app.post(\"/api/documents/verify\")\nasync def verify_doc(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") document = payload.get(\"document\") is_valid = agent.verify_document(json.dumps(document)) result = {\"valid\": is_valid} signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Mount MCP SSE endpoint\napp.mount(\"/mcp\", mcp.sse_app()) if __name__ == \"__main__\": print(\"Secure API Gateway running\") print(\" REST API: http://localhost:8000/api\") print(\" MCP SSE: http://localhost:8000/mcp/sse\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Integration Examples » Python Implementation","id":"1402","title":"Python Implementation"},"1403":{"body":"Track and verify document history with cryptographic proofs. // audit-trail.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class AuditTrailSystem { constructor(configPath, auditDir = './audit') { this.configPath = configPath; this.auditDir = auditDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.auditDir)) { fs.mkdirSync(this.auditDir, { recursive: true }); } } async createDocument(content, metadata = {}) { const auditEntry = { action: 'create', timestamp: new Date().toISOString(), content, metadata }; const signedDoc = await this.agent.createDocument( JSON.stringify({ ...content, _audit: auditEntry }) ); const doc = JSON.parse(signedDoc); // Save to audit log await this.logAuditEntry(doc.jacsId, 'create', doc); return doc; } async updateDocument(originalDoc, newContent, metadata = {}) { const auditEntry = { action: 'update', timestamp: new Date().toISOString(), previousVersion: originalDoc.jacsVersion, changes: this.computeChanges(originalDoc, newContent), metadata }; const updatedDoc = await this.agent.updateDocument( JSON.stringify(originalDoc), JSON.stringify({ ...newContent, _audit: auditEntry }) ); const doc = JSON.parse(updatedDoc); // Save to audit log await this.logAuditEntry(doc.jacsId, 'update', doc); return doc; } computeChanges(original, updated) { const changes = []; for (const [key, value] of Object.entries(updated)) { if (key.startsWith('_')) continue; if (!(key in original)) { changes.push({ field: key, type: 'added', newValue: value }); } else if (JSON.stringify(original[key]) !== JSON.stringify(value)) { changes.push({ field: key, type: 'modified', oldValue: original[key], newValue: value }); } } for (const key of Object.keys(original)) { if (key.startsWith('_') || key.startsWith('jacs')) continue; if (!(key in updated)) { changes.push({ field: key, type: 'removed', oldValue: original[key] }); } } return changes; } async logAuditEntry(documentId, action, document) { const logFile = path.join(this.auditDir, `${documentId}.audit.jsonl`); const entry = { timestamp: new Date().toISOString(), action, documentId, version: document.jacsVersion, signature: document.jacsSignature, hash: document.jacsSha256 }; fs.appendFileSync(logFile, JSON.stringify(entry) + '\\n'); } async getAuditTrail(documentId) { const logFile = path.join(this.auditDir, `${documentId}.audit.jsonl`); if (!fs.existsSync(logFile)) { return []; } const lines = fs.readFileSync(logFile, 'utf-8').trim().split('\\n'); return lines.map(line => JSON.parse(line)); } async verifyAuditTrail(documentId) { const trail = await this.getAuditTrail(documentId); const results = []; for (const entry of trail) { // Load and verify each version const docPath = path.join( this.auditDir, 'documents', documentId, `${entry.version}.json` ); if (fs.existsSync(docPath)) { const docString = fs.readFileSync(docPath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); results.push({ version: entry.version, timestamp: entry.timestamp, action: entry.action, valid: isValid }); } else { results.push({ version: entry.version, timestamp: entry.timestamp, action: entry.action, valid: null, error: 'Document file not found' }); } } return results; }\n} // Usage\nasync function runAuditExample() { const audit = new AuditTrailSystem('./jacs.config.json'); await audit.initialize(); // Create a document const doc = await audit.createDocument({ type: 'financial_report', period: 'Q1 2024', revenue: 1000000, expenses: 750000 }, { author: 'Finance Team' }); console.log('Created document:', doc.jacsId); // Update the document const updated = await audit.updateDocument(doc, { type: 'financial_report', period: 'Q1 2024', revenue: 1000000, expenses: 750000, profit: 250000, // Added field status: 'approved' }, { author: 'CFO', reason: 'Added profit calculation' }); console.log('Updated to version:', updated.jacsVersion); // Get audit trail const trail = await audit.getAuditTrail(doc.jacsId); console.log('Audit trail:'); for (const entry of trail) { console.log(` ${entry.timestamp} - ${entry.action} (v${entry.version})`); }\n} runAuditExample().catch(console.error);","breadcrumbs":"Integration Examples » Document Audit Trail System","id":"1403","title":"Document Audit Trail System"},"1404":{"body":"A complete multi-tenant document service with isolated agents per tenant. # multi_tenant.py\nimport jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Dict, Optional class TenantManager: def __init__(self, base_dir: str = './tenants'): self.base_dir = Path(base_dir) self.agents: Dict[str, jacs.JacsAgent] = {} def initialize_tenant(self, tenant_id: str) -> dict: \"\"\"Create a new tenant with its own JACS agent\"\"\" tenant_dir = self.base_dir / tenant_id data_dir = tenant_dir / 'data' key_dir = tenant_dir / 'keys' # Create directories data_dir.mkdir(parents=True, exist_ok=True) key_dir.mkdir(parents=True, exist_ok=True) # Create tenant config config = { \"jacs_data_directory\": str(data_dir), \"jacs_key_directory\": str(key_dir), \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = tenant_dir / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f, indent=2) # Initialize agent agent = jacs.JacsAgent() agent.load(str(config_path)) self.agents[tenant_id] = agent return { \"tenant_id\": tenant_id, \"config_path\": str(config_path), \"initialized\": True } def get_agent(self, tenant_id: str) -> Optional[jacs.JacsAgent]: \"\"\"Get the JACS agent for a tenant\"\"\" if tenant_id not in self.agents: # Try to load existing tenant config_path = self.base_dir / tenant_id / 'jacs.config.json' if config_path.exists(): agent = jacs.JacsAgent() agent.load(str(config_path)) self.agents[tenant_id] = agent return self.agents.get(tenant_id) def create_document(self, tenant_id: str, content: dict) -> dict: \"\"\"Create a document for a tenant\"\"\" agent = self.get_agent(tenant_id) if not agent: raise ValueError(f\"Tenant {tenant_id} not found\") signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) def verify_document(self, tenant_id: str, doc_string: str) -> bool: \"\"\"Verify a document for a tenant\"\"\" agent = self.get_agent(tenant_id) if not agent: raise ValueError(f\"Tenant {tenant_id} not found\") return agent.verify_document(doc_string) def list_tenants(self) -> list: \"\"\"List all tenants\"\"\" if not self.base_dir.exists(): return [] return [ d.name for d in self.base_dir.iterdir() if d.is_dir() and (d / 'jacs.config.json').exists() ] class MultiTenantDocumentService: def __init__(self): self.tenant_manager = TenantManager() def create_tenant(self, tenant_id: str) -> dict: return self.tenant_manager.initialize_tenant(tenant_id) def create_document(self, tenant_id: str, content: dict) -> dict: doc = self.tenant_manager.create_document(tenant_id, content) # Save document tenant_dir = self.tenant_manager.base_dir / tenant_id / 'documents' tenant_dir.mkdir(parents=True, exist_ok=True) doc_path = tenant_dir / f\"{doc['jacsId']}.json\" with open(doc_path, 'w') as f: json.dump(doc, f, indent=2) return { \"tenant_id\": tenant_id, \"document_id\": doc['jacsId'], \"version\": doc['jacsVersion'], \"path\": str(doc_path) } def get_document(self, tenant_id: str, document_id: str) -> Optional[dict]: doc_path = ( self.tenant_manager.base_dir / tenant_id / 'documents' / f\"{document_id}.json\" ) if not doc_path.exists(): return None with open(doc_path, 'r') as f: return json.load(f) def verify_document(self, tenant_id: str, document_id: str) -> dict: doc = self.get_document(tenant_id, document_id) if not doc: return {\"valid\": False, \"error\": \"Document not found\"} is_valid = self.tenant_manager.verify_document( tenant_id, json.dumps(doc) ) return { \"tenant_id\": tenant_id, \"document_id\": document_id, \"valid\": is_valid } # Usage\nif __name__ == \"__main__\": service = MultiTenantDocumentService() # Create tenants tenant1 = service.create_tenant(\"acme-corp\") tenant2 = service.create_tenant(\"globex-inc\") print(f\"Created tenants: {tenant1['tenant_id']}, {tenant2['tenant_id']}\") # Create documents for each tenant doc1 = service.create_document(\"acme-corp\", { \"type\": \"invoice\", \"amount\": 5000, \"customer\": \"John Doe\" }) print(f\"Acme Corp document: {doc1['document_id']}\") doc2 = service.create_document(\"globex-inc\", { \"type\": \"contract\", \"value\": 100000, \"parties\": [\"Globex\", \"Initech\"] }) print(f\"Globex Inc document: {doc2['document_id']}\") # Verify documents verify1 = service.verify_document(\"acme-corp\", doc1['document_id']) verify2 = service.verify_document(\"globex-inc\", doc2['document_id']) print(f\"Acme Corp verification: {verify1['valid']}\") print(f\"Globex Inc verification: {verify2['valid']}\") # Cross-tenant verification should fail cross = service.verify_document(\"acme-corp\", doc2['document_id']) print(f\"Cross-tenant verification: {cross}\")","breadcrumbs":"Integration Examples » Multi-Tenant Document Service","id":"1404","title":"Multi-Tenant Document Service"},"1405":{"body":"Notify external systems when documents are signed. // webhook-notifier.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Webhook configuration\nconst webhooks = new Map(); // Register a webhook\napp.post('/webhooks', express.json(), (req, res) => { const { url, events, secret } = req.body; const webhookId = crypto.randomUUID(); webhooks.set(webhookId, { url, events, secret, active: true }); res.json({ webhookId, message: 'Webhook registered' });\n}); // JACS-protected document endpoints\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); app.post('/api/documents', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } // Create document const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); // Notify webhooks await notifyWebhooks('document.created', { documentId: doc.jacsId, version: doc.jacsVersion, timestamp: new Date().toISOString() }); res.send({ success: true, documentId: doc.jacsId });\n}); async function notifyWebhooks(event, payload) { for (const [id, webhook] of webhooks) { if (!webhook.active) continue; if (!webhook.events.includes(event) && !webhook.events.includes('*')) continue; try { // Sign the webhook payload with JACS const signedPayload = await agent.signRequest({ event, payload, timestamp: new Date().toISOString(), webhookId: id }); // Send webhook const response = await fetch(webhook.url, { method: 'POST', headers: { 'Content-Type': 'text/plain', 'X-JACS-Signature': 'v1', 'X-Webhook-Secret': webhook.secret }, body: signedPayload }); if (!response.ok) { console.error(`Webhook ${id} failed: ${response.status}`); } } catch (error) { console.error(`Webhook ${id} error:`, error.message); } }\n} app.listen(PORT, () => { console.log(`Webhook notification server running on port ${PORT}`);\n});","breadcrumbs":"Integration Examples » Webhook Notification System","id":"1405","title":"Webhook Notification System"},"1406":{"body":"CLI Examples - Command-line examples Node.js Examples - Node.js code examples Python Examples - Python code examples MCP Integration - MCP details Web Servers - HTTP integration","breadcrumbs":"Integration Examples » See Also","id":"1406","title":"See Also"},"1407":{"body":"This page provides a comprehensive reference for all JACS command-line interface commands.","breadcrumbs":"CLI Command Reference » CLI Command Reference","id":"1407","title":"CLI Command Reference"},"1408":{"body":"","breadcrumbs":"CLI Command Reference » Global Commands","id":"1408","title":"Global Commands"},"1409":{"body":"Prints version and build information for the JACS installation. jacs version","breadcrumbs":"CLI Command Reference » jacs version","id":"1409","title":"jacs version"},"141":{"body":"# 1. Initialize (if not done)\njacs init # 2. Create document\njacs document create -f ./my-document.json # 3. Verify the signed document\njacs document verify -f ./jacs_data/[document-id].json","breadcrumbs":"CLI Usage » Create and Sign a Document","id":"141","title":"Create and Sign a Document"},"1410":{"body":"Initialize JACS by creating both configuration and agent (with cryptographic keys). This is typically the first command run when setting up JACS. jacs init","breadcrumbs":"CLI Command Reference » jacs init","id":"1410","title":"jacs init"},"1411":{"body":"Print help information for JACS commands. jacs help [COMMAND]","breadcrumbs":"CLI Command Reference » jacs help","id":"1411","title":"jacs help"},"1412":{"body":"","breadcrumbs":"CLI Command Reference » Configuration Commands","id":"1412","title":"Configuration Commands"},"1413":{"body":"Work with JACS configuration settings. jacs config [SUBCOMMAND] Note: Specific subcommands for config are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs config","id":"1413","title":"jacs config"},"1414":{"body":"","breadcrumbs":"CLI Command Reference » Agent Commands","id":"1414","title":"Agent Commands"},"1415":{"body":"Work with JACS agents - the cryptographic identities that sign and verify documents. jacs agent [SUBCOMMAND] Note: Specific subcommands for agent management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs agent","id":"1415","title":"jacs agent"},"1416":{"body":"","breadcrumbs":"CLI Command Reference » Task Commands","id":"1416","title":"Task Commands"},"1417":{"body":"Work with JACS agent tasks - structured workflows between agents. jacs task [SUBCOMMAND] Note: Specific subcommands for task management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs task","id":"1417","title":"jacs task"},"1418":{"body":"The jacs document command provides comprehensive document management capabilities.","breadcrumbs":"CLI Command Reference » Document Commands","id":"1418","title":"Document Commands"},"1419":{"body":"Create a new JACS document, either by embedding or parsing a document with optional file attachments. Usage: jacs document create [OPTIONS] Options: -a  - Path to the agent file. If not specified, uses config jacs_agent_id_and_version -f  - Path to input file. Must be JSON format -o  - Output filename for the created document -d  - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -n, --no-save - Instead of saving files, print to stdout -s, --schema  - Path to JSON schema file to use for validation --attach  - Path to file or directory for file attachments -e, --embed  - Embed documents or keep them external [possible values: true, false] -h, --help - Print help information Examples: # Create document from JSON file\njacs document create -f my-document.json # Create document with embedded attachment\njacs document create -f document.json --attach ./image.jpg --embed true # Create document with referenced attachment\njacs document create -f document.json --attach ./data.csv --embed false # Create from directory of JSON files\njacs document create -d ./documents/ # Create with custom schema validation\njacs document create -f document.json -s custom-schema.json # Print to stdout instead of saving\njacs document create -f document.json --no-save","breadcrumbs":"CLI Command Reference » jacs document create","id":"1419","title":"jacs document create"},"142":{"body":"# 1. Create agreement on a document\njacs document create-agreement -f ./document.json -i agent1-id,agent2-id # 2. First agent signs\njacs document sign-agreement -f ./document.json # 3. Second agent signs (using their config)\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json # 4. Check agreement is complete\njacs document check-agreement -f ./document.json","breadcrumbs":"CLI Usage » Multi-Agent Agreement","id":"142","title":"Multi-Agent Agreement"},"1420":{"body":"Create a new version of an existing document. Requires both the original JACS file and the modified JACS metadata. Usage: jacs document update [OPTIONS] Options: -a  - Path to the agent file -f  - Path to original document file -n  - Path to new/modified document file -o  - Output filename for updated document -v, --verbose - Enable verbose output -n, --no-save - Print to stdout instead of saving -s, --schema  - Path to JSON schema file for validation --attach  - Path to file or directory for additional attachments -e, --embed  - Embed new attachments or keep them external -h, --help - Print help information Example: # Update document with new version\njacs document update -f original.json -n modified.json -o updated.json # Update and add new attachments\njacs document update -f original.json -n modified.json --attach ./new-file.pdf --embed false","breadcrumbs":"CLI Command Reference » jacs document update","id":"1420","title":"jacs document update"},"1421":{"body":"Verify a document's hash, signatures, and schema compliance. Usage: jacs document verify [OPTIONS] Options: -a  - Path to the agent file -f  - Path to input file. Must be JSON format -d  - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -s, --schema  - Path to JSON schema file to use for validation -h, --help - Print help information Examples: # Verify single document\njacs document verify -f signed-document.json # Verify all documents in directory\njacs document verify -d ./documents/ # Verify with custom schema\njacs document verify -f document.json -s custom-schema.json Verification Process: Hash verification - Confirms document integrity Signature verification - Validates cryptographic signatures Schema validation - Ensures document structure compliance File integrity - Checks SHA256 checksums of attached files","breadcrumbs":"CLI Command Reference » jacs document verify","id":"1421","title":"jacs document verify"},"1422":{"body":"Extract embedded file contents from documents back to the filesystem. Usage: jacs document extract [OPTIONS] Options: -a  - Path to the agent file -f  - Path to input file containing embedded files -d  - Path to directory of files to process -s, --schema  - Path to JSON schema file for validation -h, --help - Print help information Examples: # Extract embedded files from single document\njacs document extract -f document-with-embedded-files.json # Extract from all documents in directory jacs document extract -d ./documents/ Extract Process: Reads embedded file contents from document Decodes base64-encoded data Writes files to their original paths Creates backup of existing files (with timestamp)","breadcrumbs":"CLI Command Reference » jacs document extract","id":"1422","title":"jacs document extract"},"1423":{"body":"JACS provides specialized commands for managing multi-agent agreements. jacs document check-agreement Given a document, provide a list of agents that should sign the document. Usage: jacs document check-agreement [OPTIONS] jacs document create-agreement Create an agreement structure for a document that requires multiple agent signatures. Usage: jacs document create-agreement [OPTIONS] jacs document sign-agreement Sign the agreement section of a document with the current agent's cryptographic signature. Usage: jacs document sign-agreement [OPTIONS]","breadcrumbs":"CLI Command Reference » Agreement Commands","id":"1423","title":"Agreement Commands"},"1424":{"body":"","breadcrumbs":"CLI Command Reference » Common Patterns","id":"1424","title":"Common Patterns"},"1425":{"body":"# 1. Initialize JACS\njacs init # 2. Create document with attachments\njacs document create -f document.json --attach ./files/ --embed true # 3. Verify document integrity\njacs document verify -f created-document.json # 4. Update document if needed\njacs document update -f original.json -n modified.json # 5. Extract embedded files when needed\njacs document extract -f document.json","breadcrumbs":"CLI Command Reference » Basic Document Lifecycle","id":"1425","title":"Basic Document Lifecycle"},"1426":{"body":"# Embed small files for portability\njacs document create -f doc.json --attach ./small-image.png --embed true # Reference large files to save space\njacs document create -f doc.json --attach ./large-video.mp4 --embed false # Attach multiple files from directory\njacs document create -f doc.json --attach ./attachments/ --embed false","breadcrumbs":"CLI Command Reference » Working with Attachments","id":"1426","title":"Working with Attachments"},"1427":{"body":"# Create with schema validation\njacs document create -f document.json -s schema.json # Verify against specific schema\njacs document verify -f document.json -s schema.json","breadcrumbs":"CLI Command Reference » Schema Validation Workflow","id":"1427","title":"Schema Validation Workflow"},"1428":{"body":"Most commands support these common options: -h, --help - Show help information -v, --verbose - Enable verbose output for debugging -a  - Specify custom agent file (overrides config default)","breadcrumbs":"CLI Command Reference » Global Options","id":"1428","title":"Global Options"},"1429":{"body":"0 - Success 1 - General error (invalid arguments, file not found, etc.) 2 - Verification failure (hash mismatch, invalid signature, etc.) 3 - Schema validation failure","breadcrumbs":"CLI Command Reference » Exit Codes","id":"1429","title":"Exit Codes"},"143":{"body":"# Look up agent by domain\njacs agent lookup other-agent.example.com # Verify with strict DNS\njacs agent verify -a ./other-agent.json --require-strict-dns","breadcrumbs":"CLI Usage » Verify Another Agent","id":"143","title":"Verify Another Agent"},"1430":{"body":"JACS_CONFIG_PATH - Override default configuration file location JACS_DATA_DIR - Override default data directory location JACS_AGENT_FILE - Default agent file to use (if not specified with -a)","breadcrumbs":"CLI Command Reference » Environment Variables","id":"1430","title":"Environment Variables"},"1431":{"body":"","breadcrumbs":"CLI Command Reference » File Formats","id":"1431","title":"File Formats"},"1432":{"body":"JSON documents - Must be valid JSON format Schema files - JSON Schema format (draft-07 compatible) Agent files - JACS agent format with cryptographic keys Attachments - Any file type (automatically detected MIME type)","breadcrumbs":"CLI Command Reference » Input Files","id":"1432","title":"Input Files"},"1433":{"body":"JACS documents - JSON format with JACS metadata, signatures, and checksums Extracted files - Original format of embedded attachments","breadcrumbs":"CLI Command Reference » Output Files","id":"1433","title":"Output Files"},"1434":{"body":"","breadcrumbs":"Configuration Reference » Configuration Reference","id":"1434","title":"Configuration Reference"},"1435":{"body":"","breadcrumbs":"Configuration Reference » Overview","id":"1435","title":"Overview"},"1436":{"body":"When verifying signed documents, JACS resolves the signer’s public key using a configurable order of sources. Set JACS_KEY_RESOLUTION (environment variable or in config) to a comma-separated list of sources: local (trust store), dns (DNS TXT record), hai (HAI key service). Example: JACS_KEY_RESOLUTION=local,hai or local,dns,hai. The first source that returns a key for the signer’s ID is used. Use verify_standalone() with explicit keyResolution for one-off verification without loading a full config.","breadcrumbs":"Configuration Reference » Key resolution for verifiers","id":"1436","title":"Key resolution for verifiers"},"1437":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_use_security\": \"false\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"jacs.private.pem.enc\", \"jacs_agent_public_key_filename\": \"jacs.public.pem\", \"jacs_agent_key_algorithm\": \"RSA-PSS\", \"jacs_default_storage\": \"fs\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"./logs\" }, \"headers\": { \"Authorization\": \"Bearer token\", \"X-API-Key\": \"secret\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" } }, \"export_interval_seconds\": 60, \"headers\": { \"X-Service\": \"jacs\" } }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"platform\", \"region\": \"us-west-2\" } } } }\n}","breadcrumbs":"Configuration Reference » Complete Example Configuration","id":"1437","title":"Complete Example Configuration"},"1438":{"body":"JACS supports comprehensive observability through configurable logging, metrics, and tracing. All observability features are optional and can be configured in the jacs.config.json file.","breadcrumbs":"Configuration Reference » Observability Configuration","id":"1438","title":"Observability Configuration"},"1439":{"body":"Controls how JACS generates and outputs log messages. Field Type Required Description enabled boolean Yes Whether logging is enabled level string Yes Minimum log level: trace, debug, info, warn, error destination object Yes Where logs are sent (see destinations below) headers object No Additional headers for remote destinations Log Destinations File Logging { \"type\": \"file\", \"path\": \"./logs\"\n} Writes logs to rotating files in the specified directory. Console Logging (stderr) { \"type\": \"stderr\"\n} Outputs logs to standard error stream. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Sends logs to an OTLP-compatible endpoint (like Jaeger, Grafana Cloud). Null (disabled) { \"type\": \"null\"\n} Discards all log output.","breadcrumbs":"Configuration Reference » Logs Configuration","id":"1439","title":"Logs Configuration"},"144":{"body":"Code Meaning 0 Success 1 General error 2 Invalid arguments 3 File not found 4 Verification failed 5 Signature invalid","breadcrumbs":"CLI Usage » Exit Codes","id":"144","title":"Exit Codes"},"1440":{"body":"Controls collection and export of application metrics. Field Type Required Description enabled boolean Yes Whether metrics collection is enabled destination object Yes Where metrics are exported (see destinations below) export_interval_seconds integer No How often to export metrics (default: 60) headers object No Additional headers for remote destinations Metrics Destinations Prometheus Remote Write { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" }\n} Exports metrics in Prometheus format to a remote write endpoint. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Exports metrics to an OTLP-compatible endpoint. File Export { \"type\": \"file\", \"path\": \"./metrics.txt\"\n} Writes metrics to a local file. Console Output (stdout) { \"type\": \"stdout\"\n} Prints metrics to standard output.","breadcrumbs":"Configuration Reference » Metrics Configuration","id":"1440","title":"Metrics Configuration"},"1441":{"body":"Controls distributed tracing for request flows. Field Type Required Description enabled boolean Yes Whether tracing is enabled sampling object No Sampling configuration (see below) resource object No Service identification (see below) Sampling Configuration Controls which traces are collected to manage overhead. Field Type Default Description ratio number 1.0 Fraction of traces to sample (0.0-1.0) parent_based boolean true Whether to respect parent trace sampling decisions rate_limit integer none Maximum traces per second Examples: \"ratio\": 1.0 - Sample all traces (100%) \"ratio\": 0.1 - Sample 10% of traces \"ratio\": 0.01 - Sample 1% of traces \"rate_limit\": 10 - Maximum 10 traces per second Resource Configuration Identifies the service in distributed tracing systems. Field Type Required Description service_name string Yes Name of the service service_version string No Version of the service environment string No Environment (dev, staging, prod) attributes object No Custom key-value attributes","breadcrumbs":"Configuration Reference » Tracing Configuration","id":"1441","title":"Tracing Configuration"},"1442":{"body":"For remote destinations (OTLP, Prometheus), you can specify authentication headers: Bearer Token Authentication: \"headers\": { \"Authorization\": \"Bearer your-token-here\"\n} Basic Authentication: \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\"\n} API Key Authentication: \"headers\": { \"X-API-Key\": \"your-api-key\", \"X-Auth-Token\": \"your-auth-token\"\n}","breadcrumbs":"Configuration Reference » Authentication & Headers","id":"1442","title":"Authentication & Headers"},"1443":{"body":"","breadcrumbs":"Configuration Reference » Common Patterns","id":"1443","title":"Common Patterns"},"1444":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"debug\", \"destination\": { \"type\": \"stderr\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"stdout\" } }\n}","breadcrumbs":"Configuration Reference » Development Configuration","id":"1444","title":"Development Configuration"},"1445":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"otlp\", \"endpoint\": \"https://logs.example.com:4317\", \"headers\": { \"Authorization\": \"Bearer prod-token\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"https://metrics.example.com/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.05, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\" } }\n}","breadcrumbs":"Configuration Reference » Production Configuration","id":"1445","title":"Production Configuration"},"1446":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.txt\" }, \"export_interval_seconds\": 60 }\n}","breadcrumbs":"Configuration Reference » File-based Configuration","id":"1446","title":"File-based Configuration"},"1447":{"body":"The observability configuration works alongside JACS's core configuration system.","breadcrumbs":"Configuration Reference » Environment Variable Integration","id":"1447","title":"Environment Variable Integration"},"1448":{"body":"Only one environment variable is truly required: JACS_PRIVATE_KEY_PASSWORD - Password for encrypting/decrypting private keys (required for cryptographic operations)","breadcrumbs":"Configuration Reference » Required Environment Variable","id":"1448","title":"Required Environment Variable"},"1449":{"body":"All other JACS settings are configuration file fields that have sensible defaults: jacs_data_directory - Where agent/document data is stored (default: ./jacs_data) jacs_key_directory - Where cryptographic keys are stored (default: ./jacs_keys) jacs_agent_key_algorithm - Cryptographic algorithm to use (default: RSA-PSS) jacs_default_storage - Storage backend (default: fs) jacs_use_security / JACS_ENABLE_FILESYSTEM_QUARANTINE - Enable filesystem quarantine of executable files (default: false). The env var JACS_USE_SECURITY is deprecated; use JACS_ENABLE_FILESYSTEM_QUARANTINE instead. These can be overridden by environment variables if needed, but they are primarily configured through the jacs.config.json file. The observability configuration is completely optional - JACS will work without any observability configuration.","breadcrumbs":"Configuration Reference » Configuration-Based Settings","id":"1449","title":"Configuration-Based Settings"},"145":{"body":"Creating an Agent - Detailed agent creation guide Working with Documents - Document operations in depth Agreements - Multi-agent agreements","breadcrumbs":"CLI Usage » Next Steps","id":"145","title":"Next Steps"},"1450":{"body":"The jacs_default_storage field determines where JACS stores agent data, documents, and keys. This is a critical configuration that affects how your data is persisted and accessed.","breadcrumbs":"Configuration Reference » Storage Configuration","id":"1450","title":"Storage Configuration"},"1451":{"body":"Backend Value Description Use Case Filesystem \"fs\" Local file system storage Development, single-node deployments AWS S3 \"aws\" Amazon S3 object storage Production, cloud deployments HAI Remote \"hai\" HAI.ai remote storage service HAI.ai platform integration Memory \"memory\" In-memory storage (non-persistent) Testing, temporary data Web Local \"local\" Browser local storage (WASM only) Web applications","breadcrumbs":"Configuration Reference » Available Storage Backends","id":"1451","title":"Available Storage Backends"},"1452":{"body":"Filesystem Storage (\"fs\") { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: None - works out of the box Data location: Local directories as specified in config Best for: Development, local testing, single-machine deployments AWS S3 Storage (\"aws\") { \"jacs_default_storage\": \"aws\"\n} Required Environment Variables: JACS_ENABLE_AWS_BUCKET_NAME - S3 bucket name AWS_ACCESS_KEY_ID - AWS access key AWS_SECRET_ACCESS_KEY - AWS secret key AWS_REGION - AWS region (optional, defaults to us-east-1) Best for: Production deployments, distributed systems, cloud-native applications HAI Remote Storage (\"hai\") { \"jacs_default_storage\": \"hai\"\n} Required Environment Variables: HAI_STORAGE_URL - HAI.ai storage service endpoint Best for: Integration with HAI.ai platform services Memory Storage (\"memory\") { \"jacs_default_storage\": \"memory\"\n} Requirements: None Data persistence: None - data is lost when application stops Best for: Unit testing, temporary operations, development scenarios","breadcrumbs":"Configuration Reference » Backend-Specific Configuration","id":"1452","title":"Backend-Specific Configuration"},"1453":{"body":"Agent data (agent definitions, signatures) are stored using the configured backend Documents are stored using the configured backend Cryptographic keys are stored using the configured backend Observability data (logs, metrics) can use separate storage via observability configuration","breadcrumbs":"Configuration Reference » Storage Behavior","id":"1453","title":"Storage Behavior"},"1454":{"body":"Development Setup (Filesystem) { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./dev_data\", \"jacs_key_directory\": \"./dev_keys\"\n} Production Setup (AWS S3) { \"jacs_default_storage\": \"aws\"\n} With environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-production-bucket\"\nexport AWS_ACCESS_KEY_ID=\"AKIA...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\" HAI Platform Integration { \"jacs_default_storage\": \"hai\"\n} With environment variable: export HAI_STORAGE_URL=\"https://storage.hai.ai/v1\"","breadcrumbs":"Configuration Reference » Configuration Examples","id":"1454","title":"Configuration Examples"},"1455":{"body":"AWS S3 : Ensure proper IAM permissions for bucket access HAI Remote : Secure the HAI_STORAGE_URL endpoint and any required authentication Filesystem : Ensure proper file system permissions for data and key directories Keys : Regardless of storage backend, always set JACS_PRIVATE_KEY_PASSWORD for key encryption","breadcrumbs":"Configuration Reference » Security Considerations","id":"1455","title":"Security Considerations"},"1456":{"body":"When changing storage backends, you'll need to: Export existing data from the current backend Update the jacs_default_storage configuration Set any required environment variables for the new backend Import data into the new backend JACS doesn't automatically migrate data between storage backends - this must be done manually or via custom scripts.","breadcrumbs":"Configuration Reference » Migration Between Storage Backends","id":"1456","title":"Migration Between Storage Backends"},"1457":{"body":"This reference documents error codes and messages you may encounter when using JACS.","breadcrumbs":"Error Codes » Error Codes","id":"1457","title":"Error Codes"},"1458":{"body":"Code Name Description 0 Success Operation completed successfully 1 General Error Unspecified error occurred 2 Invalid Arguments Command line arguments invalid 3 File Not Found Specified file does not exist 4 Verification Failed Document or signature verification failed 5 Signature Invalid Cryptographic signature is invalid","breadcrumbs":"Error Codes » CLI Exit Codes","id":"1458","title":"CLI Exit Codes"},"1459":{"body":"","breadcrumbs":"Error Codes » Configuration Errors","id":"1459","title":"Configuration Errors"},"146":{"body":"An agent is the fundamental identity in JACS - an autonomous entity that can create, sign, and verify documents. This guide covers creating and managing agents.","breadcrumbs":"Creating an Agent » Creating an Agent","id":"146","title":"Creating an Agent"},"1460":{"body":"Error: Configuration file not found: jacs.config.json Cause: JACS cannot find the configuration file. Solution: # Initialize JACS to create configuration\njacs init # Or specify a custom config path\nJACS_CONFIG_PATH=./custom.config.json jacs agent verify","breadcrumbs":"Error Codes » Missing Configuration","id":"1460","title":"Missing Configuration"},"1461":{"body":"Error: Invalid configuration: missing required field 'jacs_key_directory' Cause: Configuration file is missing required fields. Solution: Ensure your jacs.config.json contains all required fields: { \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Error Codes » Invalid Configuration","id":"1461","title":"Invalid Configuration"},"1462":{"body":"Error: Key directory not found: ./jacs_keys Cause: The specified key directory does not exist. Solution: # Create the directory\nmkdir -p ./jacs_keys # Or run init to create everything\njacs init","breadcrumbs":"Error Codes » Key Directory Not Found","id":"1462","title":"Key Directory Not Found"},"1463":{"body":"","breadcrumbs":"Error Codes » Cryptographic Errors","id":"1463","title":"Cryptographic Errors"},"1464":{"body":"Error: Private key file not found: private.pem Cause: The private key file is missing from the key directory. Solution: # Generate new keys\njacs agent create --create-keys true","breadcrumbs":"Error Codes » Private Key Not Found","id":"1464","title":"Private Key Not Found"},"1465":{"body":"Error: Failed to parse private key: invalid PEM format Cause: The key file is corrupted or in wrong format. Solution: Regenerate keys with jacs agent create --create-keys true Ensure the key file is not corrupted","breadcrumbs":"Error Codes » Invalid Key Format","id":"1465","title":"Invalid Key Format"},"1466":{"body":"Error: Private key is encrypted but no password provided Cause: Encrypted private key requires password. Solution: export JACS_PRIVATE_KEY_PASSWORD=\"your-password\"\njacs document create -f doc.json","breadcrumbs":"Error Codes » Key Password Required","id":"1466","title":"Key Password Required"},"1467":{"body":"Error: Key algorithm 'ring-Ed25519' does not match configured algorithm 'RSA-PSS' Cause: The key file was created with a different algorithm than configured. Solution: Update config to match key algorithm, or Regenerate keys with the correct algorithm","breadcrumbs":"Error Codes » Algorithm Mismatch","id":"1467","title":"Algorithm Mismatch"},"1468":{"body":"","breadcrumbs":"Error Codes » Signature Errors","id":"1468","title":"Signature Errors"},"1469":{"body":"Error: Document verification failed: signature does not match content Cause: Document content has been modified after signing. Solution: The document may have been tampered with Re-sign the document if you have the original content","breadcrumbs":"Error Codes » Verification Failed","id":"1469","title":"Verification Failed"},"147":{"body":"A JACS agent is: A unique identity with a UUID that never changes A holder of cryptographic keys for signing A provider of services defined in the agent document Self-signed to prove authenticity","breadcrumbs":"Creating an Agent » What is an Agent?","id":"147","title":"What is an Agent?"},"1470":{"body":"Error: Document missing jacsSignature field Cause: Document was not signed or signature was removed. Solution: # Create a signed document\njacs document create -f unsigned-doc.json","breadcrumbs":"Error Codes » Missing Signature","id":"1470","title":"Missing Signature"},"1471":{"body":"Error: Invalid signature format: expected base64 encoded string Cause: The signature field is malformed. Solution: Re-sign the document Verify the document hasn't been corrupted","breadcrumbs":"Error Codes » Invalid Signature Format","id":"1471","title":"Invalid Signature Format"},"1472":{"body":"Error: Unknown signing algorithm: unknown-algo Cause: Document was signed with an unsupported algorithm. Solution: Use a supported algorithm: ring-Ed25519, RSA-PSS, pq-dilithium, pq2025","breadcrumbs":"Error Codes » Unknown Signing Algorithm","id":"1472","title":"Unknown Signing Algorithm"},"1473":{"body":"","breadcrumbs":"Error Codes » DNS Verification Errors","id":"1473","title":"DNS Verification Errors"},"1474":{"body":"Error: strict DNSSEC validation failed for  (TXT not authenticated). Enable DNSSEC and publish DS at registrar Cause: DNSSEC mode was requested but the TXT response wasn't authenticated. Solution: Enable DNSSEC for your domain zone Publish the DS record at your registrar Wait for propagation (up to 48 hours)","breadcrumbs":"Error Codes » DNSSEC Validation Failed","id":"1474","title":"DNSSEC Validation Failed"},"1475":{"body":"Error: DNS TXT lookup failed for  (record missing or not yet propagated) Cause: The JACS TXT record doesn't exist or hasn't propagated. Solution: Verify the TXT record was created: dig _v1.agent.jacs.yourdomain.com TXT Wait for DNS propagation (can take up to 48 hours) Confirm record name and value are correct","breadcrumbs":"Error Codes » DNS Record Not Found","id":"1475","title":"DNS Record Not Found"},"1476":{"body":"Error: DNS TXT lookup required (domain configured) or provide embedded fingerprint Cause: Strict DNS mode is active because a domain is configured. Solution: Publish the TXT record, or Run with --no-dns during initial setup: jacs agent verify --no-dns","breadcrumbs":"Error Codes » DNS Required","id":"1476","title":"DNS Required"},"1477":{"body":"Error: DNS lookup timed out for  Cause: DNS server did not respond in time. Solution: Check network connectivity Try again later Verify DNS server is accessible","breadcrumbs":"Error Codes » DNS Lookup Timeout","id":"1477","title":"DNS Lookup Timeout"},"1478":{"body":"","breadcrumbs":"Error Codes » Document Errors","id":"1478","title":"Document Errors"},"1479":{"body":"Error: Failed to parse document: invalid JSON at line 5 Cause: Document file contains invalid JSON. Solution: Validate JSON with a linter Check for syntax errors (missing commas, quotes)","breadcrumbs":"Error Codes » Invalid JSON","id":"1479","title":"Invalid JSON"},"148":{"body":"","breadcrumbs":"Creating an Agent » Creating Your First Agent","id":"148","title":"Creating Your First Agent"},"1480":{"body":"Error: Schema validation failed: missing required field 'amount' Cause: Document doesn't conform to the specified schema. Solution: # Check which fields are required by the schema\ncat schema.json | jq '.required' # Add missing fields to your document","breadcrumbs":"Error Codes » Schema Validation Failed","id":"1480","title":"Schema Validation Failed"},"1481":{"body":"Error: Document not found: 550e8400-e29b-41d4-a716-446655440000 Cause: The specified document ID doesn't exist in storage. Solution: Verify the document ID is correct Check the storage directory","breadcrumbs":"Error Codes » Document Not Found","id":"1481","title":"Document Not Found"},"1482":{"body":"Error: Document version mismatch: expected v2, got v1 Cause: Attempting to update with incorrect base version. Solution: Get the latest version of the document Apply updates to the correct version","breadcrumbs":"Error Codes » Version Mismatch","id":"1482","title":"Version Mismatch"},"1483":{"body":"","breadcrumbs":"Error Codes » Agreement Errors","id":"1483","title":"Agreement Errors"},"1484":{"body":"Error: Document has no jacsAgreement field Cause: Attempting agreement operations on a document without an agreement. Solution: # Create an agreement first\njacs document create-agreement -f doc.json -i agent1-id,agent2-id","breadcrumbs":"Error Codes » Agreement Not Found","id":"1484","title":"Agreement Not Found"},"1485":{"body":"Error: Agent has already signed this agreement Cause: Attempting to sign an agreement that was already signed by this agent. Solution: No action needed, the signature is already present","breadcrumbs":"Error Codes » Already Signed","id":"1485","title":"Already Signed"},"1486":{"body":"Error: Agent is not in the agreement's agentIDs list Cause: Attempting to sign with an agent not listed in the agreement. Solution: Only agents listed in jacsAgreement.agentIDs can sign","breadcrumbs":"Error Codes » Not Authorized","id":"1486","title":"Not Authorized"},"1487":{"body":"Error: Cannot modify document: agreement is complete Cause: Attempting to modify a document with a completed agreement. Solution: Create a new version/agreement if changes are needed","breadcrumbs":"Error Codes » Agreement Locked","id":"1487","title":"Agreement Locked"},"1488":{"body":"","breadcrumbs":"Error Codes » Storage Errors","id":"1488","title":"Storage Errors"},"1489":{"body":"Error: Storage error: failed to write to filesystem Cause: Unable to write to the configured storage backend. Solution: Check filesystem permissions Verify storage directory exists Check disk space","breadcrumbs":"Error Codes » Storage Backend Error","id":"1489","title":"Storage Backend Error"},"149":{"body":"# Initialize JACS (creates config and agent)\njacs init This creates: Configuration file Cryptographic key pair Initial agent document","breadcrumbs":"Creating an Agent » Quick Method (Recommended)","id":"149","title":"Quick Method (Recommended)"},"1490":{"body":"Error: S3 error: AccessDenied Cause: AWS credentials don't have required permissions. Solution: Verify IAM permissions include s3:GetObject, s3:PutObject Check bucket policy Verify credentials are correct","breadcrumbs":"Error Codes » AWS S3 Error","id":"1490","title":"AWS S3 Error"},"1491":{"body":"Error: Failed to connect to storage: connection refused Cause: Cannot connect to remote storage backend. Solution: Check network connectivity Verify endpoint URL is correct Check firewall rules","breadcrumbs":"Error Codes » Connection Error","id":"1491","title":"Connection Error"},"1492":{"body":"","breadcrumbs":"Error Codes » HTTP/MCP Errors","id":"1492","title":"HTTP/MCP Errors"},"1493":{"body":"Error: JACS request verification failed Cause: Incoming HTTP request has invalid JACS signature. Solution: Ensure client is signing requests correctly Verify client and server are using compatible keys","breadcrumbs":"Error Codes » Request Verification Failed","id":"1493","title":"Request Verification Failed"},"1494":{"body":"Error: JACS response verification failed Cause: Server response has invalid signature. Solution: Check server JACS configuration Verify server is signing responses","breadcrumbs":"Error Codes » Response Verification Failed","id":"1494","title":"Response Verification Failed"},"1495":{"body":"Error: JACSExpressMiddleware: config file not found Cause: Middleware cannot find JACS configuration. Solution: app.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' // Verify path is correct\n}));","breadcrumbs":"Error Codes » Middleware Configuration Error","id":"1495","title":"Middleware Configuration Error"},"1496":{"body":"","breadcrumbs":"Error Codes » Debugging Tips","id":"1496","title":"Debugging Tips"},"1497":{"body":"# CLI verbose mode\njacs document verify -f doc.json -v # Environment variable\nexport JACS_DEBUG=true","breadcrumbs":"Error Codes » Enable Verbose Output","id":"1497","title":"Enable Verbose Output"},"1498":{"body":"# Display current configuration\njacs config read","breadcrumbs":"Error Codes » Check Configuration","id":"1498","title":"Check Configuration"},"1499":{"body":"# Verify agent is properly configured\njacs agent verify -v","breadcrumbs":"Error Codes » Verify Agent","id":"1499","title":"Verify Agent"},"15":{"body":"Support for both current (RSA, Ed25519) and post-quantum cryptographic algorithms ensures your system remains secure.","breadcrumbs":"Introduction » 🔒 Future-Proof Security","id":"15","title":"🔒 Future-Proof Security"},"150":{"body":"# 1. Create configuration\njacs config create # 2. Create agent with new keys\njacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Manual Method","id":"150","title":"Manual Method"},"1500":{"body":"# Create a test document\necho '{\"test\": true}' > test.json\njacs document create -f test.json -v","breadcrumbs":"Error Codes » Test Signing","id":"1500","title":"Test Signing"},"1501":{"body":"Configuration Reference - Configuration options CLI Command Reference - CLI usage Security Model - Security details","breadcrumbs":"Error Codes » See Also","id":"1501","title":"See Also"},"1502":{"body":"This guide covers migrating between JACS versions and common migration scenarios.","breadcrumbs":"Migration Guide » Migration Guide","id":"1502","title":"Migration Guide"},"1503":{"body":"JACS maintains backward compatibility for document verification: Documents signed with older versions can be verified with newer versions Older JACS versions cannot verify documents using newer cryptographic algorithms","breadcrumbs":"Migration Guide » Version Compatibility","id":"1503","title":"Version Compatibility"},"1504":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.5.1 to 0.5.2","id":"1504","title":"Migrating from 0.5.1 to 0.5.2"},"1505":{"body":"PBKDF2 Iteration Count : New key encryptions use 600,000 iterations (up from 100,000). Existing encrypted keys are decrypted automatically via fallback. To upgrade existing keys, re-encrypt them: # Re-generate keys to use the new iteration count\njacs keygen","breadcrumbs":"Migration Guide » Migration Notes","id":"1505","title":"Migration Notes"},"1506":{"body":"JACS_USE_SECURITY is now JACS_ENABLE_FILESYSTEM_QUARANTINE. The old name still works with a deprecation warning.","breadcrumbs":"Migration Guide » Deprecated Environment Variables","id":"1506","title":"Deprecated Environment Variables"},"1507":{"body":"Variable Default Description JACS_MAX_SIGNATURE_AGE_SECONDS 0 (no expiration) Maximum age of valid signatures. Set to a positive value to enable (e.g., 7776000 for 90 days). JACS_REQUIRE_EXPLICIT_ALGORITHM false When true, reject verification if signingAlgorithm is missing. JACS_ENABLE_FILESYSTEM_QUARANTINE false Enable filesystem quarantine (replaces JACS_USE_SECURITY).","breadcrumbs":"Migration Guide » New Environment Variables","id":"1507","title":"New Environment Variables"},"1508":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.2.x to 0.3.x","id":"1508","title":"Migrating from 0.2.x to 0.3.x"},"1509":{"body":"New Configuration Fields: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" }, \"metrics\": { \"enabled\": false }, \"tracing\": { \"enabled\": false } }\n} Deprecated Fields: jacs_log_level → Use observability.logs.level jacs_log_file → Use observability.logs.destination","breadcrumbs":"Migration Guide » Configuration Changes","id":"1509","title":"Configuration Changes"},"151":{"body":"Create an agent definition file (my-agent.json): { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent specialized in content creation\", \"jacsServices\": [ { \"jacsServiceName\": \"content-generation\", \"jacsServiceDescription\": \"Generate high-quality content\", \"jacsServiceSuccess\": \"Engaging, accurate content delivered\", \"jacsServiceFailure\": \"Unable to generate requested content\" } ]\n} Then create the agent: jacs agent create --create-keys true -f my-agent.json","breadcrumbs":"Creating an Agent » With Custom Agent Definition","id":"151","title":"With Custom Agent Definition"},"1510":{"body":"Update Configuration: # Backup current config\ncp jacs.config.json jacs.config.json.backup # Update to new format\n# Add observability section if needed Update Dependencies: # Node.js\nnpm install @hai.ai/jacs@latest # Python\npip install --upgrade jacs Verify Existing Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Migration Steps","id":"1510","title":"Migration Steps"},"1511":{"body":"","breadcrumbs":"Migration Guide » Migrating Storage Backends","id":"1511","title":"Migrating Storage Backends"},"1512":{"body":"Create S3 Bucket: aws s3 mb s3://my-jacs-bucket Update Configuration: { \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n} Set Environment Variables: export AWS_ACCESS_KEY_ID=\"your-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret\"\nexport AWS_REGION=\"us-east-1\" Migrate Documents: # Upload existing documents\naws s3 sync ./jacs_data/ s3://my-jacs-bucket/data/ Verify Migration: jacs document verify -d s3://my-jacs-bucket/data/documents/","breadcrumbs":"Migration Guide » Filesystem to AWS S3","id":"1512","title":"Filesystem to AWS S3"},"1513":{"body":"Download Documents: aws s3 sync s3://my-jacs-bucket/data/ ./jacs_data/ Update Configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n} Verify Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » AWS S3 to Filesystem","id":"1513","title":"AWS S3 to Filesystem"},"1514":{"body":"","breadcrumbs":"Migration Guide » Migrating Cryptographic Algorithms","id":"1514","title":"Migrating Cryptographic Algorithms"},"1515":{"body":"For increased security, you may want to migrate to post-quantum algorithms. Create New Agent with New Algorithm: { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} jacs agent create --create-keys true -f new-agent.json Update Configuration: { \"jacs_agent_key_algorithm\": \"pq-dilithium\", \"jacs_agent_id_and_version\": \"new-agent-id:new-version\"\n} Re-sign Critical Documents (Optional): // Re-sign documents with new algorithm\nconst oldDoc = JSON.parse(fs.readFileSync('./old-doc.json')); // Remove old signature fields\ndelete oldDoc.jacsSignature;\ndelete oldDoc.jacsSha256; // Create new signed version\nconst newDoc = await agent.createDocument(JSON.stringify(oldDoc)); Note: Old documents remain valid with old signatures. Re-signing is only needed for documents that require the new algorithm.","breadcrumbs":"Migration Guide » Ed25519 to Post-Quantum","id":"1515","title":"Ed25519 to Post-Quantum"},"1516":{"body":"","breadcrumbs":"Migration Guide » Migrating Between Platforms","id":"1516","title":"Migrating Between Platforms"},"1517":{"body":"Both platforms use the same document format: // Node.js - create document\nconst signedDoc = await agent.createDocument(JSON.stringify(content));\nfs.writeFileSync('doc.json', signedDoc); # Python - verify the same document\nwith open('doc.json', 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string)","breadcrumbs":"Migration Guide » Node.js to Python","id":"1517","title":"Node.js to Python"},"1518":{"body":"Agents can be used across platforms by sharing configuration: Export Agent Files: jacs_keys/\n├── private.pem\n└── public.pem\njacs.config.json Use Same Config in Both: // Node.js\nawait agent.load('./jacs.config.json'); # Python\nagent.load('./jacs.config.json')","breadcrumbs":"Migration Guide » Sharing Agents Between Platforms","id":"1518","title":"Sharing Agents Between Platforms"},"1519":{"body":"","breadcrumbs":"Migration Guide » Migrating Key Formats","id":"1519","title":"Migrating Key Formats"},"152":{"body":"JACS supports four agent types: Type Description Contacts Required ai Fully artificial intelligence No human Individual person Yes human-org Group of people (organization) Yes hybrid Human-AI combination Yes","breadcrumbs":"Creating an Agent » Agent Types","id":"152","title":"Agent Types"},"1520":{"body":"Encrypt Existing Key: # Backup original\ncp jacs_keys/private.pem jacs_keys/private.pem.backup # Encrypt with password\nopenssl pkcs8 -topk8 -in jacs_keys/private.pem \\ -out jacs_keys/private.pem.enc -v2 aes-256-cbc # Remove unencrypted key\nrm jacs_keys/private.pem\nmv jacs_keys/private.pem.enc jacs_keys/private.pem Update Configuration: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} Set Password: export JACS_PRIVATE_KEY_PASSWORD=\"your-secure-password\"","breadcrumbs":"Migration Guide » Unencrypted to Encrypted Keys","id":"1520","title":"Unencrypted to Encrypted Keys"},"1521":{"body":"","breadcrumbs":"Migration Guide » Database Migration","id":"1521","title":"Database Migration"},"1522":{"body":"If migrating from filesystem to include database storage: Create Database Schema: CREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), UNIQUE(id, version_id)\n); Import Existing Documents: const fs = require('fs');\nconst path = require('path');\nconst { Pool } = require('pg'); const pool = new Pool({ connectionString: process.env.DATABASE_URL });\nconst docsDir = './jacs_data/documents'; async function importDocuments() { const docDirs = fs.readdirSync(docsDir); for (const docId of docDirs) { const docPath = path.join(docsDir, docId); const versions = fs.readdirSync(docPath); for (const versionFile of versions) { const docString = fs.readFileSync( path.join(docPath, versionFile), 'utf-8' ); const doc = JSON.parse(docString); await pool.query(` INSERT INTO jacs_documents (id, version_id, document) VALUES ($1, $2, $3) ON CONFLICT (id, version_id) DO NOTHING `, [doc.jacsId, doc.jacsVersion, doc]); } }\n} importDocuments();","breadcrumbs":"Migration Guide » Adding Database Storage","id":"1522","title":"Adding Database Storage"},"1523":{"body":"","breadcrumbs":"Migration Guide » MCP Integration Migration","id":"1523","title":"MCP Integration Migration"},"1524":{"body":"Install JACS: npm install @hai.ai/jacs Wrap Existing Transport: // Before\nconst transport = new StdioServerTransport();\nawait server.connect(transport); // After\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);\nawait server.connect(secureTransport); Update Client: // Client also needs JACS\nconst baseTransport = new StdioClientTransport({ command: 'node', args: ['server.js'] });\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.client.config.json', 'client'\n);\nawait client.connect(secureTransport);","breadcrumbs":"Migration Guide » Adding JACS to Existing MCP Server","id":"1524","title":"Adding JACS to Existing MCP Server"},"1525":{"body":"","breadcrumbs":"Migration Guide » HTTP API Migration","id":"1525","title":"HTTP API Migration"},"1526":{"body":"Install Middleware: npm install @hai.ai/jacs Add Middleware to Routes: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Before\napp.use('/api', express.json()); // After - for JACS-protected routes\napp.use('/api/secure', express.text({ type: '*/*' }));\napp.use('/api/secure', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Keep non-JACS routes unchanged\napp.use('/api/public', express.json()); Update Route Handlers: // Before\napp.post('/api/data', (req, res) => { const payload = req.body; // ...\n}); // After\napp.post('/api/secure/data', (req, res) => { const payload = req.jacsPayload; // Verified payload // ...\n});","breadcrumbs":"Migration Guide » Adding JACS to Existing Express API","id":"1526","title":"Adding JACS to Existing Express API"},"1527":{"body":"","breadcrumbs":"Migration Guide » Troubleshooting Migration","id":"1527","title":"Troubleshooting Migration"},"1528":{"body":"Documents Not Verifying After Migration: Check algorithm compatibility Verify keys were copied correctly Ensure configuration paths are correct Key File Errors: Verify file permissions (600 for private key) Check key format matches algorithm Ensure password is set for encrypted keys Storage Errors After Migration: Verify storage backend is accessible Check credentials/permissions Ensure directory structure is correct","breadcrumbs":"Migration Guide » Common Issues","id":"1528","title":"Common Issues"},"1529":{"body":"After any migration: Verify Configuration: jacs config read Verify Agent: jacs agent verify Verify Sample Document: jacs document verify -f ./sample-doc.json Test Document Creation: echo '{\"test\": true}' > test.json\njacs document create -f test.json Verify Version: jacs version","breadcrumbs":"Migration Guide » Verification Checklist","id":"1529","title":"Verification Checklist"},"153":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"name\": \"DataBot\", \"description\": \"Data processing agent\", \"jacsServices\": [ { \"jacsServiceName\": \"data-processing\", \"jacsServiceDescription\": \"Process and transform data\" } ]\n}","breadcrumbs":"Creating an Agent » AI Agent Example","id":"153","title":"AI Agent Example"},"1530":{"body":"If migration fails: Restore Configuration: cp jacs.config.json.backup jacs.config.json Restore Keys: cp -r jacs_keys.backup/* jacs_keys/ Restore Dependencies: # Node.js\nnpm install @hai.ai/jacs@previous-version # Python\npip install jacs==previous-version Verify Rollback: jacs agent verify\njacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Rollback Procedures","id":"1530","title":"Rollback Procedures"},"1531":{"body":"Configuration Reference - Configuration options Cryptographic Algorithms - Algorithm details Storage Backends - Storage options","breadcrumbs":"Migration Guide » See Also","id":"1531","title":"See Also"},"154":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"human\", \"name\": \"John Smith\", \"description\": \"Software engineer\", \"jacsContacts\": [ { \"jacsContactType\": \"email\", \"jacsContactValue\": \"john@example.com\" } ], \"jacsServices\": [ { \"jacsServiceName\": \"code-review\", \"jacsServiceDescription\": \"Review code for quality and security\" } ]\n}","breadcrumbs":"Creating an Agent » Human Agent Example","id":"154","title":"Human Agent Example"},"155":{"body":"Services define what an agent can do. Each service has: { \"jacsServiceName\": \"service-identifier\", \"jacsServiceDescription\": \"What the service does\", \"jacsServiceSuccess\": \"Definition of successful completion\", \"jacsServiceFailure\": \"What constitutes failure\", \"jacsServiceActions\": [ { \"jacsActionName\": \"action-1\", \"jacsActionDescription\": \"First action in this service\" } ]\n}","breadcrumbs":"Creating an Agent » Agent Services","id":"155","title":"Agent Services"},"156":{"body":"{ \"jacsServiceName\": \"document-processing\", \"jacsServiceDescription\": \"Process and analyze documents\", \"jacsServiceActions\": [ { \"jacsActionName\": \"extract-text\", \"jacsActionDescription\": \"Extract text from PDF documents\" }, { \"jacsActionName\": \"summarize\", \"jacsActionDescription\": \"Generate document summaries\" }, { \"jacsActionName\": \"translate\", \"jacsActionDescription\": \"Translate documents between languages\" } ]\n}","breadcrumbs":"Creating an Agent » Service with Actions","id":"156","title":"Service with Actions"},"157":{"body":"For human and hybrid agents, contacts are required: { \"jacsContacts\": [ { \"jacsContactType\": \"email\", \"jacsContactValue\": \"agent@example.com\" }, { \"jacsContactType\": \"website\", \"jacsContactValue\": \"https://example.com\" }, { \"jacsContactType\": \"phone\", \"jacsContactValue\": \"+1-555-0123\" } ]\n}","breadcrumbs":"Creating an Agent » Agent Contacts","id":"157","title":"Agent Contacts"},"158":{"body":"","breadcrumbs":"Creating an Agent » Cryptographic Keys","id":"158","title":"Cryptographic Keys"},"159":{"body":"JACS supports multiple cryptographic algorithms: Algorithm Description Recommended For ring-Ed25519 Fast elliptic curve signatures General use (default) RSA-PSS Traditional RSA signatures Legacy compatibility pq-dilithium Post-quantum signatures Future-proof security","breadcrumbs":"Creating an Agent » Key Algorithms","id":"159","title":"Key Algorithms"},"16":{"body":"JSON-based documents work everywhere - store them in any database, transmit over any protocol, integrate with any system.","breadcrumbs":"Introduction » 🌐 Universal Compatibility","id":"16","title":"🌐 Universal Compatibility"},"160":{"body":"In jacs.config.json: { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Or via environment variable: JACS_AGENT_KEY_ALGORITHM=ring-Ed25519 jacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Configure Key Algorithm","id":"160","title":"Configure Key Algorithm"},"161":{"body":"Keys are stored in the key directory (default: ./jacs_keys): jacs_keys/\n├── private_key.pem # Private key (keep secure!)\n└── public_key.pem # Public key (can be shared)","breadcrumbs":"Creating an Agent » Key Storage","id":"161","title":"Key Storage"},"162":{"body":"","breadcrumbs":"Creating an Agent » Verifying Agents","id":"162","title":"Verifying Agents"},"163":{"body":"jacs agent verify","breadcrumbs":"Creating an Agent » Verify Your Own Agent","id":"163","title":"Verify Your Own Agent"},"164":{"body":"jacs agent verify -a ./path/to/agent.json","breadcrumbs":"Creating an Agent » Verify a Specific Agent File","id":"164","title":"Verify a Specific Agent File"},"165":{"body":"# Require DNS validation\njacs agent verify --require-dns # Require strict DNSSEC\njacs agent verify --require-strict-dns","breadcrumbs":"Creating an Agent » With DNS Verification","id":"165","title":"With DNS Verification"},"166":{"body":"Agent updates create a new version while maintaining the same jacsId: Modify the agent document Re-sign with the agent's keys The jacsVersion changes but jacsId remains constant.","breadcrumbs":"Creating an Agent » Updating Agents","id":"166","title":"Updating Agents"},"167":{"body":"A complete agent document looks like: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsLevel\": \"config\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent for content generation\", \"jacsServices\": [ { \"jacsServiceName\": \"content-generation\", \"jacsServiceDescription\": \"Generate high-quality content\" } ], \"jacsSha256\": \"hash-of-document\", \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"signature\": \"base64-encoded-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"name\", \"jacsServices\"] }\n}","breadcrumbs":"Creating an Agent » Agent Document Structure","id":"167","title":"Agent Document Structure"},"168":{"body":"","breadcrumbs":"Creating an Agent » Best Practices","id":"168","title":"Best Practices"},"169":{"body":"Protect private keys : Never share or commit private keys Use strong algorithms : Prefer Ed25519 or post-quantum Enable DNS verification : For production agents Regular key rotation : Update keys periodically","breadcrumbs":"Creating an Agent » Security","id":"169","title":"Security"},"17":{"body":"Whether you're building a simple CLI tool or a complex multi-agent system, JACS adapts to your architecture.","breadcrumbs":"Introduction » 🧩 Flexible Integration","id":"17","title":"🧩 Flexible Integration"},"170":{"body":"Clear service definitions : Be specific about capabilities Meaningful names : Use descriptive agent names Contact information : Include for human agents Version control : Track agent document changes","breadcrumbs":"Creating an Agent » Agent Design","id":"170","title":"Agent Design"},"171":{"body":"Backup keys : Keep secure backups of private keys Monitor signatures : Watch for unauthorized signing Document services : Keep service definitions current","breadcrumbs":"Creating an Agent » Operations","id":"171","title":"Operations"},"172":{"body":"Working with Documents - Create signed documents Agreements - Multi-agent coordination DNS Verification - Publish agent identity","breadcrumbs":"Creating an Agent » Next Steps","id":"172","title":"Next Steps"},"173":{"body":"Documents are the core data structure in JACS. Any JSON object can become a JACS document by adding the required header fields and a cryptographic signature.","breadcrumbs":"Working with Documents » Working with Documents","id":"173","title":"Working with Documents"},"174":{"body":"A JACS document is a JSON object that includes: Identity : Unique ID and version tracking Metadata : Type, timestamps, and origin information Signature : Cryptographic proof of authenticity Hash : Integrity verification","breadcrumbs":"Working with Documents » What is a JACS Document?","id":"174","title":"What is a JACS Document?"},"175":{"body":"","breadcrumbs":"Working with Documents » Creating Documents","id":"175","title":"Creating Documents"},"176":{"body":"Create a simple JSON document (my-document.json): { \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\"\n} Sign it with JACS: jacs document create -f my-document.json This adds JACS headers and signature, producing a signed document.","breadcrumbs":"Working with Documents » From a JSON File","id":"176","title":"From a JSON File"},"177":{"body":"Process multiple documents at once: jacs document create -d ./documents/","breadcrumbs":"Working with Documents » From a Directory","id":"177","title":"From a Directory"},"178":{"body":"Validate against a custom JSON schema: jacs document create -f my-document.json -s ./schemas/proposal.schema.json","breadcrumbs":"Working with Documents » With Custom Schema","id":"178","title":"With Custom Schema"},"179":{"body":"# Save to specific file\njacs document create -f my-document.json -o ./output/signed-doc.json # Print to stdout instead of saving\njacs document create -f my-document.json --no-save # Verbose output\njacs document create -f my-document.json -v","breadcrumbs":"Working with Documents » Output Options","id":"179","title":"Output Options"},"18":{"body":"Core Concepts - Understand agents, documents, and agreements Quick Start Guide - Get up and running in minutes Choose Your Implementation : Rust CLI & Library Node.js Package Python Package","breadcrumbs":"Introduction » Getting Started","id":"18","title":"Getting Started"},"180":{"body":"After signing, a document looks like: { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"version-uuid-here\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"document\", \"jacsLevel\": \"artifact\", \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\", \"jacsSha256\": \"a1b2c3d4...\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\", \"budget\", \"deadline\"] }\n}","breadcrumbs":"Working with Documents » Document Structure","id":"180","title":"Document Structure"},"181":{"body":"Field Description Auto-generated $schema JSON Schema reference Yes jacsId Permanent document UUID Yes jacsVersion Version UUID (changes on update) Yes jacsVersionDate When this version was created Yes jacsOriginalVersion First version UUID Yes jacsOriginalDate Original creation timestamp Yes jacsType Document type Yes jacsLevel Data level (raw, config, artifact, derived) Yes","breadcrumbs":"Working with Documents » Required Header Fields","id":"181","title":"Required Header Fields"},"182":{"body":"The jacsLevel field indicates the document's purpose: Level Description Use Case raw Original data, should not change Source documents config Configuration, meant to be updated Agent definitions, settings artifact Generated output Reports, summaries derived Computed from other documents Analysis results","breadcrumbs":"Working with Documents » Document Levels","id":"182","title":"Document Levels"},"183":{"body":"","breadcrumbs":"Working with Documents » File Attachments","id":"183","title":"File Attachments"},"184":{"body":"# Attach a single file\njacs document create -f my-document.json --attach ./report.pdf # Attach a directory of files\njacs document create -f my-document.json --attach ./attachments/","breadcrumbs":"Working with Documents » Attach Files","id":"184","title":"Attach Files"},"185":{"body":"# Embed files directly in the document (larger document, self-contained)\njacs document create -f my-document.json --attach ./files/ --embed true # Reference files (smaller document, files stored separately)\njacs document create -f my-document.json --attach ./files/ --embed false","breadcrumbs":"Working with Documents » Embed vs. Reference","id":"185","title":"Embed vs. Reference"},"186":{"body":"Embedded attachments appear in the jacsFiles field: { \"jacsFiles\": [ { \"jacsFileName\": \"report.pdf\", \"jacsFileMimeType\": \"application/pdf\", \"jacsFileSha256\": \"file-hash\", \"jacsFileContent\": \"base64-encoded-content\" } ]\n}","breadcrumbs":"Working with Documents » Attachment Structure","id":"186","title":"Attachment Structure"},"187":{"body":"","breadcrumbs":"Working with Documents » Verifying Documents","id":"187","title":"Verifying Documents"},"188":{"body":"jacs document verify -f ./signed-document.json Verification checks: Hash integrity (document hasn't been modified) Signature validity (signature matches content) Schema compliance (if schema specified)","breadcrumbs":"Working with Documents » Basic Verification","id":"188","title":"Basic Verification"},"189":{"body":"jacs document verify -f ./document.json -s ./schema.json","breadcrumbs":"Working with Documents » Verify with Schema","id":"189","title":"Verify with Schema"},"19":{"body":"GitHub : HumanAssisted/JACS Issues : Report bugs and feature requests Examples : Complete examples for all implementations Documentation : This comprehensive guide Ready to build trustworthy AI systems? Let's get started!","breadcrumbs":"Introduction » Community and Support","id":"19","title":"Community and Support"},"190":{"body":"jacs document verify -d ./documents/","breadcrumbs":"Working with Documents » Verify Directory","id":"190","title":"Verify Directory"},"191":{"body":"jacs document verify -f ./document.json -v","breadcrumbs":"Working with Documents » Verbose Output","id":"191","title":"Verbose Output"},"192":{"body":"Updates create a new version while maintaining the same jacsId: jacs document update -f ./original.json -n ./modified.json The update process: Reads the original document Applies changes from the modified file Increments jacsVersion Links to previous version via jacsPreviousVersion Re-signs with agent's key","breadcrumbs":"Working with Documents » Updating Documents","id":"192","title":"Updating Documents"},"193":{"body":"jacs document update -f ./original.json -n ./modified.json --attach ./new-file.pdf","breadcrumbs":"Working with Documents » Update with Attachments","id":"193","title":"Update with Attachments"},"194":{"body":"Extract attachments from a document: jacs document extract -f ./document-with-attachments.json Extract from multiple documents: jacs document extract -d ./documents/","breadcrumbs":"Working with Documents » Extracting Embedded Content","id":"194","title":"Extracting Embedded Content"},"195":{"body":"","breadcrumbs":"Working with Documents » Document Types","id":"195","title":"Document Types"},"196":{"body":"Tasks are specialized documents for work tracking: jacs task create -n \"Code Review\" -d \"Review PR #123\" See Task Schema for details.","breadcrumbs":"Working with Documents » Task Documents","id":"196","title":"Task Documents"},"197":{"body":"Messages for agent communication: { \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"jacsType\": \"message\", \"jacsMessageContent\": \"Hello, I've completed the task.\", \"jacsMessageReplyTo\": \"previous-message-uuid\"\n}","breadcrumbs":"Working with Documents » Message Documents","id":"197","title":"Message Documents"},"198":{"body":"Any JSON can be a JACS document. Create custom schemas: { \"$schema\": \"https://example.com/schemas/invoice.schema.json\", \"jacsType\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1000, \"currency\": \"USD\"\n}","breadcrumbs":"Working with Documents » Custom Documents","id":"198","title":"Custom Documents"},"199":{"body":"JACS tracks document history through version chains: Version 1 (jacsOriginalVersion) ↓\nVersion 2 (jacsPreviousVersion → Version 1) ↓\nVersion 3 (jacsPreviousVersion → Version 2) ↓\nCurrent Version Each version is a complete document that can be independently verified.","breadcrumbs":"Working with Documents » Version History","id":"199","title":"Version History"},"2":{"body":"🔐 Cryptographic Security : RSA, Ed25519, and post-quantum cryptographic algorithms 📋 JSON Schema Validation : Enforced document structure and validation 🤝 Multi-Agent Agreements : Built-in support for agent collaboration and task agreements 🔍 Full Audit Trail : Complete versioning and modification history 🌐 Multiple Language Support : Rust, Node.js, and Python implementations 🔌 MCP Integration : Native Model Context Protocol support 📊 Observability : Built-in logging and metrics for production systems","breadcrumbs":"Introduction » Key Features","id":"2","title":"Key Features"},"20":{"body":"JACS (JSON Agent Communication Standard) is a comprehensive framework designed to solve a critical problem in AI systems: How do agents communicate and collaborate securely with verifiable trust?","breadcrumbs":"What is JACS? » What is JACS?","id":"20","title":"What is JACS?"},"200":{"body":"","breadcrumbs":"Working with Documents » Working with Multiple Agents","id":"200","title":"Working with Multiple Agents"},"201":{"body":"# Use a specific agent's keys\njacs document create -f ./document.json -a ./other-agent.json","breadcrumbs":"Working with Documents » Different Agent Signs Document","id":"201","title":"Different Agent Signs Document"},"202":{"body":"# Verify with strict DNS requirement\njacs document verify -f ./document.json --require-strict-dns","breadcrumbs":"Working with Documents » Verify Document from Unknown Agent","id":"202","title":"Verify Document from Unknown Agent"},"203":{"body":"","breadcrumbs":"Working with Documents » Best Practices","id":"203","title":"Best Practices"},"204":{"body":"Use appropriate levels : Match jacsLevel to document purpose Include context : Add descriptive fields for human readability Version control : Keep source files in git alongside JACS documents","breadcrumbs":"Working with Documents » Document Design","id":"204","title":"Document Design"},"205":{"body":"Verify before trusting : Always verify signatures Check agent identity : Verify the signing agent Validate schemas : Use custom schemas for strict validation","breadcrumbs":"Working with Documents » Security","id":"205","title":"Security"},"206":{"body":"External attachments : Use --embed false for large files Batch processing : Use directory mode for multiple documents Selective verification : Verify only when needed","breadcrumbs":"Working with Documents » Performance","id":"206","title":"Performance"},"207":{"body":"","breadcrumbs":"Working with Documents » Common Workflows","id":"207","title":"Common Workflows"},"208":{"body":"# 1. Create document\njacs document create -f ./proposal.json -o ./signed-proposal.json # 2. Share the signed document\n# The recipient can verify it:\njacs document verify -f ./signed-proposal.json","breadcrumbs":"Working with Documents » Create and Share Document","id":"208","title":"Create and Share Document"},"209":{"body":"# 1. Create initial version\njacs document create -f ./contract-v1.json # 2. Make changes and update\njacs document update -f ./contract-v1.json -n ./contract-v2.json # 3. Continue updating\njacs document update -f ./contract-v2.json -n ./contract-v3.json","breadcrumbs":"Working with Documents » Track Document Changes","id":"209","title":"Track Document Changes"},"21":{"body":"As AI systems become more sophisticated, we're moving toward multi-agent architectures where different AI agents need to: Exchange tasks and delegate work to each other Create agreements and verify their completion Share data with guaranteed authenticity Maintain audit trails of decisions and actions Establish trust without centralized authorities Traditional approaches fall short because they lack: Cryptographic integrity for agent communications Standardized formats for agent interactions Built-in versioning and audit trails Support for multi-agent agreements and workflows","breadcrumbs":"What is JACS? » The Problem JACS Solves","id":"21","title":"The Problem JACS Solves"},"210":{"body":"# Create all documents in a directory\njacs document create -d ./input-docs/ # Verify all documents\njacs document verify -d ./signed-docs/","breadcrumbs":"Working with Documents » Process Multiple Documents","id":"210","title":"Process Multiple Documents"},"211":{"body":"Agreements - Multi-agent consent Task Schema - Task document structure Custom Schemas - Create your own schemas","breadcrumbs":"Working with Documents » Next Steps","id":"211","title":"Next Steps"},"212":{"body":"Agreements enable multi-party consent in JACS. They allow multiple agents to cryptographically sign a document, creating binding commitments between parties.","breadcrumbs":"Creating and Using Agreements » Creating and Using Agreements","id":"212","title":"Creating and Using Agreements"},"213":{"body":"An agreement is a mechanism for: Collecting signatures from multiple agents Tracking consent from required parties Enforcing completion before proceeding Creating audit trails of who agreed and when","breadcrumbs":"Creating and Using Agreements » What is an Agreement?","id":"213","title":"What is an Agreement?"},"214":{"body":"1. Create Agreement → 2. Distribute → 3. Agents Sign → 4. Verify Complete Create : Initial agent creates agreement with required participants Distribute : Agreement document shared with all parties Sign : Each agent reviews and adds their signature Verify : Check that all required parties have signed","breadcrumbs":"Creating and Using Agreements » Agreement Lifecycle","id":"214","title":"Agreement Lifecycle"},"215":{"body":"","breadcrumbs":"Creating and Using Agreements » Creating Agreements","id":"215","title":"Creating Agreements"},"216":{"body":"# Create agreement requiring signatures from two agents\njacs document create-agreement \\ -f ./document.json \\ -i agent1-uuid,agent2-uuid","breadcrumbs":"Creating and Using Agreements » Basic Agreement","id":"216","title":"Basic Agreement"},"217":{"body":"Include a question and context for clarity: { \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to the terms of this contract?\", \"jacsAgreementContext\": \"Service agreement for Q1 2024\", \"jacsAgreementAgents\": [\"agent1-uuid\", \"agent2-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » With Context","id":"217","title":"With Context"},"218":{"body":"","breadcrumbs":"Creating and Using Agreements » Signing Agreements","id":"218","title":"Signing Agreements"},"219":{"body":"jacs document sign-agreement -f ./document-with-agreement.json","breadcrumbs":"Creating and Using Agreements » Sign as Current Agent","id":"219","title":"Sign as Current Agent"},"22":{"body":"","breadcrumbs":"What is JACS? » JACS Core Philosophy","id":"22","title":"JACS Core Philosophy"},"220":{"body":"# Use a different configuration/agent\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json","breadcrumbs":"Creating and Using Agreements » Sign as Different Agent","id":"220","title":"Sign as Different Agent"},"221":{"body":"When signing, agents can include a response: { \"jacsAgreement\": { \"signatures\": { \"agent1-uuid\": { \"agentID\": \"agent1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\", \"response\": \"Agreed with minor reservation about timeline\", \"responseType\": \"agree\" } } }\n} Response types: agree - Agent consents disagree - Agent does not consent reject - Agent considers the question invalid or irrelevant","breadcrumbs":"Creating and Using Agreements » Sign with Response","id":"221","title":"Sign with Response"},"222":{"body":"","breadcrumbs":"Creating and Using Agreements » Checking Agreement Status","id":"222","title":"Checking Agreement Status"},"223":{"body":"jacs document check-agreement -f ./document.json This shows: Which agents have signed Which agents still need to sign Whether the agreement is complete","breadcrumbs":"Creating and Using Agreements » Check if Complete","id":"223","title":"Check if Complete"},"224":{"body":"A document with an agreement includes: { \"jacsId\": \"doc-uuid\", \"jacsType\": \"contract\", \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to these terms?\", \"jacsAgreementContext\": \"Annual service contract\", \"jacsAgreementAgents\": [ \"550e8400-e29b-41d4-a716-446655440000\", \"123e4567-e89b-12d3-a456-426614174000\" ], \"signatures\": { \"550e8400-e29b-41d4-a716-446655440000\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash\", \"date\": \"2024-01-15T10:30:00Z\", \"responseType\": \"agree\", \"fields\": [\"jacsId\", \"jacsAgreement\"] } } }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Creating and Using Agreements » Agreement Structure","id":"224","title":"Agreement Structure"},"225":{"body":"Tasks have built-in support for start and end agreements: { \"jacsType\": \"task\", \"jacsTaskName\": \"Code Review\", \"jacsStartAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to start this task?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }, \"jacsEndAgreement\": { \"jacsAgreementQuestion\": \"Do you agree the task is complete?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » Task Agreements","id":"225","title":"Task Agreements"},"226":{"body":"# 1. Agent A creates a task\njacs task create -n \"Write Report\" -d \"Quarterly sales report\" # 2. Agent A adds agreement requiring both agents\njacs document create-agreement \\ -f ./task.json \\ -i agent-a-uuid,agent-b-uuid # 3. Agent A signs the agreement\njacs document sign-agreement -f ./task.json # 4. Agent B signs the agreement\nJACS_CONFIG_PATH=./agent-b.config.json \\ jacs document sign-agreement -f ./task.json # 5. Check agreement is complete\njacs document check-agreement -f ./task.json","breadcrumbs":"Creating and Using Agreements » Multi-Agent Workflow Example","id":"226","title":"Multi-Agent Workflow Example"},"227":{"body":"The jacsAgreementHash ensures all agents agree to the same content: Hash is computed from the agreement content Each signature includes the hash If content changes, hash changes, invalidating existing signatures This prevents modifications after some parties have signed.","breadcrumbs":"Creating and Using Agreements » Agreement Hash","id":"227","title":"Agreement Hash"},"228":{"body":"Verify before signing : Always review documents before signing Check agent identities : Verify who you're agreeing with (use DNS) Include context : Make the agreement purpose clear Handle disagreement : Have a process for when agents disagree","breadcrumbs":"Creating and Using Agreements » Best Practices","id":"228","title":"Best Practices"},"229":{"body":"DNS Verification - Verify agent identities Task Schema - Task-specific agreements Security Model - Agreement security","breadcrumbs":"Creating and Using Agreements » Next Steps","id":"229","title":"Next Steps"},"23":{"body":"JACS is built specifically for AI agent communication patterns, not as a general-purpose document signing system. It understands concepts like: Agents with identities and capabilities Tasks that can be delegated and tracked Agreements between multiple parties Versioning for iterative improvements","breadcrumbs":"What is JACS? » 🎯 Agent-First Design","id":"23","title":"🎯 Agent-First Design"},"230":{"body":"JACS supports DNS-based agent verification using DNS TXT records and DNSSEC. This allows agents to publish their identity in a decentralized, verifiable way that doesn't require a central authority.","breadcrumbs":"DNS-Based Verification » DNS-Based Agent Verification","id":"230","title":"DNS-Based Agent Verification"},"231":{"body":"DNS verification in JACS works by: Publishing an agent's public key fingerprint as a DNS TXT record Using DNSSEC to cryptographically verify the DNS response Comparing the fingerprint from DNS with the agent's actual public key This provides a secure, decentralized way to verify agent identity across the internet.","breadcrumbs":"DNS-Based Verification » Overview","id":"231","title":"Overview"},"232":{"body":"Decentralized : No central authority required Existing Infrastructure : Uses established DNS infrastructure DNSSEC Security : Cryptographic verification of DNS responses Human-Readable : Agents can be identified by domain names Widely Supported : Works with any DNS provider","breadcrumbs":"DNS-Based Verification » Why DNS Verification?","id":"232","title":"Why DNS Verification?"},"233":{"body":"","breadcrumbs":"DNS-Based Verification » Publishing Agent Identity","id":"233","title":"Publishing Agent Identity"},"234":{"body":"# Generate DNS TXT record commands for your agent\njacs agent dns --domain myagent.example.com # Specify agent ID explicitly\njacs agent dns --domain myagent.example.com --agent-id 550e8400-e29b-41d4-a716-446655440000 # Use hex encoding instead of base64\njacs agent dns --domain myagent.example.com --encoding hex # Set custom TTL (time-to-live)\njacs agent dns --domain myagent.example.com --ttl 7200","breadcrumbs":"DNS-Based Verification » Generate DNS Commands","id":"234","title":"Generate DNS Commands"},"235":{"body":"JACS can generate DNS commands for various providers: # Plain text format (default)\njacs agent dns --domain myagent.example.com --provider plain # AWS Route 53 format\njacs agent dns --domain myagent.example.com --provider aws # Azure DNS format\njacs agent dns --domain myagent.example.com --provider azure # Cloudflare DNS format\njacs agent dns --domain myagent.example.com --provider cloudflare","breadcrumbs":"DNS-Based Verification » Provider-Specific Formats","id":"235","title":"Provider-Specific Formats"},"236":{"body":"The DNS TXT record follows this format: _v1.agent.jacs.myagent.example.com. 3600 IN TXT \"jacs-agent-fingerprint=\" Where: _v1.agent.jacs. is the JACS-specific subdomain prefix  is the base64-encoded hash of the agent's public key","breadcrumbs":"DNS-Based Verification » DNS Record Structure","id":"236","title":"DNS Record Structure"},"237":{"body":"Generate the AWS-formatted command: jacs agent dns --domain myagent.example.com --provider aws The output will include an AWS CLI command like: aws route53 change-resource-record-sets \\ --hosted-zone-id YOUR_ZONE_ID \\ --change-batch '{ \"Changes\": [{ \"Action\": \"UPSERT\", \"ResourceRecordSet\": { \"Name\": \"_v1.agent.jacs.myagent.example.com\", \"Type\": \"TXT\", \"TTL\": 3600, \"ResourceRecords\": [{\"Value\": \"\\\"jacs-agent-fingerprint=...\\\"\"}] } }] }' Replace YOUR_ZONE_ID with your actual Route 53 hosted zone ID.","breadcrumbs":"DNS-Based Verification » Setting Up with Route 53 (AWS)","id":"237","title":"Setting Up with Route 53 (AWS)"},"238":{"body":"Generate the Cloudflare-formatted command: jacs agent dns --domain myagent.example.com --provider cloudflare Or add manually in the Cloudflare dashboard: Type: TXT Name: _v1.agent.jacs Content: jacs-agent-fingerprint= TTL: 3600","breadcrumbs":"DNS-Based Verification » Setting Up with Cloudflare","id":"238","title":"Setting Up with Cloudflare"},"239":{"body":"Generate the Azure-formatted command: jacs agent dns --domain myagent.example.com --provider azure The output will include an Azure CLI command that you can run directly.","breadcrumbs":"DNS-Based Verification » Setting Up with Azure DNS","id":"239","title":"Setting Up with Azure DNS"},"24":{"body":"Every JACS document includes: Digital signatures proving authenticity Hash verification ensuring integrity Public key cryptography for identity verification Timestamps for chronological ordering","breadcrumbs":"What is JACS? » 🔐 Trust Through Cryptography","id":"24","title":"🔐 Trust Through Cryptography"},"240":{"body":"","breadcrumbs":"DNS-Based Verification » Verifying Agents with DNS","id":"240","title":"Verifying Agents with DNS"},"241":{"body":"# Look up an agent by their domain\njacs agent lookup other-agent.example.com # With strict DNSSEC validation\njacs agent lookup other-agent.example.com --strict # Skip DNS verification (not recommended)\njacs agent lookup other-agent.example.com --no-dns","breadcrumbs":"DNS-Based Verification » Look Up Another Agent","id":"241","title":"Look Up Another Agent"},"242":{"body":"When verifying an agent, you can specify DNS requirements: # Default: Use DNS if available, but don't require it\njacs agent verify -a ./agent.json # Require DNS validation (non-strict)\njacs agent verify -a ./agent.json --require-dns # Require strict DNSSEC validation\njacs agent verify -a ./agent.json --require-strict-dns # Disable DNS validation entirely\njacs agent verify -a ./agent.json --no-dns # Ignore DNS (won't fail if DNS unavailable)\njacs agent verify -a ./agent.json --ignore-dns","breadcrumbs":"DNS-Based Verification » Verify Agent with DNS","id":"242","title":"Verify Agent with DNS"},"243":{"body":"Mode Flag Behavior Default (none) Use DNS if available, fall back to local verification Require DNS --require-dns Fail if DNS record not found (DNSSEC not required) Require Strict --require-strict-dns Fail if DNSSEC validation fails No DNS --no-dns Skip DNS validation entirely Ignore DNS --ignore-dns Don't fail on DNS errors, just warn","breadcrumbs":"DNS-Based Verification » DNS Validation Modes","id":"243","title":"DNS Validation Modes"},"244":{"body":"Agents can specify their domain in their agent document: { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n} The jacsAgentDomain field is optional but enables DNS-based verification.","breadcrumbs":"DNS-Based Verification » Agent Domain Configuration","id":"244","title":"Agent Domain Configuration"},"245":{"body":"For maximum security, enable DNSSEC on your domain: Enable DNSSEC at your registrar : Most registrars support DNSSEC Configure your DNS provider : Ensure your DNS provider signs zones Use --require-strict-dns : Enforce DNSSEC validation","breadcrumbs":"DNS-Based Verification » DNSSEC Requirements","id":"245","title":"DNSSEC Requirements"},"246":{"body":"You can verify DNSSEC is working using standard tools: # Check if DNSSEC is enabled\ndig +dnssec _v1.agent.jacs.myagent.example.com TXT # Verify DNSSEC validation\ndelv @8.8.8.8 _v1.agent.jacs.myagent.example.com TXT","breadcrumbs":"DNS-Based Verification » Checking DNSSEC Status","id":"246","title":"Checking DNSSEC Status"},"247":{"body":"","breadcrumbs":"DNS-Based Verification » Security Considerations","id":"247","title":"Security Considerations"},"248":{"body":"With DNSSEC : Full cryptographic chain of trust from root DNS servers Without DNSSEC : Trust depends on DNS infrastructure security Local Only : Trust is limited to having the correct public key","breadcrumbs":"DNS-Based Verification » Trust Model","id":"248","title":"Trust Model"},"249":{"body":"Always enable DNSSEC for production agents Use strict validation when verifying unknown agents Rotate keys carefully - update DNS records before key changes Monitor DNS records for unauthorized changes Use short TTLs during transitions then increase for stability","breadcrumbs":"DNS-Based Verification » Best Practices","id":"249","title":"Best Practices"},"25":{"body":"JACS builds on proven standards: JSON for universal compatibility JSON Schema for structure validation RFC 3339 timestamps for consistency Standard cryptographic algorithms (RSA, Ed25519, post-quantum)","breadcrumbs":"What is JACS? » 📋 Standards-Based","id":"25","title":"📋 Standards-Based"},"250":{"body":"DNS responses are cached based on TTL. Consider: Short TTL (300-600s) : Better for development or key rotation Long TTL (3600-86400s) : Better for production stability","breadcrumbs":"DNS-Based Verification » Caching","id":"250","title":"Caching"},"251":{"body":"","breadcrumbs":"DNS-Based Verification » Troubleshooting","id":"251","title":"Troubleshooting"},"252":{"body":"Verify the record exists: dig _v1.agent.jacs.myagent.example.com TXT Check DNS propagation (may take up to 48 hours for new records) Verify the domain in the agent document matches","breadcrumbs":"DNS-Based Verification » \"DNS record not found\"","id":"252","title":"\"DNS record not found\""},"253":{"body":"Check DNSSEC is enabled: dig +dnssec myagent.example.com Verify DS records at registrar Use --require-dns instead of --require-strict-dns if DNSSEC isn't available","breadcrumbs":"DNS-Based Verification » \"DNSSEC validation failed\"","id":"253","title":"\"DNSSEC validation failed\""},"254":{"body":"The public key may have changed - regenerate DNS record: jacs agent dns --domain myagent.example.com Update the DNS TXT record with the new fingerprint Wait for DNS propagation","breadcrumbs":"DNS-Based Verification » \"Fingerprint mismatch\"","id":"254","title":"\"Fingerprint mismatch\""},"255":{"body":"Automate DNS updates in your deployment pipeline: #!/bin/bash\n# deploy-agent.sh # 1. Create new agent keys\njacs agent create --create-keys true # 2. Generate DNS update command\nDNS_CMD=$(jacs agent dns --domain $AGENT_DOMAIN --provider aws) # 3. Execute DNS update\neval $DNS_CMD # 4. Wait for propagation\nsleep 60 # 5. Verify DNS is working\njacs agent verify --require-dns","breadcrumbs":"DNS-Based Verification » Integration with CI/CD","id":"255","title":"Integration with CI/CD"},"256":{"body":"Creating an Agent - Set up agents with DNS domains Security Model - Deep dive into JACS security Agreements - Use DNS-verified agents in agreements","breadcrumbs":"DNS-Based Verification » Next Steps","id":"256","title":"Next Steps"},"257":{"body":"JACS provides a Rust library for programmatic agent and document management. This chapter covers how to use the JACS library in your Rust applications.","breadcrumbs":"Rust Library API » Rust Library API","id":"257","title":"Rust Library API"},"258":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Rust Library API » Adding JACS as a Dependency","id":"258","title":"Adding JACS as a Dependency"},"259":{"body":"[dependencies]\njacs = { version = \"0.3\", features = [\"cli\", \"observability\"] } Feature Description cli CLI utilities and helpers observability OpenTelemetry logging and metrics observability-convenience Helper functions for observability full All features enabled","breadcrumbs":"Rust Library API » Feature Flags","id":"259","title":"Feature Flags"},"26":{"body":"","breadcrumbs":"What is JACS? » Key Concepts","id":"26","title":"Key Concepts"},"260":{"body":"","breadcrumbs":"Rust Library API » Core Types","id":"260","title":"Core Types"},"261":{"body":"The Agent struct is the central type in JACS. It holds: Schema validators Agent identity and keys Document storage Configuration use jacs::{get_empty_agent, load_agent};\nuse std::error::Error; fn main() -> Result<(), Box> { // Create a new empty agent let agent = get_empty_agent(); // Or load an existing agent let agent = load_agent(Some(\"path/to/agent.json\".to_string()))?; Ok(())\n}","breadcrumbs":"Rust Library API » Agent","id":"261","title":"Agent"},"262":{"body":"Documents in JACS are represented by the JACSDocument struct: pub struct JACSDocument { pub id: String, pub version: String, pub value: serde_json::Value, pub jacs_type: String,\n} Key methods: getkey() - Returns \"id:version\" identifier getvalue() - Returns reference to the JSON value getschema() - Returns the document's schema URL signing_agent() - Returns the ID of the signing agent","breadcrumbs":"Rust Library API » JACSDocument","id":"262","title":"JACSDocument"},"263":{"body":"","breadcrumbs":"Rust Library API » Creating an Agent","id":"263","title":"Creating an Agent"},"264":{"body":"use jacs::{get_empty_agent, create_minimal_blank_agent}; fn main() -> Result<(), Box> { // Create agent JSON let agent_json = create_minimal_blank_agent( \"ai\".to_string(), // agent type Some(\"My service\".to_string()), // service description Some(\"Task completed\".to_string()), // success description Some(\"Task failed\".to_string()), // failure description )?; // Initialize and load the agent let mut agent = get_empty_agent(); agent.create_agent_and_load(&agent_json, true, None)?; // Save the agent agent.save()?; Ok(())\n}","breadcrumbs":"Rust Library API » Minimal Agent","id":"264","title":"Minimal Agent"},"265":{"body":"use jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); // Load from config file agent.load_by_config(\"./jacs.config.json\".to_string())?; // Or load by agent ID agent.load_by_id(\"agent-id:version-id\".to_string())?; Ok(())\n}","breadcrumbs":"Rust Library API » Loading by Configuration","id":"265","title":"Loading by Configuration"},"266":{"body":"use jacs::load_agent_with_dns_strict; fn main() -> Result<(), Box> { // Load agent with strict DNS verification let agent = load_agent_with_dns_strict( \"path/to/agent.json\".to_string(), true // strict mode )?; Ok(())\n}","breadcrumbs":"Rust Library API » DNS Strict Mode","id":"266","title":"DNS Strict Mode"},"267":{"body":"","breadcrumbs":"Rust Library API » Working with Documents","id":"267","title":"Working with Documents"},"268":{"body":"The DocumentTraits trait provides document operations: use jacs::agent::document::DocumentTraits;\nuse jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document from JSON let json = r#\"{\"title\": \"My Document\", \"content\": \"Hello, World!\"}\"#; let doc = agent.create_document_and_load(json, None, None)?; println!(\"Document created: {}\", doc.getkey()); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Documents","id":"268","title":"Creating Documents"},"269":{"body":"use jacs::agent::document::DocumentTraits; // With file attachments\nlet attachments = Some(vec![\"./report.pdf\".to_string()]);\nlet embed = Some(true); // Embed files in document let doc = agent.create_document_and_load( json, attachments, embed\n)?;","breadcrumbs":"Rust Library API » Creating Documents with Attachments","id":"269","title":"Creating Documents with Attachments"},"27":{"body":"An Agent is an autonomous entity with: A unique identity (UUID) Cryptographic keys for signing Capabilities defined in services The ability to create and verify documents","breadcrumbs":"What is JACS? » Agents","id":"27","title":"Agents"},"270":{"body":"use jacs::agent::document::DocumentTraits; // Load a document from JSON string\nlet doc = agent.load_document(&document_json_string)?; // Get a stored document by key\nlet doc = agent.get_document(\"doc-id:version-id\")?; // List all document keys\nlet keys = agent.get_document_keys();","breadcrumbs":"Rust Library API » Loading Documents","id":"270","title":"Loading Documents"},"271":{"body":"use jacs::agent::document::DocumentTraits; // Update creates a new version\nlet updated_doc = agent.update_document( \"doc-id:version-id\", // original document key &modified_json_string, // new content None, // optional attachments None, // embed flag\n)?;","breadcrumbs":"Rust Library API » Updating Documents","id":"271","title":"Updating Documents"},"272":{"body":"use jacs::agent::document::DocumentTraits; // Verify document signature with agent's public key\nagent.verify_document_signature( \"doc-id:version-id\", None, // signature key (uses default) None, // fields to verify None, // public key (uses agent's) None, // key encoding type\n)?; // Verify using external public key\nagent.verify_external_document_signature(\"doc-id:version-id\")?;","breadcrumbs":"Rust Library API » Verifying Documents","id":"272","title":"Verifying Documents"},"273":{"body":"use jacs::agent::document::DocumentTraits; // Save document to filesystem\nagent.save_document( \"doc-id:version-id\", Some(\"output.json\".to_string()), // output filename Some(true), // export embedded files None, // extract only\n)?;","breadcrumbs":"Rust Library API » Saving Documents","id":"273","title":"Saving Documents"},"274":{"body":"use jacs::{get_empty_agent, create_task}; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a task let task_json = create_task( &mut agent, \"Review Code\".to_string(), \"Review pull request #123\".to_string(), )?; println!(\"Task created: {}\", task_json); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Tasks","id":"274","title":"Creating Tasks"},"275":{"body":"","breadcrumbs":"Rust Library API » Signing and Verification","id":"275","title":"Signing and Verification"},"276":{"body":"The agent's signing_procedure method creates cryptographic signatures: use serde_json::json; let document = json!({ \"title\": \"Contract\", \"terms\": \"...\"\n}); // Sign the document\nlet signature = agent.signing_procedure( &document, None, // fields to sign (None = all) \"jacsSignature\" // placement key\n)?;","breadcrumbs":"Rust Library API » Signing Documents","id":"276","title":"Signing Documents"},"277":{"body":"// Verify self-signature (agent document)\nagent.verify_self_signature()?; // Verify hash integrity\nagent.verify_hash(&document)?; // Full signature verification\nagent.signature_verification_procedure( &document, None, // fields \"jacsSignature\", // signature key public_key, // public key bytes Some(\"ring-Ed25519\".to_string()), // algorithm None, // original public key hash None, // signature override\n)?;","breadcrumbs":"Rust Library API » Verification","id":"277","title":"Verification"},"278":{"body":"// Load custom schemas\nagent.load_custom_schemas(&[ \"./schemas/invoice.schema.json\".to_string(), \"https://example.com/schemas/contract.schema.json\".to_string(),\n])?; // Validate document against custom schema\nagent.validate_document_with_custom_schema( \"./schemas/invoice.schema.json\", &document_value,\n)?;","breadcrumbs":"Rust Library API » Custom Schema Validation","id":"278","title":"Custom Schema Validation"},"279":{"body":"","breadcrumbs":"Rust Library API » Configuration","id":"279","title":"Configuration"},"28":{"body":"A Document is any JSON object that includes: JACS header fields (ID, version, creator, etc.) A cryptographic signature A hash for integrity verification Business logic specific to the document type","breadcrumbs":"What is JACS? » Documents","id":"28","title":"Documents"},"280":{"body":"use jacs::config::{load_config, find_config, Config}; // Load from specific path\nlet config = load_config(\"./jacs.config.json\")?; // Find config in directory\nlet config = find_config(\"./\".to_string())?; // Create programmatically\nlet config = Config::new( Some(\"false\".to_string()), // use_security Some(\"./jacs_data\".to_string()), // data_directory Some(\"./jacs_keys\".to_string()), // key_directory Some(\"private_key.pem\".to_string()), // private key filename Some(\"public_key.pem\".to_string()), // public key filename Some(\"ring-Ed25519\".to_string()), // key algorithm Some(\"password\".to_string()), // private key password None, // agent ID and version Some(\"fs\".to_string()), // storage type\n);","breadcrumbs":"Rust Library API » Loading Configuration","id":"280","title":"Loading Configuration"},"281":{"body":"// Get key algorithm\nlet algorithm = config.get_key_algorithm()?; // Access config fields\nlet data_dir = config.jacs_data_directory();\nlet key_dir = config.jacs_key_directory();\nlet storage_type = config.jacs_default_storage();","breadcrumbs":"Rust Library API » Accessing Configuration","id":"281","title":"Accessing Configuration"},"282":{"body":"","breadcrumbs":"Rust Library API » Observability","id":"282","title":"Observability"},"283":{"body":"use jacs::init_default_observability; fn main() -> Result<(), Box> { // Set up file-based logging init_default_observability()?; // Your application code... Ok(())\n}","breadcrumbs":"Rust Library API » Initialize Default Observability","id":"283","title":"Initialize Default Observability"},"284":{"body":"use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://localhost:4317\".to_string(), headers: None, }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Rust Library API » Custom Observability Configuration","id":"284","title":"Custom Observability Configuration"},"285":{"body":"JACS supports multiple storage backends: use jacs::storage::MultiStorage; // Filesystem storage (default)\nlet storage = MultiStorage::new(\"fs\".to_string())?; // In-memory storage\nlet storage = MultiStorage::new(\"memory\".to_string())?; // S3 storage\nlet storage = MultiStorage::new(\"s3\".to_string())?;","breadcrumbs":"Rust Library API » Storage Backends","id":"285","title":"Storage Backends"},"286":{"body":"JACS functions return Result>: use jacs::get_empty_agent; fn main() { match get_empty_agent().load_by_config(\"./jacs.config.json\".to_string()) { Ok(()) => println!(\"Agent loaded successfully\"), Err(e) => eprintln!(\"Failed to load agent: {}\", e), }\n}","breadcrumbs":"Rust Library API » Error Handling","id":"286","title":"Error Handling"},"287":{"body":"The Agent struct uses internal mutexes for thread-safe access to: Document schemas (Arc>>) Storage operations For concurrent usage: use std::sync::{Arc, Mutex};\nuse jacs::get_empty_agent; let agent = Arc::new(Mutex::new(get_empty_agent())); // Clone Arc for threads\nlet agent_clone = Arc::clone(&agent);\nstd::thread::spawn(move || { let mut agent = agent_clone.lock().unwrap(); // Use agent...\n});","breadcrumbs":"Rust Library API » Thread Safety","id":"287","title":"Thread Safety"},"288":{"body":"use jacs::{get_empty_agent, create_task};\nuse jacs::agent::document::DocumentTraits;\nuse serde_json::json; fn main() -> Result<(), Box> { // Initialize agent let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document let doc_json = json!({ \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000 }); let doc = agent.create_document_and_load( &doc_json.to_string(), None, None )?; println!(\"Created document: {}\", doc.getkey()); // Verify the document agent.verify_document_signature(&doc.getkey(), None, None, None, None)?; println!(\"Document verified successfully\"); // Save to file agent.save_document(&doc.getkey(), Some(\"proposal.json\".to_string()), None, None)?; // Create a task let task = create_task( &mut agent, \"Review Proposal\".to_string(), \"Review and approve the project proposal\".to_string(), )?; println!(\"Task created\"); Ok(())\n}","breadcrumbs":"Rust Library API » Complete Example","id":"288","title":"Complete Example"},"289":{"body":"Observability - Logging and metrics setup Storage Backends - Configure different storage Custom Schemas - Define custom document types","breadcrumbs":"Rust Library API » Next Steps","id":"289","title":"Next Steps"},"29":{"body":"A Task is a special document type representing: Work to be performed Success/failure criteria Input/output specifications Delegation and completion tracking","breadcrumbs":"What is JACS? » Tasks","id":"29","title":"Tasks"},"290":{"body":"JACS provides comprehensive observability features including logging, metrics, and distributed tracing. This chapter covers configuring and using these features in your applications.","breadcrumbs":"Observability » Observability","id":"290","title":"Observability"},"291":{"body":"JACS observability is built on the OpenTelemetry standard, providing: Logging : Structured logging with multiple destinations Metrics : Counters, gauges, and histograms for monitoring Tracing : Distributed tracing for request flows","breadcrumbs":"Observability » Overview","id":"291","title":"Overview"},"292":{"body":"Enable observability features in your Cargo.toml: [dependencies]\njacs = { version = \"0.3\", features = [\"observability\"] } Feature Description observability Core observability support observability-convenience Helper functions for recording operations otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support","breadcrumbs":"Observability » Feature Flags","id":"292","title":"Feature Flags"},"293":{"body":"","breadcrumbs":"Observability » Quick Start","id":"293","title":"Quick Start"},"294":{"body":"The simplest way to enable observability: use jacs::init_default_observability; fn main() -> Result<(), Box> { init_default_observability()?; // Your application code... Ok(())\n} This sets up: File-based logging to ./logs/ with daily rotation Metrics disabled by default Tracing disabled by default","breadcrumbs":"Observability » Default Configuration","id":"294","title":"Default Configuration"},"295":{"body":"For more control, use init_custom_observability: use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Observability » Custom Configuration","id":"295","title":"Custom Configuration"},"296":{"body":"","breadcrumbs":"Observability » Logging","id":"296","title":"Logging"},"297":{"body":"Supported log levels (from most to least verbose): trace debug info warn error","breadcrumbs":"Observability » Log Levels","id":"297","title":"Log Levels"},"298":{"body":"Stderr (Default) LogDestination::Stderr Logs to standard error. Useful for development and containerized environments. File LogDestination::File { path: \"./logs\".to_string(),\n} Logs to rotating files with daily rotation. Creates files like app.log.2024-01-15. OTLP LogDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports logs via OpenTelemetry Protocol. Requires otlp-logs feature. Null LogDestination::Null Disables logging completely.","breadcrumbs":"Observability » Log Destinations","id":"298","title":"Log Destinations"},"299":{"body":"JACS uses the tracing crate for logging: use tracing::{info, debug, warn, error}; fn process_document() { info!(\"Processing document\"); debug!(\"Document details: {:?}\", doc); if let Err(e) = verify() { error!(\"Verification failed: {}\", e); }\n}","breadcrumbs":"Observability » Using Logs","id":"299","title":"Using Logs"},"3":{"body":"JACS is available in three languages, each with its own strengths:","breadcrumbs":"Introduction » Available Implementations","id":"3","title":"Available Implementations"},"30":{"body":"An Agreement is a mechanism for: Multiple agents to consent to terms Tracking signatures from all required parties Ensuring all participants have signed before proceeding Creating binding commitments between agents","breadcrumbs":"What is JACS? » Agreements","id":"30","title":"Agreements"},"300":{"body":"","breadcrumbs":"Observability » Metrics","id":"300","title":"Metrics"},"301":{"body":"MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None,\n}","breadcrumbs":"Observability » Enabling Metrics","id":"301","title":"Enabling Metrics"},"302":{"body":"OTLP MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports to an OpenTelemetry collector. Requires otlp-metrics feature. Prometheus (via Collector) MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None,\n} Note: Direct Prometheus export requires routing through an OTLP collector. File MetricsDestination::File { path: \"./metrics.txt\".to_string(),\n} Writes metrics to a file. Stdout MetricsDestination::Stdout Prints metrics to standard output. Useful for testing.","breadcrumbs":"Observability » Metrics Destinations","id":"302","title":"Metrics Destinations"},"303":{"body":"JACS provides convenience functions for common metrics: use jacs::observability::metrics::{increment_counter, set_gauge, record_histogram};\nuse std::collections::HashMap; // Increment a counter\nlet mut tags = HashMap::new();\ntags.insert(\"operation\".to_string(), \"sign\".to_string());\nincrement_counter(\"jacs_operations_total\", 1, Some(tags)); // Set a gauge value\nset_gauge(\"jacs_documents_active\", 42.0, None); // Record a histogram value (e.g., latency)\nlet mut tags = HashMap::new();\ntags.insert(\"method\".to_string(), \"verify\".to_string());\nrecord_histogram(\"jacs_operation_duration_ms\", 150.0, Some(tags));","breadcrumbs":"Observability » Recording Metrics","id":"303","title":"Recording Metrics"},"304":{"body":"When observability-convenience feature is enabled, JACS automatically records: jacs_agent_operations - Count of agent operations jacs_signature_verifications - Signature verification results jacs_document_operations - Document create/update/verify counts","breadcrumbs":"Observability » Built-in Metrics","id":"304","title":"Built-in Metrics"},"305":{"body":"","breadcrumbs":"Observability » Distributed Tracing","id":"305","title":"Distributed Tracing"},"306":{"body":"use jacs::{TracingConfig, TracingDestination, SamplingConfig, ResourceConfig};\nuse std::collections::HashMap; let config = ObservabilityConfig { // ... logs and metrics config ... tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 1.0, // Sample all traces parent_based: true, rate_limit: None, }, resource: Some(ResourceConfig { service_name: \"my-jacs-app\".to_string(), service_version: Some(\"1.0.0\".to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }), }),\n};","breadcrumbs":"Observability » Enabling Tracing","id":"306","title":"Enabling Tracing"},"307":{"body":"OTLP TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Jaeger TracingDestination::Jaeger { endpoint: \"http://localhost:14268/api/traces\".to_string(), headers: None,\n}","breadcrumbs":"Observability » Tracing Destinations","id":"307","title":"Tracing Destinations"},"308":{"body":"Control how many traces are captured: SamplingConfig { ratio: 0.1, // Sample 10% of traces parent_based: true, // Inherit parent sampling decision rate_limit: Some(100), // Max 100 samples per second\n}","breadcrumbs":"Observability » Sampling Configuration","id":"308","title":"Sampling Configuration"},"309":{"body":"use tracing::{instrument, info_span}; #[instrument]\nfn sign_document(doc: &Document) -> Result<(), Error> { // Automatically creates a span named \"sign_document\" // with doc as a field\n} fn manual_span() { let span = info_span!(\"verify_chain\", doc_count = 5); let _guard = span.enter(); // Operations within this span\n}","breadcrumbs":"Observability » Using Tracing Spans","id":"309","title":"Using Tracing Spans"},"31":{"body":"graph TD A[Agent A] -->|Creates Task| T[JACS Task Document] T -->|Contains| S[Digital Signature] T -->|Contains| H[SHA256 Hash] T -->|Contains| M[Metadata] A -->|Sends to| B[Agent B] B -->|Verifies| T B -->|Signs Agreement| AG[Agreement Document] AG -->|Returns to| A Agent A creates a task document with their requirements The document is signed with Agent A's private key A hash is calculated for integrity verification Agent B receives and verifies the signature and hash Agent B can create an agreement to accept the task Both agents have a verifiable record of the interaction","breadcrumbs":"What is JACS? » How JACS Works","id":"31","title":"How JACS Works"},"310":{"body":"You can configure observability via jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"file\": { \"path\": \"./logs\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-service\", \"service_version\": \"1.0.0\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n}","breadcrumbs":"Observability » Configuration File","id":"310","title":"Configuration File"},"311":{"body":"For production use, route telemetry through an OpenTelemetry Collector: # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: loglevel: debug prometheus: endpoint: \"0.0.0.0:9090\" jaeger: endpoint: jaeger:14250 service: pipelines: logs: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus] traces: receivers: [otlp] processors: [batch] exporters: [jaeger]","breadcrumbs":"Observability » OpenTelemetry Collector Setup","id":"311","title":"OpenTelemetry Collector Setup"},"312":{"body":"For testing or reinitialization: use jacs::observability::{reset_observability, flush_observability, force_reset_for_tests}; // Flush pending data\nflush_observability(); // Reset configuration\nreset_observability(); // Force reset for tests (clears all state)\nforce_reset_for_tests();","breadcrumbs":"Observability » Reset and Cleanup","id":"312","title":"Reset and Cleanup"},"313":{"body":"","breadcrumbs":"Observability » Best Practices","id":"313","title":"Best Practices"},"314":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None,\n};","breadcrumbs":"Observability » Development","id":"314","title":"Development"},"315":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, export_interval_seconds: Some(30), headers: None, }, tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 0.1, // Sample 10% in production parent_based: true, rate_limit: Some(1000), }, resource: Some(ResourceConfig { service_name: \"jacs-production\".to_string(), service_version: Some(env!(\"CARGO_PKG_VERSION\").to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }), }),\n};","breadcrumbs":"Observability » Production","id":"315","title":"Production"},"316":{"body":"","breadcrumbs":"Observability » Troubleshooting","id":"316","title":"Troubleshooting"},"317":{"body":"Check that logging is enabled: logs.enabled: true Verify log level includes your log statements For file logging, ensure the directory is writable","breadcrumbs":"Observability » Logs Not Appearing","id":"317","title":"Logs Not Appearing"},"318":{"body":"Verify otlp-metrics feature is enabled Check endpoint connectivity Confirm metrics are enabled: metrics.enabled: true","breadcrumbs":"Observability » Metrics Not Exporting","id":"318","title":"Metrics Not Exporting"},"319":{"body":"Verify otlp-tracing feature is enabled Check sampling ratio isn't filtering all traces Ensure spans are properly instrumented","breadcrumbs":"Observability » Traces Missing","id":"319","title":"Traces Missing"},"32":{"body":"","breadcrumbs":"What is JACS? » Real-World Examples","id":"32","title":"Real-World Examples"},"320":{"body":"Rust Library API - Use observability in your code Configuration Reference - Full config options Advanced Topics - Security considerations","breadcrumbs":"Observability » Next Steps","id":"320","title":"Next Steps"},"321":{"body":"The JACS Node.js package (@hai.ai/jacs) provides JavaScript/TypeScript bindings to the JACS Rust library, making it easy to integrate JACS into web applications, servers, and Node.js projects.","breadcrumbs":"Installation » Node.js Installation","id":"321","title":"Node.js Installation"},"322":{"body":"Node.js : Version 16.0 or higher npm or yarn : For package management Operating System : macOS, Linux, or Windows with WSL","breadcrumbs":"Installation » Requirements","id":"322","title":"Requirements"},"323":{"body":"","breadcrumbs":"Installation » Installation","id":"323","title":"Installation"},"324":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Installation » Using npm","id":"324","title":"Using npm"},"325":{"body":"yarn add @hai.ai/jacs","breadcrumbs":"Installation » Using yarn","id":"325","title":"Using yarn"},"326":{"body":"pnpm add @hai.ai/jacs","breadcrumbs":"Installation » Using pnpm","id":"326","title":"Using pnpm"},"327":{"body":"Create a simple test to verify everything is working: // test.js\nimport { JacsAgent } from '@hai.ai/jacs'; console.log('JACS Node.js bindings loaded successfully!'); // Test basic functionality\ntry { const agent = new JacsAgent(); agent.load('./jacs.config.json'); console.log('Agent loaded successfully!');\n} catch (error) { console.error('Error loading agent:', error);\n} Run the test: node test.js","breadcrumbs":"Installation » Verify Installation","id":"327","title":"Verify Installation"},"328":{"body":"The @hai.ai/jacs package includes several modules:","breadcrumbs":"Installation » Package Structure","id":"328","title":"Package Structure"},"329":{"body":"import { JacsAgent, JacsConfig, JacsDocument, JacsError\n} from '@hai.ai/jacs';","breadcrumbs":"Installation » Core Module (@hai.ai/jacs)","id":"329","title":"Core Module (@hai.ai/jacs)"},"33":{"body":"Content Agent → Research Agent → Review Agent → Publishing Agent Each handoff includes signed task documents with clear requirements and deliverables.","breadcrumbs":"What is JACS? » 🤖 AI Content Pipeline","id":"33","title":"🤖 AI Content Pipeline"},"330":{"body":"import { JacsMcpServer, createJacsMiddleware } from '@hai.ai/jacs/mcp';","breadcrumbs":"Installation » MCP Integration (@hai.ai/jacs/mcp)","id":"330","title":"MCP Integration (@hai.ai/jacs/mcp)"},"331":{"body":"import { JacsHttpServer, createJacsRouter } from '@hai.ai/jacs/http';","breadcrumbs":"Installation » HTTP Server (@hai.ai/jacs/http)","id":"331","title":"HTTP Server (@hai.ai/jacs/http)"},"332":{"body":"The package includes full TypeScript definitions: import { JacsAgent, createConfig, hashString } from '@hai.ai/jacs'; // Create an agent instance\nconst agent: JacsAgent = new JacsAgent(); // Load configuration from file\nagent.load('./jacs.config.json'); // Use utility functions\nconst hash: string = hashString('some data'); // Create a configuration string\nconst configJson: string = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // jacs_agent_private_key_filename undefined, // jacs_agent_public_key_filename 'ring-Ed25519', // jacs_agent_key_algorithm undefined, // jacs_private_key_password undefined, // jacs_agent_id_and_version 'fs' // jacs_default_storage\n);","breadcrumbs":"Installation » TypeScript Support","id":"332","title":"TypeScript Support"},"333":{"body":"","breadcrumbs":"Installation » Configuration","id":"333","title":"Configuration"},"334":{"body":"const config = { // Required fields jacs_data_directory: \"./jacs_data\", // Where documents are stored jacs_key_directory: \"./jacs_keys\", // Where keys are stored jacs_default_storage: \"fs\", // Storage backend jacs_agent_key_algorithm: \"ring-Ed25519\", // Signing algorithm // Optional fields jacs_agent_id_and_version: null, // Existing agent to load jacs_agent_private_key_filename: \"private.pem\", jacs_agent_public_key_filename: \"public.pem\"\n};","breadcrumbs":"Installation » Basic Configuration","id":"334","title":"Basic Configuration"},"335":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Load the configuration: import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Installation » Configuration File","id":"335","title":"Configuration File"},"336":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"336","title":"Environment Variables"},"337":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"337","title":"Storage Backends"},"338":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"338","title":"File System (Default)"},"339":{"body":"{ \"jacs_default_storage\": \"s3\"\n} S3 credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » S3 Storage","id":"339","title":"S3 Storage"},"34":{"body":"Data Ingestion Agent → Processing Agent → Validation Agent → Storage Agent Each step is tracked with verifiable completion certificates and quality metrics.","breadcrumbs":"What is JACS? » 📊 Data Processing Workflow","id":"34","title":"📊 Data Processing Workflow"},"340":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"340","title":"Memory Storage (Testing)"},"341":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"341","title":"Cryptographic Algorithms"},"342":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"342","title":"ring-Ed25519 (Recommended)"},"343":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"343","title":"RSA-PSS"},"344":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"344","title":"pq-dilithium (Post-Quantum)"},"345":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"345","title":"pq2025 (Post-Quantum Hybrid)"},"346":{"body":"","breadcrumbs":"Installation » Development Setup","id":"346","title":"Development Setup"},"347":{"body":"my-jacs-project/\n├── package.json\n├── jacs.config.json\n├── src/\n│ ├── agent.js\n│ ├── tasks.js\n│ └── agreements.js\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n└── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Installation » Project Structure","id":"347","title":"Project Structure"},"348":{"body":"{ \"name\": \"my-jacs-app\", \"version\": \"1.0.0\", \"type\": \"module\", \"dependencies\": { \"@hai.ai/jacs\": \"^0.6.0\", \"express\": \"^4.18.0\" }, \"scripts\": { \"start\": \"node src/app.js\", \"test\": \"node test/test.js\", \"dev\": \"nodemon src/app.js\" }\n}","breadcrumbs":"Installation » Package.json Setup","id":"348","title":"Package.json Setup"},"349":{"body":"// src/app.js\nimport { JacsAgent } from '@hai.ai/jacs'; // Create and load agent\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create a document\nconst documentJson = JSON.stringify({ title: \"My First Document\", content: \"Hello from Node.js!\"\n}); const signedDoc = agent.createDocument(documentJson);\nconsole.log('Document created:', signedDoc); // Verify the document\nconst isValid = agent.verifyDocument(signedDoc);\nconsole.log('Document valid:', isValid); console.log('JACS agent ready!');","breadcrumbs":"Installation » Basic Application","id":"349","title":"Basic Application"},"35":{"body":"Query Agent → Research Agent → Analysis Agent → Reporting Agent Complex analysis tasks are broken down with clear accountability for each step.","breadcrumbs":"What is JACS? » 🔍 Multi-Agent Analysis","id":"35","title":"🔍 Multi-Agent Analysis"},"350":{"body":"","breadcrumbs":"Installation » Common Issues","id":"350","title":"Common Issues"},"351":{"body":"If you get Module not found errors: # Check Node.js version\nnode --version # Should be 16+ # Clear node_modules and reinstall\nrm -rf node_modules package-lock.json\nnpm install","breadcrumbs":"Installation » Module Not Found","id":"351","title":"Module Not Found"},"352":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"352","title":"Permission Errors"},"353":{"body":"If you get binary compatibility errors: # Rebuild native modules\nnpm rebuild # Or reinstall\nnpm uninstall @hai.ai/jacs\nnpm install @hai.ai/jacs","breadcrumbs":"Installation » Binary Compatibility","id":"353","title":"Binary Compatibility"},"354":{"body":"If TypeScript can't find definitions: // tsconfig.json\n{ \"compilerOptions\": { \"moduleResolution\": \"node\", \"esModuleInterop\": true, \"allowSyntheticDefaultImports\": true }\n}","breadcrumbs":"Installation » TypeScript Issues","id":"354","title":"TypeScript Issues"},"355":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support HTTP Server - Create JACS HTTP APIs Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"355","title":"Next Steps"},"356":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Express.js middleware integration MCP server implementation","breadcrumbs":"Installation » Examples","id":"356","title":"Examples"},"357":{"body":"The simplified API (@hai.ai/jacs/simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"357","title":"Simplified API"},"358":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load your agent\nconst agent = jacs.load('./jacs.config.json'); // Sign a message\nconst signed = jacs.signMessage({ action: 'approve', amount: 100 });\nconsole.log(`Document ID: ${signed.documentId}`); // Verify it\nconst result = jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}`);","breadcrumbs":"Simplified API » Quick Start","id":"358","title":"Quick Start"},"359":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"359","title":"When to Use the Simplified API"},"36":{"body":"Feature JACS Traditional APIs General Signing Agent Identity ✅ Built-in ❌ Custom implementation ❌ Not agent-focused Task Management ✅ Native support ❌ Application-specific ❌ Not applicable Multi-Party Agreements ✅ Core feature ❌ Complex to implement ⚠️ Possible but difficult Audit Trails ✅ Automatic ❌ Manual logging ⚠️ Basic signing only Schema Validation ✅ JSON Schema ❌ Custom validation ❌ No structure Versioning ✅ Built-in ❌ Manual versioning ❌ Not supported Cross-Platform ✅ JSON everywhere ⚠️ Protocol dependent ⚠️ Format dependent","breadcrumbs":"What is JACS? » Benefits Over Alternatives","id":"36","title":"Benefits Over Alternatives"},"360":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"360","title":"API Reference"},"361":{"body":"Load an agent from a configuration file. This must be called before any other operations. Parameters: configPath (string, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: AgentInfo object const info = jacs.load('./jacs.config.json');\nconsole.log(`Agent ID: ${info.agentId}`);\nconsole.log(`Config: ${info.configPath}`);","breadcrumbs":"Simplified API » load(configPath?)","id":"361","title":"load(configPath?)"},"362":{"body":"Check if an agent is currently loaded. Returns: boolean if (!jacs.isLoaded()) { jacs.load('./jacs.config.json');\n}","breadcrumbs":"Simplified API » isLoaded()","id":"362","title":"isLoaded()"},"363":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or null if no agent is loaded const info = jacs.getAgentInfo();\nif (info) { console.log(`Agent: ${info.agentId}`);\n}","breadcrumbs":"Simplified API » getAgentInfo()","id":"363","title":"getAgentInfo()"},"364":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Throws: Error if no agent is loaded const result = jacs.verifySelf();\nif (result.valid) { console.log('Agent integrity verified');\n} else { console.log('Errors:', result.errors);\n}","breadcrumbs":"Simplified API » verifySelf()","id":"364","title":"verifySelf()"},"365":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Object, array, string, or any JSON-serializable value Returns: SignedDocument Throws: Error if no agent is loaded // Sign an object\nconst signed = jacs.signMessage({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); console.log(`Document ID: ${signed.documentId}`);\nconsole.log(`Signed by: ${signed.agentId}`);\nconsole.log(`Timestamp: ${signed.timestamp}`);\nconsole.log(`Raw JSON: ${signed.raw}`);","breadcrumbs":"Simplified API » signMessage(data)","id":"365","title":"signMessage(data)"},"366":{"body":"Sign a file with optional content embedding. Parameters: filePath (string): Path to the file to sign embed (boolean, optional): If true, embed file content in the document (default: false) Returns: SignedDocument Throws: Error if file not found or no agent loaded // Reference only (stores hash)\nconst signed = jacs.signFile('contract.pdf', false); // Embed content (creates portable document)\nconst embedded = jacs.signFile('contract.pdf', true);","breadcrumbs":"Simplified API » signFile(filePath, embed?)","id":"366","title":"signFile(filePath, embed?)"},"367":{"body":"Verify a signed document and extract its content. Parameters: signedDocument (string): The JSON string of the signed document Returns: VerificationResult Throws: Error if no agent is loaded const result = jacs.verify(signedJson); if (result.valid) { console.log(`Signed by: ${result.signerId}`); console.log(`Timestamp: ${result.timestamp}`); console.log(`Data: ${JSON.stringify(result.data)}`);\n} else { console.log(`Invalid: ${result.errors.join(', ')}`);\n}","breadcrumbs":"Simplified API » verify(signedDocument)","id":"367","title":"verify(signedDocument)"},"368":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Does not use the global agent. Parameters: signedDocument (string): The signed JACS document JSON options (object, optional): { keyResolution?, dataDirectory?, keyDirectory? } Returns: VerificationResult (same shape as verify()) const result = jacs.verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './keys' });\nconsole.log(result.valid, result.signerId);","breadcrumbs":"Simplified API » verifyStandalone(signedDocument, options?)","id":"368","title":"verifyStandalone(signedDocument, options?)"},"369":{"body":"Run a read-only security audit and health checks. Returns an object with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. Parameters: options (object, optional): { configPath?, recentN? } Returns: Object with risks, health_checks, summary, overall_status, etc. See Security Model — Security Audit for full details and options. const result = jacs.audit();\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`);","breadcrumbs":"Simplified API » audit(options?)","id":"369","title":"audit(options?)"},"37":{"body":"✅ Perfect for: Multi-agent AI systems Task delegation and tracking Audit trail requirements Cross-organization AI collaboration Compliance-critical AI applications Research environments with multiple AI models ⚠️ Consider alternatives for: Simple single-agent systems Real-time streaming data High-frequency micro-transactions Systems where trust is not a concern","breadcrumbs":"What is JACS? » When to Use JACS","id":"37","title":"When to Use JACS"},"370":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use exportAgent() to get the current document, modify it, then pass it here. Parameters: newAgentData (object|string): Complete agent document as JSON string or object Returns: string - The updated and re-signed agent document Throws: Error if no agent loaded or validation fails // Get current agent document\nconst agentDoc = JSON.parse(jacs.exportAgent()); // Modify fields\nagentDoc.jacsAgentType = 'hybrid';\nagentDoc.jacsContacts = [{ contactFirstName: 'Jane', contactLastName: 'Doe' }]; // Update (creates new version, re-signs, re-hashes)\nconst updated = jacs.updateAgent(agentDoc);\nconst newDoc = JSON.parse(updated); console.log(`New version: ${newDoc.jacsVersion}`);\nconsole.log(`Previous: ${newDoc.jacsPreviousVersion}`); Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » updateAgent(newAgentData)","id":"370","title":"updateAgent(newAgentData)"},"371":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without noSave: true). Parameters: documentId (string): The document ID (jacsId) to update newDocumentData (object|string): Updated document as JSON string or object attachments (string[], optional): Array of file paths to attach embed (boolean, optional): If true, embed attachment contents Returns: SignedDocument with the updated document Throws: Error if document not found, no agent loaded, or validation fails // Create a document (must be saved to disk)\nconst original = jacs.signMessage({ status: 'pending', amount: 100 }); // Later, update it\nconst doc = JSON.parse(original.raw);\ndoc.content.status = 'approved'; const updated = jacs.updateDocument(original.documentId, doc);\nconst newDoc = JSON.parse(updated.raw); console.log(`New version: ${newDoc.jacsVersion}`);\nconsole.log(`Previous: ${newDoc.jacsPreviousVersion}`);","breadcrumbs":"Simplified API » updateDocument(documentId, newDocumentData, attachments?, embed?)","id":"371","title":"updateDocument(documentId, newDocumentData, attachments?, embed?)"},"372":{"body":"Export the current agent document for sharing or inspection. Returns: string - The agent JSON document Throws: Error if no agent loaded const agentDoc = jacs.exportAgent();\nconsole.log(agentDoc); // Parse to inspect\nconst agent = JSON.parse(agentDoc);\nconsole.log(`Agent type: ${agent.jacsAgentType}`);","breadcrumbs":"Simplified API » exportAgent()","id":"372","title":"exportAgent()"},"373":{"body":"Register the loaded agent with HAI.ai. Requires a loaded agent and an API key (options.apiKey or HAI_API_KEY). Parameters: options (object, optional): { apiKey?, haiUrl?, preview? } Returns: Promise with agentId, jacsId, dnsVerified, signatures","breadcrumbs":"Simplified API » registerWithHai(options?)","id":"373","title":"registerWithHai(options?)"},"374":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Parameters: domain (string), ttl (number, optional, default 3600) Returns: string","breadcrumbs":"Simplified API » getDnsRecord(domain, ttl?)","id":"374","title":"getDnsRecord(domain, ttl?)"},"375":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: object","breadcrumbs":"Simplified API » getWellKnownJson()","id":"375","title":"getWellKnownJson()"},"376":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: string - PEM-encoded public key Throws: Error if no agent loaded const pem = jacs.getPublicKey();\nconsole.log(pem);\n// -----BEGIN PUBLIC KEY-----\n// ...\n// -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » getPublicKey()","id":"376","title":"getPublicKey()"},"377":{"body":"","breadcrumbs":"Simplified API » Type Definitions","id":"377","title":"Type Definitions"},"378":{"body":"interface AgentInfo { agentId: string; // Agent's UUID name: string; // Agent name from config publicKeyPath: string; // Path to public key file configPath: string; // Path to loaded config\n}","breadcrumbs":"Simplified API » AgentInfo","id":"378","title":"AgentInfo"},"379":{"body":"interface SignedDocument { raw: string; // Full JSON document with signature documentId: string; // Document's UUID (jacsId) agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp\n}","breadcrumbs":"Simplified API » SignedDocument","id":"379","title":"SignedDocument"},"38":{"body":"Ready to dive deeper? Continue with: Core Concepts - Learn about agents, documents, and agreements Quick Start - Get hands-on experience Implementation guides for Rust , Node.js , or Python","breadcrumbs":"What is JACS? » Next Steps","id":"38","title":"Next Steps"},"380":{"body":"interface VerificationResult { valid: boolean; // True if signature verified data?: any; // Extracted document content signerId: string; // Agent who signed timestamp: string; // When it was signed attachments: Attachment[]; // File attachments errors: string[]; // Error messages if invalid\n}","breadcrumbs":"Simplified API » VerificationResult","id":"380","title":"VerificationResult"},"381":{"body":"interface Attachment { filename: string; // Original filename mimeType: string; // MIME type hash: string; // SHA-256 hash embedded: boolean; // True if content is embedded content?: Buffer; // Embedded content (if available)\n}","breadcrumbs":"Simplified API » Attachment","id":"381","title":"Attachment"},"382":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load agent\nconst agent = jacs.load('./jacs.config.json');\nconsole.log(`Loaded agent: ${agent.agentId}`); // Verify agent integrity\nconst selfCheck = jacs.verifySelf();\nif (!selfCheck.valid) { throw new Error('Agent integrity check failed');\n} // Sign a transaction\nconst transaction = { type: 'payment', from: agent.agentId, to: 'recipient-agent-uuid', amount: 250.00, currency: 'USD', memo: 'Q1 Service Payment'\n}; const signed = jacs.signMessage(transaction);\nconsole.log(`Transaction signed: ${signed.documentId}`); // Verify the transaction (simulating recipient)\nconst verification = jacs.verify(signed.raw); if (verification.valid) { console.log(`Payment verified from: ${verification.signerId}`); console.log(`Amount: ${verification.data.amount} ${verification.data.currency}`);\n} else { console.log(`Verification failed: ${verification.errors.join(', ')}`);\n} // Sign a file\nconst contractSigned = jacs.signFile('./contract.pdf', true);\nconsole.log(`Contract signed: ${contractSigned.documentId}`); // Update agent metadata\nconst agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'ai';\nif (!agentDoc.jacsContacts || agentDoc.jacsContacts.length === 0) { agentDoc.jacsContacts = [{ contactFirstName: 'AI', contactLastName: 'Agent' }];\n}\nconst updatedAgent = jacs.updateAgent(agentDoc);\nconsole.log('Agent metadata updated'); // Share public key\nconst publicKey = jacs.getPublicKey();\nconsole.log('Share this public key for verification:');\nconsole.log(publicKey);","breadcrumbs":"Simplified API » Complete Example","id":"382","title":"Complete Example"},"383":{"body":"The simplified API works well with MCP tool implementations: const { Server } = require('@modelcontextprotocol/sdk/server/index.js');\nconst jacs = require('@hai.ai/jacs/simple'); // Load agent once at startup\njacs.load('./jacs.config.json'); // Define a signed tool\nserver.setRequestHandler('tools/call', async (request) => { const { name, arguments: args } = request.params; if (name === 'approve_request') { const signed = jacs.signMessage({ action: 'approve', requestId: args.requestId, approvedBy: jacs.getAgentInfo().agentId }); return { content: [{ type: 'text', text: signed.raw }] }; }\n});","breadcrumbs":"Simplified API » MCP Integration","id":"383","title":"MCP Integration"},"384":{"body":"const jacs = require('@hai.ai/jacs/simple'); try { jacs.load('./missing-config.json');\n} catch (e) { console.error('Config not found:', e.message);\n} try { // Will fail if no agent loaded jacs.signMessage({ data: 'test' });\n} catch (e) { console.error('No agent:', e.message);\n} try { jacs.signFile('/nonexistent/file.pdf');\n} catch (e) { console.error('File not found:', e.message);\n} // Verification doesn't throw - check result.valid\nconst result = jacs.verify('invalid json');\nif (!result.valid) { console.error('Verification errors:', result.errors);\n}","breadcrumbs":"Simplified API » Error Handling","id":"384","title":"Error Handling"},"385":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"385","title":"See Also"},"386":{"body":"This chapter covers fundamental JACS operations in Node.js, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"386","title":"Basic Usage"},"387":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"387","title":"Initializing an Agent"},"388":{"body":"import { JacsAgent } from '@hai.ai/jacs'; // Create a new agent instance\nconst agent = new JacsAgent(); // Load configuration from file\nagent.load('./jacs.config.json');","breadcrumbs":"Basic Usage » Create and Load Agent","id":"388","title":"Create and Load Agent"},"389":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"389","title":"Configuration File"},"39":{"body":"Understanding JACS requires familiarity with several key concepts that work together to create a secure, verifiable communication framework for AI agents.","breadcrumbs":"Core Concepts » Core Concepts","id":"39","title":"Core Concepts"},"390":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"390","title":"Creating Documents"},"391":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create a document from JSON\nconst documentData = { title: \"Project Proposal\", content: \"Quarterly development plan\", budget: 50000\n}; const signedDocument = agent.createDocument(JSON.stringify(documentData));\nconsole.log('Signed document:', signedDocument);","breadcrumbs":"Basic Usage » Basic Document Creation","id":"391","title":"Basic Document Creation"},"392":{"body":"Validate against a custom JSON Schema: const signedDocument = agent.createDocument( JSON.stringify(documentData), './schemas/proposal.schema.json' // custom schema path\n);","breadcrumbs":"Basic Usage » With Custom Schema","id":"392","title":"With Custom Schema"},"393":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema './output/proposal.json' // output filename\n);","breadcrumbs":"Basic Usage » With Output File","id":"393","title":"With Output File"},"394":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename true // noSave = true\n);","breadcrumbs":"Basic Usage » Without Saving","id":"394","title":"Without Saving"},"395":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename false, // save the document './attachments/report.pdf', // attachment path true // embed files\n);","breadcrumbs":"Basic Usage » With Attachments","id":"395","title":"With Attachments"},"396":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"396","title":"Verifying Documents"},"397":{"body":"// Verify a document's signature and hash\nconst isValid = agent.verifyDocument(signedDocumentJson);\nconsole.log('Document valid:', isValid);","breadcrumbs":"Basic Usage » Verify Document Signature","id":"397","title":"Verify Document Signature"},"398":{"body":"// Verify with a custom signature field\nconst isValid = agent.verifySignature( signedDocumentJson, 'jacsSignature' // signature field name\n);","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"398","title":"Verify Specific Signature Field"},"399":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"399","title":"Updating Documents"},"4":{"body":"Performance : Fastest implementation with native performance CLI Tool : Complete command-line interface for agent and document management Library : Full-featured Rust library for embedded applications Observability : Advanced logging and metrics with OpenTelemetry support","breadcrumbs":"Introduction » 🦀 Rust (Core Library + CLI)","id":"4","title":"🦀 Rust (Core Library + CLI)"},"40":{"body":"An Agent is the fundamental entity in JACS - an autonomous participant that can create, sign, and verify documents.","breadcrumbs":"Core Concepts » Agents","id":"40","title":"Agents"},"400":{"body":"// Original document key format: \"id:version\"\nconst documentKey = 'doc-uuid:version-uuid'; // Modified document content\nconst updatedData = { jacsId: 'doc-uuid', jacsVersion: 'version-uuid', title: \"Updated Proposal\", content: \"Revised quarterly plan\", budget: 75000\n}; const updatedDocument = agent.updateDocument( documentKey, JSON.stringify(updatedData)\n); console.log('Updated document:', updatedDocument);","breadcrumbs":"Basic Usage » Update Existing Document","id":"400","title":"Update Existing Document"},"401":{"body":"const updatedDocument = agent.updateDocument( documentKey, JSON.stringify(updatedData), ['./new-report.pdf'], // new attachments true // embed files\n);","breadcrumbs":"Basic Usage » Update with New Attachments","id":"401","title":"Update with New Attachments"},"402":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"402","title":"Signing and Verification"},"403":{"body":"// Sign any string data\nconst signature = agent.signString('Important message to sign');\nconsole.log('Signature:', signature);","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"403","title":"Sign Arbitrary Data"},"404":{"body":"// Verify a signature on string data\nconst isValid = agent.verifyString( 'Important message to sign', // original data signatureBase64, // base64 signature publicKeyBuffer, // public key as Buffer 'ring-Ed25519' // algorithm\n);","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"404","title":"Verify Arbitrary Data"},"405":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"405","title":"Working with Agreements"},"406":{"body":"// Add agreement requiring multiple agent signatures\nconst documentWithAgreement = agent.createAgreement( signedDocumentJson, ['agent1-uuid', 'agent2-uuid'], // required signers 'Do you agree to these terms?', // question 'Q1 2024 service contract', // context 'jacsAgreement' // field name\n);","breadcrumbs":"Basic Usage » Create an Agreement","id":"406","title":"Create an Agreement"},"407":{"body":"// Sign the agreement as the current agent\nconst signedAgreement = agent.signAgreement( documentWithAgreementJson, 'jacsAgreement' // agreement field name\n);","breadcrumbs":"Basic Usage » Sign an Agreement","id":"407","title":"Sign an Agreement"},"408":{"body":"// Check which agents have signed\nconst status = agent.checkAgreement( documentWithAgreementJson, 'jacsAgreement'\n); console.log('Agreement status:', JSON.parse(status));","breadcrumbs":"Basic Usage » Check Agreement Status","id":"408","title":"Check Agreement Status"},"409":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"409","title":"Agent Operations"},"41":{"body":"{ \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsType\": \"agent\", \"name\": \"Content Creation Agent\", \"description\": \"Specialized in creating marketing content\"\n} Key Properties: jacsId : Permanent UUID identifying the agent jacsVersion : UUID that changes with each update Cryptographic Keys : Ed25519, RSA, or post-quantum key pairs Services : Capabilities the agent offers Contacts : How to reach the agent","breadcrumbs":"Core Concepts » Agent Identity","id":"41","title":"Agent Identity"},"410":{"body":"// Verify the loaded agent's signature\nconst isValid = agent.verifyAgent();\nconsole.log('Agent valid:', isValid); // Verify a specific agent file\nconst isValidOther = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Basic Usage » Verify Agent","id":"410","title":"Verify Agent"},"411":{"body":"// Update agent document\nconst updatedAgentJson = agent.updateAgent(JSON.stringify({ jacsId: 'agent-uuid', jacsVersion: 'version-uuid', name: 'Updated Agent Name', description: 'Updated description'\n}));","breadcrumbs":"Basic Usage » Update Agent","id":"411","title":"Update Agent"},"412":{"body":"// Sign another agent's document with registration signature\nconst signedAgentJson = agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"Basic Usage » Sign External Agent","id":"412","title":"Sign External Agent"},"413":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"413","title":"Request/Response Signing"},"414":{"body":"// Sign request parameters as a JACS document\nconst signedRequest = agent.signRequest({ method: 'GET', path: '/api/resource', timestamp: new Date().toISOString(), body: { query: 'data' }\n});","breadcrumbs":"Basic Usage » Sign a Request","id":"414","title":"Sign a Request"},"415":{"body":"// Verify a signed response\nconst result = agent.verifyResponse(signedResponseJson);\nconsole.log('Response valid:', result); // Verify and get signer's agent ID\nconst resultWithId = agent.verifyResponseWithAgentId(signedResponseJson);\nconsole.log('Signer ID:', resultWithId);","breadcrumbs":"Basic Usage » Verify a Response","id":"415","title":"Verify a Response"},"416":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"416","title":"Utility Functions"},"417":{"body":"import { hashString } from '@hai.ai/jacs'; // SHA-256 hash of a string\nconst hash = hashString('data to hash');\nconsole.log('Hash:', hash);","breadcrumbs":"Basic Usage » Hash String","id":"417","title":"Hash String"},"418":{"body":"import { createConfig } from '@hai.ai/jacs'; // Programmatically create a config JSON string\nconst configJson = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // key algorithm undefined, // private key password undefined, // agent id and version 'fs' // default storage\n); console.log('Config:', configJson);","breadcrumbs":"Basic Usage » Create Configuration","id":"418","title":"Create Configuration"},"419":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent(); try { agent.load('./jacs.config.json');\n} catch (error) { console.error('Failed to load agent:', error.message);\n} try { const doc = agent.createDocument(JSON.stringify({ data: 'test' })); console.log('Document created');\n} catch (error) { console.error('Failed to create document:', error.message);\n} try { const isValid = agent.verifyDocument(invalidJson);\n} catch (error) { console.error('Verification failed:', error.message);\n}","breadcrumbs":"Basic Usage » Error Handling","id":"419","title":"Error Handling"},"42":{"body":"Creation : Generate keys and initial agent document Registration : Store public keys for verification Operation : Create and sign documents Updates : Version changes while maintaining identity Verification : Other agents validate signatures","breadcrumbs":"Core Concepts » Agent Lifecycle","id":"42","title":"Agent Lifecycle"},"420":{"body":"import { JacsAgent, hashString } from '@hai.ai/jacs'; async function main() { // Initialize agent const agent = new JacsAgent(); agent.load('./jacs.config.json'); // Create a task document const task = { title: 'Code Review', description: 'Review pull request #123', assignee: 'developer-uuid', deadline: '2024-02-01' }; const signedTask = agent.createDocument(JSON.stringify(task)); console.log('Task created'); // Verify the task if (agent.verifyDocument(signedTask)) { console.log('Task signature valid'); } // Create agreement for task acceptance const taskWithAgreement = agent.createAgreement( signedTask, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ); // Sign the agreement const signedAgreement = agent.signAgreement(taskWithAgreement); console.log('Agreement signed'); // Check agreement status const status = agent.checkAgreement(signedAgreement); console.log('Status:', status); // Hash some data for reference const taskHash = hashString(signedTask); console.log('Task hash:', taskHash);\n} main().catch(console.error);","breadcrumbs":"Basic Usage » Complete Example","id":"420","title":"Complete Example"},"421":{"body":"MCP Integration - Model Context Protocol support HTTP Server - Create HTTP APIs Express Middleware - Express.js integration API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"421","title":"Next Steps"},"422":{"body":"JACS provides native integration with the Model Context Protocol (MCP) , enabling secure agent communication within AI systems. JACS uses a transport proxy pattern that wraps any MCP transport with cryptographic signing and verification.","breadcrumbs":"MCP Integration » Model Context Protocol (MCP) Integration","id":"422","title":"Model Context Protocol (MCP) Integration"},"423":{"body":"Model Context Protocol is a standard for AI models to securely access external tools, data, and services. JACS enhances MCP by adding: Cryptographic verification of all messages Agent identity for all operations Transparent encryption of MCP JSON-RPC traffic Audit trails of all MCP interactions","breadcrumbs":"MCP Integration » What is MCP?","id":"423","title":"What is MCP?"},"424":{"body":"JACS provides a transport proxy that sits between your MCP server/client and the underlying transport (STDIO, SSE, WebSocket). The proxy: Outgoing messages : Signs JSON-RPC messages with the JACS agent's key using signRequest() Incoming messages : Verifies signatures using verifyResponse() and extracts the payload Fallback : If verification fails, passes messages through as plain JSON (graceful degradation)","breadcrumbs":"MCP Integration » How JACS MCP Works","id":"424","title":"How JACS MCP Works"},"425":{"body":"","breadcrumbs":"MCP Integration » Quick Start","id":"425","title":"Quick Start"},"426":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; const JACS_CONFIG_PATH = \"./jacs.config.json\"; async function main() { // Create the base STDIO transport const baseTransport = new StdioServerTransport(); // Wrap with JACS encryption const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG_PATH, \"server\" ); // Create MCP server const server = new McpServer({ name: \"my-jacs-server\", version: \"1.0.0\" }); // Register tools server.tool(\"add\", { a: z.number().describe(\"First number\"), b: z.number().describe(\"Second number\") }, async ({ a, b }) => { return { content: [{ type: \"text\", text: `${a} + ${b} = ${a + b}` }] }; }); // Connect with JACS encryption await server.connect(secureTransport); console.error(\"JACS MCP Server running with encryption enabled\");\n} main();","breadcrumbs":"MCP Integration » Basic MCP Server with JACS","id":"426","title":"Basic MCP Server with JACS"},"427":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const JACS_CONFIG_PATH = \"./jacs.config.json\"; async function main() { // Create base transport to connect to MCP server const baseTransport = new StdioClientTransport({ command: 'node', args: ['my-jacs-server.js'] }); // Wrap with JACS encryption const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG_PATH, \"client\" ); // Create MCP client const client = new Client({ name: \"my-jacs-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); // Connect with JACS encryption await client.connect(secureTransport); // List available tools const tools = await client.listTools(); console.log('Available tools:', tools.tools.map(t => t.name)); // Call a tool (message will be JACS-signed) const result = await client.callTool({ name: \"add\", arguments: { a: 5, b: 3 } }); console.log('Result:', result.content);\n} main();","breadcrumbs":"MCP Integration » MCP Client with JACS","id":"427","title":"MCP Client with JACS"},"428":{"body":"","breadcrumbs":"MCP Integration » API Reference","id":"428","title":"API Reference"},"429":{"body":"The main class that wraps MCP transports with JACS encryption. import { JACSTransportProxy } from '@hai.ai/jacs/mcp'; const proxy = new JACSTransportProxy( transport, // Any MCP transport (Stdio, SSE, WebSocket) role, // \"server\" or \"client\" jacsConfigPath // Path to jacs.config.json\n);","breadcrumbs":"MCP Integration » JACSTransportProxy","id":"429","title":"JACSTransportProxy"},"43":{"body":"When consuming signed documents, you can verify in two ways: With a loaded agent (load(config) first): Call verify(signedDocument). The loaded agent uses its config (trust store, key resolution) to resolve the signer’s public key and verify the signature. Use this when your process already has a JACS config (e.g. it also signs) or when you want to use a specific key directory and resolution order. Without loading an agent (one-off verification): Call verify_standalone(signedDocument, options) (or the language equivalent: verifyStandalone, VerifyStandalone). This verifies the document using only the options you pass (e.g. keyResolution, keyDirectory). No config file or persistent agent state is required. Use this in lightweight services that only need to verify incoming documents.","breadcrumbs":"Core Concepts » Verification: load() vs verify_standalone()","id":"43","title":"Verification: load() vs verify_standalone()"},"430":{"body":"Factory function for creating a transport proxy. import { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const secureTransport = createJACSTransportProxy( baseTransport, // The underlying MCP transport configPath, // Path to jacs.config.json role // \"server\" or \"client\"\n);","breadcrumbs":"MCP Integration » createJACSTransportProxy","id":"430","title":"createJACSTransportProxy"},"431":{"body":"Async factory that waits for JACS to be fully loaded before returning. import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( baseTransport, configPath, role\n);","breadcrumbs":"MCP Integration » createJACSTransportProxyAsync","id":"431","title":"createJACSTransportProxyAsync"},"432":{"body":"","breadcrumbs":"MCP Integration » Transport Options","id":"432","title":"Transport Options"},"433":{"body":"Best for CLI tools and subprocess communication: import { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); Important : When using STDIO transport, all debug logging goes to stderr to keep stdout clean for JSON-RPC messages.","breadcrumbs":"MCP Integration » STDIO Transport","id":"433","title":"STDIO Transport"},"434":{"body":"For web-based MCP servers: import { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport express from 'express'; const app = express(); app.get('/sse', (req, res) => { const baseTransport = new SSEServerTransport('/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\" ); // Connect your MCP server to secureTransport server.connect(secureTransport);\n}); // Handle POST messages with JACS decryption\napp.post('/messages', express.text(), async (req, res) => { await secureTransport.handlePostMessage(req, res, req.body);\n}); app.listen(3000);","breadcrumbs":"MCP Integration » SSE Transport (HTTP)","id":"434","title":"SSE Transport (HTTP)"},"435":{"body":"","breadcrumbs":"MCP Integration » Configuration","id":"435","title":"Configuration"},"436":{"body":"Create a jacs.config.json for your MCP server/client: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"MCP Integration » JACS Config File","id":"436","title":"JACS Config File"},"437":{"body":"Enable debug logging (not recommended for STDIO): export JACS_MCP_DEBUG=true","breadcrumbs":"MCP Integration » Environment Variables","id":"437","title":"Environment Variables"},"438":{"body":"","breadcrumbs":"MCP Integration » How Messages Are Signed","id":"438","title":"How Messages Are Signed"},"439":{"body":"When the MCP SDK sends a message, the proxy intercepts it and: Serializes the JSON-RPC message Calls jacs.signRequest(message) to create a JACS artifact Sends the signed artifact to the transport // Original MCP message\n{ \"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"tools/call\", \"params\": { \"name\": \"add\", \"arguments\": { \"a\": 5, \"b\": 3 } }\n} // Becomes a JACS-signed artifact with jacsId, jacsSignature, etc.","breadcrumbs":"MCP Integration » Outgoing Messages","id":"439","title":"Outgoing Messages"},"44":{"body":"A Document is any JSON object that follows JACS conventions for identity, versioning, and cryptographic integrity.","breadcrumbs":"Core Concepts » Documents","id":"44","title":"Documents"},"440":{"body":"When the transport receives a message, the proxy: Attempts to verify it as a JACS artifact using jacs.verifyResponse() If valid, extracts the original JSON-RPC payload If not valid JACS, parses as plain JSON (fallback mode) Passes the clean message to the MCP SDK","breadcrumbs":"MCP Integration » Incoming Messages","id":"440","title":"Incoming Messages"},"441":{"body":"","breadcrumbs":"MCP Integration » Complete Example","id":"441","title":"Complete Example"},"442":{"body":"#!/usr/bin/env node\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; async function main() { console.error(\"JACS MCP Server starting...\"); // Create transport with JACS encryption const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.server.config.json\", \"server\" ); // Create MCP server const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called with: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"add\", { a: z.number().describe(\"First number\"), b: z.number().describe(\"Second number\") }, async ({ a, b }) => { console.error(`Add called with: ${a}, ${b}`); return { content: [{ type: \"text\", text: `Result: ${a + b}` }] }; }); // Register resources server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: \"JACS-secured MCP Server\", mimeType: \"text/plain\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"MCP Integration » Server (mcp.server.js)","id":"442","title":"Server (mcp.server.js)"},"443":{"body":"#!/usr/bin/env node\nimport { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; async function main() { console.log(\"JACS MCP Client starting...\"); // Connect to the server const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp.server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.client.config.json\", \"client\" ); const client = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await client.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await client.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo tool const echoResult = await client.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo result:\", echoResult.content[0].text); // Call add tool const addResult = await client.callTool({ name: \"add\", arguments: { a: 10, b: 20 } }); console.log(\"Add result:\", addResult.content[0].text); await client.close();\n} main().catch(console.error);","breadcrumbs":"MCP Integration » Client (mcp.client.js)","id":"443","title":"Client (mcp.client.js)"},"444":{"body":"","breadcrumbs":"MCP Integration » Security Considerations","id":"444","title":"Security Considerations"},"445":{"body":"All JACS-signed messages include: jacsId - Unique document identifier jacsVersion - Version tracking jacsSignature - Cryptographic signature jacsHash - Content hash for integrity","breadcrumbs":"MCP Integration » Message Verification","id":"445","title":"Message Verification"},"446":{"body":"If JACS cannot verify an incoming message, it falls back to plain JSON parsing. This allows: Gradual migration to JACS-secured communication Interoperability with non-JACS MCP clients/servers To require JACS verification (no fallback), implement custom validation in your tools.","breadcrumbs":"MCP Integration » Passthrough Mode","id":"446","title":"Passthrough Mode"},"447":{"body":"Each MCP server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file","breadcrumbs":"MCP Integration » Key Management","id":"447","title":"Key Management"},"448":{"body":"","breadcrumbs":"MCP Integration » Debugging","id":"448","title":"Debugging"},"449":{"body":"export JACS_MCP_DEBUG=true This outputs detailed logs about message signing and verification.","breadcrumbs":"MCP Integration » Enable Debug Logging","id":"449","title":"Enable Debug Logging"},"45":{"body":"{ \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsType\": \"task\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"previous-version-uuid\", \"title\": \"Analyze Q4 Sales Data\", \"description\": \"Generate insights from sales data\", \"jacsSha256\": \"hash-of-document-content\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\"] }\n}","breadcrumbs":"Core Concepts » Document Structure","id":"45","title":"Document Structure"},"450":{"body":"For STDIO transports, debug logs go to stderr to prevent contaminating the JSON-RPC stream on stdout.","breadcrumbs":"MCP Integration » STDIO Debug Note","id":"450","title":"STDIO Debug Note"},"451":{"body":"\"JACS not operational\" : Check that your config file path is correct and the agent is properly initialized. Verification failures : Ensure both server and client are using compatible JACS versions and valid keys. Empty responses : The proxy removes null values from messages to prevent MCP schema validation issues.","breadcrumbs":"MCP Integration » Common Issues","id":"451","title":"Common Issues"},"452":{"body":"HTTP Server - Create HTTP APIs with JACS Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"MCP Integration » Next Steps","id":"452","title":"Next Steps"},"453":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing. This enables secure communication between JACS agents over HTTP.","breadcrumbs":"HTTP Server » HTTP Server","id":"453","title":"HTTP Server"},"454":{"body":"JACS HTTP integration provides: Request signing : Sign outgoing HTTP requests with your agent's key Request verification : Verify incoming requests were signed by a valid agent Response signing : Automatically sign responses before sending Response verification : Verify server responses on the client side Framework middleware : Ready-to-use middleware for Express and Koa","breadcrumbs":"HTTP Server » Overview","id":"454","title":"Overview"},"455":{"body":"","breadcrumbs":"HTTP Server » Core Concepts","id":"455","title":"Core Concepts"},"456":{"body":"Client Server | | |-- signRequest(payload) -----> | | |-- verifyResponse() --> payload | |-- process payload | |-- signResponse(result) |<-- verifyResponse(result) ---| | All messages are cryptographically signed, ensuring: Message integrity (no tampering) Agent identity (verified sender) Non-repudiation (proof of origin)","breadcrumbs":"HTTP Server » Request/Response Flow","id":"456","title":"Request/Response Flow"},"457":{"body":"","breadcrumbs":"HTTP Server » HTTP Client","id":"457","title":"HTTP Client"},"458":{"body":"import jacs from '@hai.ai/jacs';\nimport http from 'http'; async function main() { // Load JACS agent await jacs.load('./jacs.config.json'); // Prepare payload const payload = { message: \"Hello, secure server!\", data: { id: 123, value: \"some data\" }, timestamp: new Date().toISOString() }; // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await sendRequest(signedRequest, 'localhost', 3000, '/api/echo'); // Verify the response const verifiedResponse = await jacs.verifyResponse(response); console.log('Verified payload:', verifiedResponse.payload);\n} function sendRequest(body, host, port, path) { return new Promise((resolve, reject) => { const options = { hostname: host, port: port, path: path, method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Length': Buffer.byteLength(body), }, }; const req = http.request(options, (res) => { let data = ''; res.on('data', chunk => data += chunk); res.on('end', () => { if (res.statusCode >= 200 && res.statusCode < 300) { resolve(data); } else { reject(new Error(`HTTP ${res.statusCode}: ${data}`)); } }); }); req.on('error', reject); req.write(body); req.end(); });\n} main();","breadcrumbs":"HTTP Server » Basic Client Usage","id":"458","title":"Basic Client Usage"},"459":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { await jacs.load('./jacs.config.json'); // Sign the payload const signedRequest = await jacs.signRequest(payload); // Send request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"HTTP Server » Using Fetch","id":"459","title":"Using Fetch"},"46":{"body":"Field Purpose Example $schema JSON Schema reference URL to schema jacsId Permanent document identifier UUID v4 jacsVersion Version identifier (changes on update) UUID v4 jacsType Document type \"agent\", \"task\", \"message\" jacsVersionDate When this version was created RFC 3339 timestamp jacsOriginalVersion Original version UUID UUID v4 jacsOriginalDate Original creation timestamp RFC 3339 timestamp jacsLevel Data level/intent \"raw\", \"config\", \"artifact\", \"derived\" jacsPreviousVersion Previous version UUID (optional) UUID v4 or null jacsSha256 Hash of document content SHA-256 hex string jacsSignature Cryptographic signature Signature object","breadcrumbs":"Core Concepts » Required JACS Fields","id":"46","title":"Required JACS Fields"},"460":{"body":"","breadcrumbs":"HTTP Server » Express Server","id":"460","title":"Express Server"},"461":{"body":"JACS provides JACSExpressMiddleware that automatically: Verifies incoming JACS requests Attaches the verified payload to req.jacsPayload Signs outgoing responses when you call res.send() with an object import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // IMPORTANT: Use express.text() BEFORE JACS middleware\n// This ensures req.body is a string for JACS verification\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware to API routes\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.post('/api/echo', (req, res) => { // Access verified payload from req.jacsPayload const payload = req.jacsPayload; if (!payload) { return res.status(400).send('JACS payload missing'); } console.log('Received verified payload:', payload); // Send response object - middleware will sign it automatically res.send({ echo: \"Server says hello!\", received: payload, timestamp: new Date().toISOString() });\n}); app.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Express Middleware","id":"461","title":"Using Express Middleware"},"462":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"HTTP Server » Middleware Configuration","id":"462","title":"Middleware Configuration"},"463":{"body":"For more control, you can handle signing manually: import express from 'express';\nimport jacs from '@hai.ai/jacs'; const app = express(); // Initialize JACS once at startup\nawait jacs.load('./jacs.config.json'); app.use(express.text({ type: '*/*' })); app.post('/api/process', async (req, res) => { try { // Manually verify incoming request const verified = await jacs.verifyResponse(req.body); const payload = verified.payload; // Process the request const result = { success: true, data: processData(payload), timestamp: new Date().toISOString() }; // Manually sign the response const signedResponse = await jacs.signResponse(result); res.type('text/plain').send(signedResponse); } catch (error) { console.error('JACS verification failed:', error); res.status(400).send('Invalid JACS request'); }\n});","breadcrumbs":"HTTP Server » Manual Request/Response Handling","id":"463","title":"Manual Request/Response Handling"},"464":{"body":"","breadcrumbs":"HTTP Server » Koa Server","id":"464","title":"Koa Server"},"465":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa();\nconst PORT = 3000; // Apply JACS Koa middleware\n// Handles raw body reading, verification, and response signing\napp.use(JACSKoaMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.use(async (ctx) => { if (ctx.path === '/api/echo' && ctx.method === 'POST') { // Access verified payload from ctx.state.jacsPayload or ctx.jacsPayload const payload = ctx.state.jacsPayload || ctx.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = 'JACS payload missing'; return; } console.log('Received verified payload:', payload); // Set response object - middleware will sign it automatically ctx.body = { echo: \"Koa server says hello!\", received: payload, timestamp: new Date().toISOString() }; } else { ctx.status = 404; ctx.body = 'Not Found. Try POST to /api/echo'; }\n}); app.listen(PORT, () => { console.log(`JACS Koa server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Koa Middleware","id":"465","title":"Using Koa Middleware"},"466":{"body":"","breadcrumbs":"HTTP Server » API Reference","id":"466","title":"API Reference"},"467":{"body":"Sign an object as a JACS request. const signedRequest = await jacs.signRequest({ method: 'getData', params: { id: 123 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signRequest(payload)","id":"467","title":"jacs.signRequest(payload)"},"468":{"body":"Verify a JACS-signed response and extract the payload. const result = await jacs.verifyResponse(jacsResponseString);\n// Returns: { payload: {...}, jacsId: '...', ... } const payload = result.payload;","breadcrumbs":"HTTP Server » jacs.verifyResponse(responseString)","id":"468","title":"jacs.verifyResponse(responseString)"},"469":{"body":"Sign an object as a JACS response. const signedResponse = await jacs.signResponse({ success: true, data: { result: 42 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signResponse(payload)","id":"469","title":"jacs.signResponse(payload)"},"47":{"body":"Agent Documents Define agent identity and capabilities Contain service definitions and contact information Self-signed by the agent Task Documents Describe work to be performed Include success/failure criteria Can be delegated between agents Message Documents General communication between agents Can include attachments and metadata Support threaded conversations Agreement Documents Multi-party consent mechanisms Track required and actual signatures Enforce completion before proceeding","breadcrumbs":"Core Concepts » Document Types","id":"47","title":"Document Types"},"470":{"body":"Express middleware for JACS request/response handling. import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use(JACSExpressMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads req.body as a JACS string Verifies the signature Attaches payload to req.jacsPayload On failure, sends 400 response Response Processing: Intercepts res.send() calls If body is an object, signs it as JACS Sends signed string to client","breadcrumbs":"HTTP Server » JACSExpressMiddleware(options)","id":"470","title":"JACSExpressMiddleware(options)"},"471":{"body":"Koa middleware for JACS request/response handling. import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads raw request body Verifies JACS signature Attaches payload to ctx.state.jacsPayload and ctx.jacsPayload Response Processing: Signs ctx.body if it's an object Converts to JACS string before sending","breadcrumbs":"HTTP Server » JACSKoaMiddleware(options)","id":"471","title":"JACSKoaMiddleware(options)"},"472":{"body":"","breadcrumbs":"HTTP Server » Complete Example","id":"472","title":"Complete Example"},"473":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // JACS middleware for /api routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Echo endpoint\napp.post('/api/echo', (req, res) => { const payload = req.jacsPayload; res.send({ echo: payload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = a / b; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); app.listen(3000, () => console.log('Server running on port 3000'));","breadcrumbs":"HTTP Server » Server (server.js)","id":"473","title":"Server (server.js)"},"474":{"body":"import jacs from '@hai.ai/jacs'; async function main() { await jacs.load('./jacs.client.config.json'); // Call echo endpoint const echoResult = await callApi('/api/echo', { message: 'Hello, server!' }); console.log('Echo result:', echoResult); // Call calculate endpoint const calcResult = await callApi('/api/calculate', { operation: 'multiply', a: 7, b: 6 }); console.log('Calculate result:', calcResult);\n} async function callApi(path, payload) { const signedRequest = await jacs.signRequest(payload); const response = await fetch(`http://localhost:3000${path}`, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} main().catch(console.error);","breadcrumbs":"HTTP Server » Client (client.js)","id":"474","title":"Client (client.js)"},"475":{"body":"","breadcrumbs":"HTTP Server » Security Considerations","id":"475","title":"Security Considerations"},"476":{"body":"JACS requests should use text/plain content type since they are signed JSON strings, not raw JSON.","breadcrumbs":"HTTP Server » Content-Type","id":"476","title":"Content-Type"},"477":{"body":"Always handle verification failures gracefully: try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"HTTP Server » Error Handling","id":"477","title":"Error Handling"},"478":{"body":"Each server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file pointing to the keys","breadcrumbs":"HTTP Server » Agent Keys","id":"478","title":"Agent Keys"},"479":{"body":"For Express, ensure express.text() comes before JACSExpressMiddleware: // Correct order\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong - JACS middleware won't receive string body\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"HTTP Server » Middleware Order","id":"479","title":"Middleware Order"},"48":{"body":"Tasks represent work that can be delegated, tracked, and verified between agents.","breadcrumbs":"Core Concepts » Tasks","id":"48","title":"Tasks"},"480":{"body":"Express Middleware - More Express integration patterns MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"HTTP Server » Next Steps","id":"480","title":"Next Steps"},"481":{"body":"This chapter covers advanced Express.js integration patterns with JACS, building on the basics covered in HTTP Server .","breadcrumbs":"Express Middleware » Express Middleware","id":"481","title":"Express Middleware"},"482":{"body":"JACS provides JACSExpressMiddleware for seamless integration with Express.js applications: Automatic request verification Automatic response signing Access to verified payloads via req.jacsPayload Error handling for invalid requests","breadcrumbs":"Express Middleware » Overview","id":"482","title":"Overview"},"483":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // Required: Parse body as text before JACS middleware\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Routes automatically get verified payloads and signed responses\napp.post('/api/data', (req, res) => { const payload = req.jacsPayload; res.send({ received: payload, status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » Quick Start","id":"483","title":"Quick Start"},"484":{"body":"","breadcrumbs":"Express Middleware » Middleware Configuration","id":"484","title":"Middleware Configuration"},"485":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"Express Middleware » Basic Configuration","id":"485","title":"Basic Configuration"},"486":{"body":"Apply JACS to specific routes: const app = express(); // Non-JACS routes (public endpoints)\napp.get('/health', (req, res) => res.send({ status: 'ok' }));\napp.get('/public/info', (req, res) => res.send({ name: 'My API' })); // JACS-protected routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/secure', (req, res) => { // Only JACS-signed requests reach here res.send({ data: 'secure response' });\n});","breadcrumbs":"Express Middleware » Per-Route Configuration","id":"486","title":"Per-Route Configuration"},"487":{"body":"Use different JACS agents for different routes: // Admin routes with admin agent\napp.use('/admin', express.text({ type: '*/*' }));\napp.use('/admin', JACSExpressMiddleware({ configPath: './jacs.admin.config.json'\n})); // User routes with user agent\napp.use('/user', express.text({ type: '*/*' }));\napp.use('/user', JACSExpressMiddleware({ configPath: './jacs.user.config.json'\n}));","breadcrumbs":"Express Middleware » Multiple JACS Agents","id":"487","title":"Multiple JACS Agents"},"488":{"body":"","breadcrumbs":"Express Middleware » Request Handling","id":"488","title":"Request Handling"},"489":{"body":"The middleware attaches the verified payload to req.jacsPayload: app.post('/api/process', (req, res) => { // req.jacsPayload contains the verified, decrypted payload const { action, data, timestamp } = req.jacsPayload; console.log('Action:', action); console.log('Data:', data); console.log('Request timestamp:', timestamp); res.send({ processed: true });\n});","breadcrumbs":"Express Middleware » Accessing Verified Payload","id":"489","title":"Accessing Verified Payload"},"49":{"body":"{ \"jacsType\": \"task\", \"title\": \"Generate Marketing Copy\", \"description\": \"Create compelling copy for product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Research competitors\", \"description\": \"Analyze competitor messaging\", \"success\": \"Complete competitive analysis report\", \"failure\": \"Unable to access competitor data\" } ], \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"signature\": \"customer-signature\" }\n}","breadcrumbs":"Core Concepts » Task Structure","id":"49","title":"Task Structure"},"490":{"body":"If JACS verification fails, req.jacsPayload will be undefined: app.post('/api/secure', (req, res) => { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request' }); } // Process verified payload res.send({ success: true });\n});","breadcrumbs":"Express Middleware » Handling Missing Payload","id":"490","title":"Handling Missing Payload"},"491":{"body":"Create a reusable validation middleware: function requireJacsPayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'JACS verification failed', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Apply to routes\napp.post('/api/secure', requireJacsPayload, (req, res) => { // Guaranteed to have valid req.jacsPayload res.send({ data: req.jacsPayload });\n});","breadcrumbs":"Express Middleware » Validation Helper","id":"491","title":"Validation Helper"},"492":{"body":"","breadcrumbs":"Express Middleware » Response Handling","id":"492","title":"Response Handling"},"493":{"body":"When you call res.send() with an object, the middleware automatically signs it: app.post('/api/data', (req, res) => { // This object will be automatically JACS-signed res.send({ result: 'success', data: { value: 42 }, timestamp: new Date().toISOString() });\n});","breadcrumbs":"Express Middleware » Automatic Signing","id":"493","title":"Automatic Signing"},"494":{"body":"To bypass automatic signing, send a string directly: app.post('/api/raw', (req, res) => { // String responses are not signed res.type('text/plain').send('Raw text response');\n});","breadcrumbs":"Express Middleware » Sending Unsigned Responses","id":"494","title":"Sending Unsigned Responses"},"495":{"body":"app.post('/api/custom', (req, res) => { const response = { success: true, payload: { action: 'completed', result: processRequest(req.jacsPayload) }, metadata: { serverTime: new Date().toISOString(), requestId: generateRequestId() } }; // Automatically signed before sending res.send(response);\n});","breadcrumbs":"Express Middleware » Custom Response Format","id":"495","title":"Custom Response Format"},"496":{"body":"","breadcrumbs":"Express Middleware » Error Handling","id":"496","title":"Error Handling"},"497":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/process', (req, res, next) => { try { if (!req.jacsPayload) { throw new Error('Missing JACS payload'); } const result = processData(req.jacsPayload); res.send({ result }); } catch (error) { next(error); }\n}); // Global error handler\napp.use((error, req, res, next) => { console.error('Error:', error.message); res.status(500).send({ error: 'Internal server error', message: error.message });\n});","breadcrumbs":"Express Middleware » Global Error Handler","id":"497","title":"Global Error Handler"},"498":{"body":"class JacsValidationError extends Error { constructor(message) { super(message); this.name = 'JacsValidationError'; this.statusCode = 400; }\n} app.post('/api/validate', (req, res, next) => { try { if (!req.jacsPayload) { throw new JacsValidationError('Invalid JACS request'); } const { requiredField } = req.jacsPayload; if (!requiredField) { throw new JacsValidationError('Missing required field'); } res.send({ valid: true }); } catch (error) { next(error); }\n}); // Error handler\napp.use((error, req, res, next) => { const statusCode = error.statusCode || 500; res.status(statusCode).send({ error: error.name, message: error.message });\n});","breadcrumbs":"Express Middleware » Typed Errors","id":"498","title":"Typed Errors"},"499":{"body":"","breadcrumbs":"Express Middleware » Advanced Patterns","id":"499","title":"Advanced Patterns"},"5":{"body":"Web Integration : Perfect for web servers and Express.js applications MCP Support : Native Model Context Protocol integration HTTP Server : Built-in HTTP server capabilities NPM Package : Easy installation and integration","breadcrumbs":"Introduction » 🟢 Node.js (@hai.ai/jacs)","id":"5","title":"🟢 Node.js (@hai.ai/jacs)"},"50":{"body":"Creation : Customer agent creates task with requirements Delegation : Task sent to service provider agent Agreement : Provider signs agreement to accept task Execution : Provider performs the work Completion : Provider creates completion document Verification : Customer verifies and accepts results","breadcrumbs":"Core Concepts » Task Lifecycle","id":"50","title":"Task Lifecycle"},"500":{"body":"import { Router } from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Create a JACS-enabled router\nfunction createJacsRouter(configPath) { const router = Router(); router.use(express.text({ type: '*/*' })); router.use(JACSExpressMiddleware({ configPath })); return router;\n} // Usage\nconst apiRouter = createJacsRouter('./jacs.config.json'); apiRouter.post('/users', (req, res) => { res.send({ users: getUserList() });\n}); apiRouter.post('/orders', (req, res) => { res.send({ orders: getOrders(req.jacsPayload.userId) });\n}); app.use('/api', apiRouter);","breadcrumbs":"Express Middleware » Router-Level Middleware","id":"500","title":"Router-Level Middleware"},"501":{"body":"Combine JACS with other middleware: import rateLimit from 'express-rate-limit';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const limiter = rateLimit({ windowMs: 15 * 60 * 1000, // 15 minutes max: 100 // limit each IP to 100 requests per windowMs\n}); // Apply multiple middleware in order\napp.use('/api', limiter, // Rate limiting first express.text({ type: '*/*' }), // Parse body as text JACSExpressMiddleware({ configPath: './jacs.config.json' }) // JACS verification\n);","breadcrumbs":"Express Middleware » Middleware Composition","id":"501","title":"Middleware Composition"},"502":{"body":"Log JACS requests for auditing: function jacsLogger(req, res, next) { if (req.jacsPayload) { console.log(JSON.stringify({ timestamp: new Date().toISOString(), method: req.method, path: req.path, jacsPayload: req.jacsPayload, ip: req.ip })); } next();\n} app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' }));\napp.use('/api', jacsLogger); // After JACS middleware","breadcrumbs":"Express Middleware » Logging Middleware","id":"502","title":"Logging Middleware"},"503":{"body":"Combine JACS with user authentication: // JACS middleware first\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); // Then authentication check\nfunction requireAuth(req, res, next) { const payload = req.jacsPayload; if (!payload || !payload.userId) { return res.status(401).send({ error: 'Authentication required' }); } // Attach user to request req.user = { id: payload.userId }; next();\n} app.post('/api/protected', requireAuth, (req, res) => { res.send({ message: `Hello, user ${req.user.id}`, data: req.jacsPayload.data });\n});","breadcrumbs":"Express Middleware » Authentication Integration","id":"503","title":"Authentication Integration"},"504":{"body":"","breadcrumbs":"Express Middleware » Testing","id":"504","title":"Testing"},"505":{"body":"import request from 'supertest';\nimport jacs from '@hai.ai/jacs'; describe('JACS API', () => { beforeAll(async () => { await jacs.load('./jacs.test.config.json'); }); it('should accept valid JACS requests', async () => { const payload = { action: 'test', data: 'hello' }; const signedRequest = await jacs.signRequest(payload); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); // Verify response is JACS-signed const verified = await jacs.verifyResponse(response.text); expect(verified.payload.echo).toEqual(payload); }); it('should reject unsigned requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Express Middleware » Unit Testing Routes","id":"505","title":"Unit Testing Routes"},"506":{"body":"// test/mocks/jacs.js\nexport const mockJacs = { payload: null, setPayload(p) { this.payload = p; }, reset() { this.payload = null; }\n}; // Mock middleware for testing\nexport function mockJacsMiddleware(req, res, next) { req.jacsPayload = mockJacs.payload; next();\n} // In tests\ndescribe('API without real JACS', () => { beforeEach(() => { mockJacs.setPayload({ userId: 'test-user', action: 'test' }); }); afterEach(() => { mockJacs.reset(); }); it('processes payload correctly', async () => { const response = await request(testApp) .post('/api/process') .send('test'); expect(response.status).toBe(200); });\n});","breadcrumbs":"Express Middleware » Mock JACS for Testing","id":"506","title":"Mock JACS for Testing"},"507":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // Health check (no JACS)\napp.get('/health', (req, res) => res.send({ status: 'healthy' })); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } next();\n} // Routes\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload });\n}); app.post('/api/users', requirePayload, (req, res) => { const { name, email } = req.jacsPayload; if (!name || !email) { return res.status(400).send({ error: 'Name and email required' }); } const user = createUser({ name, email }); res.send({ user, created: true });\n}); app.post('/api/documents', requirePayload, async (req, res) => { const { title, content } = req.jacsPayload; const document = await createDocument({ title, content }); res.send({ document });\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); // Start server\nconst PORT = process.env.PORT || 3000;\napp.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"Express Middleware » Complete Application Example","id":"507","title":"Complete Application Example"},"508":{"body":"","breadcrumbs":"Express Middleware » Troubleshooting","id":"508","title":"Troubleshooting"},"509":{"body":"Problem : req.jacsPayload is always undefined Solution : Ensure express.text() comes before JACS middleware: // Correct\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"Express Middleware » Body Parsing Issues","id":"509","title":"Body Parsing Issues"},"51":{"body":"Actions : Individual steps within a task id : Unique identifier within the task name : Human-readable action name description : Detailed requirements success : Definition of successful completion failure : What constitutes failure Services : Required capabilities type : Service category requirements : Specific needs constraints : Limitations or restrictions","breadcrumbs":"Core Concepts » Task Components","id":"51","title":"Task Components"},"510":{"body":"Problem : Using express.json() interferes with JACS Solution : Use route-specific middleware: // JSON for non-JACS routes\napp.use('/public', express.json()); // Text for JACS routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));","breadcrumbs":"Express Middleware » JSON Body Parser Conflict","id":"510","title":"JSON Body Parser Conflict"},"511":{"body":"Problem : Responses are plain JSON, not JACS-signed Solution : Ensure you're sending an object, not a string: // Will be signed\nres.send({ data: 'value' }); // Will NOT be signed\nres.send(JSON.stringify({ data: 'value' }));","breadcrumbs":"Express Middleware » Response Not Signed","id":"511","title":"Response Not Signed"},"512":{"body":"HTTP Server - Core HTTP integration concepts MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"Express Middleware » Next Steps","id":"512","title":"Next Steps"},"513":{"body":"Complete API documentation for the @hai.ai/jacs Node.js package.","breadcrumbs":"API Reference » API Reference","id":"513","title":"API Reference"},"514":{"body":"npm install @hai.ai/jacs","breadcrumbs":"API Reference » Installation","id":"514","title":"Installation"},"515":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';","breadcrumbs":"API Reference » Core Module","id":"515","title":"Core Module"},"516":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"516","title":"JacsAgent Class"},"517":{"body":"new JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"API Reference » Constructor","id":"517","title":"Constructor"},"518":{"body":"Load and initialize the agent from a configuration file. Parameters: configPath (string): Path to the JACS configuration file Returns: string - The loaded agent's JSON Example: const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconsole.log('Agent loaded:', JSON.parse(agentJson).jacsId);","breadcrumbs":"API Reference » agent.load(configPath)","id":"518","title":"agent.load(configPath)"},"519":{"body":"Create and sign a new JACS document. Parameters: documentString (string): JSON string of the document content customSchema (string, optional): Path to a custom JSON Schema for validation outputFilename (string, optional): Filename to save the document noSave (boolean, optional): If true, don't save to storage (default: false) attachments (string, optional): Path to file attachments embed (boolean, optional): If true, embed attachments in the document Returns: string - The signed document as a JSON string Example: // Basic document creation\nconst doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Hello, World!'\n})); // With custom schema\nconst validatedDoc = agent.createDocument( JSON.stringify({ title: 'Validated', amount: 100 }), './schemas/invoice.schema.json'\n); // Without saving\nconst tempDoc = agent.createDocument( JSON.stringify({ data: 'temporary' }), null, null, true // noSave = true\n); // With attachments\nconst docWithFile = agent.createDocument( JSON.stringify({ report: 'Monthly Report' }), null, null, false, './report.pdf', true // embed = true\n);","breadcrumbs":"API Reference » agent.createDocument(documentString, customSchema?, outputFilename?, noSave?, attachments?, embed?)","id":"519","title":"agent.createDocument(documentString, customSchema?, outputFilename?, noSave?, attachments?, embed?)"},"52":{"body":"Agreements enable multi-party consent and coordination between agents.","breadcrumbs":"Core Concepts » Agreements","id":"52","title":"Agreements"},"520":{"body":"Verify a document's signature and hash integrity. Parameters: documentString (string): The signed document JSON string Returns: boolean - True if the document is valid Example: const isValid = agent.verifyDocument(signedDocumentJson);\nif (isValid) { console.log('Document signature verified');\n} else { console.log('Document verification failed');\n}","breadcrumbs":"API Reference » agent.verifyDocument(documentString)","id":"520","title":"agent.verifyDocument(documentString)"},"521":{"body":"Verify a document's signature with an optional custom signature field. Parameters: documentString (string): The signed document JSON string signatureField (string, optional): Name of the signature field (default: 'jacsSignature') Returns: boolean - True if the signature is valid Example: // Verify default signature field\nconst isValid = agent.verifySignature(docJson); // Verify custom signature field\nconst isValidCustom = agent.verifySignature(docJson, 'customSignature');","breadcrumbs":"API Reference » agent.verifySignature(documentString, signatureField?)","id":"521","title":"agent.verifySignature(documentString, signatureField?)"},"522":{"body":"Update an existing document, creating a new version. Parameters: documentKey (string): The document key in format \"id:version\" newDocumentString (string): The modified document as JSON string attachments (Array, optional): Array of attachment file paths embed (boolean, optional): If true, embed attachments Returns: string - The updated document as a JSON string Example: // Parse existing document to get key\nconst doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; // Update the document\nconst updatedDoc = agent.updateDocument( documentKey, JSON.stringify({ ...doc, title: 'Updated Title', content: 'Modified content' })\n);","breadcrumbs":"API Reference » agent.updateDocument(documentKey, newDocumentString, attachments?, embed?)","id":"522","title":"agent.updateDocument(documentKey, newDocumentString, attachments?, embed?)"},"523":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: documentString (string): The document JSON string agentIds (Array): Array of agent IDs required to sign question (string, optional): The agreement question context (string, optional): Additional context for the agreement agreementFieldName (string, optional): Field name for the agreement (default: 'jacsAgreement') Returns: string - The document with agreement as a JSON string Example: const docWithAgreement = agent.createAgreement( signedDocumentJson, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], 'Do you agree to these terms?', 'Q1 2024 Service Agreement', 'jacsAgreement'\n);","breadcrumbs":"API Reference » agent.createAgreement(documentString, agentIds, question?, context?, agreementFieldName?)","id":"523","title":"agent.createAgreement(documentString, agentIds, question?, context?, agreementFieldName?)"},"524":{"body":"Sign an agreement as the current agent. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name of the agreement (default: 'jacsAgreement') Returns: string - The document with this agent's signature added Example: const signedAgreement = agent.signAgreement( docWithAgreementJson, 'jacsAgreement'\n);","breadcrumbs":"API Reference » agent.signAgreement(documentString, agreementFieldName?)","id":"524","title":"agent.signAgreement(documentString, agreementFieldName?)"},"525":{"body":"Check the status of an agreement (which agents have signed). Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name of the agreement (default: 'jacsAgreement') Returns: string - JSON string with agreement status Example: const statusJson = agent.checkAgreement(signedAgreementJson);\nconst status = JSON.parse(statusJson); console.log('Required signers:', status.required);\nconsole.log('Signatures received:', status.signed);\nconsole.log('Complete:', status.complete);","breadcrumbs":"API Reference » agent.checkAgreement(documentString, agreementFieldName?)","id":"525","title":"agent.checkAgreement(documentString, agreementFieldName?)"},"526":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (string): The data to sign Returns: string - Base64-encoded signature Example: const signature = agent.signString('Important message');\nconsole.log('Signature:', signature);","breadcrumbs":"API Reference » agent.signString(data)","id":"526","title":"agent.signString(data)"},"527":{"body":"Verify a signature on arbitrary string data. Parameters: data (string): The original data signatureBase64 (string): The base64-encoded signature publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm (e.g., 'ring-Ed25519') Returns: boolean - True if the signature is valid Example: const isValid = agent.verifyString( 'Important message', signatureBase64, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"API Reference » agent.verifyString(data, signatureBase64, publicKey, publicKeyEncType)","id":"527","title":"agent.verifyString(data, signatureBase64, publicKey, publicKeyEncType)"},"528":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload object Returns: string - JACS-signed request as a JSON string Example: const signedRequest = agent.signRequest({ method: 'GET', path: '/api/data', timestamp: new Date().toISOString(), body: { query: 'value' }\n});","breadcrumbs":"API Reference » agent.signRequest(params)","id":"528","title":"agent.signRequest(params)"},"529":{"body":"Verify a JACS-signed response and extract the payload. Parameters: documentString (string): The JACS-signed response Returns: object - Object containing the verified payload Example: const result = agent.verifyResponse(jacsResponseString);\nconst payload = result.payload;\nconsole.log('Verified payload:', payload);","breadcrumbs":"API Reference » agent.verifyResponse(documentString)","id":"529","title":"agent.verifyResponse(documentString)"},"53":{"body":"{ \"jacsType\": \"agreement\", \"title\": \"Task Acceptance Agreement\", \"question\": \"Do you agree to complete the marketing copy task?\", \"context\": \"Task ID: abc123, Deadline: 2024-01-20\", \"agents\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"jacsAgreement\": { \"agent-1-uuid\": { \"agentID\": \"agent-1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\" }, \"agent-2-uuid\": { \"agentID\": \"agent-2-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T11:15:00Z\" } // agent-3-uuid has not signed yet }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Core Concepts » Agreement Structure","id":"53","title":"Agreement Structure"},"530":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: documentString (string): The JACS-signed response Returns: object - Object with payload and agent ID Example: const result = agent.verifyResponseWithAgentId(jacsResponseString);\nconsole.log('Payload:', result.payload);\nconsole.log('Signed by agent:', result.agentId);","breadcrumbs":"API Reference » agent.verifyResponseWithAgentId(documentString)","id":"530","title":"agent.verifyResponseWithAgentId(documentString)"},"531":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agentFile (string, optional): Path to an agent file to verify Returns: boolean - True if the agent is valid Example: // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"API Reference » agent.verifyAgent(agentFile?)","id":"531","title":"agent.verifyAgent(agentFile?)"},"532":{"body":"Update the agent document with new data. Parameters: newAgentString (string): The modified agent document as JSON string Returns: string - The updated agent document Example: const currentAgent = JSON.parse(agent.load('./jacs.config.json'));\nconst updatedAgent = agent.updateAgent(JSON.stringify({ ...currentAgent, description: 'Updated description'\n}));","breadcrumbs":"API Reference » agent.updateAgent(newAgentString)","id":"532","title":"agent.updateAgent(newAgentString)"},"533":{"body":"Sign another agent's document with a registration signature. Parameters: agentString (string): The agent document to sign publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm Returns: string - The signed agent document Example: const signedAgent = agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"API Reference » agent.signAgent(agentString, publicKey, publicKeyEncType)","id":"533","title":"agent.signAgent(agentString, publicKey, publicKeyEncType)"},"534":{"body":"","breadcrumbs":"API Reference » Utility Functions","id":"534","title":"Utility Functions"},"535":{"body":"Hash a string using SHA-256. Parameters: data (string): The string to hash Returns: string - Hexadecimal hash string Example: import { hashString } from '@hai.ai/jacs'; const hash = hashString('data to hash');\nconsole.log('SHA-256:', hash);","breadcrumbs":"API Reference » hashString(data)","id":"535","title":"hashString(data)"},"536":{"body":"Create a JACS configuration JSON string programmatically. Parameters: jacsUseSecurity (string, optional): Enable security features jacsDataDirectory (string, optional): Directory for data storage jacsKeyDirectory (string, optional): Directory for key storage jacsAgentPrivateKeyFilename (string, optional): Private key filename jacsAgentPublicKeyFilename (string, optional): Public key filename jacsAgentKeyAlgorithm (string, optional): Signing algorithm jacsPrivateKeyPassword (string, optional): Password for private key jacsAgentIdAndVersion (string, optional): Agent ID and version to load jacsDefaultStorage (string, optional): Storage backend ('fs', 's3', 'memory') Returns: string - Configuration as JSON string Example: import { createConfig } from '@hai.ai/jacs'; const configJson = createConfig( undefined, // jacsUseSecurity './jacs_data', // jacsDataDirectory './jacs_keys', // jacsKeyDirectory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // algorithm undefined, // password undefined, // agent id 'fs' // storage\n); // Write to file\nfs.writeFileSync('jacs.config.json', configJson);","breadcrumbs":"API Reference » createConfig(options)","id":"536","title":"createConfig(options)"},"537":{"body":"import { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http';","breadcrumbs":"API Reference » HTTP Module","id":"537","title":"HTTP Module"},"538":{"body":"Express middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Express middleware function Example: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); app.post('/api/data', (req, res) => { // req.jacsPayload contains verified payload res.send({ received: req.jacsPayload });\n});","breadcrumbs":"API Reference » JACSExpressMiddleware(options)","id":"538","title":"JACSExpressMiddleware(options)"},"539":{"body":"Koa middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Koa middleware function Example: import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json'\n})); app.use(async (ctx) => { // ctx.state.jacsPayload contains verified payload ctx.body = { received: ctx.state.jacsPayload };\n});","breadcrumbs":"API Reference » JACSKoaMiddleware(options)","id":"539","title":"JACSKoaMiddleware(options)"},"54":{"body":"Creation : Initial agent creates agreement with required participants Distribution : Agreement sent to all required agents Review : Each agent reviews terms and conditions Signing : Agents add their signatures if they consent Completion : Agreement becomes binding when all parties have signed Verification : Any party can verify all signatures","breadcrumbs":"Core Concepts » Agreement Process","id":"54","title":"Agreement Process"},"540":{"body":"import { JACSTransportProxy, createJACSTransportProxy, createJACSTransportProxyAsync\n} from '@hai.ai/jacs/mcp';","breadcrumbs":"API Reference » MCP Module","id":"540","title":"MCP Module"},"541":{"body":"Class that wraps MCP transports with JACS encryption. Constructor: new JACSTransportProxy(transport, role, jacsConfigPath) Parameters: transport: Any MCP transport (Stdio, SSE, WebSocket) role (string): 'server' or 'client' jacsConfigPath (string): Path to JACS configuration file","breadcrumbs":"API Reference » JACSTransportProxy","id":"541","title":"JACSTransportProxy"},"542":{"body":"Factory function for creating a transport proxy. Parameters: transport: The underlying MCP transport configPath (string): Path to JACS configuration file role (string): 'server' or 'client' Returns: JACSTransportProxy instance Example: import { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);","breadcrumbs":"API Reference » createJACSTransportProxy(transport, configPath, role)","id":"542","title":"createJACSTransportProxy(transport, configPath, role)"},"543":{"body":"Async factory that waits for JACS to be fully loaded. Parameters: Same as createJACSTransportProxy Returns: Promise Example: const secureTransport = await createJACSTransportProxyAsync( baseTransport, './jacs.config.json', 'server'\n);","breadcrumbs":"API Reference » createJACSTransportProxyAsync(transport, configPath, role)","id":"543","title":"createJACSTransportProxyAsync(transport, configPath, role)"},"544":{"body":"The package includes full TypeScript definitions. Import types as needed: import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs'; const agent: JacsAgent = new JacsAgent();\nconst hash: string = hashString('data');\nconst config: string = createConfig( undefined, './data', './keys'\n);","breadcrumbs":"API Reference » TypeScript Support","id":"544","title":"TypeScript Support"},"545":{"body":"The following module-level functions are deprecated. Use new JacsAgent() and instance methods instead: load() - Use agent.load() signAgent() - Use agent.signAgent() verifyString() - Use agent.verifyString() signString() - Use agent.signString() verifyAgent() - Use agent.verifyAgent() updateAgent() - Use agent.updateAgent() verifyDocument() - Use agent.verifyDocument() updateDocument() - Use agent.updateDocument() verifySignature() - Use agent.verifySignature() createAgreement() - Use agent.createAgreement() signAgreement() - Use agent.signAgreement() createDocument() - Use agent.createDocument() checkAgreement() - Use agent.checkAgreement() signRequest() - Use agent.signRequest() verifyResponse() - Use agent.verifyResponse() verifyResponseWithAgentId() - Use agent.verifyResponseWithAgentId() Migration Example: // Old (deprecated)\nimport jacs from '@hai.ai/jacs';\nawait jacs.load('./jacs.config.json');\nconst doc = jacs.createDocument(JSON.stringify({ data: 'test' })); // New (recommended)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json');\nconst doc = agent.createDocument(JSON.stringify({ data: 'test' }));","breadcrumbs":"API Reference » Deprecated Functions","id":"545","title":"Deprecated Functions"},"546":{"body":"All methods may throw errors. Use try/catch for error handling: try { const agent = new JacsAgent(); agent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ data: 'test' }));\n} catch (error) { console.error('JACS error:', error.message);\n}","breadcrumbs":"API Reference » Error Handling","id":"546","title":"Error Handling"},"547":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol HTTP Server - HTTP integration Express Middleware - Express.js patterns","breadcrumbs":"API Reference » See Also","id":"547","title":"See Also"},"548":{"body":"The JACS Python package (jacs) provides Python bindings to the JACS Rust library, making it easy to integrate JACS into AI/ML workflows, data science projects, and Python applications.","breadcrumbs":"Installation » Python Installation","id":"548","title":"Python Installation"},"549":{"body":"Python : Version 3.10 or higher pip : For package management Operating System : Linux, macOS, or Windows with WSL Architecture : x86_64 or ARM64","breadcrumbs":"Installation » Requirements","id":"549","title":"Requirements"},"55":{"body":"Task Agreements : Consent to perform specific work Service Agreements : Long-term service provision contracts Data Sharing Agreements : Permission to access or use data Update Agreements : Consent to system or process changes","breadcrumbs":"Core Concepts » Agreement Types","id":"55","title":"Agreement Types"},"550":{"body":"","breadcrumbs":"Installation » Installation","id":"550","title":"Installation"},"551":{"body":"pip install jacs","breadcrumbs":"Installation » Using pip","id":"551","title":"Using pip"},"552":{"body":"conda install -c conda-forge jacs","breadcrumbs":"Installation » Using conda","id":"552","title":"Using conda"},"553":{"body":"poetry add jacs","breadcrumbs":"Installation » Using poetry","id":"553","title":"Using poetry"},"554":{"body":"# Clone the repository\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacspy # Create virtual environment\npython -m venv .venv\nsource .venv/bin/activate # On Windows: .venv\\Scripts\\activate # Install in development mode\npip install -e .","breadcrumbs":"Installation » Development Installation","id":"554","title":"Development Installation"},"555":{"body":"Create a simple test to verify everything is working: # test.py\nimport jacs print('JACS Python bindings loaded successfully!') # Test basic functionality\ntry: agent = jacs.JacsAgent() agent.load('./jacs.config.json') print('Agent loaded successfully!')\nexcept Exception as error: print(f'Error loading agent: {error}') Run the test: python test.py","breadcrumbs":"Installation » Verify Installation","id":"555","title":"Verify Installation"},"556":{"body":"The jacs package provides Python bindings to the JACS Rust library:","breadcrumbs":"Installation » Package Structure","id":"556","title":"Package Structure"},"557":{"body":"import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Utility functions\nhash_value = jacs.hash_string(\"data to hash\")\nconfig_json = jacs.create_config( jacs_data_directory=\"./data\", jacs_key_directory=\"./keys\", jacs_agent_key_algorithm=\"ring-Ed25519\"\n)","breadcrumbs":"Installation » Core Module","id":"557","title":"Core Module"},"558":{"body":"# Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration\nagent.load('./jacs.config.json') # Document operations\nsigned_doc = agent.create_document(json_string)\nis_valid = agent.verify_document(document_string) # Signing operations\nsignature = agent.sign_string(\"data to sign\")","breadcrumbs":"Installation » JacsAgent Methods","id":"558","title":"JacsAgent Methods"},"559":{"body":"","breadcrumbs":"Installation » Configuration","id":"559","title":"Configuration"},"56":{"body":"JACS uses industry-standard cryptographic primitives for security.","breadcrumbs":"Core Concepts » Cryptographic Security","id":"56","title":"Cryptographic Security"},"560":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Installation » Configuration File","id":"560","title":"Configuration File"},"561":{"body":"import jacs # Create agent and load configuration\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Installation » Load Configuration in Python","id":"561","title":"Load Configuration in Python"},"562":{"body":"import jacs # Create a configuration JSON string programmatically\nconfig_json = jacs.create_config( jacs_data_directory=\"./jacs_data\", jacs_key_directory=\"./jacs_keys\", jacs_agent_key_algorithm=\"ring-Ed25519\", jacs_default_storage=\"fs\"\n)","breadcrumbs":"Installation » Programmatic Configuration","id":"562","title":"Programmatic Configuration"},"563":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"563","title":"Environment Variables"},"564":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"564","title":"Storage Backends"},"565":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"565","title":"File System (Default)"},"566":{"body":"{ \"jacs_default_storage\": \"s3\"\n} S3 credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » S3 Storage","id":"566","title":"S3 Storage"},"567":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"567","title":"Memory Storage (Testing)"},"568":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"568","title":"Cryptographic Algorithms"},"569":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"569","title":"ring-Ed25519 (Recommended)"},"57":{"body":"Current Standards ring-Ed25519 : Fast elliptic curve signatures using the ring library (recommended) RSA-PSS : Traditional RSA with probabilistic signature scheme Post-Quantum pq-dilithium : NIST-standardized post-quantum signatures","breadcrumbs":"Core Concepts » Supported Algorithms","id":"57","title":"Supported Algorithms"},"570":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"570","title":"RSA-PSS"},"571":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"571","title":"pq-dilithium (Post-Quantum)"},"572":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"572","title":"pq2025 (Post-Quantum Hybrid)"},"573":{"body":"","breadcrumbs":"Installation » Development Setup","id":"573","title":"Development Setup"},"574":{"body":"my-jacs-project/\n├── requirements.txt\n├── jacs.config.json\n├── src/\n│ ├── agent.py\n│ ├── tasks.py\n│ └── agreements.py\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n├── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── tests/ └── test_jacs.py","breadcrumbs":"Installation » Project Structure","id":"574","title":"Project Structure"},"575":{"body":"jacs>=0.1.0\nfastapi>=0.100.0 # For FastMCP integration\nuvicorn>=0.23.0 # For ASGI server\npydantic>=2.0.0 # For data validation","breadcrumbs":"Installation » Requirements.txt Setup","id":"575","title":"Requirements.txt Setup"},"576":{"body":"# src/app.py\nimport jacs\nimport json def main(): # Create and load agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a document document_data = { \"title\": \"My First Document\", \"content\": \"Hello from Python!\" } signed_doc = agent.create_document(json.dumps(document_data)) print('Document created') # Verify the document is_valid = agent.verify_document(signed_doc) print(f'Document valid: {is_valid}') print('JACS agent ready!') return agent if __name__ == \"__main__\": agent = main()","breadcrumbs":"Installation » Basic Application","id":"576","title":"Basic Application"},"577":{"body":"","breadcrumbs":"Installation » Virtual Environment Setup","id":"577","title":"Virtual Environment Setup"},"578":{"body":"# Create virtual environment\npython -m venv jacs-env # Activate (Linux/macOS)\nsource jacs-env/bin/activate # Activate (Windows)\njacs-env\\Scripts\\activate # Install JACS\npip install jacs","breadcrumbs":"Installation » Using venv","id":"578","title":"Using venv"},"579":{"body":"# Create conda environment\nconda create -n jacs-env python=3.11 # Activate environment\nconda activate jacs-env # Install JACS\npip install jacs","breadcrumbs":"Installation » Using conda","id":"579","title":"Using conda"},"58":{"body":"Content Extraction : Specific fields are extracted for signing Canonicalization : Fields are sorted and formatted consistently Hashing : SHA-256 hash of the canonical content Signing : Private key signs the hash Verification : Public key verifies the signature","breadcrumbs":"Core Concepts » Signature Process","id":"58","title":"Signature Process"},"580":{"body":"# Initialize poetry project\npoetry init # Add JACS dependency\npoetry add jacs # Install dependencies\npoetry install # Activate shell\npoetry shell","breadcrumbs":"Installation » Using poetry","id":"580","title":"Using poetry"},"581":{"body":"# Install Jupyter in your JACS environment\npip install jupyter # Start Jupyter\njupyter notebook # In your notebook\nimport jacs\nimport json # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a simple document\ndoc = agent.create_document(json.dumps({ \"title\": \"Notebook Analysis\", \"data\": [1, 2, 3, 4, 5]\n})) print(\"Document created!\")\nprint(\"JACS ready for notebook use!\")","breadcrumbs":"Installation » Jupyter Notebook Setup","id":"581","title":"Jupyter Notebook Setup"},"582":{"body":"","breadcrumbs":"Installation » Common Issues","id":"582","title":"Common Issues"},"583":{"body":"If you get ModuleNotFoundError: No module named 'jacs': # Check Python version\npython --version # Should be 3.10+ # Check if jacs is installed\npip list | grep jacs # Reinstall if needed\npip uninstall jacs\npip install jacs","breadcrumbs":"Installation » Module Not Found","id":"583","title":"Module Not Found"},"584":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"584","title":"Permission Errors"},"585":{"body":"If you get binary compatibility errors: # Update pip and reinstall\npip install --upgrade pip\npip uninstall jacs\npip install jacs --no-cache-dir","breadcrumbs":"Installation » Binary Compatibility","id":"585","title":"Binary Compatibility"},"586":{"body":"On Windows, you may need Visual C++ Build Tools: # Install Visual C++ Build Tools\n# Or use conda-forge\nconda install -c conda-forge jacs","breadcrumbs":"Installation » Windows Issues","id":"586","title":"Windows Issues"},"587":{"body":"JACS is built with Rust and PyO3, providing Python bindings: import jacs\nimport json # Create agent instance\nagent: jacs.JacsAgent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create and verify documents\nsigned_doc: str = agent.create_document(json.dumps({\"title\": \"Test\"}))\nis_valid: bool = agent.verify_document(signed_doc)","breadcrumbs":"Installation » Type Hints and IDE Support","id":"587","title":"Type Hints and IDE Support"},"588":{"body":"# tests/test_jacs.py\nimport unittest\nimport jacs\nimport json class TestJACS(unittest.TestCase): def setUp(self): # Requires a valid jacs.config.json file self.agent = jacs.JacsAgent() self.agent.load('./jacs.config.json') def test_document_creation(self): doc_data = {\"title\": \"Test Document\", \"content\": \"Test content\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) # Document should be a valid JSON string parsed = json.loads(signed_doc) self.assertIn(\"jacsId\", parsed) self.assertIn(\"jacsSignature\", parsed) def test_document_verification(self): doc_data = {\"title\": \"Verify Test\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) is_valid = self.agent.verify_document(signed_doc) self.assertTrue(is_valid) def test_sign_string(self): signature = self.agent.sign_string(\"test data\") self.assertIsInstance(signature, str) self.assertTrue(len(signature) > 0) if __name__ == \"__main__\": unittest.main()","breadcrumbs":"Installation » Testing Setup","id":"588","title":"Testing Setup"},"589":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"589","title":"Next Steps"},"59":{"body":"Agent Keys : Each agent has a unique key pair Public Key Distribution : Public keys shared through secure channels Key Rotation : Agents can update keys while maintaining identity Key Verification : Public key hashes ensure integrity","breadcrumbs":"Core Concepts » Key Management","id":"59","title":"Key Management"},"590":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Jupyter notebook workflows FastMCP server implementation AI/ML pipeline integration","breadcrumbs":"Installation » Examples","id":"590","title":"Examples"},"591":{"body":"The simplified API (jacs.simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"591","title":"Simplified API"},"592":{"body":"import jacs.simple as jacs # Load your agent\nagent = jacs.load(\"./jacs.config.json\") # Sign a message\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nprint(f\"Document ID: {signed.document_id}\") # Verify it\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}\")","breadcrumbs":"Simplified API » Quick Start","id":"592","title":"Quick Start"},"593":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"593","title":"When to Use the Simplified API"},"594":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"594","title":"API Reference"},"595":{"body":"Load an agent from a configuration file. This must be called before any other operations. Parameters: config_path (str, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: AgentInfo dataclass Raises: JacsError if config not found or invalid info = jacs.load(\"./jacs.config.json\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config: {info.config_path}\")","breadcrumbs":"Simplified API » load(config_path=None)","id":"595","title":"load(config_path=None)"},"596":{"body":"Check if an agent is currently loaded. Returns: bool if not jacs.is_loaded(): jacs.load(\"./jacs.config.json\")","breadcrumbs":"Simplified API » is_loaded()","id":"596","title":"is_loaded()"},"597":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or None if no agent is loaded info = jacs.get_agent_info()\nif info: print(f\"Agent: {info.agent_id}\")","breadcrumbs":"Simplified API » get_agent_info()","id":"597","title":"get_agent_info()"},"598":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify_self()\nif result.valid: print(\"Agent integrity verified\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Simplified API » verify_self()","id":"598","title":"verify_self()"},"599":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Dict, list, string, or any JSON-serializable value Returns: SignedDocument Raises: AgentNotLoadedError if no agent is loaded # Sign a dict\nsigned = jacs.sign_message({ \"action\": \"transfer\", \"amount\": 500, \"recipient\": \"agent-123\"\n}) print(f\"Document ID: {signed.document_id}\")\nprint(f\"Signed by: {signed.agent_id}\")\nprint(f\"Timestamp: {signed.timestamp}\")\nprint(f\"Raw JSON: {signed.raw}\")","breadcrumbs":"Simplified API » sign_message(data)","id":"599","title":"sign_message(data)"},"6":{"body":"AI/ML Integration : Ideal for AI and machine learning workflows MCP Support : Authenticated MCP server patterns PyPI Package : Simple pip install integration Data Science : Perfect for Jupyter notebooks and data pipelines","breadcrumbs":"Introduction » 🐍 Python (jacs)","id":"6","title":"🐍 Python (jacs)"},"60":{"body":"JACS provides comprehensive versioning for tracking document evolution.","breadcrumbs":"Core Concepts » Versioning and Audit Trails","id":"60","title":"Versioning and Audit Trails"},"600":{"body":"Sign a file with optional content embedding. Parameters: file_path (str): Path to the file to sign embed (bool, optional): If True, embed file content in the document (default: False) Returns: SignedDocument Raises: JacsError if file not found or no agent loaded # Reference only (stores hash)\nsigned = jacs.sign_file(\"contract.pdf\", embed=False) # Embed content (creates portable document)\nembedded = jacs.sign_file(\"contract.pdf\", embed=True)","breadcrumbs":"Simplified API » sign_file(file_path, embed=False)","id":"600","title":"sign_file(file_path, embed=False)"},"601":{"body":"Verify a signed document and extract its content. Parameters: signed_document (str): The JSON string of the signed document Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify(signed_json) if result.valid: print(f\"Signed by: {result.signer_id}\") print(f\"Timestamp: {result.timestamp}\")\nelse: print(f\"Invalid: {', '.join(result.errors)}\")","breadcrumbs":"Simplified API » verify(signed_document)","id":"601","title":"verify(signed_document)"},"602":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Parameters: document (str|dict), key_resolution (str), data_directory (str, optional), key_directory (str, optional) Returns: VerificationResult","breadcrumbs":"Simplified API » verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)","id":"602","title":"verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)"},"603":{"body":"Run a read-only security audit and health checks. Returns a dict with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. See Security Model — Security Audit for full details and options. result = jacs.audit()\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\")","breadcrumbs":"Simplified API » audit(config_path=None, recent_n=None)","id":"603","title":"audit(config_path=None, recent_n=None)"},"604":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use export_agent() to get the current document, modify it, then pass it here. Parameters: new_agent_data (dict|str): Complete agent document as JSON string or dict Returns: str - The updated and re-signed agent document Raises: AgentNotLoadedError if no agent loaded, JacsError if validation fails import json # Get current agent document\nagent_doc = json.loads(jacs.export_agent()) # Modify fields\nagent_doc[\"jacsAgentType\"] = \"hybrid\"\nagent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"Jane\", \"contactLastName\": \"Doe\"}] # Update (creates new version, re-signs, re-hashes)\nupdated = jacs.update_agent(agent_doc)\nnew_doc = json.loads(updated) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\") Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » update_agent(new_agent_data)","id":"604","title":"update_agent(new_agent_data)"},"605":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without no_save=True). Parameters: document_id (str): The document ID (jacsId) to update new_document_data (dict|str): Updated document as JSON string or dict attachments (list, optional): List of file paths to attach embed (bool, optional): If True, embed attachment contents Returns: SignedDocument with the updated document Raises: JacsError if document not found, no agent loaded, or validation fails import json # Create a document (must be saved to disk)\noriginal = jacs.sign_message({\"status\": \"pending\", \"amount\": 100}) # Later, update it\ndoc = json.loads(original.raw)\ndoc[\"content\"][\"status\"] = \"approved\" updated = jacs.update_document(original.document_id, doc)\nnew_doc = json.loads(updated.raw) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\")","breadcrumbs":"Simplified API » update_document(document_id, new_document_data, attachments=None, embed=False)","id":"605","title":"update_document(document_id, new_document_data, attachments=None, embed=False)"},"606":{"body":"Export the current agent document for sharing or inspection. Returns: str - The agent JSON document Raises: AgentNotLoadedError if no agent loaded agent_doc = jacs.export_agent()\nprint(agent_doc) # Parse to inspect\nagent = json.loads(agent_doc)\nprint(f\"Agent type: {agent['jacsAgentType']}\")","breadcrumbs":"Simplified API » export_agent()","id":"606","title":"export_agent()"},"607":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Returns: str","breadcrumbs":"Simplified API » get_dns_record(domain, ttl=3600)","id":"607","title":"get_dns_record(domain, ttl=3600)"},"608":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: dict","breadcrumbs":"Simplified API » get_well_known_json()","id":"608","title":"get_well_known_json()"},"609":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: str - PEM-encoded public key Raises: AgentNotLoadedError if no agent loaded pem = jacs.get_public_key()\nprint(pem)\n# -----BEGIN PUBLIC KEY-----\n# ...\n# -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » get_public_key()","id":"609","title":"get_public_key()"},"61":{"body":"Immutable IDs : jacsId never changes for a document Version IDs : jacsVersion changes with each update Previous Versions : jacsPreviousVersion creates a chain Timestamps : jacsVersionDate provides chronological order","breadcrumbs":"Core Concepts » Version Management","id":"61","title":"Version Management"},"610":{"body":"All types are Python dataclasses for convenient access:","breadcrumbs":"Simplified API » Type Definitions","id":"610","title":"Type Definitions"},"611":{"body":"@dataclass\nclass AgentInfo: agent_id: str # Agent's UUID config_path: str # Path to loaded config public_key_path: Optional[str] = None # Path to public key file","breadcrumbs":"Simplified API » AgentInfo","id":"611","title":"AgentInfo"},"612":{"body":"@dataclass\nclass SignedDocument: raw: str # Full JSON document with signature document_id: str # Document's UUID (jacsId) agent_id: str # Signing agent's ID timestamp: str # ISO 8601 timestamp","breadcrumbs":"Simplified API » SignedDocument","id":"612","title":"SignedDocument"},"613":{"body":"@dataclass\nclass VerificationResult: valid: bool # True if signature verified signer_id: Optional[str] # Agent who signed timestamp: Optional[str] # When it was signed attachments: List[Attachment] # File attachments errors: List[str] # Error messages if invalid","breadcrumbs":"Simplified API » VerificationResult","id":"613","title":"VerificationResult"},"614":{"body":"@dataclass\nclass Attachment: filename: str # Original filename mime_type: str # MIME type hash: str # SHA-256 hash embedded: bool # True if content is embedded content: Optional[bytes] = None # Embedded content (if available)","breadcrumbs":"Simplified API » Attachment","id":"614","title":"Attachment"},"615":{"body":"class JacsError(Exception): \"\"\"Base exception for JACS errors.\"\"\" pass class AgentNotLoadedError(JacsError): \"\"\"Raised when an operation requires a loaded agent.\"\"\" pass","breadcrumbs":"Simplified API » Exceptions","id":"615","title":"Exceptions"},"616":{"body":"import json\nimport jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError # Load agent\nagent = jacs.load(\"./jacs.config.json\")\nprint(f\"Loaded agent: {agent.agent_id}\") # Verify agent integrity\nself_check = jacs.verify_self()\nif not self_check.valid: raise RuntimeError(\"Agent integrity check failed\") # Sign a transaction\ntransaction = { \"type\": \"payment\", \"from\": agent.agent_id, \"to\": \"recipient-agent-uuid\", \"amount\": 250.00, \"currency\": \"USD\", \"memo\": \"Q1 Service Payment\"\n} signed = jacs.sign_message(transaction)\nprint(f\"Transaction signed: {signed.document_id}\") # Verify the transaction (simulating recipient)\nverification = jacs.verify(signed.raw) if verification.valid: doc = json.loads(signed.raw) print(f\"Payment verified from: {verification.signer_id}\") print(f\"Amount: {doc['content']['amount']} {doc['content']['currency']}\")\nelse: print(f\"Verification failed: {', '.join(verification.errors)}\") # Sign a file\ncontract_signed = jacs.sign_file(\"./contract.pdf\", embed=True)\nprint(f\"Contract signed: {contract_signed.document_id}\") # Update agent metadata\nagent_doc = json.loads(jacs.export_agent())\nagent_doc[\"jacsAgentType\"] = \"ai\"\nif not agent_doc.get(\"jacsContacts\") or len(agent_doc[\"jacsContacts\"]) == 0: agent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"AI\", \"contactLastName\": \"Agent\"}]\nupdated_agent = jacs.update_agent(agent_doc)\nprint(\"Agent metadata updated\") # Share public key\npublic_key = jacs.get_public_key()\nprint(\"Share this public key for verification:\")\nprint(public_key)","breadcrumbs":"Simplified API » Complete Example","id":"616","title":"Complete Example"},"617":{"body":"The simplified API works well with FastMCP tool implementations: from fastmcp import FastMCP\nimport jacs.simple as jacs mcp = FastMCP(\"My Server\") # Load agent once at startup\njacs.load(\"./jacs.config.json\") @mcp.tool()\ndef approve_request(request_id: str) -> dict: \"\"\"Approve a request with cryptographic signature.\"\"\" signed = jacs.sign_message({ \"action\": \"approve\", \"request_id\": request_id, \"approved_by\": jacs.get_agent_info().agent_id }) return {\"signed_approval\": signed.raw} @mcp.tool()\ndef verify_approval(signed_json: str) -> dict: \"\"\"Verify a signed approval.\"\"\" result = jacs.verify(signed_json) return { \"valid\": result.valid, \"signer\": result.signer_id, \"errors\": result.errors }","breadcrumbs":"Simplified API » MCP Integration","id":"617","title":"MCP Integration"},"618":{"body":"import jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError try: jacs.load(\"./missing-config.json\")\nexcept JacsError as e: print(f\"Config not found: {e}\") try: # Will fail if no agent loaded jacs.sign_message({\"data\": \"test\"})\nexcept AgentNotLoadedError as e: print(f\"No agent: {e}\") try: jacs.sign_file(\"/nonexistent/file.pdf\")\nexcept JacsError as e: print(f\"File not found: {e}\") # Verification doesn't throw - check result.valid\nresult = jacs.verify(\"invalid json\")\nif not result.valid: print(f\"Verification errors: {result.errors}\")","breadcrumbs":"Simplified API » Error Handling","id":"618","title":"Error Handling"},"619":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"619","title":"See Also"},"62":{"body":"Complete History : Track all changes to any document Attribution : Know exactly who made each change Verification : Cryptographic proof of authenticity Compliance : Meet regulatory audit requirements","breadcrumbs":"Core Concepts » Audit Trail Benefits","id":"62","title":"Audit Trail Benefits"},"620":{"body":"This chapter covers fundamental JACS operations in Python, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"620","title":"Basic Usage"},"621":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"621","title":"Initializing an Agent"},"622":{"body":"import jacs # Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration from file\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Create and Load Agent","id":"622","title":"Create and Load Agent"},"623":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"623","title":"Configuration File"},"624":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"624","title":"Creating Documents"},"625":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a document from JSON\ndocument_data = { \"title\": \"Project Proposal\", \"content\": \"Quarterly development plan\", \"budget\": 50000\n} signed_document = agent.create_document(json.dumps(document_data))\nprint('Signed document:', signed_document)","breadcrumbs":"Basic Usage » Basic Document Creation","id":"625","title":"Basic Document Creation"},"626":{"body":"Validate against a custom JSON Schema: signed_document = agent.create_document( json.dumps(document_data), './schemas/proposal.schema.json' # custom schema path\n)","breadcrumbs":"Basic Usage » With Custom Schema","id":"626","title":"With Custom Schema"},"627":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema './output/proposal.json' # output filename\n)","breadcrumbs":"Basic Usage » With Output File","id":"627","title":"With Output File"},"628":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename True # no_save = True\n)","breadcrumbs":"Basic Usage » Without Saving","id":"628","title":"Without Saving"},"629":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename False, # save the document './attachments/report.pdf', # attachment path True # embed files\n)","breadcrumbs":"Basic Usage » With Attachments","id":"629","title":"With Attachments"},"63":{"body":"JACS documents are designed to be storage and transport agnostic.","breadcrumbs":"Core Concepts » Storage and Transport","id":"63","title":"Storage and Transport"},"630":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"630","title":"Verifying Documents"},"631":{"body":"# Verify a document's signature and hash\nis_valid = agent.verify_document(signed_document_json)\nprint('Document valid:', is_valid)","breadcrumbs":"Basic Usage » Verify Document Signature","id":"631","title":"Verify Document Signature"},"632":{"body":"# Verify with a custom signature field\nis_valid = agent.verify_signature( signed_document_json, 'jacsSignature' # signature field name\n)","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"632","title":"Verify Specific Signature Field"},"633":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"633","title":"Updating Documents"},"634":{"body":"# Original document key format: \"id:version\"\ndocument_key = 'doc-uuid:version-uuid' # Modified document content (must include jacsId and jacsVersion)\nupdated_data = { \"jacsId\": \"doc-uuid\", \"jacsVersion\": \"version-uuid\", \"title\": \"Updated Proposal\", \"content\": \"Revised quarterly plan\", \"budget\": 75000\n} updated_document = agent.update_document( document_key, json.dumps(updated_data)\n) print('Updated document:', updated_document)","breadcrumbs":"Basic Usage » Update Existing Document","id":"634","title":"Update Existing Document"},"635":{"body":"updated_document = agent.update_document( document_key, json.dumps(updated_data), ['./new-report.pdf'], # new attachments True # embed files\n)","breadcrumbs":"Basic Usage » Update with New Attachments","id":"635","title":"Update with New Attachments"},"636":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"636","title":"Signing and Verification"},"637":{"body":"# Sign any string data\nsignature = agent.sign_string('Important message to sign')\nprint('Signature:', signature)","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"637","title":"Sign Arbitrary Data"},"638":{"body":"# Verify a signature on string data\nis_valid = agent.verify_string( 'Important message to sign', # original data signature_base64, # base64 signature public_key_bytes, # public key as bytes 'ring-Ed25519' # algorithm\n)","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"638","title":"Verify Arbitrary Data"},"639":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"639","title":"Working with Agreements"},"64":{"body":"File System : Simple JSON files Databases : Store as JSON/JSONB fields Object Storage : S3, Azure Blob, Google Cloud Storage Version Control : Git repositories for change tracking","breadcrumbs":"Core Concepts » Storage Options","id":"64","title":"Storage Options"},"640":{"body":"# Add agreement requiring multiple agent signatures\ndocument_with_agreement = agent.create_agreement( signed_document_json, ['agent1-uuid', 'agent2-uuid'], # required signers 'Do you agree to these terms?', # question 'Q1 2024 service contract', # context 'jacsAgreement' # field name\n)","breadcrumbs":"Basic Usage » Create an Agreement","id":"640","title":"Create an Agreement"},"641":{"body":"# Sign the agreement as the current agent\nsigned_agreement = agent.sign_agreement( document_with_agreement_json, 'jacsAgreement' # agreement field name\n)","breadcrumbs":"Basic Usage » Sign an Agreement","id":"641","title":"Sign an Agreement"},"642":{"body":"# Check which agents have signed\nstatus = agent.check_agreement( document_with_agreement_json, 'jacsAgreement'\n) print('Agreement status:', json.loads(status))","breadcrumbs":"Basic Usage » Check Agreement Status","id":"642","title":"Check Agreement Status"},"643":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"643","title":"Agent Operations"},"644":{"body":"# Verify the loaded agent's signature\nis_valid = agent.verify_agent()\nprint('Agent valid:', is_valid) # Verify a specific agent file\nis_valid_other = agent.verify_agent('./other-agent.json')","breadcrumbs":"Basic Usage » Verify Agent","id":"644","title":"Verify Agent"},"645":{"body":"# Update agent document\nupdated_agent_json = agent.update_agent(json.dumps({ \"jacsId\": \"agent-uuid\", \"jacsVersion\": \"version-uuid\", \"name\": \"Updated Agent Name\", \"description\": \"Updated description\"\n}))","breadcrumbs":"Basic Usage » Update Agent","id":"645","title":"Update Agent"},"646":{"body":"# Sign another agent's document with registration signature\nsigned_agent_json = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"Basic Usage » Sign External Agent","id":"646","title":"Sign External Agent"},"647":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"647","title":"Request/Response Signing"},"648":{"body":"# Sign request parameters as a JACS document\nsigned_request = agent.sign_request({ \"method\": \"GET\", \"path\": \"/api/resource\", \"timestamp\": datetime.now().isoformat(), \"body\": {\"query\": \"data\"}\n})","breadcrumbs":"Basic Usage » Sign a Request","id":"648","title":"Sign a Request"},"649":{"body":"# Verify a signed response\nresult = agent.verify_response(signed_response_json)\nprint('Response valid:', result) # Verify and get signer's agent ID\nresult_with_id = agent.verify_response_with_agent_id(signed_response_json)\nprint('Signer ID:', result_with_id)","breadcrumbs":"Basic Usage » Verify a Response","id":"649","title":"Verify a Response"},"65":{"body":"HTTP APIs : RESTful or GraphQL endpoints Message Queues : RabbitMQ, Kafka, SQS Email : Documents as attachments Direct Transfer : USB drives, file sharing","breadcrumbs":"Core Concepts » Transport Mechanisms","id":"65","title":"Transport Mechanisms"},"650":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"650","title":"Utility Functions"},"651":{"body":"import jacs # SHA-256 hash of a string\nhash_value = jacs.hash_string('data to hash')\nprint('Hash:', hash_value)","breadcrumbs":"Basic Usage » Hash String","id":"651","title":"Hash String"},"652":{"body":"import jacs # Programmatically create a config JSON string\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) print('Config:', config_json)","breadcrumbs":"Basic Usage » Create Configuration","id":"652","title":"Create Configuration"},"653":{"body":"import jacs agent = jacs.JacsAgent() try: agent.load('./jacs.config.json')\nexcept Exception as error: print(f'Failed to load agent: {error}') try: doc = agent.create_document(json.dumps({'data': 'test'})) print('Document created')\nexcept Exception as error: print(f'Failed to create document: {error}') try: is_valid = agent.verify_document(invalid_json)\nexcept Exception as error: print(f'Verification failed: {error}')","breadcrumbs":"Basic Usage » Error Handling","id":"653","title":"Error Handling"},"654":{"body":"import jacs\nimport json def main(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a task document task = { \"title\": \"Code Review\", \"description\": \"Review pull request #123\", \"assignee\": \"developer-uuid\", \"deadline\": \"2024-02-01\" } signed_task = agent.create_document(json.dumps(task)) print('Task created') # Verify the task if agent.verify_document(signed_task): print('Task signature valid') # Create agreement for task acceptance task_with_agreement = agent.create_agreement( signed_task, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ) # Sign the agreement signed_agreement = agent.sign_agreement(task_with_agreement) print('Agreement signed') # Check agreement status status = agent.check_agreement(signed_agreement) print('Status:', status) # Hash some data for reference task_hash = jacs.hash_string(signed_task) print('Task hash:', task_hash) if __name__ == \"__main__\": main()","breadcrumbs":"Basic Usage » Complete Example","id":"654","title":"Complete Example"},"655":{"body":"","breadcrumbs":"Basic Usage » Working with Document Data","id":"655","title":"Working with Document Data"},"656":{"body":"import json # Create and sign a document\ndoc_data = {\"title\": \"My Document\", \"content\": \"Hello, World!\"}\nsigned_doc = agent.create_document(json.dumps(doc_data)) # Parse the signed document to access JACS fields\nparsed = json.loads(signed_doc)\nprint('Document ID:', parsed.get('jacsId'))\nprint('Document Version:', parsed.get('jacsVersion'))\nprint('Signature:', parsed.get('jacsSignature'))","breadcrumbs":"Basic Usage » Parse Signed Documents","id":"656","title":"Parse Signed Documents"},"657":{"body":"# Document keys combine ID and version\ndoc_id = parsed['jacsId']\ndoc_version = parsed['jacsVersion']\ndocument_key = f\"{doc_id}:{doc_version}\" # Use the key for updates\nupdated_doc = agent.update_document(document_key, json.dumps({ **parsed, \"content\": \"Updated content\"\n}))","breadcrumbs":"Basic Usage » Document Key Format","id":"657","title":"Document Key Format"},"658":{"body":"","breadcrumbs":"Basic Usage » Configuration Management","id":"658","title":"Configuration Management"},"659":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Load from File","id":"659","title":"Load from File"},"66":{"body":"JSON : Universal compatibility across all systems Schema Validation : Ensures consistent structure Self-Contained : All necessary information in the document Human Readable : Can be inspected and debugged easily","breadcrumbs":"Core Concepts » Format Compatibility","id":"66","title":"Format Compatibility"},"660":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Basic Usage » Environment Variables","id":"660","title":"Environment Variables"},"661":{"body":"import jacs\nimport json\nimport os # Create config programmatically\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) # Write to file\nwith open('jacs.config.json', 'w') as f: f.write(config_json) # Then load it\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Programmatic Configuration","id":"661","title":"Programmatic Configuration"},"662":{"body":"MCP Integration - Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"662","title":"Next Steps"},"663":{"body":"JACS provides seamless integration with the Model Context Protocol (MCP), enabling cryptographically signed and verified communication between AI agents and MCP servers. This integration ensures that all tool calls, resource requests, and prompt interactions are authenticated and tamper-proof.","breadcrumbs":"MCP Integration » MCP Integration","id":"663","title":"MCP Integration"},"664":{"body":"JACS MCP integration provides: Cryptographic Authentication : All MCP messages are signed and verified FastMCP Support : Native integration with FastMCP servers HTTP & SSE Transports : Support for Server-Sent Events transport Transparent Security : Existing MCP code works with minimal changes","breadcrumbs":"MCP Integration » Overview","id":"664","title":"Overview"},"665":{"body":"","breadcrumbs":"MCP Integration » Quick Start","id":"665","title":"Quick Start"},"666":{"body":"import jacs\nimport os\nfrom pathlib import Path\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Setup JACS configuration\ncurrent_dir = Path(__file__).parent.absolute()\njacs_config_path = current_dir / \"jacs.config.json\" # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(str(jacs_config_path)) # Create FastMCP server with JACS authentication\nmcp = JACSMCPServer(FastMCP(\"Authenticated Echo Server\")) @mcp.tool()\ndef echo_tool(text: str) -> str: \"\"\"Echo the input text with server prefix\"\"\" return f\"SERVER SAYS: {text}\" @mcp.resource(\"echo://static\")\ndef echo_resource() -> str: return \"Echo!\" @mcp.prompt(\"echo\")\ndef echo_prompt(text: str) -> str: return f\"Echo prompt: {text}\" # Get the ASGI app with JACS middleware\nsse_app_with_middleware = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS-enabled MCP server...\") uvicorn.run(sse_app_with_middleware, host=\"localhost\", port=8000)","breadcrumbs":"MCP Integration » Basic MCP Server with JACS","id":"666","title":"Basic MCP Server with JACS"},"667":{"body":"import asyncio\nimport os\nfrom pathlib import Path\nimport jacs\nfrom jacs.mcp import JACSMCPClient # Setup JACS configuration\ncurrent_dir = Path(__file__).parent.absolute()\njacs_config_path = current_dir / \"jacs.client.config.json\" # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(str(jacs_config_path)) async def main(): server_url = \"http://localhost:8000/sse\" try: client = JACSMCPClient(server_url) async with client: # Call authenticated tool result = await client.call_tool(\"echo_tool\", { \"text\": \"Hello from authenticated client!\" }) print(f\"Tool result: {result}\") # Read authenticated resource resource = await client.read_resource(\"echo://static\") print(f\"Resource: {resource}\") except Exception as e: print(f\"Error: {e}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"MCP Integration » Basic MCP Client with JACS","id":"667","title":"Basic MCP Client with JACS"},"668":{"body":"","breadcrumbs":"MCP Integration » How It Works","id":"668","title":"How It Works"},"669":{"body":"The JACSMCPServer wrapper adds JACS middleware to a FastMCP server: Incoming Requests : Intercepts JSON-RPC requests and verifies them using jacs.verify_request() Outgoing Responses : Signs JSON-RPC responses using jacs.sign_response() from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP # Create FastMCP server\nbase_server = FastMCP(\"My Server\") # Wrap with JACS authentication\nauthenticated_server = JACSMCPServer(base_server) # All decorators work normally\n@authenticated_server.tool()\ndef my_tool(data: str) -> str: return f\"Processed: {data}\" # Get ASGI app with JACS middleware\napp = authenticated_server.sse_app()","breadcrumbs":"MCP Integration » JACSMCPServer","id":"669","title":"JACSMCPServer"},"67":{"body":"Now that you understand the core concepts: Quick Start - Try JACS hands-on Choose Implementation : Rust CLI for command-line usage Node.js for web applications Python for AI/ML workflows Examples - See real-world usage patterns","breadcrumbs":"Core Concepts » Next Steps","id":"67","title":"Next Steps"},"670":{"body":"The JACSMCPClient wrapper adds interceptors to a FastMCP client: Outgoing Messages : Signs messages using jacs.sign_request() Incoming Messages : Verifies messages using jacs.verify_response() from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: result = await client.call_tool(\"my_tool\", {\"data\": \"test\"})","breadcrumbs":"MCP Integration » JACSMCPClient","id":"670","title":"JACSMCPClient"},"671":{"body":"","breadcrumbs":"MCP Integration » Configuration","id":"671","title":"Configuration"},"672":{"body":"Create a jacs.config.json file for your server and client: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"MCP Integration » JACS Configuration File","id":"672","title":"JACS Configuration File"},"673":{"body":"Before using MCP integration, initialize your JACS agent: import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Agent is now ready for MCP operations","breadcrumbs":"MCP Integration » Initializing the Agent","id":"673","title":"Initializing the Agent"},"674":{"body":"","breadcrumbs":"MCP Integration » Integration Patterns","id":"674","title":"Integration Patterns"},"675":{"body":"from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport jacs # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Create and wrap server\nserver = FastMCP(\"My Server\")\nauthenticated_server = JACSMCPServer(server) @authenticated_server.tool()\ndef secure_tool(input_data: str) -> str: \"\"\"A tool that processes signed input\"\"\" return f\"Securely processed: {input_data}\" # Run server\nif __name__ == \"__main__\": import uvicorn app = authenticated_server.sse_app() uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"MCP Integration » FastMCP with JACS Middleware","id":"675","title":"FastMCP with JACS Middleware"},"676":{"body":"For custom integrations, you can use the module-level functions directly: import jacs # Initialize agent first\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Sign a request\nsigned_request = jacs.sign_request({ \"method\": \"tools/call\", \"params\": {\"name\": \"my_tool\", \"arguments\": {\"data\": \"test\"}}\n}) # Verify a response\nverified_response = jacs.verify_response(signed_response_string)\npayload = verified_response.get(\"payload\")","breadcrumbs":"MCP Integration » Manual Request/Response Signing","id":"676","title":"Manual Request/Response Signing"},"677":{"body":"","breadcrumbs":"MCP Integration » Error Handling","id":"677","title":"Error Handling"},"678":{"body":"import jacs\nfrom jacs.mcp import JACSMCPClient async def robust_mcp_client(): try: agent = jacs.JacsAgent() agent.load(\"./jacs.config.json\") client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: result = await client.call_tool(\"my_tool\", {\"data\": \"test\"}) return result except FileNotFoundError as e: print(f\"Configuration file not found: {e}\") except ConnectionError as e: print(f\"MCP connection failed: {e}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"MCP Integration » Common Errors","id":"678","title":"Common Errors"},"679":{"body":"Enable logging to debug authentication issues: import logging # Enable detailed logging\nlogging.basicConfig(level=logging.DEBUG) # Your MCP code here...","breadcrumbs":"MCP Integration » Debugging","id":"679","title":"Debugging"},"68":{"body":"This guide will get you up and running with JACS in under 10 minutes. We'll create an agent, generate a task, and demonstrate the core workflow across all three implementations.","breadcrumbs":"Quick Start » Quick Start Guide","id":"68","title":"Quick Start Guide"},"680":{"body":"","breadcrumbs":"MCP Integration » Production Deployment","id":"680","title":"Production Deployment"},"681":{"body":"Key Management : Store private keys securely Environment Variables : Use environment variables for sensitive paths Network Security : Use TLS for network transport Key Rotation : Implement key rotation policies import os\nimport jacs # Production initialization\nconfig_path = os.getenv(\"JACS_CONFIG_PATH\", \"/etc/jacs/config.json\") agent = jacs.JacsAgent()\nagent.load(config_path)","breadcrumbs":"MCP Integration » Security Best Practices","id":"681","title":"Security Best Practices"},"682":{"body":"FROM python:3.11-slim WORKDIR /app # Install dependencies\nCOPY requirements.txt .\nRUN pip install -r requirements.txt # Copy application\nCOPY . . # Create secure key directory\nRUN mkdir -p /secure/keys && chmod 700 /secure/keys # Set environment variables\nENV JACS_CONFIG_PATH=/app/jacs.config.json # Run MCP server\nCMD [\"python\", \"mcp_server.py\"]","breadcrumbs":"MCP Integration » Docker Deployment","id":"682","title":"Docker Deployment"},"683":{"body":"","breadcrumbs":"MCP Integration » Testing","id":"683","title":"Testing"},"684":{"body":"import pytest\nimport jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nfrom fastmcp.client import Client\nfrom fastmcp.client.transports import FastMCPTransport @pytest.fixture\ndef jacs_agent(): agent = jacs.JacsAgent() agent.load(\"./test.config.json\") return agent @pytest.fixture\ndef jacs_mcp_server(jacs_agent): server = FastMCP(\"Test Server\") return JACSMCPServer(server) async def test_authenticated_tool(jacs_mcp_server): @jacs_mcp_server.tool() def echo(text: str) -> str: return f\"Echo: {text}\" # Test the tool directly result = echo(\"test\") assert \"test\" in result","breadcrumbs":"MCP Integration » Unit Testing MCP Tools","id":"684","title":"Unit Testing MCP Tools"},"685":{"body":"","breadcrumbs":"MCP Integration » API Reference","id":"685","title":"API Reference"},"686":{"body":"Wraps a FastMCP server with JACS authentication middleware. Parameters: mcp_server: A FastMCP server instance Returns: The wrapped server with JACS middleware Example: from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP server = FastMCP(\"My Server\")\nauthenticated = JACSMCPServer(server)\napp = authenticated.sse_app()","breadcrumbs":"MCP Integration » JACSMCPServer(mcp_server)","id":"686","title":"JACSMCPServer(mcp_server)"},"687":{"body":"Creates a FastMCP client with JACS authentication interceptors. Parameters: url: The MCP server SSE endpoint URL **kwargs: Additional arguments passed to the FastMCP Client Returns: A FastMCP Client with JACS interceptors Example: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\")\nasync with client: result = await client.call_tool(\"my_tool\", {\"arg\": \"value\"})","breadcrumbs":"MCP Integration » JACSMCPClient(url, **kwargs)","id":"687","title":"JACSMCPClient(url, **kwargs)"},"688":{"body":"These functions are used internally by the MCP integration: jacs.sign_request(data) - Sign a request payload jacs.verify_request(data) - Verify an incoming request jacs.sign_response(data) - Sign a response payload jacs.verify_response(data) - Verify an incoming response","breadcrumbs":"MCP Integration » Module Functions","id":"688","title":"Module Functions"},"689":{"body":"FastMCP Integration - Advanced FastMCP patterns API Reference - Complete API documentation Examples - More complex examples","breadcrumbs":"MCP Integration » Next Steps","id":"689","title":"Next Steps"},"69":{"body":"Select the implementation that best fits your needs: 🦀 Rust CLI","breadcrumbs":"Quick Start » Choose Your Implementation","id":"69","title":"Choose Your Implementation"},"690":{"body":"Complete API documentation for the jacs Python package.","breadcrumbs":"API Reference » API Reference","id":"690","title":"API Reference"},"691":{"body":"pip install jacs","breadcrumbs":"API Reference » Installation","id":"691","title":"Installation"},"692":{"body":"import jacs\nfrom jacs import JacsAgent","breadcrumbs":"API Reference » Core Module","id":"692","title":"Core Module"},"693":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"693","title":"JacsAgent Class"},"694":{"body":"JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"API Reference » Constructor","id":"694","title":"Constructor"},"695":{"body":"Load and initialize the agent from a configuration file. Parameters: config_path (str): Path to the JACS configuration file Returns: str - The loaded agent's JSON Example: agent = jacs.JacsAgent()\nagent_json = agent.load('./jacs.config.json')\nprint('Agent loaded:', json.loads(agent_json)['jacsId'])","breadcrumbs":"API Reference » agent.load(config_path)","id":"695","title":"agent.load(config_path)"},"696":{"body":"Create and sign a new JACS document. Parameters: document_string (str): JSON string of the document content custom_schema (str, optional): Path to a custom JSON Schema for validation output_filename (str, optional): Filename to save the document no_save (bool, optional): If True, don't save to storage (default: False) attachments (str, optional): Path to file attachments embed (bool, optional): If True, embed attachments in the document Returns: str - The signed document as a JSON string Example: # Basic document creation\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Hello, World!'\n})) # With custom schema\nvalidated_doc = agent.create_document( json.dumps({'title': 'Validated', 'amount': 100}), custom_schema='./schemas/invoice.schema.json'\n) # Without saving\ntemp_doc = agent.create_document( json.dumps({'data': 'temporary'}), no_save=True\n) # With attachments\ndoc_with_file = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n)","breadcrumbs":"API Reference » agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)","id":"696","title":"agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)"},"697":{"body":"Verify a document's signature and hash integrity. Parameters: document_string (str): The signed document JSON string Returns: bool - True if the document is valid Example: is_valid = agent.verify_document(signed_document_json)\nif is_valid: print('Document signature verified')\nelse: print('Document verification failed')","breadcrumbs":"API Reference » agent.verify_document(document_string)","id":"697","title":"agent.verify_document(document_string)"},"698":{"body":"Verify a document's signature with an optional custom signature field. Parameters: document_string (str): The signed document JSON string signature_field (str, optional): Name of the signature field (default: 'jacsSignature') Returns: bool - True if the signature is valid Example: # Verify default signature field\nis_valid = agent.verify_signature(doc_json) # Verify custom signature field\nis_valid_custom = agent.verify_signature(doc_json, 'customSignature')","breadcrumbs":"API Reference » agent.verify_signature(document_string, signature_field=None)","id":"698","title":"agent.verify_signature(document_string, signature_field=None)"},"699":{"body":"Update an existing document, creating a new version. Parameters: document_key (str): The document key in format \"id:version\" new_document_string (str): The modified document as JSON string attachments (list, optional): List of attachment file paths embed (bool, optional): If True, embed attachments Returns: str - The updated document as a JSON string Example: # Parse existing document to get key\ndoc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" # Update the document\nupdated_doc = agent.update_document( document_key, json.dumps({ **doc, 'title': 'Updated Title', 'content': 'Modified content' })\n)","breadcrumbs":"API Reference » agent.update_document(document_key, new_document_string, attachments=None, embed=False)","id":"699","title":"agent.update_document(document_key, new_document_string, attachments=None, embed=False)"},"7":{"body":"Choose your implementation and get started in minutes:","breadcrumbs":"Introduction » Quick Start","id":"7","title":"Quick Start"},"70":{"body":"# Install from crates.io\ncargo install jacs # Or build from source\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacs\ncargo install --path . --features=\"cli\"","breadcrumbs":"Quick Start » Install Rust CLI","id":"70","title":"Install Rust CLI"},"700":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: document_string (str): The document JSON string agent_ids (list): List of agent IDs required to sign question (str, optional): The agreement question context (str, optional): Additional context for the agreement agreement_field_name (str, optional): Field name for the agreement (default: 'jacsAgreement') Returns: str - The document with agreement as a JSON string Example: doc_with_agreement = agent.create_agreement( signed_document_json, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], question='Do you agree to these terms?', context='Q1 2024 Service Agreement', agreement_field_name='jacsAgreement'\n)","breadcrumbs":"API Reference » agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)","id":"700","title":"agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)"},"701":{"body":"Sign an agreement as the current agent. Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - The document with this agent's signature added Example: signed_agreement = agent.sign_agreement( doc_with_agreement_json, 'jacsAgreement'\n)","breadcrumbs":"API Reference » agent.sign_agreement(document_string, agreement_field_name=None)","id":"701","title":"agent.sign_agreement(document_string, agreement_field_name=None)"},"702":{"body":"Check the status of an agreement (which agents have signed). Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - JSON string with agreement status Example: status_json = agent.check_agreement(signed_agreement_json)\nstatus = json.loads(status_json) print('Required signers:', status['required'])\nprint('Signatures received:', status['signed'])\nprint('Complete:', status['complete'])","breadcrumbs":"API Reference » agent.check_agreement(document_string, agreement_field_name=None)","id":"702","title":"agent.check_agreement(document_string, agreement_field_name=None)"},"703":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (str): The data to sign Returns: str - Base64-encoded signature Example: signature = agent.sign_string('Important message')\nprint('Signature:', signature)","breadcrumbs":"API Reference » agent.sign_string(data)","id":"703","title":"agent.sign_string(data)"},"704":{"body":"Verify a signature on arbitrary string data. Parameters: data (str): The original data signature_base64 (str): The base64-encoded signature public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm (e.g., 'ring-Ed25519') Returns: bool - True if the signature is valid Example: is_valid = agent.verify_string( 'Important message', signature_base64, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.verify_string(data, signature_base64, public_key, public_key_enc_type)","id":"704","title":"agent.verify_string(data, signature_base64, public_key, public_key_enc_type)"},"705":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload (will be JSON serialized) Returns: str - JACS-signed request as a JSON string Example: signed_request = agent.sign_request({ 'method': 'GET', 'path': '/api/data', 'timestamp': datetime.now().isoformat(), 'body': {'query': 'value'}\n})","breadcrumbs":"API Reference » agent.sign_request(params)","id":"705","title":"agent.sign_request(params)"},"706":{"body":"Verify a JACS-signed response and extract the payload. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary containing the verified payload Example: result = agent.verify_response(jacs_response_string)\npayload = result.get('payload')\nprint('Verified payload:', payload)","breadcrumbs":"API Reference » agent.verify_response(document_string)","id":"706","title":"agent.verify_response(document_string)"},"707":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary with payload and agent ID Example: result = agent.verify_response_with_agent_id(jacs_response_string)\nprint('Payload:', result['payload'])\nprint('Signed by agent:', result['agentId'])","breadcrumbs":"API Reference » agent.verify_response_with_agent_id(document_string)","id":"707","title":"agent.verify_response_with_agent_id(document_string)"},"708":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agent_file (str, optional): Path to an agent file to verify Returns: bool - True if the agent is valid Example: # Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_other_valid = agent.verify_agent('./other-agent.json')","breadcrumbs":"API Reference » agent.verify_agent(agent_file=None)","id":"708","title":"agent.verify_agent(agent_file=None)"},"709":{"body":"Update the agent document with new data. Parameters: new_agent_string (str): The modified agent document as JSON string Returns: str - The updated agent document Example: current_agent = json.loads(agent.load('./jacs.config.json'))\nupdated_agent = agent.update_agent(json.dumps({ **current_agent, 'description': 'Updated description'\n}))","breadcrumbs":"API Reference » agent.update_agent(new_agent_string)","id":"709","title":"agent.update_agent(new_agent_string)"},"71":{"body":"# Create configuration and agent in one step\njacs init # This creates:\n# - ~/.jacs/config.json\n# - Agent keys and documents\n# - Basic directory structure","breadcrumbs":"Quick Start » Initialize JACS","id":"71","title":"Initialize JACS"},"710":{"body":"Sign another agent's document with a registration signature. Parameters: agent_string (str): The agent document to sign public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm Returns: str - The signed agent document Example: signed_agent = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.sign_agent(agent_string, public_key, public_key_enc_type)","id":"710","title":"agent.sign_agent(agent_string, public_key, public_key_enc_type)"},"711":{"body":"These functions operate on a global agent singleton and are maintained for backwards compatibility. New code should use the JacsAgent class instead.","breadcrumbs":"API Reference » Module-Level Functions","id":"711","title":"Module-Level Functions"},"712":{"body":"Load the global agent from a configuration file. import jacs\njacs.load('./jacs.config.json')","breadcrumbs":"API Reference » jacs.load(config_path)","id":"712","title":"jacs.load(config_path)"},"713":{"body":"Sign a request using the global agent. signed = jacs.sign_request({'method': 'tools/call', 'params': {...}})","breadcrumbs":"API Reference » jacs.sign_request(data)","id":"713","title":"jacs.sign_request(data)"},"714":{"body":"Verify an incoming request using the global agent. payload = jacs.verify_request(incoming_request_string)","breadcrumbs":"API Reference » jacs.verify_request(data)","id":"714","title":"jacs.verify_request(data)"},"715":{"body":"Sign a response using the global agent. signed = jacs.sign_response({'result': 'success'})","breadcrumbs":"API Reference » jacs.sign_response(data)","id":"715","title":"jacs.sign_response(data)"},"716":{"body":"Verify an incoming response using the global agent. result = jacs.verify_response(response_string)\npayload = result.get('payload')","breadcrumbs":"API Reference » jacs.verify_response(data)","id":"716","title":"jacs.verify_response(data)"},"717":{"body":"from jacs.mcp import JACSMCPServer, JACSMCPClient","breadcrumbs":"API Reference » MCP Module","id":"717","title":"MCP Module"},"718":{"body":"Wraps a FastMCP server with JACS authentication middleware. Parameters: mcp_server: A FastMCP server instance Returns: The wrapped server with JACS middleware Example: from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP server = FastMCP(\"My Server\")\nauthenticated = JACSMCPServer(server)\napp = authenticated.sse_app()","breadcrumbs":"API Reference » JACSMCPServer(mcp_server)","id":"718","title":"JACSMCPServer(mcp_server)"},"719":{"body":"Creates a FastMCP client with JACS authentication interceptors. Parameters: url: The MCP server SSE endpoint URL **kwargs: Additional arguments passed to the FastMCP Client Returns: A FastMCP Client with JACS interceptors Example: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\")\nasync with client: result = await client.call_tool(\"my_tool\", {\"arg\": \"value\"})","breadcrumbs":"API Reference » JACSMCPClient(url, **kwargs)","id":"719","title":"JACSMCPClient(url, **kwargs)"},"72":{"body":"# Create an agent (if not done via jacs init)\n# Agent type is defined in the input JSON file or default template\njacs agent create --create-keys true # Or provide a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Verify your agent was created correctly\njacs agent verify","breadcrumbs":"Quick Start » Create Your First Agent","id":"72","title":"Create Your First Agent"},"720":{"body":"","breadcrumbs":"API Reference » Configuration","id":"720","title":"Configuration"},"721":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"API Reference » Configuration File Format","id":"721","title":"Configuration File Format"},"722":{"body":"Field Type Description jacs_agent_id_and_version string Agent ID and version in format \"id:version\" jacs_agent_key_algorithm string Signing algorithm: \"ring-Ed25519\", \"RSA-PSS\", \"pq-dilithium\", \"pq2025\" jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_data_directory string Directory for data storage jacs_key_directory string Directory for key storage jacs_default_storage string Storage backend: \"fs\", \"s3\", \"memory\"","breadcrumbs":"API Reference » Configuration Options","id":"722","title":"Configuration Options"},"723":{"body":"All methods may raise exceptions. Use try/except for error handling: try: agent = jacs.JacsAgent() agent.load('./jacs.config.json') doc = agent.create_document(json.dumps({'data': 'test'}))\nexcept FileNotFoundError as e: print(f'Configuration file not found: {e}')\nexcept ValueError as e: print(f'Invalid configuration: {e}')\nexcept Exception as e: print(f'JACS error: {e}')","breadcrumbs":"API Reference » Error Handling","id":"723","title":"Error Handling"},"724":{"body":"Exception Description FileNotFoundError Configuration file or key file not found ValueError Invalid configuration or document format RuntimeError Agent not loaded or cryptographic operation failed","breadcrumbs":"API Reference » Common Exceptions","id":"724","title":"Common Exceptions"},"725":{"body":"The package supports type hints for better IDE integration: from jacs import JacsAgent\nimport json def process_document(agent: JacsAgent, data: dict) -> str: \"\"\"Create and return a signed document.\"\"\" doc_string = json.dumps(data) return agent.create_document(doc_string) def verify_and_extract(agent: JacsAgent, doc: str) -> dict: \"\"\"Verify document and extract content.\"\"\" if agent.verify_document(doc): return json.loads(doc) raise ValueError(\"Document verification failed\")","breadcrumbs":"API Reference » Type Hints","id":"725","title":"Type Hints"},"726":{"body":"JacsAgent instances use internal locking and are thread-safe. You can safely use the same agent instance across multiple threads: import threading\nfrom jacs import JacsAgent agent = JacsAgent()\nagent.load('./jacs.config.json') def worker(data): # Safe to call from multiple threads doc = agent.create_document(json.dumps(data)) return doc threads = [ threading.Thread(target=worker, args=({'id': i},)) for i in range(10)\n]\nfor t in threads: t.start()\nfor t in threads: t.join()","breadcrumbs":"API Reference » Thread Safety","id":"726","title":"Thread Safety"},"727":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol Examples - More complex examples","breadcrumbs":"API Reference » See Also","id":"727","title":"See Also"},"728":{"body":"JACS uses JSON Schema (Draft-07) to define the structure and validation rules for all documents in the system. These schemas ensure consistency, enable validation, and provide a contract for interoperability between agents.","breadcrumbs":"JSON Schemas » JSON Schemas","id":"728","title":"JSON Schemas"},"729":{"body":"JACS schemas follow a hierarchical composition pattern: ┌─────────────────────────────────────────────────────────┐\n│ Document Schemas │\n│ (agent.schema.json, task.schema.json, message.schema.json) │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Header Schema │\n│ (header.schema.json) │\n│ Base fields: jacsId, jacsVersion, jacsSignature, etc. │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Component Schemas │\n│ signature.schema.json, agreement.schema.json, │\n│ files.schema.json, embedding.schema.json, etc. │\n└─────────────────────────────────────────────────────────┘","breadcrumbs":"JSON Schemas » Schema Architecture","id":"729","title":"Schema Architecture"},"73":{"body":"# Create a task document with name and description\njacs task create \\ -n \"Write Product Description\" \\ -d \"Create compelling copy for new product launch\" # The task is automatically signed by your agent 🟢 Node.js","breadcrumbs":"Quick Start » Create and Sign a Task","id":"73","title":"Create and Sign a Task"},"730":{"body":"","breadcrumbs":"JSON Schemas » Schema Categories","id":"730","title":"Schema Categories"},"731":{"body":"Schema Purpose jacs.config.schema.json Agent configuration file format","breadcrumbs":"JSON Schemas » Configuration Schema","id":"731","title":"Configuration Schema"},"732":{"body":"Schema Purpose header/v1/header.schema.json Base fields for all JACS documents agent/v1/agent.schema.json Agent identity and capabilities task/v1/task.schema.json Task workflow and state management message/v1/message.schema.json Inter-agent messages node/v1/node.schema.json Graph node representation program/v1/program.schema.json Executable program definitions eval/v1/eval.schema.json Evaluation and assessment records agentstate/v1/agentstate.schema.json Signed agent state files (memory, skills, plans, configs, hooks, other) commitment/v1/commitment.schema.json Shared, signed agreements between agents todo/v1/todo.schema.json Private, signed todo lists with inline items","breadcrumbs":"JSON Schemas » Document Schemas","id":"732","title":"Document Schemas"},"733":{"body":"Schema Purpose signature/v1/signature.schema.json Cryptographic signatures agreement/v1/agreement.schema.json Multi-party agreements files/v1/files.schema.json File attachments embedding/v1/embedding.schema.json Vector embeddings contact/v1/contact.schema.json Contact information service/v1/service.schema.json Service definitions tool/v1/tool.schema.json Tool capabilities action/v1/action.schema.json Action definitions unit/v1/unit.schema.json Unit of measurement todoitem/v1/todoitem.schema.json Inline todo item (goal or task)","breadcrumbs":"JSON Schemas » Component Schemas","id":"733","title":"Component Schemas"},"734":{"body":"Schemas are available at: HTTPS URLs : https://hai.ai/schemas/... Local files : jacs/schemas/... Example schema URLs: https://hai.ai/schemas/jacs.config.schema.json\nhttps://hai.ai/schemas/header/v1/header.schema.json\nhttps://hai.ai/schemas/agent/v1/agent.schema.json\nhttps://hai.ai/schemas/components/signature/v1/signature.schema.json","breadcrumbs":"JSON Schemas » Schema Locations","id":"734","title":"Schema Locations"},"735":{"body":"","breadcrumbs":"JSON Schemas » Using Schemas","id":"735","title":"Using Schemas"},"736":{"body":"Every JACS document must include a $schema field: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsType\": \"agent\", ...\n}","breadcrumbs":"JSON Schemas » In Documents","id":"736","title":"In Documents"},"737":{"body":"Reference the config schema for IDE support: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", ...\n}","breadcrumbs":"JSON Schemas » In Configuration Files","id":"737","title":"In Configuration Files"},"738":{"body":"Validate documents against custom schemas: import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create document with custom schema\ndoc = agent.create_document( json.dumps({'invoice_id': 'INV-001', 'amount': 100.00}), custom_schema='./schemas/invoice.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create document with custom schema\nconst doc = agent.createDocument( JSON.stringify({ invoice_id: 'INV-001', amount: 100.00 }), './schemas/invoice.schema.json'\n);","breadcrumbs":"JSON Schemas » Custom Schema Validation","id":"738","title":"Custom Schema Validation"},"739":{"body":"JACS schemas include a custom hai property that categorizes fields: Value Description meta Metadata fields (IDs, dates, versions) base Core cryptographic fields (hashes, signatures) agent Agent-controlled content fields This categorization helps determine which fields should be included in hash calculations and signature operations.","breadcrumbs":"JSON Schemas » HAI Extensions","id":"739","title":"HAI Extensions"},"74":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Quick Start » Install Node.js Package","id":"74","title":"Install Node.js Package"},"740":{"body":"Schemas are versioned using directory paths: schemas/\n├── header/\n│ └── v1/\n│ └── header.schema.json\n├── agent/\n│ └── v1/\n│ └── agent.schema.json\n└── components/ └── signature/ └── v1/ └── signature.schema.json Configuration options allow specifying schema versions: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"JSON Schemas » Versioning","id":"740","title":"Versioning"},"741":{"body":"Document schemas use JSON Schema's allOf to compose the header with type-specific fields: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"jacsAgentType\": { ... }, \"jacsServices\": { ... } } } ]\n} This ensures all documents share common header fields while allowing type-specific extensions.","breadcrumbs":"JSON Schemas » Schema Composition","id":"741","title":"Schema Composition"},"742":{"body":"Create custom schemas that extend JACS schemas: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0, \"description\": \"Invoice amount\" }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"], \"default\": \"USD\" }, \"lineItems\": { \"type\": \"array\", \"items\": { \"type\": \"object\", \"properties\": { \"description\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"unitPrice\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"description\", \"quantity\", \"unitPrice\"] } } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"JSON Schemas » Creating Custom Schemas","id":"742","title":"Creating Custom Schemas"},"743":{"body":"","breadcrumbs":"JSON Schemas » Validation Rules","id":"743","title":"Validation Rules"},"744":{"body":"All JACS documents require these header fields: jacsId - Unique document identifier (UUID v4) jacsType - Document type identifier jacsVersion - Version identifier (UUID v4) jacsVersionDate - Version timestamp (ISO 8601) jacsOriginalVersion - First version identifier jacsOriginalDate - Creation timestamp jacsLevel - Document level (raw, config, artifact, derived) $schema - Schema reference URL","breadcrumbs":"JSON Schemas » Required Fields","id":"744","title":"Required Fields"},"745":{"body":"Fields use JSON Schema format keywords: uuid - UUID v4 format date-time - ISO 8601 date-time format uri - Valid URI format","breadcrumbs":"JSON Schemas » Format Validation","id":"745","title":"Format Validation"},"746":{"body":"Many fields have enumerated valid values: { \"jacsLevel\": { \"enum\": [\"raw\", \"config\", \"artifact\", \"derived\"] }, \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }, \"jacs_agent_key_algorithm\": { \"enum\": [\"RSA-PSS\", \"ring-Ed25519\", \"pq-dilithium\", \"pq2025\"] }\n}","breadcrumbs":"JSON Schemas » Enum Constraints","id":"746","title":"Enum Constraints"},"747":{"body":"For detailed documentation on specific schemas: Agent Schema - Agent identity and capabilities Document Schema - Document header and structure Task Schema - Task workflow management Agent State Schema - Signed agent state documents Commitment Schema - Shared agreements between agents Todo List Schema - Private task tracking with inline items Conversation Schema - Message threading and ordering Configuration - Configuration file format","breadcrumbs":"JSON Schemas » Schema Reference","id":"747","title":"Schema Reference"},"748":{"body":"Custom Schemas - Creating custom document types Security Model - How schemas relate to security API Reference - Using schemas in code","breadcrumbs":"JSON Schemas » See Also","id":"748","title":"See Also"},"749":{"body":"The Agent Schema defines the structure for agent identity documents in JACS. Agents represent entities that can sign documents, participate in agreements, and provide services.","breadcrumbs":"Agent Schema » Agent Schema","id":"749","title":"Agent Schema"},"75":{"body":"import { JacsAgent, createConfig } from '@hai.ai/jacs';\nimport fs from 'fs'; // Create configuration\nconst config = { jacs_agent_id_and_version: null, jacs_data_directory: \"./jacs_data\", jacs_key_directory: \"./jacs_keys\", jacs_default_storage: \"fs\", jacs_agent_key_algorithm: \"ring-Ed25519\"\n}; // Save config\nfs.writeFileSync('./jacs.config.json', JSON.stringify(config, null, 2)); // Create agent instance and load configuration\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Quick Start » Basic Setup","id":"75","title":"Basic Setup"},"750":{"body":"https://hai.ai/schemas/agent/v1/agent.schema.json","breadcrumbs":"Agent Schema » Schema Location","id":"750","title":"Schema Location"},"751":{"body":"Agent documents describe: Identity : Unique identifiers and versioning Type : Human, organizational, hybrid, or AI classification Services : Capabilities the agent offers Contacts : How to reach human or hybrid agents Domain : Optional DNS-based verification","breadcrumbs":"Agent Schema » Overview","id":"751","title":"Overview"},"752":{"body":"The agent schema extends the Header Schema using JSON Schema composition: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"title\": \"Agent\", \"description\": \"General schema for human, hybrid, and AI agents\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Agent Schema » Schema Structure","id":"752","title":"Schema Structure"},"753":{"body":"The jacsAgentType field classifies the agent: Type Description human A biological entity (individual person) human-org A group of people (organization, company) hybrid Combination of human and AI components ai Fully artificial intelligence { \"jacsAgentType\": { \"type\": \"string\", \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }\n}","breadcrumbs":"Agent Schema » Agent Types","id":"753","title":"Agent Types"},"754":{"body":"Human and hybrid agents must provide contact information: { \"if\": { \"properties\": { \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\"] } } }, \"then\": { \"required\": [\"jacsContacts\"] }\n}","breadcrumbs":"Agent Schema » Contact Requirements","id":"754","title":"Contact Requirements"},"755":{"body":"","breadcrumbs":"Agent Schema » Agent Properties","id":"755","title":"Agent Properties"},"756":{"body":"All agents inherit these header fields: Field Type Required Description jacsId string (UUID) Yes Unique agent identifier jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version timestamp jacsType string Yes Set to \"agent\" jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Creation timestamp jacsLevel string Yes Document level jacsSignature object No Cryptographic signature jacsSha256 string No Content hash","breadcrumbs":"Agent Schema » Core Fields (from Header)","id":"756","title":"Core Fields (from Header)"},"757":{"body":"Field Type Required Description jacsAgentType string Yes Agent classification jacsAgentDomain string No Domain for DNS verification jacsServices array Yes Services the agent provides jacsContacts array Conditional Contact information (required for human/hybrid)","breadcrumbs":"Agent Schema » Agent-Specific Fields","id":"757","title":"Agent-Specific Fields"},"758":{"body":"Services describe capabilities the agent offers: { \"jacsServices\": [{ \"name\": \"Document Signing Service\", \"serviceDescription\": \"Sign and verify JACS documents\", \"successDescription\": \"Documents are signed with valid signatures\", \"failureDescription\": \"Invalid documents or signing errors\", \"costDescription\": \"Free for basic usage, paid tiers available\", \"idealCustomerDescription\": \"Developers building secure agent systems\", \"termsOfService\": \"https://example.com/tos\", \"privacyPolicy\": \"https://example.com/privacy\", \"isDev\": false, \"tools\": [...] }]\n}","breadcrumbs":"Agent Schema » Services","id":"758","title":"Services"},"759":{"body":"Field Type Required Description name string No Service name serviceDescription string Yes What the service does successDescription string Yes What success looks like failureDescription string Yes What failure looks like costDescription string No Pricing information idealCustomerDescription string No Target customer profile termsOfService string No Legal terms URL or text privacyPolicy string No Privacy policy URL or text copyright string No Usage rights for provided data eula string No End-user license agreement isDev boolean No Whether this is a dev/test service tools array No Tool definitions piiDesired array No Types of sensitive data needed","breadcrumbs":"Agent Schema » Service Schema Fields","id":"759","title":"Service Schema Fields"},"76":{"body":"// Create agent with services\nconst agentData = { name: \"Content Creator Bot\", description: \"AI agent specialized in content creation\", services: [ { type: \"content_generation\", name: \"Product Description Writer\", description: \"Creates compelling product descriptions\", success: \"Engaging copy that converts visitors\", failure: \"Generic or low-quality content\" } ]\n}; // Generate keys and create agent\nawait agent.generateKeys();\nconst agentDoc = await agent.createAgent(agentData);\nconsole.log('Agent created:', agentDoc.jacsId);","breadcrumbs":"Quick Start » Create Agent Document","id":"76","title":"Create Agent Document"},"760":{"body":"Services can declare what personally identifiable information they need: { \"piiDesired\": [\"email\", \"phone\", \"address\"]\n} Valid PII types: signature - Digital signatures cryptoaddress - Cryptocurrency addresses creditcard - Payment card numbers govid - Government identification social - Social security numbers email - Email addresses phone - Phone numbers address - Physical addresses zip - Postal codes PHI - Protected health information MHI - Mental health information identity - Identity documents political - Political affiliation bankaddress - Banking information income - Income data","breadcrumbs":"Agent Schema » PII Types","id":"760","title":"PII Types"},"761":{"body":"Contact information for human and hybrid agents: { \"jacsContacts\": [{ \"firstName\": \"Jane\", \"lastName\": \"Smith\", \"email\": \"jane@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true, \"mailAddress\": \"123 Main St\", \"mailState\": \"CA\", \"mailZip\": \"94102\", \"mailCountry\": \"USA\" }]\n}","breadcrumbs":"Agent Schema » Contacts","id":"761","title":"Contacts"},"762":{"body":"Field Type Description firstName string First name lastName string Last name addressName string Location name phone string Phone number email string (email) Email address mailName string Name at address mailAddress string Street address mailAddressTwo string Address line 2 mailState string State/province mailZip string Postal code mailCountry string Country isPrimary boolean Primary contact flag","breadcrumbs":"Agent Schema » Contact Schema Fields","id":"762","title":"Contact Schema Fields"},"763":{"body":"Agents can link to a domain for DNSSEC-validated verification: { \"jacsAgentDomain\": \"example.com\"\n} The domain should have a DNS TXT record at _v1.agent.jacs.example.com. containing the agent's public key fingerprint. See the DNS chapter for complete setup instructions.","breadcrumbs":"Agent Schema » DNS Verification","id":"763","title":"DNS Verification"},"764":{"body":"","breadcrumbs":"Agent Schema » Complete Example","id":"764","title":"Complete Example"},"765":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"ai\", \"jacsServices\": [{ \"name\": \"Code Review Service\", \"serviceDescription\": \"Automated code review and analysis\", \"successDescription\": \"Review completed with actionable feedback\", \"failureDescription\": \"Unable to process or analyze code\", \"isDev\": false }], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature...\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"jacsServices\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Agent Schema » AI Agent","id":"765","title":"AI Agent"},"766":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsVersionDate\": \"2024-01-15T11:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsOriginalDate\": \"2024-01-15T11:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human\", \"jacsAgentDomain\": \"smith.example.com\", \"jacsServices\": [{ \"name\": \"Consulting\", \"serviceDescription\": \"Technical consulting services\", \"successDescription\": \"Project goals achieved\", \"failureDescription\": \"Unable to meet requirements\", \"termsOfService\": \"https://smith.example.com/tos\" }], \"jacsContacts\": [{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@smith.example.com\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Human Agent","id":"766","title":"Human Agent"},"767":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"770e8400-e29b-41d4-a716-446655440002\", \"jacsVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsVersionDate\": \"2024-01-15T12:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsOriginalDate\": \"2024-01-15T12:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human-org\", \"jacsAgentDomain\": \"acme.com\", \"jacsServices\": [{ \"name\": \"Enterprise Software\", \"serviceDescription\": \"Enterprise software solutions\", \"successDescription\": \"Software deployed and operational\", \"failureDescription\": \"Deployment or integration failure\", \"privacyPolicy\": \"https://acme.com/privacy\", \"piiDesired\": [\"email\", \"phone\"] }], \"jacsContacts\": [{ \"addressName\": \"Acme Corporation\", \"email\": \"contact@acme.com\", \"phone\": \"+1-800-555-ACME\", \"mailAddress\": \"1 Corporate Plaza\", \"mailState\": \"NY\", \"mailZip\": \"10001\", \"mailCountry\": \"USA\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Organization Agent","id":"767","title":"Organization Agent"},"768":{"body":"","breadcrumbs":"Agent Schema » Creating Agents","id":"768","title":"Creating Agents"},"769":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # The agent is created during configuration setup\n# Agent document is available after loading\nagent_json = agent.load('./jacs.config.json')\nagent_doc = json.loads(agent_json) print(f\"Agent ID: {agent_doc['jacsId']}\")\nprint(f\"Agent Type: {agent_doc['jacsAgentType']}\")","breadcrumbs":"Agent Schema » Python","id":"769","title":"Python"},"77":{"body":"// Create task document\nconst task = { title: \"Write Product Description\", description: \"Create compelling copy for new product launch\", actions: [ { id: \"research\", name: \"Product Research\", description: \"Analyze product features and benefits\", success: \"Complete understanding of product value\", failure: \"Insufficient product knowledge\" }, { id: \"write\", name: \"Write Copy\", description: \"Create engaging product description\", success: \"200-word compelling description\", failure: \"Generic or unconvincing copy\" } ]\n}; // Sign and create task\nconst signedTask = await agent.createTask(task);\nconsole.log('Task created:', signedTask.jacsId); 🐍 Python","breadcrumbs":"Quick Start » Create a Task","id":"77","title":"Create a Task"},"770":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconst agentDoc = JSON.parse(agentJson); console.log(`Agent ID: ${agentDoc.jacsId}`);\nconsole.log(`Agent Type: ${agentDoc.jacsAgentType}`);","breadcrumbs":"Agent Schema » Node.js","id":"770","title":"Node.js"},"771":{"body":"# Create a new agent\njacs agent create # View agent details\njacs agent show","breadcrumbs":"Agent Schema » CLI","id":"771","title":"CLI"},"772":{"body":"# Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_valid = agent.verify_agent('./other-agent.json') // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Agent Schema » Verifying Agents","id":"772","title":"Verifying Agents"},"773":{"body":"Document Schema - Header fields documentation Task Schema - Task workflow schema DNS Verification - Setting up domain verification Creating an Agent - Agent creation guide","breadcrumbs":"Agent Schema » See Also","id":"773","title":"See Also"},"774":{"body":"The Document Schema (Header Schema) defines the base structure for all JACS documents. Every JACS document type (agents, tasks, messages, etc.) extends this schema.","breadcrumbs":"Document Schema » Document Schema","id":"774","title":"Document Schema"},"775":{"body":"https://hai.ai/schemas/header/v1/header.schema.json","breadcrumbs":"Document Schema » Schema Location","id":"775","title":"Schema Location"},"776":{"body":"The header schema provides: Unique Identification : Every document has a unique ID and version Version Tracking : Full history with previous version references Cryptographic Integrity : Signatures and hashes for verification File Attachments : Support for embedded or linked files Vector Embeddings : Pre-computed embeddings for semantic search Agreements : Multi-party signature support","breadcrumbs":"Document Schema » Overview","id":"776","title":"Overview"},"777":{"body":"","breadcrumbs":"Document Schema » Core Fields","id":"777","title":"Core Fields"},"778":{"body":"Field Type Required Description $schema string Yes Schema URL for validation jacsId string (UUID) Yes Unique document identifier jacsType string Yes Document type (agent, task, etc.) { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\"\n}","breadcrumbs":"Document Schema » Identification","id":"778","title":"Identification"},"779":{"body":"Field Type Required Description jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version creation timestamp jacsPreviousVersion string (UUID) No Previous version (if not first) jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Document creation timestamp jacsBranch string (UUID) No Branch identifier for JACS databases { \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"e36ac10b-58cc-4372-a567-0e02b2c3d478\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d476\", \"jacsOriginalDate\": \"2024-01-01T09:00:00Z\"\n}","breadcrumbs":"Document Schema » Versioning","id":"779","title":"Versioning"},"78":{"body":"pip install jacs","breadcrumbs":"Quick Start » Install Python Package","id":"78","title":"Install Python Package"},"780":{"body":"The jacsLevel field indicates the intended use: Level Description raw Raw data that should not change config Configuration meant to be updated artifact Generated content that may be updated derived Computed from other documents { \"jacsLevel\": \"artifact\"\n}","breadcrumbs":"Document Schema » Document Level","id":"780","title":"Document Level"},"781":{"body":"","breadcrumbs":"Document Schema » Cryptographic Fields","id":"781","title":"Cryptographic Fields"},"782":{"body":"The jacsSignature field contains the creator's cryptographic signature: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature-string\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsType\", \"content\"] }\n} Signature Schema Fields Field Type Required Description agentID string (UUID) Yes Signing agent's ID agentVersion string (UUID) Yes Signing agent's version date string (date-time) Yes Signing timestamp signature string Yes Base64-encoded signature publicKeyHash string Yes Hash of public key used signingAlgorithm string No Algorithm used (ring-Ed25519, RSA-PSS, pq-dilithium) fields array Yes Fields included in signature response string No Text response with signature responseType string No agree, disagree, or reject","breadcrumbs":"Document Schema » Signature","id":"782","title":"Signature"},"783":{"body":"The jacsRegistration field contains a signature from a registration authority: { \"jacsRegistration\": { \"agentID\": \"registrar-agent-id\", \"agentVersion\": \"registrar-version\", \"date\": \"2024-01-15T10:35:00Z\", \"signature\": \"registrar-signature\", \"publicKeyHash\": \"registrar-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsSignature\"] }\n}","breadcrumbs":"Document Schema » Registration","id":"783","title":"Registration"},"784":{"body":"The jacsSha256 field contains a SHA-256 hash of all document content (excluding this field): { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Document Schema » Hash","id":"784","title":"Hash"},"785":{"body":"Documents can include multi-party agreements using jacsAgreement: { \"jacsAgreement\": { \"agentIDs\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"question\": \"Do you agree to these terms?\", \"context\": \"Q1 2024 Service Agreement\", \"signatures\": [ { \"agentID\": \"agent-1-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T11:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-of-content-at-agreement-time\"\n}","breadcrumbs":"Document Schema » Agreements","id":"785","title":"Agreements"},"786":{"body":"Field Type Required Description agentIDs array Yes Required signers question string No What parties are agreeing to context string No Additional context signatures array No Collected signatures","breadcrumbs":"Document Schema » Agreement Schema Fields","id":"786","title":"Agreement Schema Fields"},"787":{"body":"Documents can include file attachments using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./documents/contract.pdf\", \"embed\": true, \"contents\": \"base64-encoded-file-contents\", \"sha256\": \"file-content-hash\" }, { \"mimetype\": \"image/png\", \"path\": \"./images/diagram.png\", \"embed\": false, \"sha256\": \"file-content-hash\" } ]\n}","breadcrumbs":"Document Schema » File Attachments","id":"787","title":"File Attachments"},"788":{"body":"Field Type Required Description mimetype string Yes MIME type of the file path string Yes File location (local path) embed boolean Yes Whether to embed contents contents string No Base64-encoded file contents sha256 string No Hash for content verification","breadcrumbs":"Document Schema » File Schema Fields","id":"788","title":"File Schema Fields"},"789":{"body":"Documents can include pre-computed embeddings for semantic search: { \"jacsEmbedding\": [ { \"llm\": \"text-embedding-ada-002\", \"vector\": [0.0023, -0.0089, 0.0156, ...] } ]\n}","breadcrumbs":"Document Schema » Vector Embeddings","id":"789","title":"Vector Embeddings"},"79":{"body":"import jacs\nimport json\nimport os # Create configuration\nconfig = { \"jacs_agent_id_and_version\": None, \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} # Ensure directories exist\nos.makedirs(\"./jacs_data\", exist_ok=True)\nos.makedirs(\"./jacs_keys\", exist_ok=True) # Save config\nwith open('jacs.config.json', 'w') as f: json.dump(config, f, indent=2) # Create agent instance and load configuration\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\")","breadcrumbs":"Quick Start » Basic Setup","id":"79","title":"Basic Setup"},"790":{"body":"Field Type Required Description llm string Yes Model used for embedding vector array Yes Vector of numbers","breadcrumbs":"Document Schema » Embedding Schema Fields","id":"790","title":"Embedding Schema Fields"},"791":{"body":"{ \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"title\": \"Sample Document\", \"content\": \"This is the document content.\", \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./attachment.pdf\", \"embed\": false, \"sha256\": \"abc123...\" } ], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"signature-base64...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"title\", \"content\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Document Schema » Complete Example","id":"791","title":"Complete Example"},"792":{"body":"Fields include a hai property indicating their category: Category Description Examples meta Metadata (IDs, dates) jacsId, jacsVersion, jacsVersionDate base Cryptographic data jacsSha256, signature agent Agent-controlled content Custom content fields This categorization determines which fields are included in hash and signature calculations.","breadcrumbs":"Document Schema » HAI Field Categories","id":"792","title":"HAI Field Categories"},"793":{"body":"","breadcrumbs":"Document Schema » Working with Documents","id":"793","title":"Working with Documents"},"794":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a basic document\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Document content here'\n})) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Document content here'\n}));","breadcrumbs":"Document Schema » Creating Documents","id":"794","title":"Creating Documents"},"795":{"body":"is_valid = agent.verify_document(doc_json) const isValid = agent.verifyDocument(docJson);","breadcrumbs":"Document Schema » Verifying Documents","id":"795","title":"Verifying Documents"},"796":{"body":"doc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" updated = agent.update_document( document_key, json.dumps({**doc, 'content': 'Updated content'})\n) const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; const updated = agent.updateDocument( documentKey, JSON.stringify({...doc, content: 'Updated content'})\n);","breadcrumbs":"Document Schema » Updating Documents","id":"796","title":"Updating Documents"},"797":{"body":"doc = agent.create_document( json.dumps({'title': 'Report'}), attachments='./report.pdf', embed=True\n) const doc = agent.createDocument( JSON.stringify({ title: 'Report' }), null, // custom_schema null, // output_filename false, // no_save './report.pdf', // attachments true // embed\n);","breadcrumbs":"Document Schema » Adding Attachments","id":"797","title":"Adding Attachments"},"798":{"body":"Documents maintain a version chain: Original (v1) ← Previous (v2) ← Current (v3) │ └── jacsOriginalVersion points here for all versions Each version: Has its own jacsVersion UUID References jacsPreviousVersion (except the first) All share the same jacsId and jacsOriginalVersion","breadcrumbs":"Document Schema » Version History","id":"798","title":"Version History"},"799":{"body":"Agent Schema - Agent document structure Task Schema - Task document structure Working with Documents - Document operations guide Agreements - Multi-party agreements","breadcrumbs":"Document Schema » See Also","id":"799","title":"See Also"},"8":{"body":"cargo install jacs\njacs init # Create config, keys, and agent Or step by step: jacs config create\njacs agent create --create-keys true","breadcrumbs":"Introduction » Rust CLI","id":"8","title":"Rust CLI"},"80":{"body":"# Define agent capabilities\nagent_data = { \"name\": \"Content Creator Bot\", \"description\": \"AI agent specialized in content creation\", \"services\": [ { \"type\": \"content_generation\", \"name\": \"Product Description Writer\", \"description\": \"Creates compelling product descriptions\", \"success\": \"Engaging copy that converts visitors\", \"failure\": \"Generic or low-quality content\" } ]\n} # Generate keys and create agent\nagent.generate_keys()\nagent_doc = agent.create_agent(agent_data)\nprint(f'Agent created: {agent_doc[\"jacsId\"]}')","breadcrumbs":"Quick Start » Create Agent Document","id":"80","title":"Create Agent Document"},"800":{"body":"The Task Schema defines the structure for task documents in JACS. Tasks represent work items with defined states, assigned agents, and completion criteria.","breadcrumbs":"Task Schema » Task Schema","id":"800","title":"Task Schema"},"801":{"body":"https://hai.ai/schemas/task/v1/task.schema.json","breadcrumbs":"Task Schema » Schema Location","id":"801","title":"Schema Location"},"802":{"body":"Task documents manage: Workflow States : From creation through completion Agent Assignment : Customer and assigned agent tracking Actions : Desired outcomes and completion criteria Agreements : Start and end agreements between parties Relationships : Sub-tasks, copies, and merges","breadcrumbs":"Task Schema » Overview","id":"802","title":"Overview"},"803":{"body":"The task schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/task/v1/task-schema.json\", \"title\": \"Task\", \"description\": \"General schema for stateful resources.\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Task Schema » Schema Structure","id":"803","title":"Schema Structure"},"804":{"body":"Tasks progress through defined workflow states: State Description creating Task is being drafted rfp Request for proposal - seeking agents proposal Agent has submitted a proposal negotiation Terms being negotiated started Work has begun review Work submitted for review completed Task is finished { \"jacsTaskState\": \"started\"\n}","breadcrumbs":"Task Schema » Task States","id":"804","title":"Task States"},"805":{"body":"creating → rfp → proposal → negotiation → started → review → completed ↑_______________| (may cycle back for renegotiation)","breadcrumbs":"Task Schema » State Transitions","id":"805","title":"State Transitions"},"806":{"body":"","breadcrumbs":"Task Schema » Task Properties","id":"806","title":"Task Properties"},"807":{"body":"Tasks inherit all document header fields plus task-specific fields.","breadcrumbs":"Task Schema » Core Fields (from Header)","id":"807","title":"Core Fields (from Header)"},"808":{"body":"Field Type Required Description jacsTaskName string No Human-readable task name jacsTaskSuccess string No Description of success criteria jacsTaskState string Yes Current workflow state jacsTaskCustomer object Yes Customer agent signature jacsTaskAgent object No Assigned agent signature jacsTaskStartDate string (date-time) No When work started jacsTaskCompleteDate string (date-time) No When work completed jacsTaskActionsDesired array Yes Required actions jacsStartAgreement object No Agreement to begin work jacsEndAgreement object No Agreement that work is complete","breadcrumbs":"Task Schema » Task-Specific Fields","id":"808","title":"Task-Specific Fields"},"809":{"body":"Field Type Description jacsTaskSubTaskOf array Parent task IDs jacsTaskCopyOf array Source task IDs (branching) jacsTaskMergedTasks array Tasks folded into this one","breadcrumbs":"Task Schema » Relationship Fields","id":"809","title":"Relationship Fields"},"81":{"body":"# Define task\ntask = { \"title\": \"Write Product Description\", \"description\": \"Create compelling copy for new product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Product Research\", \"description\": \"Analyze product features and benefits\", \"success\": \"Complete understanding of product value\", \"failure\": \"Insufficient product knowledge\" }, { \"id\": \"write\", \"name\": \"Write Copy\", \"description\": \"Create engaging product description\", \"success\": \"200-word compelling description\", \"failure\": \"Generic or unconvincing copy\" } ]\n} # Sign and create task\nsigned_task = agent.create_task(task)\nprint(f'Task created: {signed_task[\"jacsId\"]}')","breadcrumbs":"Quick Start » Create a Task","id":"81","title":"Create a Task"},"810":{"body":"Actions define what needs to be accomplished: { \"jacsTaskActionsDesired\": [ { \"name\": \"Create API Endpoint\", \"description\": \"Build REST endpoint for user registration\", \"cost\": { \"value\": 500, \"unit\": \"USD\" }, \"duration\": { \"value\": 8, \"unit\": \"hours\" }, \"completionAgreementRequired\": true, \"tools\": [...] } ]\n}","breadcrumbs":"Task Schema » Actions","id":"810","title":"Actions"},"811":{"body":"Field Type Required Description name string Yes Action name description string Yes What needs to be done tools array No Tools that can be used cost object No Cost estimate duration object No Time estimate completionAgreementRequired boolean No Requires sign-off","breadcrumbs":"Task Schema » Action Schema Fields","id":"811","title":"Action Schema Fields"},"812":{"body":"Costs and durations use the unit schema: { \"cost\": { \"value\": 100, \"unit\": \"USD\" }, \"duration\": { \"value\": 2, \"unit\": \"days\" }\n}","breadcrumbs":"Task Schema » Unit Schema","id":"812","title":"Unit Schema"},"813":{"body":"Tasks can include start and end agreements:","breadcrumbs":"Task Schema » Agreements","id":"813","title":"Agreements"},"814":{"body":"Signed when parties agree to begin work: { \"jacsStartAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree to begin this work?\", \"context\": \"Project XYZ - Phase 1\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » Start Agreement","id":"814","title":"Start Agreement"},"815":{"body":"Signed when parties agree work is complete: { \"jacsEndAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree this work is complete?\", \"context\": \"Final deliverables reviewed\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » End Agreement","id":"815","title":"End Agreement"},"816":{"body":"{ \"$schema\": \"https://hai.ai/schemas/task/v1/task.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"task\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsTaskName\": \"Build Authentication System\", \"jacsTaskSuccess\": \"Users can register, login, and manage sessions\", \"jacsTaskState\": \"started\", \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"customer-signature...\", \"publicKeyHash\": \"customer-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskAgent\": { \"agentID\": \"assigned-agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"date\": \"2024-01-16T09:00:00Z\", \"signature\": \"agent-signature...\", \"publicKeyHash\": \"agent-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskStartDate\": \"2024-01-16T09:00:00Z\", \"jacsStartAgreement\": { \"agentIDs\": [\"customer-agent-uuid\", \"assigned-agent-uuid\"], \"question\": \"Do you agree to begin work on this task?\", \"signatures\": [ { \"agentID\": \"customer-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:00:00Z\" }, { \"agentID\": \"assigned-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:05:00Z\" } ] }, \"jacsTaskActionsDesired\": [ { \"name\": \"User Registration\", \"description\": \"Implement user registration with email verification\", \"duration\": { \"value\": 4, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"User Login\", \"description\": \"Implement secure login with password hashing\", \"duration\": { \"value\": 3, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"Session Management\", \"description\": \"Implement JWT-based session tokens\", \"duration\": { \"value\": 2, \"unit\": \"hours\" }, \"completionAgreementRequired\": false } ], \"jacsSignature\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"document-signature...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsTaskName\", \"jacsTaskActionsDesired\"] }\n}","breadcrumbs":"Task Schema » Complete Example","id":"816","title":"Complete Example"},"817":{"body":"","breadcrumbs":"Task Schema » Task Relationships","id":"817","title":"Task Relationships"},"818":{"body":"Break large tasks into smaller units: { \"jacsTaskSubTaskOf\": [\"parent-task-uuid\"]\n}","breadcrumbs":"Task Schema » Sub-Tasks","id":"818","title":"Sub-Tasks"},"819":{"body":"Create variations or branches: { \"jacsTaskCopyOf\": [\"original-task-uuid\"]\n}","breadcrumbs":"Task Schema » Task Copies (Branching)","id":"819","title":"Task Copies (Branching)"},"82":{"body":"For scripts, CI/CD, and server environments, all bindings support fully programmatic agent creation without interactive prompts: Python import jacs.simple as jacs agent = jacs.create( name=\"my-agent\", password=\"Str0ng-P@ssw0rd!\", # or set JACS_PRIVATE_KEY_PASSWORD algorithm=\"pq2025\",\n)\nprint(f\"Agent: {agent.agent_id}\") Node.js const jacs = require('@hai.ai/jacs/simple'); const agent = jacs.create({ name: 'my-agent', password: process.env.JACS_PRIVATE_KEY_PASSWORD, algorithm: 'pq2025',\n});\nconsole.log(`Agent: ${agent.agentId}`); Go info, err := jacs.Create(\"my-agent\", &jacs.CreateAgentOptions{ Password: os.Getenv(\"JACS_PRIVATE_KEY_PASSWORD\"), Algorithm: \"pq2025\",\n}) Rust use jacs::simple::{CreateAgentParams, SimpleAgent}; let params = CreateAgentParams { name: \"my-agent\".into(), password: std::env::var(\"JACS_PRIVATE_KEY_PASSWORD\").unwrap(), algorithm: \"pq2025\".into(), ..Default::default()\n};\nlet (agent, info) = SimpleAgent::create_with_params(params)?; Password requirements : At least 8 characters, with uppercase, lowercase, a digit, and a special character. Algorithm note : pq-dilithium is deprecated in v0.6.0. Use pq2025 (ML-DSA-87, FIPS-204) instead.","breadcrumbs":"Quick Start » Non-Interactive Agent Creation (v0.6.0+)","id":"82","title":"Non-Interactive Agent Creation (v0.6.0+)"},"820":{"body":"Combine completed tasks: { \"jacsTaskMergedTasks\": [ \"subtask-1-uuid\", \"subtask-2-uuid\" ]\n}","breadcrumbs":"Task Schema » Merged Tasks","id":"820","title":"Merged Tasks"},"821":{"body":"","breadcrumbs":"Task Schema » Task Workflow","id":"821","title":"Task Workflow"},"822":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') task = agent.create_document(json.dumps({ 'jacsTaskName': 'Build Feature X', 'jacsTaskSuccess': 'Feature is deployed and tested', 'jacsTaskState': 'creating', 'jacsTaskActionsDesired': [ { 'name': 'Implementation', 'description': 'Write the code', 'completionAgreementRequired': True } ]\n}), custom_schema='https://hai.ai/schemas/task/v1/task.schema.json')","breadcrumbs":"Task Schema » 1. Creating a Task","id":"822","title":"1. Creating a Task"},"823":{"body":"When an agent accepts the task, add their signature to jacsTaskAgent and update state to started.","breadcrumbs":"Task Schema » 2. Assigning an Agent","id":"823","title":"2. Assigning an Agent"},"824":{"body":"Both parties sign the start agreement to confirm work begins.","breadcrumbs":"Task Schema » 3. Signing Start Agreement","id":"824","title":"3. Signing Start Agreement"},"825":{"body":"Update state to review, then both parties sign the end agreement.","breadcrumbs":"Task Schema » 4. Completing Work","id":"825","title":"4. Completing Work"},"826":{"body":"After end agreement is signed by all parties, update state to completed.","breadcrumbs":"Task Schema » 5. Final Completion","id":"826","title":"5. Final Completion"},"827":{"body":"Current State Valid Next States creating rfp rfp proposal, creating proposal negotiation, rfp negotiation started, proposal started review review completed, started completed (terminal)","breadcrumbs":"Task Schema » State Machine Rules","id":"827","title":"State Machine Rules"},"828":{"body":"Document Schema - Base document fields Agent Schema - Agent structure Agreements - Working with agreements JSON Schemas Overview - Schema architecture","breadcrumbs":"Task Schema » See Also","id":"828","title":"See Also"},"829":{"body":"The Agent State Schema defines the structure for signed agent state documents in JACS. Agent state documents wrap and cryptographically sign any agent configuration file -- memory files, skills, plans, configs, hooks, or any other document an agent wants to verify.","breadcrumbs":"Agent State Schema » Agent State Schema","id":"829","title":"Agent State Schema"},"83":{"body":"When you completed the quick start, several important things occurred:","breadcrumbs":"Quick Start » Understanding What Happened","id":"83","title":"Understanding What Happened"},"830":{"body":"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json","breadcrumbs":"Agent State Schema » Schema Location","id":"830","title":"Schema Location"},"831":{"body":"Agent state documents provide: Signed state files : Cryptographically sign MEMORY.md, skill files, plans, configs, hooks, or any file File integrity : SHA-256 hashes verify file contents haven't been tampered with Origin tracking : Record whether state was authored, adopted, generated, or imported Framework tagging : Identify which agent framework (claude-code, langchain, etc.) the state belongs to General-purpose signing : Use type other to sign any document an agent wants to verify All documents are stored within the JACS data directory for security.","breadcrumbs":"Agent State Schema » Overview","id":"831","title":"Overview"},"832":{"body":"The agent state schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"title\": \"Agent State Document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" } ], \"properties\": { \"jacsAgentStateType\": { \"type\": \"string\", \"enum\": [\"memory\", \"skill\", \"plan\", \"config\", \"hook\", \"other\"] }, \"jacsAgentStateName\": { \"type\": \"string\" } }, \"required\": [\"jacsAgentStateType\", \"jacsAgentStateName\"]\n}","breadcrumbs":"Agent State Schema » Schema Structure","id":"832","title":"Schema Structure"},"833":{"body":"Type Description Example memory Agent memory/knowledge files MEMORY.md, context files skill Agent skill definitions Coding patterns, domain knowledge plan Agent plans and strategies Implementation plans, workflows config Agent configuration files Settings, preferences hook Agent hooks and triggers (always embedded) Pre-commit hooks, event handlers other Any document the agent wants to sign and verify Reports, artifacts, custom files","breadcrumbs":"Agent State Schema » State Types","id":"833","title":"State Types"},"834":{"body":"","breadcrumbs":"Agent State Schema » Properties","id":"834","title":"Properties"},"835":{"body":"Field Type Description jacsAgentStateType string (enum) Type of agent state: memory, skill, plan, config, hook, other jacsAgentStateName string Human-readable name for this state document","breadcrumbs":"Agent State Schema » Required Fields","id":"835","title":"Required Fields"},"836":{"body":"Field Type Description jacsAgentStateDescription string Description of what this state contains jacsAgentStateFramework string Agent framework (e.g., \"claude-code\", \"langchain\") jacsAgentStateVersion string Content version (distinct from jacsVersion) jacsAgentStateContentType string MIME type (text/markdown, application/json, etc.) jacsAgentStateContent string Inline content (used when embedding) jacsAgentStateTags string[] Tags for categorization and search jacsAgentStateOrigin string (enum) How created: authored, adopted, generated, imported jacsAgentStateSourceUrl string (uri) Where content was obtained from","breadcrumbs":"Agent State Schema » Optional Fields","id":"836","title":"Optional Fields"},"837":{"body":"Every agent state document can track its provenance: Origin Meaning authored Created by the signing agent adopted Found unsigned, signed by adopting agent generated Produced by AI/automation imported Brought from another JACS installation","breadcrumbs":"Agent State Schema » Origin Tracking","id":"837","title":"Origin Tracking"},"838":{"body":"Agent state documents can reference external files using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"text/markdown\", \"path\": \"MEMORY.md\", \"embed\": true, \"sha256\": \"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9\", \"contents\": \"base64-encoded-gzipped-content\" } ]\n} When embed is true, the file content is stored inline in the document. Hook-type documents always embed content for security (prevents time-of-check/time-of-use attacks).","breadcrumbs":"Agent State Schema » File References","id":"838","title":"File References"},"839":{"body":"","breadcrumbs":"Agent State Schema » Examples","id":"839","title":"Examples"},"84":{"body":"A unique identity (UUID) was generated for your agent Cryptographic key pair was created for signing Agent document was created and self-signed Public key was stored for verification","breadcrumbs":"Quick Start » 1. Agent Creation","id":"84","title":"1. Agent Creation"},"840":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"Project Memory\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Minimal Agent State","id":"840","title":"Minimal Agent State"},"841":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"JACS Project Memory\", \"jacsAgentStateDescription\": \"Agent memory for the JACS project workspace\", \"jacsAgentStateFramework\": \"claude-code\", \"jacsAgentStateOrigin\": \"authored\", \"jacsAgentStateContentType\": \"text/markdown\", \"jacsAgentStateContent\": \"# MEMORY.md\\n\\n## Project: JACS\\n- Location: /home/agent/jacs\\n- Rust library for cryptographic signing\\n\", \"jacsAgentStateTags\": [\"jacs\", \"rust\", \"crypto\"], \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Memory File with Embedding","id":"841","title":"Memory File with Embedding"},"842":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"skill\", \"jacsAgentStateName\": \"JSON Schema Validation\", \"jacsAgentStateOrigin\": \"adopted\", \"jacsAgentStateSourceUrl\": \"https://agentskills.io/skills/json-schema\", \"jacsAgentStateVersion\": \"2.1.0\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Adopted Skill","id":"842","title":"Adopted Skill"},"843":{"body":"Use type other to sign any document: { \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"other\", \"jacsAgentStateName\": \"Q1 Financial Report\", \"jacsAgentStateDescription\": \"Quarterly financial summary for verification\", \"jacsAgentStateContentType\": \"application/json\", \"jacsAgentStateContent\": \"{\\\"revenue\\\": 150000, \\\"expenses\\\": 120000}\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » General-Purpose Signed Document","id":"843","title":"General-Purpose Signed Document"},"844":{"body":"","breadcrumbs":"Agent State Schema » Rust API","id":"844","title":"Rust API"},"845":{"body":"use jacs::schema::agentstate_crud::*; // Minimal state\nlet doc = create_minimal_agentstate(\"memory\", \"Project Memory\", Some(\"Agent memory file\"))?; // With file reference\nlet doc = create_agentstate_with_file(\"skill\", \"Rust Patterns\", \"./skills/rust.md\", true)?; // With inline content\nlet doc = create_agentstate_with_content( \"config\", \"Agent Settings\", \"{\\\"theme\\\": \\\"dark\\\"}\", \"application/json\"\n)?; // General-purpose signing\nlet doc = create_agentstate_with_content( \"other\", \"Audit Report\", \"Report contents here...\", \"text/plain\"\n)?; // Set metadata\nlet mut doc = create_minimal_agentstate(\"memory\", \"My Memory\", None)?;\nset_agentstate_framework(&mut doc, \"claude-code\")?;\nset_agentstate_origin(&mut doc, \"authored\", None)?;\nset_agentstate_tags(&mut doc, vec![\"project\", \"notes\"])?;\nset_agentstate_version(&mut doc, \"1.0.0\")?;","breadcrumbs":"Agent State Schema » Creating Agent State Documents","id":"845","title":"Creating Agent State Documents"},"846":{"body":"// Create, sign, and store\nlet doc_string = serde_json::to_string(&doc)?;\nlet signed_doc = agent.create_document_and_load(&doc_string, None, None)?; // Verify file integrity\nlet hash_valid = verify_agentstate_file_hash(&doc)?;","breadcrumbs":"Agent State Schema » Signing and Verification","id":"846","title":"Signing and Verification"},"847":{"body":"Six MCP tools are available for agent state operations: Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document's signature jacs_load_state Load an agent state document by key jacs_update_state Update and re-sign an agent state document jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state","breadcrumbs":"Agent State Schema » MCP Tools","id":"847","title":"MCP Tools"},"848":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"memory\", \"name\": \"Project Memory\", \"content\": \"# My Agent Memory\\n\\nKey facts about the project...\", \"content_type\": \"text/markdown\", \"framework\": \"claude-code\", \"tags\": [\"project\", \"memory\"] }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign a Memory File","id":"848","title":"MCP Example: Sign a Memory File"},"849":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"other\", \"name\": \"Verification Report\", \"content\": \"{\\\"status\\\": \\\"passed\\\", \\\"checks\\\": 42}\", \"content_type\": \"application/json\" }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign Any Document","id":"849","title":"MCP Example: Sign Any Document"},"85":{"body":"Storage directories were configured Cryptographic algorithm was selected Agent identity was linked to configuration","breadcrumbs":"Quick Start » 2. Configuration Setup","id":"85","title":"2. Configuration Setup"},"850":{"body":"All agent state documents are stored within the JACS data directory for security Hook-type documents always embed content to prevent TOCTOU attacks File hashes (SHA-256) are verified on load to detect tampering Origin tracking provides provenance auditing Documents are signed with the agent's private key, providing non-repudiation","breadcrumbs":"Agent State Schema » Security Notes","id":"850","title":"Security Notes"},"851":{"body":"JSON Schemas - Schema architecture overview Working with Documents - General document operations MCP Integration - MCP server setup Security Model - Cryptographic details","breadcrumbs":"Agent State Schema » See Also","id":"851","title":"See Also"},"852":{"body":"Commitments are shared, signed agreements between agents. They represent what an agent commits to doing, optionally within a conversation or linked to a task or todo item. Key design : Commitments work standalone. They do not require goals, tasks, conversations, or any other document type to be created first.","breadcrumbs":"Commitment Schema » Commitment Schema","id":"852","title":"Commitment Schema"},"853":{"body":"ID : https://hai.ai/schemas/commitment/v1/commitment.schema.json Type : jacsType: \"commitment\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf","breadcrumbs":"Commitment Schema » Schema","id":"853","title":"Schema"},"854":{"body":"Field Type Description jacsCommitmentDescription string Human-readable description of the commitment jacsCommitmentStatus enum Lifecycle status","breadcrumbs":"Commitment Schema » Required Fields","id":"854","title":"Required Fields"},"855":{"body":"pending -> active -> completed -> failed -> renegotiated -> disputed -> revoked Status Meaning pending Created but not yet started active Work is underway completed Successfully fulfilled failed Could not be fulfilled renegotiated Terms changed, replaced by new commitment disputed One party contests the commitment revoked Withdrawn by the owner","breadcrumbs":"Commitment Schema » Status Lifecycle","id":"855","title":"Status Lifecycle"},"856":{"body":"Field Type Description jacsCommitmentTerms object Structured terms (deliverable, deadline, compensation, etc.) jacsCommitmentDisputeReason string Reason when status is disputed or revoked jacsCommitmentTaskId uuid Reference to a task document jacsCommitmentConversationRef uuid Thread ID of the conversation that produced this commitment jacsCommitmentTodoRef string Todo item reference in format list-uuid:item-uuid jacsCommitmentQuestion string Structured question prompt jacsCommitmentAnswer string Answer to the question jacsCommitmentCompletionQuestion string Question to verify completion jacsCommitmentCompletionAnswer string Answer verifying completion jacsCommitmentStartDate date-time When the commitment period begins jacsCommitmentEndDate date-time Deadline jacsCommitmentRecurrence object Recurrence pattern (frequency + interval) jacsCommitmentOwner signature Single-agent owner signature","breadcrumbs":"Commitment Schema » Optional Fields","id":"856","title":"Optional Fields"},"857":{"body":"Commitments can link to other document types: Conversation : jacsCommitmentConversationRef holds a thread UUID Todo item : jacsCommitmentTodoRef uses format list-uuid:item-uuid Task : jacsCommitmentTaskId holds a task document UUID These references are optional. Commitments work independently.","breadcrumbs":"Commitment Schema » Cross-References","id":"857","title":"Cross-References"},"858":{"body":"Commitments use the standard JACS agreement mechanism from the header schema. Two or more agents can co-sign a commitment using jacsAgreement.","breadcrumbs":"Commitment Schema » Multi-Agent Agreements","id":"858","title":"Multi-Agent Agreements"},"859":{"body":"{ \"$schema\": \"https://hai.ai/schemas/commitment/v1/commitment.schema.json\", \"jacsCommitmentDescription\": \"Deliver Q1 analytics report by March 15\", \"jacsCommitmentStatus\": \"active\", \"jacsCommitmentTerms\": { \"deliverable\": \"PDF report with charts\", \"deadline\": \"2026-03-15T00:00:00Z\" }, \"jacsCommitmentStartDate\": \"2026-01-15T00:00:00Z\", \"jacsCommitmentEndDate\": \"2026-03-15T00:00:00Z\", \"jacsType\": \"commitment\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Commitment Schema » Example","id":"859","title":"Example"},"86":{"body":"Task document was structured according to JACS schema Document was signed with your agent's private key SHA-256 hash was calculated for integrity Signature metadata was embedded in the document","breadcrumbs":"Quick Start » 3. Task Creation","id":"86","title":"3. Task Creation"},"860":{"body":"use jacs::schema::commitment_crud::*; // Create\nlet commitment = create_minimal_commitment(\"Deliver report\").unwrap(); // With structured terms\nlet commitment = create_commitment_with_terms( \"Weekly standup\", serde_json::json!({\"frequency\": \"weekly\"}),\n).unwrap(); // Update status\nupdate_commitment_status(&mut commitment, \"active\").unwrap(); // Dispute\ndispute_commitment(&mut commitment, \"Terms not met\").unwrap(); // Cross-references\nset_conversation_ref(&mut commitment, &thread_id).unwrap();\nset_todo_ref(&mut commitment, \"list-uuid:item-uuid\").unwrap();\nset_task_ref(&mut commitment, &task_id).unwrap();","breadcrumbs":"Commitment Schema » Rust API","id":"860","title":"Rust API"},"861":{"body":"Since commitments use jacsLevel: \"config\", they can be updated. Each update creates a new jacsVersion linked to the previous via jacsPreviousVersion. This provides a full audit trail of status changes and modifications.","breadcrumbs":"Commitment Schema » Versioning","id":"861","title":"Versioning"},"862":{"body":"Todo List Schema - Private task tracking Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Commitment Schema » See Also","id":"862","title":"See Also"},"863":{"body":"Todo lists are private, signed documents belonging to a single agent. They contain inline items (goals and tasks) and are re-signed as a whole when any item changes.","breadcrumbs":"Todo List Schema » Todo List Schema","id":"863","title":"Todo List Schema"},"864":{"body":"ID : https://hai.ai/schemas/todo/v1/todo.schema.json Type : jacsType: \"todo\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf Component : todoitem.schema.json for inline items","breadcrumbs":"Todo List Schema » Schema","id":"864","title":"Schema"},"865":{"body":"Field Type Description jacsTodoName string Human-readable name for this list jacsTodoItems array Inline todo items","breadcrumbs":"Todo List Schema » Required Fields","id":"865","title":"Required Fields"},"866":{"body":"Field Type Description jacsTodoArchiveRefs uuid[] UUIDs of archived todo lists","breadcrumbs":"Todo List Schema » Optional Fields","id":"866","title":"Optional Fields"},"867":{"body":"Each item in jacsTodoItems is an inline object following todoitem.schema.json.","breadcrumbs":"Todo List Schema » Todo Items","id":"867","title":"Todo Items"},"868":{"body":"Field Type Description itemId uuid Stable UUID that does not change on re-signing itemType enum \"goal\" (broad objective) or \"task\" (specific action) description string Human-readable description status enum \"pending\", \"in-progress\", \"completed\", \"abandoned\"","breadcrumbs":"Todo List Schema » Required Item Fields","id":"868","title":"Required Item Fields"},"869":{"body":"Field Type Description priority enum \"low\", \"medium\", \"high\", \"critical\" childItemIds uuid[] Sub-goals or tasks under this item relatedCommitmentId uuid Commitment that formalizes this item relatedConversationThread uuid Conversation thread related to this item completedDate date-time When the item was completed assignedAgent uuid Agent assigned to this item tags string[] Tags for categorization","breadcrumbs":"Todo List Schema » Optional Item Fields","id":"869","title":"Optional Item Fields"},"87":{"body":"Let's verify that the documents are properly signed and can be validated: 🦀 Rust # Verify agent signature\njacs agent verify # Verify a specific document\njacs document verify -f ./jacs_data/[document-id].json # Sign a document\njacs document sign -f ./jacs_data/[document-id].json 🟢 Node.js // Verify agent signature\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent signature valid:', isValid); // List all documents\nconst documents = await agent.listDocuments();\nconsole.log('Documents:', documents.length); // Verify task signature\nconst taskValid = await agent.verifyDocument(signedTask);\nconsole.log('Task signature valid:', taskValid); // Get document details\nconst taskDetails = await agent.getDocument(signedTask.jacsId);\nconsole.log('Task details:', taskDetails); 🐍 Python # Verify agent signature\nis_valid = agent.verify_agent()\nprint(f'Agent signature valid: {is_valid}') # List all documents\ndocuments = agent.list_documents()\nprint(f'Documents: {len(documents)}') # Verify task signature task_valid = agent.verify_document(signed_task)\nprint(f'Task signature valid: {task_valid}') # Get document details\ntask_details = agent.get_document(signed_task[\"jacsId\"])\nprint(f'Task details: {task_details}')","breadcrumbs":"Quick Start » Verify Everything Works","id":"87","title":"Verify Everything Works"},"870":{"body":"Todo items can link to other document types: Commitment : relatedCommitmentId links an item to a commitment Conversation : relatedConversationThread links an item to a message thread References use the list-uuid:item-uuid format when referenced FROM other documents (e.g., jacsCommitmentTodoRef on a commitment). Use build_todo_item_ref() and parse_todo_item_ref() from reference_utils for this format.","breadcrumbs":"Todo List Schema » Cross-References","id":"870","title":"Cross-References"},"871":{"body":"Items support parent-child relationships via childItemIds: Goal: \"Ship Q1 release\" ├── Task: \"Write documentation\" ├── Task: \"Run integration tests\" └── Goal: \"Performance optimization\" ├── Task: \"Profile database queries\" └── Task: \"Add caching layer\"","breadcrumbs":"Todo List Schema » Item Hierarchy","id":"871","title":"Item Hierarchy"},"872":{"body":"{ \"$schema\": \"https://hai.ai/schemas/todo/v1/todo.schema.json\", \"jacsTodoName\": \"Q1 Sprint\", \"jacsTodoItems\": [ { \"itemId\": \"550e8400-e29b-41d4-a716-446655440001\", \"itemType\": \"goal\", \"description\": \"Ship analytics dashboard\", \"status\": \"in-progress\", \"priority\": \"high\", \"childItemIds\": [ \"550e8400-e29b-41d4-a716-446655440002\" ] }, { \"itemId\": \"550e8400-e29b-41d4-a716-446655440002\", \"itemType\": \"task\", \"description\": \"Build chart components\", \"status\": \"pending\", \"priority\": \"medium\", \"relatedCommitmentId\": \"660e8400-e29b-41d4-a716-446655440000\", \"tags\": [\"frontend\", \"charts\"] } ], \"jacsType\": \"todo\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Todo List Schema » Example","id":"872","title":"Example"},"873":{"body":"use jacs::schema::todo_crud::*; // Create a list\nlet mut list = create_minimal_todo_list(\"Sprint Work\").unwrap(); // Add items\nlet goal_id = add_todo_item(&mut list, \"goal\", \"Ship Q1\", Some(\"high\")).unwrap();\nlet task_id = add_todo_item(&mut list, \"task\", \"Write tests\", None).unwrap(); // Build hierarchy\nadd_child_to_item(&mut list, &goal_id, &task_id).unwrap(); // Progress tracking\nupdate_todo_item_status(&mut list, &task_id, \"in-progress\").unwrap();\nmark_todo_item_complete(&mut list, &task_id).unwrap(); // Cross-references\nset_item_commitment_ref(&mut list, &task_id, &commitment_id).unwrap();\nset_item_conversation_ref(&mut list, &task_id, &thread_id).unwrap(); // Archive completed items\nlet completed = remove_completed_items(&mut list).unwrap();","breadcrumbs":"Todo List Schema » Rust API","id":"873","title":"Rust API"},"874":{"body":"Since todo lists use jacsLevel: \"config\", each modification creates a new signed version. The itemId fields remain stable across versions, enabling consistent cross-referencing even as items are added, updated, or removed.","breadcrumbs":"Todo List Schema » Versioning","id":"874","title":"Versioning"},"875":{"body":"Commitment Schema - Shared agreements Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Todo List Schema » See Also","id":"875","title":"See Also"},"876":{"body":"Conversations use the existing message schema enhanced with thread tracking and message ordering. There is no separate \"conversation\" schema - conversations are sequences of signed messages sharing a thread ID.","breadcrumbs":"Conversation Schema » Conversation Schema","id":"876","title":"Conversation Schema"},"877":{"body":"ID : https://hai.ai/schemas/message/v1/message.schema.json Type : jacsType: \"message\" Level : jacsLevel: \"raw\" (immutable once signed) Extends : header.schema.json via allOf","breadcrumbs":"Conversation Schema » Schema","id":"877","title":"Schema"},"878":{"body":"","breadcrumbs":"Conversation Schema » Message Fields","id":"878","title":"Message Fields"},"879":{"body":"Field Type Description to string[] Recipient agent identifiers from string[] Sender agent identifiers content object Message body (free-form object)","breadcrumbs":"Conversation Schema » Required","id":"879","title":"Required"},"88":{"body":"Now let's create a second agent and demonstrate inter-agent communication: 🦀 Rust # Create a second agent configuration\ncp jacs.config.json reviewer.config.json\n# Edit reviewer.config.json to set jacs_agent_id_and_version to null # Create reviewer agent (uses JACS_CONFIG_PATH environment variable)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agent create --create-keys true # Create an agreement on a document\njacs agreement create -f ./document.json \\ --agents [agent-1-id],[agent-2-id] \\ --question \"Do you agree to collaborate on this content task?\" # Sign the agreement as first agent\njacs agreement sign -f ./document.json # Sign as second agent (using reviewer config)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agreement sign -f ./document.json # Verify agreement is complete\njacs agreement check -f ./document.json 🟢 Node.js // Create second agent with separate config file\nconst reviewerConfig = { ...config };\nreviewerConfig.jacs_agent_id_and_version = null; fs.writeFileSync('./reviewer.config.json', JSON.stringify(reviewerConfig, null, 2)); const reviewer = new JacsAgent();\nreviewer.load('./reviewer.config.json');\nawait reviewer.generateKeys(); const reviewerDoc = await reviewer.createAgent({ name: \"Content Reviewer Bot\", description: \"AI agent specialized in content review\"\n}); // Create agreement between agents\nconst agreement = { title: \"Content Collaboration Agreement\", question: \"Do you agree to collaborate on this content task?\", context: `Task: ${signedTask.jacsId}`, agents: [agentDoc.jacsId, reviewerDoc.jacsId]\n}; const signedAgreement = await agent.createAgreement(agreement); // Both agents sign the agreement\nawait agent.signAgreement(signedAgreement.jacsId);\nawait reviewer.signAgreement(signedAgreement.jacsId); // Verify all signatures\nconst agreementValid = await agent.verifyAgreement(signedAgreement.jacsId);\nconsole.log('Agreement complete:', agreementValid); 🐍 Python # Create second agent with separate config file\nreviewer_config = config.copy()\nreviewer_config[\"jacs_agent_id_and_version\"] = None with open('reviewer.config.json', 'w') as f: json.dump(reviewer_config, f, indent=2) reviewer = jacs.JacsAgent()\nreviewer.load(\"./reviewer.config.json\")\nreviewer.generate_keys() reviewer_doc = reviewer.create_agent({ \"name\": \"Content Reviewer Bot\", \"description\": \"AI agent specialized in content review\"\n}) # Create agreement between agents\nagreement = { \"title\": \"Content Collaboration Agreement\", \"question\": \"Do you agree to collaborate on this content task?\", \"context\": f\"Task: {signed_task['jacsId']}\", \"agents\": [agent_doc[\"jacsId\"], reviewer_doc[\"jacsId\"]]\n} signed_agreement = agent.create_agreement(agreement) # Both agents sign the agreement\nagent.sign_agreement(signed_agreement[\"jacsId\"])\nreviewer.sign_agreement(signed_agreement[\"jacsId\"]) # Verify all signatures\nagreement_valid = agent.verify_agreement(signed_agreement[\"jacsId\"])\nprint(f'Agreement complete: {agreement_valid}')","breadcrumbs":"Quick Start » Next Steps: Multi-Agent Workflow","id":"88","title":"Next Steps: Multi-Agent Workflow"},"880":{"body":"Field Type Description threadID string UUID of the conversation thread jacsMessagePreviousId uuid UUID of the previous message in this thread attachments array File attachments","breadcrumbs":"Conversation Schema » Optional","id":"880","title":"Optional"},"881":{"body":"Messages form a thread via two fields: threadID - All messages in a conversation share the same thread ID jacsMessagePreviousId - Each message references the previous one, creating an ordered chain Message 1 (threadID: \"abc-123\", previousId: null) └── Message 2 (threadID: \"abc-123\", previousId: msg1.jacsId) └── Message 3 (threadID: \"abc-123\", previousId: msg2.jacsId)","breadcrumbs":"Conversation Schema » Threading Model","id":"881","title":"Threading Model"},"882":{"body":"Messages use jacsLevel: \"raw\", making them immutable once signed. To continue a conversation, create a new message referencing the previous one. This ensures the integrity of the conversation history.","breadcrumbs":"Conversation Schema » Immutability","id":"882","title":"Immutability"},"883":{"body":"{ \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"threadID\": \"550e8400-e29b-41d4-a716-446655440000\", \"content\": { \"body\": \"I agree to the proposed terms.\", \"subject\": \"Re: Q1 Deliverables\" }, \"to\": [\"agent-b-uuid\"], \"from\": [\"agent-a-uuid\"], \"jacsMessagePreviousId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsType\": \"message\", \"jacsLevel\": \"raw\"\n}","breadcrumbs":"Conversation Schema » Example","id":"883","title":"Example"},"884":{"body":"use jacs::schema::conversation_crud::*; // Start a new conversation (generates thread ID)\nlet (first_msg, thread_id) = start_new_conversation( serde_json::json!({\"body\": \"Hello, let's discuss terms.\"}), vec![\"agent-b\".to_string()], vec![\"agent-a\".to_string()],\n).unwrap(); // Continue the conversation\nlet reply = create_conversation_message( &thread_id, serde_json::json!({\"body\": \"Sounds good. Here are my terms.\"}), vec![\"agent-a\".to_string()], vec![\"agent-b\".to_string()], Some(&previous_message_jacs_id),\n).unwrap(); // Extract thread info\nlet tid = get_thread_id(&message).unwrap();\nlet prev = get_previous_message_id(&message);","breadcrumbs":"Conversation Schema » Rust API","id":"884","title":"Rust API"},"885":{"body":"Conversations can be referenced by other document types: Commitment : jacsCommitmentConversationRef stores the thread UUID Todo item : relatedConversationThread stores the thread UUID This allows tracking which conversation led to a commitment or is related to a work item.","breadcrumbs":"Conversation Schema » Cross-References","id":"885","title":"Cross-References"},"886":{"body":"Commitment Schema - Agreements arising from conversations Todo List Schema - Private task tracking Document Schema - Header fields and signing","breadcrumbs":"Conversation Schema » See Also","id":"886","title":"See Also"},"887":{"body":"The JACS configuration file (jacs.config.json) defines agent settings, key locations, storage backends, and observability options.","breadcrumbs":"Configuration » Configuration","id":"887","title":"Configuration"},"888":{"body":"https://hai.ai/schemas/jacs.config.schema.json","breadcrumbs":"Configuration » Schema Location","id":"888","title":"Schema Location"},"889":{"body":"Create a minimal configuration file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Configuration » Quick Start","id":"889","title":"Quick Start"},"89":{"body":"Congratulations! You've successfully: ✅ Created JACS agents with cryptographic identities ✅ Generated and signed documents with verifiable integrity ✅ Established multi-agent agreements with cryptographic consent ✅ Verified signatures and document authenticity ✅ Created an audit trail of all interactions","breadcrumbs":"Quick Start » What You've Accomplished","id":"89","title":"What You've Accomplished"},"890":{"body":"Field Type Description jacs_data_directory string Path to store documents and agents jacs_key_directory string Path to store cryptographic keys jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_agent_key_algorithm string Signing algorithm jacs_default_storage string Storage backend","breadcrumbs":"Configuration » Required Fields","id":"890","title":"Required Fields"},"891":{"body":"","breadcrumbs":"Configuration » Configuration Options","id":"891","title":"Configuration Options"},"892":{"body":"jacs_agent_key_algorithm Specifies the cryptographic algorithm for signing: Value Description ring-Ed25519 Ed25519 signatures (recommended) RSA-PSS RSA with PSS padding pq-dilithium Post-quantum Dilithium pq2025 Post-quantum composite { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} jacs_agent_private_key_filename Name of the private key file in the key directory: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} If the key is encrypted, it will have .enc appended automatically when loading. jacs_agent_public_key_filename Name of the public key file: { \"jacs_agent_public_key_filename\": \"public.pem\"\n} jacs_private_key_password Password for encrypted private keys: { \"jacs_private_key_password\": \"your-password\"\n} Warning : Do not store passwords in config files for production. Use the JACS_PRIVATE_KEY_PASSWORD environment variable instead.","breadcrumbs":"Configuration » Key Configuration","id":"892","title":"Key Configuration"},"893":{"body":"jacs_default_storage Specifies where documents are stored: Value Description fs Local filesystem aws AWS S3 storage hai HAI cloud storage { \"jacs_default_storage\": \"fs\"\n} jacs_data_directory Path for storing documents and agents: { \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Configuration » Storage Configuration","id":"893","title":"Storage Configuration"},"894":{"body":"jacs_agent_id_and_version Load an existing agent by ID and version: { \"jacs_agent_id_and_version\": \"550e8400-e29b-41d4-a716-446655440000:f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n}","breadcrumbs":"Configuration » Agent Identity","id":"894","title":"Agent Identity"},"895":{"body":"Specify which schema versions to use: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"Configuration » Schema Versions","id":"895","title":"Schema Versions"},"896":{"body":"For DNSSEC-based agent verification: jacs_agent_domain Domain for DNS-based public key verification: { \"jacs_agent_domain\": \"example.com\"\n} jacs_dns_validate Enable DNS TXT fingerprint validation: { \"jacs_dns_validate\": true\n} jacs_dns_strict Require DNSSEC validation (no fallback): { \"jacs_dns_strict\": true\n} jacs_dns_required Require domain and DNS validation: { \"jacs_dns_required\": true\n}","breadcrumbs":"Configuration » DNS Configuration","id":"896","title":"DNS Configuration"},"897":{"body":"jacs_use_security Enable strict security features: { \"jacs_use_security\": \"1\"\n} Values: \"0\", \"1\", or \"false\", \"true\"","breadcrumbs":"Configuration » Security","id":"897","title":"Security"},"898":{"body":"JACS supports comprehensive observability through logs, metrics, and tracing.","breadcrumbs":"Configuration » Observability Configuration","id":"898","title":"Observability Configuration"},"899":{"body":"{ \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"stderr\" } } }\n} Log Levels Level Description trace Most verbose debug Debug information info General information warn Warnings error Errors only Log Destinations stderr (default): { \"destination\": { \"type\": \"stderr\" }\n} File : { \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/app.log\" }\n} OTLP (OpenTelemetry): { \"destination\": { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" } }\n} Null (disabled): { \"destination\": { \"type\": \"null\" }\n}","breadcrumbs":"Configuration » Logs Configuration","id":"899","title":"Logs Configuration"},"9":{"body":"npm install @hai.ai/jacs import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./config.json');","breadcrumbs":"Introduction » Node.js","id":"9","title":"Node.js"},"90":{"body":"Everything is verifiable : All documents have cryptographic signatures Agents are autonomous : Each has its own identity and keys Agreements enable trust : Multi-party consent before proceeding Audit trails are automatic : Complete history of all interactions JSON is universal : Documents work everywhere","breadcrumbs":"Quick Start » Key Takeaways","id":"90","title":"Key Takeaways"},"900":{"body":"{ \"observability\": { \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\" }, \"export_interval_seconds\": 60 } }\n} Metrics Destinations Prometheus : { \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\" }\n} OTLP : { \"destination\": { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\" }\n} File : { \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.json\" }\n} stdout : { \"destination\": { \"type\": \"stdout\" }\n}","breadcrumbs":"Configuration » Metrics Configuration","id":"900","title":"Metrics Configuration"},"901":{"body":"{ \"observability\": { \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"my-jacs-agent\", \"service_version\": \"1.0.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"backend\" } } } }\n} Sampling Options Field Type Description ratio number (0-1) Percentage of traces to sample parent_based boolean Follow parent span's sampling decision rate_limit integer Max traces per second","breadcrumbs":"Configuration » Tracing Configuration","id":"901","title":"Tracing Configuration"},"902":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\", \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\", \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": false, \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/agent.log\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://prometheus:9090/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-agent\", \"service_version\": \"1.0.0\", \"environment\": \"production\" } } }\n}","breadcrumbs":"Configuration » Complete Configuration Example","id":"902","title":"Complete Configuration Example"},"903":{"body":"Configuration can be overridden with environment variables: Variable Config Field JACS_PRIVATE_KEY_PASSWORD jacs_private_key_password JACS_DATA_DIRECTORY jacs_data_directory JACS_KEY_DIRECTORY jacs_key_directory export JACS_PRIVATE_KEY_PASSWORD=\"secure-password\"","breadcrumbs":"Configuration » Environment Variables","id":"903","title":"Environment Variables"},"904":{"body":"","breadcrumbs":"Configuration » Loading Configuration","id":"904","title":"Loading Configuration"},"905":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Configuration » Python","id":"905","title":"Python"},"906":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Configuration » Node.js","id":"906","title":"Node.js"},"907":{"body":"jacs --config ./jacs.config.json agent show","breadcrumbs":"Configuration » CLI","id":"907","title":"CLI"},"908":{"body":"Never commit private keys - Keep keys out of version control Use environment variables for secrets - Don't store passwords in config files Enable observability - Configure logs and metrics for monitoring Use DNS validation - Enable jacs_dns_validate for additional security Secure key directories - Restrict file permissions on key directories chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Configuration » Production Best Practices","id":"908","title":"Production Best Practices"},"909":{"body":"JSON Schemas Overview - Schema architecture Observability - Monitoring guide DNS Verification - Domain-based verification Quick Start - Getting started guide","breadcrumbs":"Configuration » See Also","id":"909","title":"See Also"},"91":{"body":"Now that you have the basics working: Rust Deep Dive - Learn the full Rust API Node.js Integration - Add MCP support Python MCP - Build authenticated MCP servers Production Security - Harden runtime settings and key management Real Examples - See production patterns","breadcrumbs":"Quick Start » Where to Go Next","id":"91","title":"Where to Go Next"},"910":{"body":"JACS implements a comprehensive security model designed to ensure authenticity, integrity, and non-repudiation for all agent communications and documents.","breadcrumbs":"Security Model » Security Model","id":"910","title":"Security Model"},"911":{"body":"Passwords : The private key password must be set only via the JACS_PRIVATE_KEY_PASSWORD environment variable. It is never stored in config files. Keys : Private keys are encrypted at rest (AES-256-GCM with PBKDF2, 600k iterations). Public keys and config may be stored on disk. Path validation : All paths built from untrusted input (e.g. publicKeyHash, filenames) are validated via require_relative_path_safe() to prevent directory traversal. This single validation function is used in data and key directory path builders and the trust store. It rejects empty segments, ., .., null bytes, and Windows drive-prefixed paths. Trust ID canonicalization : Trust-store operations normalize canonical agent docs (jacsId + jacsVersion) into a safe UUID:VERSION_UUID identifier before filesystem use, preserving path-safety checks while supporting standard agent document layout. Filesystem schema policy : Local schema loading is disabled by default and requires JACS_ALLOW_FILESYSTEM_SCHEMAS=true. When enabled, schema paths must remain within configured roots (JACS_DATA_DIRECTORY and/or JACS_SCHEMA_DIRECTORY) after normalized/canonical path checks. Network endpoint policy : HAI registration verification requires HTTPS for HAI_API_URL (localhost HTTP is allowed for local testing only). No secrets in config : Config files must not contain passwords or other secrets. The example config (jacs.config.example.json) does not include jacs_private_key_password. Dependency auditing : Run cargo audit (Rust), npm audit (Node.js), or pip audit (Python) to check for known vulnerabilities.","breadcrumbs":"Security Model » Security Model (v0.6.0)","id":"911","title":"Security Model (v0.6.0)"},"912":{"body":"","breadcrumbs":"Security Model » Core Security Principles","id":"912","title":"Core Security Principles"},"913":{"body":"Every JACS agent has a unique cryptographic identity: Key Pair : Each agent possesses a private/public key pair Agent ID : Unique UUID identifying the agent Public Key Hash : SHA-256 hash of the public key for verification { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\" }\n}","breadcrumbs":"Security Model » 1. Cryptographic Identity","id":"913","title":"1. Cryptographic Identity"},"914":{"body":"All documents include cryptographic guarantees: Signature : Cryptographic signature over specified fields Hash : SHA-256 hash of document contents Version Tracking : Immutable version history","breadcrumbs":"Security Model » 2. Document Integrity","id":"914","title":"2. Document Integrity"},"915":{"body":"Signatures provide proof of origin: Agents cannot deny signing a document Timestamps record when signatures were made Public keys enable independent verification","breadcrumbs":"Security Model » 3. Non-Repudiation","id":"915","title":"3. Non-Repudiation"},"916":{"body":"JACS provides a read-only security audit that checks configuration, directories, secrets, trust store, storage, quarantine/failed files, and optionally re-verifies recent documents. It does not modify state. Purpose : Surface misconfiguration, missing keys, unexpected paths, and verification failures in one report. Options (all optional): config_path: Path to jacs.config.json (default: 12-factor load) data_directory / key_directory: Override paths recent_verify_count: Number of recent documents to re-verify (default 10, max 100) Return structure : AuditResult with overall_status, risks (list of AuditRisk), health_checks (list of ComponentHealth), summary, checked_at, and optional quarantine_entries / failed_entries. Rust : use jacs::audit::{audit, AuditOptions}; let result = audit(AuditOptions::default())?;\nprintln!(\"{}\", jacs::format_audit_report(&result)); Python : import jacs.simple as jacs result = jacs.audit() # dict with risks, health_checks, summary, overall_status\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\") Node.js : import * as jacs from '@hai.ai/jacs/simple'; const result = jacs.audit({ recentN: 5 });\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`); Available in all bindings and as an MCP tool (jacs_audit) for automation.","breadcrumbs":"Security Model » Security Audit (audit())","id":"916","title":"Security Audit (audit())"},"917":{"body":"","breadcrumbs":"Security Model » Threat Model","id":"917","title":"Threat Model"},"918":{"body":"Threat Protection Tampering Content hashes detect modifications Impersonation Cryptographic signatures verify identity Replay Attacks Timestamps and version IDs ensure freshness; future timestamps rejected; optional signature expiration via JACS_MAX_SIGNATURE_AGE_SECONDS Man-in-the-Middle DNS verification via DNSSEC; TLS certificate validation Key Compromise Key rotation through versioning Weak Passwords Minimum 28-bit entropy enforcement (35-bit for single class)","breadcrumbs":"Security Model » Protected Against","id":"918","title":"Protected Against"},"919":{"body":"Private keys are kept secure Cryptographic algorithms are sound DNS infrastructure (when used) is trustworthy","breadcrumbs":"Security Model » Trust Assumptions","id":"919","title":"Trust Assumptions"},"92":{"body":"Agent creation fails : Check that the data and key directories exist and are writable Signature verification fails : Ensure public keys are properly stored and accessible Agreement signing fails : Verify all agent IDs are correct and agents exist Documents not found : Check the data directory configuration Need help? Check the GitHub issues or review the detailed implementation guides.","breadcrumbs":"Quick Start » Troubleshooting","id":"92","title":"Troubleshooting"},"920":{"body":"","breadcrumbs":"Security Model » Signature Process","id":"920","title":"Signature Process"},"921":{"body":"Field Selection : Determine which fields to sign Canonicalization : Serialize fields deterministically Signature Generation : Sign with private key Hash Computation : Compute SHA-256 of signed document import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create signed document\ndoc = agent.create_document(json.dumps({ 'title': 'Confidential Report', 'content': 'Sensitive data here'\n})) # Document now includes jacsSignature and jacsSha256","breadcrumbs":"Security Model » Signing a Document","id":"921","title":"Signing a Document"},"922":{"body":"Hash Verification : Recompute hash and compare Signature Verification : Verify signature with public key Agent Verification : Optionally verify agent identity via DNS is_valid = agent.verify_document(doc_json)\nis_signature_valid = agent.verify_signature(doc_json)","breadcrumbs":"Security Model » Verifying a Document","id":"922","title":"Verifying a Document"},"923":{"body":"","breadcrumbs":"Security Model » Key Management","id":"923","title":"Key Management"},"924":{"body":"JACS generates cryptographic key pairs during agent creation: # Keys are created in the configured key directory\njacs_keys/\n├── private.pem # Private key (keep secure!)\n└── public.pem # Public key (can be shared)","breadcrumbs":"Security Model » Key Generation","id":"924","title":"Key Generation"},"925":{"body":"Encryption at Rest : Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC-SHA256 (600,000 iterations). Never store the password in config files. # Set via environment variable only\nexport JACS_PRIVATE_KEY_PASSWORD=\"secure-password\" Important : The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable. Password Entropy Requirements : JACS enforces password entropy minimums for private key encryption. Password validation is performed at encryption time, and weak passwords are rejected with helpful error messages: Minimum 28-bit entropy for passwords with 2+ character classes (mixed case, numbers, symbols) Minimum 35-bit entropy for single-character-class passwords (e.g., all lowercase) Entropy is calculated based on character class diversity and length Weak passwords result in immediate rejection during key encryption Error messages guide users toward stronger password choices Example of rejected weak passwords: password - Too common and predictable 12345678 - Insufficient character diversity abc - Too short File Permissions : chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » Key Protection","id":"925","title":"Key Protection"},"926":{"body":"Update agent version to rotate keys: Generate new key pair Create new agent version Sign new version with old key Update configuration to use new keys","breadcrumbs":"Security Model » Key Rotation","id":"926","title":"Key Rotation"},"927":{"body":"JACS includes configurable TLS certificate validation for secure network communication.","breadcrumbs":"Security Model » TLS Certificate Validation","id":"927","title":"TLS Certificate Validation"},"928":{"body":"By default, JACS warns about invalid TLS certificates but accepts them to facilitate development environments with self-signed certificates: WARNING: Invalid TLS certificate detected. Set JACS_STRICT_TLS=true for production.","breadcrumbs":"Security Model » Default Behavior (Development)","id":"928","title":"Default Behavior (Development)"},"929":{"body":"For production deployments, enable strict TLS validation: export JACS_STRICT_TLS=true When enabled, JACS will: Reject connections with invalid, expired, or self-signed certificates Enforce proper certificate chain validation Fail fast with clear error messages for certificate issues Implementation : Certificate validation logic is located in jacs/src/schema/utils.rs.","breadcrumbs":"Security Model » Production Configuration","id":"929","title":"Production Configuration"},"93":{"body":"JACS supports a wide range of workflows: proving where data came from, protecting who runs an agent, registering with a platform, enforcing provenance in your app, and proving that a specific agent sent a message. This page summarizes five common use cases; each links to the full fictional scenario and technical flow in the repository. For detailed narratives (scenario, technical flow, outcome), see USECASES.md in the JACS repo.","breadcrumbs":"Use cases » Use cases","id":"93","title":"Use cases"},"930":{"body":"Mode Behavior Use Case Default (dev) Warn on invalid certs, allow connection Local development, testing Strict (JACS_STRICT_TLS=true) Reject invalid certs Production, staging For HAI registration verification endpoints, HAI_API_URL must use HTTPS. HTTP is only allowed for localhost test endpoints.","breadcrumbs":"Security Model » Security Implications","id":"930","title":"Security Implications"},"931":{"body":"JACS signatures include timestamps to prevent replay attacks and ensure temporal integrity.","breadcrumbs":"Security Model » Signature Timestamp Validation","id":"931","title":"Signature Timestamp Validation"},"932":{"body":"Timestamp Inclusion : Every signature includes a UTC timestamp recording when it was created Future Timestamp Rejection : Signatures with timestamps more than 5 minutes in the future are rejected Optional Signature Expiration : Configurable via JACS_MAX_SIGNATURE_AGE_SECONDS (disabled by default since JACS documents are designed to be eternal) Validation : Timestamp validation occurs during signature verification","breadcrumbs":"Security Model » How It Works","id":"932","title":"How It Works"},"933":{"body":"By default, signatures do not expire. JACS documents are designed to be idempotent and eternal. For use cases that require expiration: # Enable expiration (e.g., 90 days)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=7776000 # Default: no expiration (0)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=0","breadcrumbs":"Security Model » Configuring Signature Expiration","id":"933","title":"Configuring Signature Expiration"},"934":{"body":"The 5-minute future tolerance window: Allows for reasonable clock skew between systems Prevents attackers from creating signatures with future timestamps Ensures signatures cannot be pre-generated for later fraudulent use { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"signature\": \"...\", \"date\": \"2024-01-15T10:30:00Z\" // Must be within 5 min of verifier's clock }\n}","breadcrumbs":"Security Model » Protection Against Replay Attacks","id":"934","title":"Protection Against Replay Attacks"},"935":{"body":"For reliable timestamp validation across distributed systems: Ensure all agents use NTP or similar time synchronization Monitor for clock drift in production environments Consider the 5-minute tolerance when debugging verification failures","breadcrumbs":"Security Model » Clock Synchronization","id":"935","title":"Clock Synchronization"},"936":{"body":"Agents can claim a verification level that determines security requirements. This follows the principle: \"If you claim it, you must prove it.\"","breadcrumbs":"Security Model » Verification Claims","id":"936","title":"Verification Claims"},"937":{"body":"Claim Required Conditions Behavior unverified (default) None Relaxed DNS/TLS settings allowed; self-asserted identity verified Domain with DNSSEC Strict TLS, strict DNS with DNSSEC validation required verified-hai.ai Above + HAI.ai registration Must be registered and verified with HAI.ai","breadcrumbs":"Security Model » Claim Levels","id":"937","title":"Claim Levels"},"938":{"body":"Add the jacsVerificationClaim field to your agent definition: { \"jacsAgentType\": \"ai\", \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n}","breadcrumbs":"Security Model » Setting a Verification Claim","id":"938","title":"Setting a Verification Claim"},"939":{"body":"When an agent claims verified or verified-hai.ai: Domain Required : The jacsAgentDomain field must be set Strict DNS : DNS lookup uses DNSSEC validation (no insecure fallback) DNS Required : Public key fingerprint must match DNS TXT record Strict TLS : TLS certificate validation is mandatory (no self-signed certs) For verified-hai.ai claims, additional enforcement: HAI.ai Registration : Agent must be registered at hai.ai Public Key Match : Registered public key must match the agent's key Network Required : Verification fails if HAI.ai API is unreachable","breadcrumbs":"Security Model » Claim Enforcement","id":"939","title":"Claim Enforcement"},"94":{"body":"Summary. You have a pipeline or service that emits JSON (configs, reports, compliance data). Consumers need to trust that a given file or payload was produced by that program and not modified. With JACS, the program has one agent identity: it signs each artifact with sign_message or sign_file at emission; consumers verify with verify() or verify_by_id() (local storage), or use verify_standalone() for one-off verification without loading an agent. No central server is required. See USECASES.md § 1 for the full scenario.","breadcrumbs":"Use cases » 1. Verifying that JSON came from a specific program","id":"94","title":"1. Verifying that JSON came from a specific program"},"940":{"body":"Agents without jacsVerificationClaim are treated as unverified Existing agents continue to work with their current DNS settings No breaking changes for agents that don't opt into verified status","breadcrumbs":"Security Model » Backward Compatibility","id":"940","title":"Backward Compatibility"},"941":{"body":"If verification fails, clear error messages explain what's wrong: Verification claim 'verified' failed: Verified agents must have jacsAgentDomain set.\nAgents claiming 'verified' must meet the required security conditions. Verification claim 'verified-hai.ai' failed: Agent 'uuid' is not registered with HAI.ai.\nAgents claiming 'verified-hai.ai' must be registered at https://hai.ai","breadcrumbs":"Security Model » Error Messages","id":"941","title":"Error Messages"},"942":{"body":"No Downgrade : Once an agent claims verified, it cannot be verified with relaxed settings Claim Changes : Changing the claim requires creating a new agent version Network Dependency : verified-hai.ai requires network access to HAI.ai Audit Trail : Verification claim and enforcement results are logged","breadcrumbs":"Security Model » Security Considerations","id":"942","title":"Security Considerations"},"943":{"body":"JACS supports DNSSEC-validated identity verification:","breadcrumbs":"Security Model » DNS-Based Verification","id":"943","title":"DNS-Based Verification"},"944":{"body":"Agent publishes public key fingerprint in DNS TXT record Verifier queries DNS for _v1.agent.jacs.. DNSSEC validates the response authenticity Fingerprint is compared against agent's public key","breadcrumbs":"Security Model » How It Works","id":"944","title":"How It Works"},"945":{"body":"{ \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": true\n}","breadcrumbs":"Security Model » Configuration","id":"945","title":"Configuration"},"946":{"body":"Mode Description jacs_dns_validate: false No DNS verification jacs_dns_validate: true Attempt DNS verification, allow fallback jacs_dns_strict: true Require DNSSEC validation jacs_dns_required: true Fail if domain not present","breadcrumbs":"Security Model » Security Levels","id":"946","title":"Security Levels"},"947":{"body":"JACS maintains a trust store for managing trusted agent relationships.","breadcrumbs":"Security Model » Trust Store Management","id":"947","title":"Trust Store Management"},"948":{"body":"Before trusting an agent, JACS performs public key hash verification: # Trust an agent after verifying their public key hash\nagent.trust_agent(agent_id, public_key_hash)","breadcrumbs":"Security Model » Trusting Agents","id":"948","title":"Trusting Agents"},"949":{"body":"The untrust_agent() method properly handles the case when an agent is not in the trust store: try: agent.untrust_agent(agent_id)\nexcept AgentNotTrusted as e: # Agent was not in the trust store print(f\"Agent {agent_id} was not trusted: {e}\")","breadcrumbs":"Security Model » Untrusting Agents","id":"949","title":"Untrusting Agents"},"95":{"body":"Summary. You run a public-facing agent and want its messages to be verifiable (signed) without exposing who operates it. JACS supports this by keeping signing internal-only and publishing only the public key (via DNS and optionally HAI). Recipients use verify() (core JACS) or jacs_verify_auto (OpenClaw/moltyjacs) to confirm origin and integrity; they never learn who runs the agent. See USECASES.md § 2 for the full scenario.","breadcrumbs":"Use cases » 2. Protecting your agent's identity on the internet","id":"95","title":"2. Protecting your agent's identity on the internet"},"950":{"body":"Operation Validation trust_agent() UUID format validation, path traversal rejection, public key hash verification, self-signature verification before adding untrust_agent() UUID format validation, path containment check, returns AgentNotTrusted error if agent not found get_trusted_agent() UUID format validation, path containment check is_trusted() UUID format validation, safe lookup without side effects Key cache (load_public_key_from_cache) require_relative_path_safe() rejects traversal in publicKeyHash Key cache (save_public_key_to_cache) require_relative_path_safe() rejects traversal in publicKeyHash Path Traversal Protection (v0.6.0) : All trust store operations that construct file paths from agent IDs or key hashes use defense-in-depth: UUID format validation : Agent IDs must match UUID:UUID format (rejects special characters) Path character rejection : Explicit rejection of .., /, \\, and null bytes Path containment check : For existing files, canonicalized paths are verified to stay within the trust store directory require_relative_path_safe() : Key hashes are validated to prevent traversal before constructing cache file paths","breadcrumbs":"Security Model » Trust Store Security","id":"950","title":"Trust Store Security"},"951":{"body":"Verify Before Trust : Always verify an agent's public key hash through an out-of-band channel before trusting Audit Trust Changes : Log all trust store modifications for security auditing Periodic Review : Regularly review and prune the trust store","breadcrumbs":"Security Model » Best Practices","id":"951","title":"Best Practices"},"952":{"body":"Multi-party agreements provide additional security:","breadcrumbs":"Security Model » Agreement Security","id":"952","title":"Agreement Security"},"953":{"body":"{ \"jacsAgreement\": { \"agentIDs\": [\"agent-1\", \"agent-2\", \"agent-3\"], \"signatures\": [ { \"agentID\": \"agent-1\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T10:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-at-agreement-time\"\n}","breadcrumbs":"Security Model » Agreement Structure","id":"953","title":"Agreement Structure"},"954":{"body":"Content Lock : jacsAgreementHash ensures all parties agreed to same content Individual Consent : Each signature records explicit agreement Response Types : Support for agree, disagree, or reject Timestamp : Records when each party signed","breadcrumbs":"Security Model » Agreement Guarantees","id":"954","title":"Agreement Guarantees"},"955":{"body":"For MCP and HTTP communication:","breadcrumbs":"Security Model » Request/Response Security","id":"955","title":"Request/Response Security"},"956":{"body":"signed_request = agent.sign_request({ 'method': 'tools/call', 'params': {'name': 'echo', 'arguments': {'text': 'hello'}}\n}) The signed request includes: Full JACS document structure Agent signature Timestamp Content hash","breadcrumbs":"Security Model » Request Signing","id":"956","title":"Request Signing"},"957":{"body":"result = agent.verify_response(response_string)\npayload = result.get('payload')\nagent_id = result.get('agentId') # Who signed the response","breadcrumbs":"Security Model » Response Verification","id":"957","title":"Response Verification"},"958":{"body":"","breadcrumbs":"Security Model » Algorithm Security","id":"958","title":"Algorithm Security"},"959":{"body":"Algorithm Type Security Level ring-Ed25519 Elliptic Curve High (recommended) RSA-PSS RSA High pq-dilithium Post-Quantum Quantum-resistant pq2025 Composite Transitional","breadcrumbs":"Security Model » Supported Algorithms","id":"959","title":"Supported Algorithms"},"96":{"body":"Summary. You want to register your JACS agent with HAI.ai for attestation and discoverability, and to test verification before going live. Use the HAI registration flow: from Node registerWithHai() (@hai.ai/jacs), from Go RegisterWithHai() (jacsgo), from Python register_with_hai / register_new_agent() (jacspy), or openclaw jacs register (moltyjacs). Set HAI_API_KEY, then check attestation and run verification with JACS_KEY_RESOLUTION=local,hai. See USECASES.md § 3 for the full scenario.","breadcrumbs":"Use cases » 3. Registering and testing your agent on HAI.ai","id":"96","title":"3. Registering and testing your agent on HAI.ai"},"960":{"body":"Choose based on requirements: General Use : ring-Ed25519 - fast, secure, small signatures Legacy Systems : RSA-PSS - widely supported Future-Proofing : pq-dilithium - quantum-resistant Transition : pq2025 - hybrid classical/post-quantum","breadcrumbs":"Security Model » Algorithm Selection","id":"960","title":"Algorithm Selection"},"961":{"body":"","breadcrumbs":"Security Model » Security Best Practices","id":"961","title":"Security Best Practices"},"962":{"body":"# Never commit keys to version control\necho \"jacs_keys/\" >> .gitignore # Secure file permissions\nchmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » 1. Key Storage","id":"962","title":"1. Key Storage"},"963":{"body":"# Use environment variables\nexport JACS_PRIVATE_KEY_PASSWORD=\"$(pass show jacs/key-password)\"","breadcrumbs":"Security Model » 2. Password Handling","id":"963","title":"2. Password Handling"},"964":{"body":"Always use TLS for network communication: # HTTPS for web transport\nclient = JACSMCPClient(\"https://localhost:8000/sse\") # Good\n# client = JACSMCPClient(\"http://localhost:8000/sse\") # Avoid in production","breadcrumbs":"Security Model » 3. Transport Security","id":"964","title":"3. Transport Security"},"965":{"body":"{ \"jacs_dns_strict\": true, \"jacs_dns_required\": true, \"jacs_enable_filesystem_quarantine\": \"true\"\n}","breadcrumbs":"Security Model » 4. Verification Policies","id":"965","title":"4. Verification Policies"},"966":{"body":"Enable observability for security auditing: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" } }\n}","breadcrumbs":"Security Model » 5. Audit Logging","id":"966","title":"5. Audit Logging"},"967":{"body":"","breadcrumbs":"Security Model » Security Checklist","id":"967","title":"Security Checklist"},"968":{"body":"Generate unique keys for each environment Never commit private keys Use test keys separate from production","breadcrumbs":"Security Model » Development","id":"968","title":"Development"},"969":{"body":"Encrypt private keys at rest Use environment variables for secrets (never store jacs_private_key_password in config) Enable DNS verification Configure strict security mode Enable audit logging Use TLS for all network transport Restrict key file permissions (0600 for keys, 0700 for key directory) Implement key rotation policy Set JACS_STRICT_TLS=true for certificate validation Use strong passwords (28+ bit entropy, 35+ for single character class) Enable signature timestamp validation Verify public key hashes before trusting agents Run cargo audit / npm audit / pip audit regularly for dependency vulnerabilities","breadcrumbs":"Security Model » Production","id":"969","title":"Production"},"97":{"body":"Summary. Your agent (in Go, Node, or Python) must prove the origin and integrity of every important output for compliance. Use the simple API in jacspy, jacsnpm, or jacsgo: load(config), sign_message(payload) for each output, and verify(signed.raw) (or verify_standalone() for one-off verification without agent setup) wherever you consume signed data. Keys stay local; use JACS_KEY_RESOLUTION for external signers or air-gapped use. See USECASES.md § 4 for the full scenario.","breadcrumbs":"Use cases » 4. A Go, Node, or Python agent with strong data provenance","id":"97","title":"4. A Go, Node, or Python agent with strong data provenance"},"970":{"body":"Always verify documents before trusting Verify agent signatures Check agreement completeness Validate DNS records when required","breadcrumbs":"Security Model » Verification","id":"970","title":"Verification"},"971":{"body":"","breadcrumbs":"Security Model » Security Considerations","id":"971","title":"Security Considerations"},"972":{"body":"Verify JACS packages are from official sources Use package checksums Keep dependencies updated","breadcrumbs":"Security Model » Supply Chain","id":"972","title":"Supply Chain"},"973":{"body":"Use constant-time comparison for signatures Protect against timing attacks Secure memory handling for keys","breadcrumbs":"Security Model » Side Channels","id":"973","title":"Side Channels"},"974":{"body":"Backup key material securely Document key recovery procedures Plan for key compromise scenarios","breadcrumbs":"Security Model » Recovery","id":"974","title":"Recovery"},"975":{"body":"","breadcrumbs":"Security Model » Troubleshooting Verification Claims","id":"975","title":"Troubleshooting Verification Claims"},"976":{"body":"\"Verified agents must have jacsAgentDomain set\" Problem : You set jacsVerificationClaim to verified but didn't specify a domain. Solution : Either add a domain or use unverified: // Option 1: Add a domain (recommended for production)\n{ \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} // Option 2: Use unverified if DNS verification isn't needed\n{ \"jacsVerificationClaim\": \"unverified\"\n} \"Agent is not registered with HAI.ai\" Problem : You're using verified-hai.ai but the agent isn't registered. Solution : Register your agent at hai.ai Or use verified for DNS-only verification: { \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} \"Cannot downgrade from 'verified' to 'unverified'\" Problem : You're trying to change an existing agent's claim to a lower level. Solution : Verification claims cannot be downgraded for security. Options: Keep the current claim level Create a new agent with the desired claim level If this is a test/development scenario, start fresh # Create a new agent instead\njacs create --type ai --claim unverified \"DNS fingerprint mismatch\" Problem : The public key hash in DNS doesn't match your agent's key. Solution : Regenerate the DNS record with your current keys: jacs dns-record Update your DNS TXT record with the new value Wait for DNS propagation (can take up to 48 hours) \"Strict DNSSEC validation failed\" Problem : Your domain doesn't have DNSSEC enabled. Solution : Enable DNSSEC with your domain registrar Publish DS records at the parent zone Or use verified with non-strict DNS (development only)","breadcrumbs":"Security Model » Common Issues and Solutions","id":"976","title":"Common Issues and Solutions"},"977":{"body":"Claim Security Level Requirements unverified 0 (lowest) None - self-asserted identity verified 1 Domain + DNS TXT record + DNSSEC verified-hai.ai 2 (highest) Above + HAI.ai registration","breadcrumbs":"Security Model » Claim Level Reference","id":"977","title":"Claim Level Reference"},"978":{"body":"Upgrades allowed : unverified → verified → verified-hai.ai Downgrades blocked : Cannot go from higher to lower claim Same level allowed : Can update agent while keeping same claim","breadcrumbs":"Security Model » Upgrade vs Downgrade Rules","id":"978","title":"Upgrade vs Downgrade Rules"},"979":{"body":"# Check your agent's current claim\njacs info | grep jacsVerificationClaim # Verify DNS record is correct\njacs dns-check # Test verification\njacs verify --agent your-agent-id:version","breadcrumbs":"Security Model » Quick Diagnostic Commands","id":"979","title":"Quick Diagnostic Commands"},"98":{"body":"Summary. You use OpenClaw with the moltyjacs plugin and need cryptographic proof that a specific message came from your agent. The agent signs outbound messages with jacs_sign; the recipient verifies with jacs_verify_auto. The signature travels with the message; no custom PKI is required. See USECASES.md § 5 for the full scenario.","breadcrumbs":"Use cases » 5. OpenClaw (moltyjacs): proving your agent sent a message","id":"98","title":"5. OpenClaw (moltyjacs): proving your agent sent a message"},"980":{"body":"Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity Configuration - Security configuration Agreements - Multi-party agreements","breadcrumbs":"Security Model » See Also","id":"980","title":"See Also"},"981":{"body":"Key rotation is the process of replacing an agent's cryptographic keys while preserving the ability to verify documents signed with previous keys. JACS implements version-aware key management to support secure key lifecycle operations.","breadcrumbs":"Key Rotation » Key Rotation","id":"981","title":"Key Rotation"},"982":{"body":"","breadcrumbs":"Key Rotation » Why Key Rotation Matters","id":"982","title":"Why Key Rotation Matters"},"983":{"body":"When a private key is compromised, the agent must be able to: Generate new keys and continue operating Revoke trust in the compromised key Maintain verifiability of documents signed before the compromise","breadcrumbs":"Key Rotation » Key Compromise Recovery","id":"983","title":"Key Compromise Recovery"},"984":{"body":"Cryptographic algorithms evolve. Key rotation enables: Migration from older algorithms to newer ones Transition to post-quantum cryptography when needed Algorithm upgrades without breaking existing signatures","breadcrumbs":"Key Rotation » Cryptographic Agility","id":"984","title":"Cryptographic Agility"},"985":{"body":"Many security standards require periodic key rotation: PCI-DSS mandates regular key changes SOC 2 requires key management policies NIST guidelines recommend rotation schedules","breadcrumbs":"Key Rotation » Compliance Requirements","id":"985","title":"Compliance Requirements"},"986":{"body":"JACS uses a versioned identity model where each key rotation creates a new agent version.","breadcrumbs":"Key Rotation » Agent Versioning","id":"986","title":"Agent Versioning"},"987":{"body":"Agent identifiers follow the format: {agent_id}:{version_uuid} jacsId : The stable agent identity (UUID v4) - never changes jacsVersion : Current version UUID - changes on each update jacsPreviousVersion : Links to the prior version jacsOriginalVersion : The first version ever created { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"7c9e6679-7425-40de-944b-e07fc1f90ae7\", \"jacsPreviousVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"jacsOriginalVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"\n}","breadcrumbs":"Key Rotation » Version Format","id":"987","title":"Version Format"},"988":{"body":"Each version forms a linked chain back to the original: Original (v1) <-- Previous (v2) <-- Current (v3) | | | key-A key-B key-C This chain provides an audit trail of all key changes and allows verification of any version.","breadcrumbs":"Key Rotation » Version Chain","id":"988","title":"Version Chain"},"989":{"body":"The critical insight enabling key rotation is that signatures contain both the agent ID and the version that created them.","breadcrumbs":"Key Rotation » Version-Aware Verification","id":"989","title":"Version-Aware Verification"},"99":{"body":"This guide covers installing the JACS Rust CLI and library.","breadcrumbs":"Installation » Installation","id":"99","title":"Installation"},"990":{"body":"{ \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"publicKeyHash\": \"sha256-of-public-key-A\", \"signingAlgorithm\": \"ring-Ed25519\", \"signature\": \"base64-encoded-signature\", \"date\": \"2024-01-15T10:00:00Z\" }\n}","breadcrumbs":"Key Rotation » Signature Structure","id":"990","title":"Signature Structure"},"991":{"body":"When verifying a signature: Extract agentVersion and publicKeyHash from the signature Look up the public key that was active for that version Verify the signature using that historical key // Pseudocode for version-aware verification\nfn verify_signature(doc: &Document) -> Result<()> { let sig = &doc.jacs_signature; // Find the key that was active for this version let public_key = resolve_key_for_version( &sig.agent_id, &sig.agent_version, &sig.public_key_hash, )?; // Verify with the historical key verify_with_key(&doc, &sig, &public_key)\n}","breadcrumbs":"Key Rotation » Key Resolution Process","id":"991","title":"Key Resolution Process"},"992":{"body":"The verification system tries multiple sources: Local cache by hash - Fastest, key already stored locally Trust store by version - Most accurate for known agents Trust store by hash - Fallback for legacy entries DNS lookup - External verification, authoritative Fail - Key not found, verification impossible","breadcrumbs":"Key Rotation » Key Lookup Priority","id":"992","title":"Key Lookup Priority"},"993":{"body":"","breadcrumbs":"Key Rotation » Key Rotation Process","id":"993","title":"Key Rotation Process"},"994":{"body":"Generate new key pair with the desired algorithm Create new agent version with updated key information Sign new version with old key (transition signature) Update DNS records to include new key fingerprint Store old public key for future verifications","breadcrumbs":"Key Rotation » Step-by-Step Rotation","id":"994","title":"Step-by-Step Rotation"},"995":{"body":"The transition signature proves the key rotation was authorized by the holder of the old key: JACS_KEY_ROTATION:{agent_id}:{old_key_hash}:{new_key_hash}:{timestamp} This signed message: Proves continuity of ownership Provides an audit trail Binds old and new keys together cryptographically","breadcrumbs":"Key Rotation » Transition Signature","id":"995","title":"Transition Signature"},"996":{"body":"Note : These CLI commands are planned for a future release. Currently, key rotation must be performed programmatically using the Rust API. # Rotate keys with default algorithm (Coming Soon)\njacs agent rotate-keys # Rotate to post-quantum algorithm (Coming Soon)\njacs agent rotate-keys --algorithm pq2025 # List key history (Coming Soon)\njacs agent keys list # Revoke a compromised key (Coming Soon)\njacs agent keys revoke ","breadcrumbs":"Key Rotation » CLI Commands (Planned)","id":"996","title":"CLI Commands (Planned)"},"997":{"body":"Time T0: Agent created - jacsId: \"abc-123\" - jacsVersion: \"v1-uuid\" - jacsCurrentKeyHash: \"hash-A\" Time T1: Agent signs document D1 - D1.jacsSignature.agentVersion: \"v1-uuid\" - D1.jacsSignature.publicKeyHash: \"hash-A\" Time T2: Key rotation - New keys generated with hash-B - jacsVersion: \"v2-uuid\" - jacsKeyHistory: [{ hash: \"hash-A\", status: \"rotated\" }] - jacsCurrentKeyHash: \"hash-B\" Time T3: Verify D1 - Extract agentVersion \"v1-uuid\" and hash \"hash-A\" - Look up key: find \"hash-A\" with status \"rotated\" - Verification succeeds (old key still valid for old docs) Time T4: Agent signs document D2 - D2.jacsSignature.agentVersion: \"v2-uuid\" - D2.jacsSignature.publicKeyHash: \"hash-B\"","breadcrumbs":"Key Rotation » Example Rotation Flow","id":"997","title":"Example Rotation Flow"},"998":{"body":"The trust store maintains a history of all public keys for each trusted agent.","breadcrumbs":"Key Rotation » Trust Store with Version History","id":"998","title":"Trust Store with Version History"},"999":{"body":"{ \"agent_id\": \"550e8400-e29b-41d4-a716-446655440000\", \"name\": \"Example Agent\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"current_key_hash\": \"abc123...\", \"domain\": \"agent.example.com\", \"key_history\": [ { \"public_key_hash\": \"xyz789...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-01T00:00:00Z\", \"first_version\": \"11111111-1111-1111-1111-111111111111\", \"last_version\": \"22222222-2222-2222-2222-222222222222\", \"status\": \"rotated\" }, { \"public_key_hash\": \"abc123...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"first_version\": \"33333333-3333-3333-3333-333333333333\", \"last_version\": null, \"status\": \"active\" } ]\n}","breadcrumbs":"Key Rotation » TrustedAgent Structure","id":"999","title":"TrustedAgent Structure"}},"length":1532,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"3":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1441":{"tf":1.0}}},"5":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":1,"docs":{"1441":{"tf":1.0}}},"1":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":5,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1437":{"tf":1.0},"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.0}}},"2":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":8,"docs":{"1112":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":2,"docs":{"157":{"tf":1.0},"761":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1003":{"tf":1.0},"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"298":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"654":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"859":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"779":{"tf":1.0}}}},"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":6,"docs":{"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}},"3":{"df":3,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"859":{"tf":1.4142135623730951}}},"6":{"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1432":{"tf":1.0},"728":{"tf":1.0}}},"df":27,"docs":{"1084":{"tf":1.4142135623730951},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1129":{"tf":1.0},"1307":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1362":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"382":{"tf":1.0},"588":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"897":{"tf":1.0},"901":{"tf":1.0},"933":{"tf":1.0},"977":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"779":{"tf":1.0}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":9,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":15,"docs":{"1134":{"tf":1.0},"1179":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.0},"1401":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"845":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1441":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0}}},"3":{"df":2,"docs":{"1015":{"tf":1.4142135623730951},"1030":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1329":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":2,"docs":{"1169":{"tf":1.0},"1403":{"tf":1.4142135623730951}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}},"1":{"df":1,"docs":{"767":{"tf":1.0}}},"df":5,"docs":{"1116":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"198":{"tf":1.0},"501":{"tf":1.0}}},"df":16,"docs":{"1048":{"tf":1.0},"1390":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"501":{"tf":1.4142135623730951},"519":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"812":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"k":{"df":1,"docs":{"1253":{"tf":1.0}}}},"df":15,"docs":{"1071":{"tf":1.0},"1079":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1441":{"tf":1.7320508075688772},"308":{"tf":1.0},"315":{"tf":1.0},"443":{"tf":1.0},"68":{"tf":1.0},"916":{"tf":1.0}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1024":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"196":{"tf":1.0},"365":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"599":{"tf":1.0},"654":{"tf":1.0},"761":{"tf":1.0},"881":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0}}},"d":{"3":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1079":{"tf":1.0},"1215":{"tf":1.0},"916":{"tf":1.0}}},"4":{"df":1,"docs":{"1087":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0}}},"df":3,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0}}},"df":5,"docs":{"1003":{"tf":1.0},"1336":{"tf":1.0},"298":{"tf":1.0},"501":{"tf":1.4142135623730951},"859":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":15,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.0},"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"783":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"785":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"767":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"351":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"1071":{"tf":1.0}}},"8":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":76,"docs":{"1048":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1072":{"tf":1.0},"1079":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.0},"1168":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1202":{"tf":1.0},"1242":{"tf":1.0},"1248":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":2.23606797749979},"1302":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1312":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1392":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1512":{"tf":1.0},"1522":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"303":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"700":{"tf":1.0},"742":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"814":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"962":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0}}},"5":{"df":3,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"1149":{"tf":1.0},"1271":{"tf":1.0},"1379":{"tf":1.0},"458":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"1071":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":37,"docs":{"100":{"tf":1.0},"1045":{"tf":1.0},"115":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1403":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"176":{"tf":1.0},"180":{"tf":2.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":4,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1048":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.0}}},"df":2,"docs":{"443":{"tf":1.0},"53":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{"c":{"d":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"d":{"3":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1003":{"tf":1.0},"1015":{"tf":1.0},"1024":{"tf":1.0},"1046":{"tf":1.0},"1228":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.4142135623730951},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1346":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":62,"docs":{"1048":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1203":{"tf":1.0},"1242":{"tf":1.0},"1248":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"1437":{"tf":1.0},"144":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"357":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"591":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"762":{"tf":1.0},"785":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"881":{"tf":1.0},"914":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.0},"963":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0}}},"3":{".":{"1":{"0":{"df":2,"docs":{"549":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":8,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.0},"458":{"tf":1.0}}},"df":5,"docs":{"1079":{"tf":1.0},"1399":{"tf":1.0},"1445":{"tf":1.0},"310":{"tf":1.0},"902":{"tf":1.0}}},"1":{"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}},"2":{"df":2,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.4142135623730951}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"6":{"0":{"0":{"df":9,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"1307":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"1030":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1204":{"tf":1.0},"1248":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.4142135623730951},"581":{"tf":1.0},"700":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.0},"824":{"tf":1.0},"86":{"tf":1.0},"881":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1268":{"tf":1.0},"1271":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0}}},"4":{"df":1,"docs":{"465":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"987":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"1226":{"tf":1.0}}}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1273":{"tf":1.0},"1274":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"493":{"tf":1.0},"849":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"1":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"2":{"df":2,"docs":{"767":{"tf":1.0},"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}},"df":21,"docs":{"1171":{"tf":1.0},"1185":{"tf":1.0},"1205":{"tf":1.0},"1248":{"tf":1.0},"1287":{"tf":1.0},"1301":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"581":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":8,"docs":{"1305":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"625":{"tf":1.0}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":4,"docs":{"365":{"tf":1.0},"498":{"tf":1.0},"599":{"tf":1.0},"810":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":23,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.7320508075688772},"883":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"157":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"1185":{"tf":1.0},"1186":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"581":{"tf":1.0},"826":{"tf":1.0},"916":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1505":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1105":{"tf":1.0},"1528":{"tf":1.0},"250":{"tf":1.0},"352":{"tf":1.0},"584":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}},"k":{"df":1,"docs":{"911":{"tf":1.0}}}},"df":6,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.0},"255":{"tf":1.0},"501":{"tf":1.0},"900":{"tf":1.0}}},"4":{"df":3,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0}}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"7":{"0":{"0":{"df":5,"docs":{"1105":{"tf":1.0},"682":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"5":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"8":{"'":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"9":{"df":0,"docs":{},"f":{"b":{"9":{"d":{"8":{"8":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"1270":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1522":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1507":{"tf":1.0},"933":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1119":{"tf":1.0}}},"6":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1001":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1161":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1247":{"tf":1.0},"944":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1250":{"tf":1.0},"1251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1003":{"tf":1.4142135623730951},"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1333":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"374":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":3,"docs":{"1247":{"tf":1.0},"1248":{"tf":1.0},"31":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"1211":{"tf":1.4142135623730951},"1212":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1214":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1227":{"tf":1.0},"1234":{"tf":1.0},"1244":{"tf":1.0}}},"df":1,"docs":{"1145":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{"df":3,"docs":{"53":{"tf":1.0},"791":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"881":{"tf":1.7320508075688772},"925":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"981":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"937":{"tf":1.0},"977":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1102":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1149":{"tf":1.0},"1214":{"tf":1.0},"1290":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.4142135623730951},"823":{"tf":1.0},"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1490":{"tf":1.0}}}}}},"df":30,"docs":{"1061":{"tf":1.0},"1066":{"tf":1.0},"1092":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1174":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1477":{"tf":1.0},"1528":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.0},"352":{"tf":1.0},"423":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"584":{"tf":1.0},"610":{"tf":1.0},"656":{"tf":1.0},"92":{"tf":1.0},"942":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"810":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1070":{"tf":1.0},"1194":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":3,"docs":{"1154":{"tf":1.0},"151":{"tf":1.0},"992":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"766":{"tf":1.0}}}}}},"m":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"767":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":34,"docs":{"1071":{"tf":1.0},"1149":{"tf":1.0},"1158":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.0},"1403":{"tf":2.449489742783178},"1485":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"21":{"tf":1.0},"237":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.4142135623730951},"599":{"tf":1.0},"617":{"tf":1.0},"733":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"868":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1004":{"tf":1.0},"1012":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1476":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.0},"991":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1148":{"tf":1.0},"1194":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"789":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"d":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":47,"docs":{"106":{"tf":1.0},"1109":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1165":{"tf":1.0},"1180":{"tf":1.0},"1186":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1420":{"tf":1.0},"1480":{"tf":1.0},"1510":{"tf":1.0},"1526":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"473":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"553":{"tf":1.0},"580":{"tf":1.4142135623730951},"589":{"tf":1.0},"640":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"823":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0},"938":{"tf":1.0},"976":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1051":{"tf":1.0},"1083":{"tf":1.0},"1249":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1420":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"523":{"tf":1.0},"687":{"tf":1.0},"700":{"tf":1.0},"719":{"tf":1.0},"786":{"tf":1.0},"908":{"tf":1.0},"939":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0},"760":{"tf":2.23606797749979},"762":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"443":{"tf":1.0}}}}}}}}},"df":14,"docs":{"1166":{"tf":1.0},"1175":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"173":{"tf":1.0},"258":{"tf":1.0},"423":{"tf":1.0},"524":{"tf":1.0},"701":{"tf":1.0},"797":{"tf":1.0},"874":{"tf":1.0},"950":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1209":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"847":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"1118":{"tf":1.0},"320":{"tf":1.0},"4":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.0},"1069":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1002":{"tf":1.0},"1007":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}},"s":{"2":{"5":{"6":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1450":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1477":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1032":{"tf":1.0},"1254":{"tf":1.0},"1333":{"tf":1.0},"1427":{"tf":1.0},"178":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"918":{"tf":1.0},"934":{"tf":1.0},"944":{"tf":1.0},"973":{"tf":1.0}}}}}}},"df":2,"docs":{"1507":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":51,"docs":{"1006":{"tf":1.0},"1177":{"tf":1.0},"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1245":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"1423":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"454":{"tf":1.0},"518":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"695":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.4142135623730951},"850":{"tf":1.0},"86":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"981":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"616":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"382":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"642":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1385":{"tf":1.0},"654":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1363":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1362":{"tf":1.0},"420":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":4,"docs":{"1384":{"tf":1.0},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1088":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"581":{"tf":1.0},"696":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"921":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"587":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"653":{"tf":1.0},"723":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"558":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"846":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":2,"docs":{"269":{"tf":1.0},"288":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1361":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"523":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":14,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"545":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0},"419":{"tf":1.0},"519":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"794":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1517":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.7320508075688772},"143":{"tf":1.0},"241":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"347":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1213":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"1515":{"tf":1.0},"201":{"tf":1.0},"242":{"tf":2.23606797749979},"410":{"tf":1.0},"531":{"tf":1.0},"644":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1356":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1518":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.0},"738":{"tf":1.4142135623730951},"75":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"794":{"tf":1.4142135623730951},"822":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1148":{"tf":1.0},"1149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1047":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1140":{"tf":1.0},"1394":{"tf":1.4142135623730951},"681":{"tf":1.0},"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1140":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1399":{"tf":1.0},"518":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1302":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":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":{"545":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"641":{"tf":1.0},"701":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"648":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"558":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1021":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"637":{"tf":1.0},"703":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"412":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":3,"docs":{"407":{"tf":1.0},"524":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1362":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1148":{"tf":1.0},"1405":{"tf":1.0},"414":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"526":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1047":{"tf":1.0},"645":{"tf":1.0},"709":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"657":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"411":{"tf":1.0},"532":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1353":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"522":{"tf":1.0},"545":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"795":{"tf":1.0},"922":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"1375":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0}}}}}},"df":1,"docs":{"725":{"tf":1.0}},"u":{"df":1,"docs":{"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"558":{"tf":1.0},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"576":{"tf":1.0},"587":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"631":{"tf":1.0},"697":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"654":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"957":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"632":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"698":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"545":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1401":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"795":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1352":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":1,"docs":{"1401":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"419":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1369":{"tf":1.0},"349":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"520":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"420":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1356":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"527":{"tf":1.0},"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"142":{"tf":1.0},"1484":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"406":{"tf":1.0},"640":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1329":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"217":{"tf":1.0},"406":{"tf":1.0},"640":{"tf":1.0}}},":":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"1204":{"tf":1.0}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1332":{"tf":1.0},"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"606":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"=":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"287":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"769":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"604":{"tf":1.0},"606":{"tf":1.0},"616":{"tf":1.0},"769":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"708":{"tf":1.0}}}}},"i":{"d":{"df":14,"docs":{"1081":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1384":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"700":{"tf":1.4142135623730951},"949":{"tf":1.0},"957":{"tf":1.0},"999":{"tf":1.0}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"264":{"tf":1.0},"695":{"tf":1.0},"769":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"770":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.4142135623730951}},"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":1,"docs":{"382":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"76":{"tf":1.0},"770":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"76":{"tf":1.0},"770":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":566,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.0},"10":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1004":{"tf":1.0},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"1112":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.23606797749979},"1143":{"tf":1.4142135623730951},"1145":{"tf":2.449489742783178},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1166":{"tf":1.0},"117":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1175":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1194":{"tf":2.23606797749979},"1196":{"tf":1.0},"120":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1206":{"tf":2.6457513110645907},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.0},"1216":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.7320508075688772},"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1242":{"tf":1.7320508075688772},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1247":{"tf":2.6457513110645907},"1248":{"tf":2.6457513110645907},"1249":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1263":{"tf":1.0},"127":{"tf":2.449489742783178},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1277":{"tf":2.0},"128":{"tf":3.3166247903554},"129":{"tf":2.8284271247461903},"13":{"tf":1.4142135623730951},"130":{"tf":2.0},"1302":{"tf":1.0},"1318":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"1320":{"tf":1.0},"1321":{"tf":2.23606797749979},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1332":{"tf":2.8284271247461903},"1333":{"tf":3.3166247903554},"1334":{"tf":2.6457513110645907},"134":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"1390":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"1399":{"tf":3.4641016151377544},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":2.0},"1417":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"143":{"tf":2.0},"1430":{"tf":1.0},"1432":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"1460":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"147":{"tf":1.7320508075688772},"1476":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"1499":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":2.449489742783178},"1515":{"tf":1.7320508075688772},"1518":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"1530":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"172":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"223":{"tf":1.4142135623730951},"226":{"tf":2.6457513110645907},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"242":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"261":{"tf":2.6457513110645907},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.449489742783178},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":2.23606797749979},"327":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":2.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"35":{"tf":2.23606797749979},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":2.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":2.0},"436":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"478":{"tf":1.7320508075688772},"48":{"tf":1.0},"487":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"52":{"tf":1.0},"523":{"tf":2.23606797749979},"524":{"tf":1.0},"525":{"tf":1.0},"53":{"tf":3.0},"530":{"tf":1.7320508075688772},"531":{"tf":2.23606797749979},"532":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"54":{"tf":2.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":2.23606797749979},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"590":{"tf":1.0},"592":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.4142135623730951},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":2.449489742783178},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":2.6457513110645907},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.7320508075688772},"623":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.4142135623730951},"645":{"tf":2.0},"646":{"tf":1.0},"649":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"672":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.4142135623730951},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"700":{"tf":2.23606797749979},"701":{"tf":1.0},"702":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":2.23606797749979},"709":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":2.8284271247461903},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":2.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":2.23606797749979},"749":{"tf":2.0},"75":{"tf":1.4142135623730951},"751":{"tf":1.7320508075688772},"752":{"tf":1.7320508075688772},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.7320508075688772},"758":{"tf":1.4142135623730951},"76":{"tf":2.0},"761":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"769":{"tf":1.7320508075688772},"770":{"tf":1.0},"771":{"tf":2.0},"772":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":2.0},"79":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.1622776601683795},"82":{"tf":2.8284271247461903},"822":{"tf":1.0},"823":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":2.449489742783178},"831":{"tf":1.7320508075688772},"832":{"tf":1.4142135623730951},"833":{"tf":2.449489742783178},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.7320508075688772},"838":{"tf":1.0},"84":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.4142135623730951},"847":{"tf":2.6457513110645907},"848":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.4142135623730951},"863":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"879":{"tf":1.4142135623730951},"88":{"tf":4.47213595499958},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"896":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.4142135623730951},"913":{"tf":2.0},"915":{"tf":1.0},"92":{"tf":1.7320508075688772},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"953":{"tf":2.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.7320508075688772},"970":{"tf":1.0},"976":{"tf":2.449489742783178},"978":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"989":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":2.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}},"i":{"d":{"df":40,"docs":{"1045":{"tf":1.0},"1130":{"tf":1.0},"1186":{"tf":1.0},"1196":{"tf":1.0},"1226":{"tf":1.0},"1242":{"tf":1.0},"1245":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1361":{"tf":1.4142135623730951},"138":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1486":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"523":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"791":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.449489742783178},"913":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.4142135623730951},"990":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{":":{"'":{")":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"611":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"518":{"tf":1.0},"770":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0},"1399":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"615":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"990":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.0},"984":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"1143":{"tf":1.0},"1242":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"883":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1486":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1328":{"tf":2.0},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.0},"219":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":115,"docs":{"1":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1143":{"tf":2.449489742783178},"1144":{"tf":2.0},"1145":{"tf":1.7320508075688772},"118":{"tf":1.0},"1194":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1328":{"tf":2.6457513110645907},"1329":{"tf":3.605551275463989},"1330":{"tf":3.3166247903554},"1360":{"tf":1.0},"1361":{"tf":2.23606797749979},"1362":{"tf":2.0},"1363":{"tf":1.0},"138":{"tf":2.8284271247461903},"1383":{"tf":1.0},"1384":{"tf":2.23606797749979},"1385":{"tf":2.0},"1386":{"tf":1.0},"1398":{"tf":1.0},"1399":{"tf":2.0},"142":{"tf":2.6457513110645907},"1423":{"tf":3.1622776601683795},"145":{"tf":1.4142135623730951},"1483":{"tf":1.0},"1484":{"tf":2.23606797749979},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1487":{"tf":1.7320508075688772},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"256":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"420":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"523":{"tf":2.449489742783178},"524":{"tf":1.7320508075688772},"525":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"654":{"tf":1.7320508075688772},"700":{"tf":2.449489742783178},"701":{"tf":1.7320508075688772},"702":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":2.0},"786":{"tf":1.0},"799":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"852":{"tf":1.0},"858":{"tf":1.4142135623730951},"875":{"tf":1.0},"88":{"tf":3.872983346207417},"886":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"980":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"548":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1226":{"tf":1.0},"13":{"tf":1.0},"1332":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":2.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.4142135623730951},"663":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"938":{"tf":1.0},"976":{"tf":1.0}},"r":{"df":2,"docs":{"1060":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"1003":{"tf":1.0},"1250":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"1472":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":79,"docs":{"1010":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1028":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1038":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1044":{"tf":1.0},"1045":{"tf":1.0},"1047":{"tf":2.0},"1048":{"tf":1.0},"1050":{"tf":2.23606797749979},"1053":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1227":{"tf":1.0},"1230":{"tf":1.0},"1245":{"tf":1.0},"1254":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":2.449489742783178},"1472":{"tf":2.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":2.0},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"334":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"375":{"tf":1.0},"404":{"tf":1.0},"418":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"608":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":1.0},"980":{"tf":1.4142135623730951},"984":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.7320508075688772}}}}}}}}},"i":{"a":{"df":1,"docs":{"1343":{"tf":2.0}}},"c":{"df":1,"docs":{"1305":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"w":{"df":19,"docs":{"1054":{"tf":1.0},"1071":{"tf":1.0},"1108":{"tf":1.0},"1209":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"446":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"934":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"978":{"tf":1.4142135623730951},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1447":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1485":{"tf":2.0},"43":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}},"n":{"df":3,"docs":{"112":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1085":{"tf":1.0},"1151":{"tf":1.0},"1163":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1455":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"477":{"tf":1.0},"509":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"951":{"tf":1.0},"964":{"tf":1.0},"970":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1451":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"1111":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"1480":{"tf":1.0},"198":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.0},"519":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"182":{"tf":1.0},"35":{"tf":1.7320508075688772},"49":{"tf":1.0},"581":{"tf":1.0},"765":{"tf":1.0}}},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.0}}},"z":{"df":7,"docs":{"1256":{"tf":1.0},"156":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"241":{"tf":1.0},"412":{"tf":1.0},"531":{"tf":1.4142135623730951},"533":{"tf":1.0},"646":{"tf":1.0},"708":{"tf":1.4142135623730951},"710":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1194":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"528":{"tf":1.0},"705":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"414":{"tf":1.0},"648":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":65,"docs":{"1042":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1172":{"tf":2.0},"1179":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1276":{"tf":1.0},"1290":{"tf":1.0},"1355":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":2.23606797749979},"1402":{"tf":2.23606797749979},"1437":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1525":{"tf":1.0},"1526":{"tf":1.0},"257":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"428":{"tf":1.0},"452":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"486":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"594":{"tf":1.0},"602":{"tf":1.0},"617":{"tf":1.0},"619":{"tf":1.4142135623730951},"65":{"tf":1.0},"662":{"tf":1.4142135623730951},"685":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"748":{"tf":1.0},"810":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0},"91":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1276":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1276":{"tf":1.0},"486":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"434":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1149":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1355":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"1267":{"tf":1.0},"1526":{"tf":1.0},"483":{"tf":1.0},"493":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":4,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"507":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":5,"docs":{"1148":{"tf":1.0},"1355":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1281":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1526":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1526":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":2.0},"1287":{"tf":1.4142135623730951},"1288":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"479":{"tf":2.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"509":{"tf":2.0},"510":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":33,"docs":{"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"348":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"186":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1082":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1279":{"tf":1.0},"1358":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"186":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"1032":{"tf":1.0},"1086":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"257":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"548":{"tf":1.0},"576":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}},"df":11,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1482":{"tf":1.0},"192":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"501":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"1042":{"tf":1.0},"1137":{"tf":1.0},"1295":{"tf":1.0},"21":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1116":{"tf":1.0},"1194":{"tf":1.0},"204":{"tf":1.0}}}}},"v":{"df":12,"docs":{"11":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"288":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"617":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"115":{"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":10,"docs":{"365":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"599":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"287":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"109":{"tf":1.0},"1176":{"tf":1.0},"1210":{"tf":1.0},"1294":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"549":{"tf":1.0},"729":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"866":{"tf":1.0},"873":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1186":{"tf":1.0},"1345":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"676":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"956":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"886":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":1,"docs":{"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"s":{"3":{":":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1071":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1130":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"742":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"790":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1197":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1237":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"575":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1151":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1217":{"tf":1.0},"1392":{"tf":2.6457513110645907},"684":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"420":{"tf":1.0},"654":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"808":{"tf":1.0},"816":{"tf":1.7320508075688772},"823":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1336":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":59,"docs":{"1148":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1301":{"tf":2.23606797749979},"1305":{"tf":2.23606797749979},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.23606797749979},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1378":{"tf":2.23606797749979},"1382":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.6457513110645907},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0},"383":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"1148":{"tf":1.0},"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":47,"docs":{"1059":{"tf":1.0},"1067":{"tf":1.0},"1323":{"tf":2.8284271247461903},"134":{"tf":2.449489742783178},"135":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.449489742783178},"1421":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":2.449489742783178},"1432":{"tf":1.0},"1433":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.449489742783178},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"206":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"371":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":2.23606797749979},"522":{"tf":2.0},"605":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"65":{"tf":1.0},"696":{"tf":2.0},"699":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1326":{"tf":1.0},"194":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"395":{"tf":1.0},"629":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":8,"docs":{"1032":{"tf":1.0},"1254":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.4142135623730951},"973":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"440":{"tf":1.0},"946":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1194":{"tf":1.0},"1208":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0},"62":{"tf":1.0},"901":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":32,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1403":{"tf":2.6457513110645907},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"423":{"tf":1.0},"502":{"tf":1.0},"60":{"tf":1.0},"603":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"845":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.7320508075688772},"942":{"tf":1.0},"951":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"969":{"tf":2.0},"988":{"tf":1.0},"995":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":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":{"1403":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":35,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1206":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1442":{"tf":2.23606797749979},"1455":{"tf":1.0},"147":{"tf":1.0},"1474":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"503":{"tf":2.0},"6":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.7320508075688772},"669":{"tf":1.0},"679":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"816":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"944":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1194":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1486":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"783":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"899":{"tf":1.0},"995":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1109":{"tf":1.0}}}}}}}}},"df":1,"docs":{"181":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1295":{"tf":1.0},"1432":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.0},"495":{"tf":1.0},"73":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0}}}},"df":3,"docs":{"255":{"tf":1.0},"765":{"tf":1.0},"916":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":20,"docs":{"1055":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1087":{"tf":1.0},"1089":{"tf":1.0},"1092":{"tf":1.0},"1220":{"tf":1.0},"1451":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.4142135623730951},"381":{"tf":1.0},"427":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"847":{"tf":1.0},"916":{"tf":1.0}}}}},"df":1,"docs":{"1097":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1287":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":71,"docs":{"1148":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":2.449489742783178},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.3166247903554},"1305":{"tf":2.6457513110645907},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.6457513110645907},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1359":{"tf":2.23606797749979},"1361":{"tf":1.7320508075688772},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":2.23606797749979},"1369":{"tf":2.449489742783178},"1378":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1399":{"tf":3.7416573867739413},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.3166247903554},"1405":{"tf":2.23606797749979},"1515":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"458":{"tf":2.0},"459":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":2.6457513110645907},"477":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}},"r":{"df":3,"docs":{"981":{"tf":1.0},"989":{"tf":1.0},"991":{"tf":1.0}}}},"df":23,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.4142135623730951},"1065":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":2.449489742783178},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1512":{"tf":2.0},"1513":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":2.23606797749979},"255":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0},"893":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1066":{"tf":1.0},"1454":{"tf":1.0},"1512":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}}}}}},"s":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1452":{"tf":1.0},"1454":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.0},"64":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"1197":{"tf":1.0},"1422":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0},"805":{"tf":1.0},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"1054":{"tf":1.4142135623730951},"1055":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1057":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.449489742783178},"1489":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1511":{"tf":1.0},"1528":{"tf":1.0},"1531":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"536":{"tf":1.0},"564":{"tf":1.0},"722":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"901":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1011":{"tf":1.0},"1061":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1510":{"tf":1.0},"1520":{"tf":1.0},"171":{"tf":1.4142135623730951},"974":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1503":{"tf":1.0},"711":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1312":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1119":{"tf":1.0}}}}}},"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"760":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":30,"docs":{"1021":{"tf":1.0},"1045":{"tf":1.0},"1091":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"129":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"404":{"tf":1.0},"45":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"53":{"tf":1.4142135623730951},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":47,"docs":{"1013":{"tf":1.0},"1015":{"tf":1.0},"1029":{"tf":1.0},"1077":{"tf":1.0},"110":{"tf":1.0},"1108":{"tf":1.0},"1119":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1192":{"tf":1.0},"1196":{"tf":1.0},"1249":{"tf":1.0},"1261":{"tf":1.0},"1333":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"1482":{"tf":1.0},"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"244":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"607":{"tf":1.0},"615":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"739":{"tf":1.0},"751":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"925":{"tf":1.0},"943":{"tf":1.0},"960":{"tf":1.0},"980":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":46,"docs":{"107":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.0},"1324":{"tf":1.0},"1334":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"1381":{"tf":1.0},"1425":{"tf":1.0},"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"188":{"tf":1.0},"216":{"tf":1.0},"327":{"tf":1.0},"334":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"519":{"tf":1.0},"547":{"tf":1.0},"555":{"tf":1.0},"576":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"75":{"tf":1.0},"758":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":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":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1315":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1390":{"tf":1.7320508075688772},"206":{"tf":1.0},"237":{"tf":1.0},"311":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1033":{"tf":1.0}}}}}},"df":30,"docs":{"1145":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1206":{"tf":1.0},"1247":{"tf":1.7320508075688772},"1248":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1355":{"tf":2.6457513110645907},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.0},"1361":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1384":{"tf":1.0},"226":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"426":{"tf":2.0},"427":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.0},"883":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"899":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"173":{"tf":1.0},"21":{"tf":1.0},"439":{"tf":1.0},"54":{"tf":1.0}}}}},"df":1,"docs":{"804":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":36,"docs":{"1140":{"tf":1.0},"1161":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1292":{"tf":1.0},"1310":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.4142135623730951},"249":{"tf":1.0},"30":{"tf":1.0},"361":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"595":{"tf":1.0},"673":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"1310":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"856":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"804":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1215":{"tf":1.0},"1453":{"tf":1.0},"243":{"tf":1.0},"928":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1077":{"tf":1.0},"1295":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"831":{"tf":1.0},"863":{"tf":1.0}}}},"w":{"df":4,"docs":{"1295":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"1042":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1161":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1009":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1191":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1297":{"tf":1.0},"1311":{"tf":1.0},"1452":{"tf":2.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"433":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1306":{"tf":1.0},"250":{"tf":1.4142135623730951},"725":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1173":{"tf":1.0},"1417":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1502":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.4142135623730951},"934":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1083":{"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":1,"docs":{"1182":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1330":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1346":{"tf":1.0},"255":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"108":{"tf":1.0},"353":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951}}}}},"d":{"df":19,"docs":{"1194":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"321":{"tf":1.0},"327":{"tf":1.0},"54":{"tf":1.0},"548":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"753":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"978":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1305":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"879":{"tf":1.0},"883":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"1375":{"tf":1.0},"1404":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":23,"docs":{"1129":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"788":{"tf":1.0},"811":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1222":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"h":{"df":22,"docs":{"1007":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1036":{"tf":1.0},"1135":{"tf":1.0},"1145":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.4142135623730951},"125":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"15":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"451":{"tf":1.0},"530":{"tf":1.0},"707":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"88":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":12,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1154":{"tf":1.0},"779":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1080":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"473":{"tf":2.0},"818":{"tf":1.0},"940":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1035":{"tf":1.0},"35":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"837":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"1451":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1512":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1067":{"tf":1.4142135623730951},"1071":{"tf":1.4142135623730951},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"381":{"tf":1.0},"404":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"19":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":24,"docs":{"1":{"tf":1.0},"1078":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1296":{"tf":1.0},"1305":{"tf":1.0},"1409":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"453":{"tf":1.0},"481":{"tf":1.0},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"70":{"tf":1.0},"758":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":20,"docs":{"1069":{"tf":1.0},"1075":{"tf":1.0},"1136":{"tf":1.0},"1207":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"304":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.0},"587":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"1015":{"tf":1.7320508075688772},"1018":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1024":{"tf":1.0},"1080":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"277":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1101":{"tf":1.0},"1103":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"585":{"tf":1.0},"871":{"tf":1.0},"950":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"761":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1403":{"tf":1.0},"31":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":1,"docs":{"1379":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"474":{"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":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"1148":{"tf":1.0},"1174":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"361":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"517":{"tf":1.0},"595":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"694":{"tf":1.0},"726":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}}},"df":1,"docs":{"1356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"911":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"58":{"tf":1.0},"911":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"1083":{"tf":1.0},"1194":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1418":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}}}}}},"df":4,"docs":{"1213":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1244":{"tf":1.0},"760":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1106":{"tf":1.0},"249":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"258":{"tf":1.0},"292":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1154":{"tf":3.0},"1165":{"tf":2.449489742783178},"1296":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":25,"docs":{"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1108":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1295":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"1451":{"tf":1.0},"182":{"tf":1.0},"473":{"tf":2.0},"925":{"tf":1.0},"93":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":8,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"1339":{"tf":1.0},"1480":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"739":{"tf":1.4142135623730951},"792":{"tf":1.0},"836":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":3,"docs":{"51":{"tf":1.0},"730":{"tf":1.0},"792":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":31,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"104":{"tf":1.0},"1320":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":4,"docs":{"1095":{"tf":1.0},"552":{"tf":1.0},"586":{"tf":1.7320508075688772},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"261":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"930":{"tf":1.4142135623730951},"939":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"34":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"929":{"tf":2.0},"939":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1403":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1194":{"tf":1.0},"1212":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.0},"61":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"929":{"tf":1.0},"972":{"tf":1.0},"988":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"1011":{"tf":1.0},"1219":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1456":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1509":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"664":{"tf":1.0},"780":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"940":{"tf":1.0},"942":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1174":{"tf":1.0},"59":{"tf":1.0},"951":{"tf":1.0},"973":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1137":{"tf":1.0},"1221":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.0},"620":{"tf":1.0},"763":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1021":{"tf":1.0},"82":{"tf":1.4142135623730951},"925":{"tf":2.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1250":{"tf":1.0}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"1144":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":76,"docs":{"1109":{"tf":1.0},"1166":{"tf":1.0},"1200":{"tf":1.0},"1208":{"tf":1.0},"1260":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"142":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1494":{"tf":1.0},"1498":{"tf":1.0},"1528":{"tf":1.7320508075688772},"188":{"tf":1.0},"205":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"408":{"tf":1.4142135623730951},"420":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"603":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"642":{"tf":1.4142135623730951},"654":{"tf":1.0},"702":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"96":{"tf":1.0},"970":{"tf":1.0},"979":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1529":{"tf":1.0},"967":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1421":{"tf":1.0},"1433":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"871":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1105":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"682":{"tf":1.0},"908":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"960":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"24":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"i":{"/":{"c":{"d":{"df":3,"docs":{"1157":{"tf":1.0},"255":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":11,"docs":{"936":{"tf":1.7320508075688772},"937":{"tf":1.4142135623730951},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":2.0},"975":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.0}}}},"p":{"df":1,"docs":{"108":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":36,"docs":{"1152":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.0},"429":{"tf":1.0},"498":{"tf":1.0},"516":{"tf":1.4142135623730951},"541":{"tf":1.0},"588":{"tf":1.0},"593":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.4142135623730951},"619":{"tf":1.0},"693":{"tf":1.4142135623730951},"711":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"969":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"960":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1018":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"751":{"tf":1.0},"757":{"tf":1.0}},"i":{"df":3,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"753":{"tf":1.0}}}}}}},"u":{"d":{"df":5,"docs":{"831":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"1168":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"312":{"tf":1.0}}}}},"r":{"df":8,"docs":{"170":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"929":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1229":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1347":{"tf":1.7320508075688772},"139":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1497":{"tf":1.0},"1501":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.7320508075688772},"359":{"tf":1.0},"4":{"tf":1.4142135623730951},"433":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"907":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.4142135623730951},"427":{"tf":1.0},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"667":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":44,"docs":{"1149":{"tf":1.0},"1152":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1265":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1359":{"tf":2.6457513110645907},"1379":{"tf":1.0},"1382":{"tf":2.23606797749979},"1493":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"427":{"tf":2.6457513110645907},"429":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":2.6457513110645907},"447":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"667":{"tf":2.0},"670":{"tf":1.7320508075688772},"672":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":2.23606797749979},"719":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"446":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"554":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"u":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1064":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1089":{"tf":1.0},"1439":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1310":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.0}}}}},"df":33,"docs":{"1154":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1345":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.4142135623730951},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"196":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"320":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.0},"679":{"tf":1.0},"711":{"tf":1.0},"748":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.7320508075688772},"822":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}}},"df":1,"docs":{"858":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1076":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"88":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1304":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.0},"213":{"tf":1.0},"786":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"302":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1396":{"tf":1.0},"152":{"tf":1.0},"345":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"572":{"tf":1.0},"657":{"tf":1.0},"753":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"479":{"tf":1.0},"509":{"tf":1.0},"996":{"tf":2.0}}},"m":{"a":{"df":3,"docs":{"138":{"tf":1.0},"1436":{"tf":1.0},"1479":{"tf":1.0}},"n":{"d":{"df":43,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"1333":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1359":{"tf":1.0},"138":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1458":{"tf":1.0},"1501":{"tf":1.0},"1524":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"255":{"tf":1.0},"4":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"67":{"tf":1.0},"979":{"tf":1.0},"996":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":25,"docs":{"1084":{"tf":1.0},"1194":{"tf":2.0},"169":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"747":{"tf":1.0},"833":{"tf":1.0},"852":{"tf":2.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"860":{"tf":2.6457513110645907},"861":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.7320508075688772},"875":{"tf":1.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1317":{"tf":1.0},"140":{"tf":1.0},"1424":{"tf":1.0},"1428":{"tf":1.0},"1443":{"tf":1.0},"1502":{"tf":1.0},"1528":{"tf":1.0},"207":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"451":{"tf":1.0},"547":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0},"678":{"tf":1.0},"724":{"tf":1.0},"727":{"tf":1.0},"741":{"tf":1.0},"925":{"tf":1.0},"93":{"tf":1.0},"976":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1020":{"tf":1.0},"1042":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"422":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"663":{"tf":1.0},"88":{"tf":1.0},"910":{"tf":1.0},"927":{"tf":1.0},"955":{"tf":1.0},"964":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1328":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"753":{"tf":1.0}}}},"r":{"df":3,"docs":{"231":{"tf":1.0},"922":{"tf":1.0},"944":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1048":{"tf":1.0},"973":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"1023":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1292":{"tf":1.0},"1432":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1528":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"353":{"tf":1.4142135623730951},"451":{"tf":1.0},"585":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"711":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"856":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1077":{"tf":1.0},"1078":{"tf":1.0},"1087":{"tf":1.0},"1296":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":106,"docs":{"11":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1256":{"tf":1.0},"1268":{"tf":1.0},"1312":{"tf":2.0},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1347":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1370":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":2.0},"1400":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1487":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"370":{"tf":1.4142135623730951},"382":{"tf":1.0},"385":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"480":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"604":{"tf":1.4142135623730951},"616":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"820":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"83":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0},"902":{"tf":1.0},"970":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":12,"docs":{"1086":{"tf":1.0},"1089":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.0},"1297":{"tf":1.0},"17":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"593":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"1010":{"tf":1.0},"1026":{"tf":1.0},"1033":{"tf":1.0},"11":{"tf":1.0},"1166":{"tf":1.0},"1421":{"tf":1.4142135623730951},"188":{"tf":1.0},"37":{"tf":1.0},"62":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1079":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"51":{"tf":1.0},"729":{"tf":1.0},"733":{"tf":1.0},"740":{"tf":1.0},"753":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"1161":{"tf":1.0},"741":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"501":{"tf":1.0},"729":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"0":{"tf":1.0},"1173":{"tf":1.0},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"290":{"tf":1.0},"60":{"tf":1.0},"898":{"tf":1.0},"910":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.0},"1010":{"tf":1.0},"1052":{"tf":1.7320508075688772},"918":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":2.0},"996":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1036":{"tf":1.0},"1254":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"789":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"455":{"tf":1.0},"512":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"552":{"tf":1.7320508075688772},"579":{"tf":2.0},"586":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1119":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"54":{"tf":1.0},"757":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0}}}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1051":{"tf":1.0},"1129":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1047":{"tf":1.0},"139":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.4142135623730951},"661":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1140":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.7320508075688772},"595":{"tf":1.0},"611":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"112":{"tf":1.0},"1140":{"tf":2.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1419":{"tf":1.0},"142":{"tf":1.0},"1428":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1460":{"tf":1.0},"1467":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"150":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"378":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.7320508075688772},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"485":{"tf":1.0},"544":{"tf":1.0},"595":{"tf":1.0},"611":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.4142135623730951},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":2.0},"892":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":2.23606797749979},"925":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":47,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1301":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1495":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"378":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"518":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":204,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1056":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1065":{"tf":1.0},"1070":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1139":{"tf":1.0},"116":{"tf":1.0},"1168":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"120":{"tf":1.0},"1206":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1292":{"tf":1.0},"1296":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.0},"1341":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.4142135623730951},"139":{"tf":1.0},"1394":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1430":{"tf":1.0},"1434":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":2.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":2.23606797749979},"1450":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1453":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1460":{"tf":2.0},"1461":{"tf":1.7320508075688772},"1467":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1489":{"tf":1.0},"149":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"150":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.4142135623730951},"160":{"tf":1.0},"182":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"361":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"462":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"564":{"tf":1.0},"595":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"71":{"tf":1.0},"712":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"737":{"tf":1.0},"740":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"769":{"tf":1.0},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"829":{"tf":1.0},"833":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.0},"887":{"tf":1.4142135623730951},"889":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"969":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"1012":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1475":{"tf":1.0},"318":{"tf":1.0},"824":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1082":{"tf":1.0},"1287":{"tf":1.0},"1522":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1480":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1084":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1179":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":2.23606797749979},"318":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"678":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"30":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"954":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1051":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1194":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"37":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1033":{"tf":1.0},"1039":{"tf":1.0},"1049":{"tf":1.0},"1062":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1104":{"tf":1.0},"1172":{"tf":1.0},"1279":{"tf":1.0},"1455":{"tf":1.0},"247":{"tf":1.0},"320":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"942":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1109":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"874":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":3,"docs":{"1358":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"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":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.0},"327":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"419":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}}},"j":{"a":{"c":{"df":4,"docs":{"1282":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"546":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1127":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"384":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"`":{"a":{"d":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"518":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":7,"docs":{"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"408":{"tf":1.0},"420":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"525":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"418":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":3,"docs":{"1365":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":8,"docs":{"1351":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"349":{"tf":1.4142135623730951},"397":{"tf":1.0},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"327":{"tf":1.0},"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"461":{"tf":1.0},"465":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"525":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"h":{"a":{"df":1,"docs":{"535":{"tf":1.0}},"r":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1351":{"tf":1.0},"1362":{"tf":1.0},"403":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}}}},"df":3,"docs":{"391":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1362":{"tf":1.0},"1399":{"tf":1.0},"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"420":{"tf":1.7320508075688772},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"400":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"458":{"tf":1.0},"529":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"770":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"358":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1355":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}}},"t":{"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":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"376":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1218":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"1352":{"tf":2.0},"1363":{"tf":2.0},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"973":{"tf":1.0}}}}},"df":171,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1140":{"tf":2.449489742783178},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1273":{"tf":2.23606797749979},"1276":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.4641016151377544},"1304":{"tf":1.0},"1305":{"tf":3.1622776601683795},"1306":{"tf":2.6457513110645907},"1307":{"tf":2.23606797749979},"1310":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1315":{"tf":2.0},"1349":{"tf":1.0},"1351":{"tf":2.0},"1352":{"tf":2.0},"1353":{"tf":2.23606797749979},"1355":{"tf":2.449489742783178},"1356":{"tf":2.6457513110645907},"1358":{"tf":2.0},"1359":{"tf":2.6457513110645907},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":2.0},"1365":{"tf":3.7416573867739413},"1367":{"tf":1.7320508075688772},"1369":{"tf":3.7416573867739413},"1399":{"tf":4.0},"1401":{"tf":3.872983346207417},"1403":{"tf":4.898979485566356},"1405":{"tf":3.3166247903554},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1522":{"tf":3.4641016151377544},"1524":{"tf":2.23606797749979},"1526":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":2.0},"358":{"tf":2.0},"361":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":3.1622776601683795},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":2.6457513110645907},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"443":{"tf":2.449489742783178},"458":{"tf":2.449489742783178},"459":{"tf":2.23606797749979},"461":{"tf":1.7320508075688772},"463":{"tf":2.23606797749979},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":2.449489742783178},"477":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"507":{"tf":2.449489742783178},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"770":{"tf":1.7320508075688772},"772":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"9":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1121":{"tf":1.0},"51":{"tf":1.0},"746":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1152":{"tf":1.0},"1399":{"tf":1.0},"517":{"tf":1.0},"541":{"tf":1.0},"694":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"766":{"tf":1.4142135623730951}}}},"m":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1332":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"170":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"733":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.4142135623730951},"757":{"tf":1.0},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1186":{"tf":1.0},"1422":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"185":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"489":{"tf":1.0},"529":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"66":{"tf":1.0},"706":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"836":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"950":{"tf":1.7320508075688772},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"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":{"1270":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":121,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1091":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":2.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"1374":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"167":{"tf":2.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"238":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.4142135623730951},"349":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"383":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"426":{"tf":1.0},"442":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"601":{"tf":1.0},"605":{"tf":1.0},"614":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"725":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"780":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":2.0},"788":{"tf":2.0},"791":{"tf":1.7320508075688772},"792":{"tf":1.4142135623730951},"794":{"tf":2.0},"796":{"tf":2.0},"80":{"tf":1.7320508075688772},"831":{"tf":1.0},"836":{"tf":1.7320508075688772},"838":{"tf":2.0},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":3.0},"883":{"tf":1.0},"914":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"855":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":34,"docs":{"108":{"tf":1.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"228":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"700":{"tf":1.4142135623730951},"727":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":9,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"209":{"tf":1.0},"38":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"940":{"tf":1.0},"983":{"tf":1.0},"995":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1323":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"616":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"1130":{"tf":1.4142135623730951},"1143":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1330":{"tf":3.605551275463989},"1336":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.449489742783178},"1404":{"tf":1.0},"209":{"tf":2.23606797749979},"217":{"tf":1.0},"224":{"tf":1.4142135623730951},"276":{"tf":1.0},"406":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"728":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"1399":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"463":{"tf":1.0},"593":{"tf":1.0},"64":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"610":{"tf":1.0}}},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"1236":{"tf":1.0},"1256":{"tf":1.0},"47":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":2.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.0}}},"t":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1261":{"tf":1.0},"172":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"1528":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"682":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.7320508075688772},"819":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"1447":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.0},"329":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"455":{"tf":1.0},"512":{"tf":1.0},"515":{"tf":1.0},"557":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"692":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"777":{"tf":1.0},"807":{"tf":1.0},"912":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1467":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1495":{"tf":1.0},"1528":{"tf":1.4142135623730951},"248":{"tf":1.0},"451":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1142":{"tf":1.0},"1493":{"tf":1.0},"1528":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1171":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1070":{"tf":1.0},"1102":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1083":{"tf":1.0},"1505":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1155":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1154":{"tf":2.8284271247461903},"1155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1153":{"tf":1.0},"1154":{"tf":2.23606797749979},"1155":{"tf":1.7320508075688772},"1156":{"tf":2.0},"1158":{"tf":1.0}}}},"df":12,"docs":{"1137":{"tf":1.0},"1219":{"tf":1.0},"1221":{"tf":1.0},"1298":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.4142135623730951},"620":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1510":{"tf":1.0},"1520":{"tf":1.0},"1530":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"1161":{"tf":1.0},"299":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":292,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1043":{"tf":1.0},"1047":{"tf":1.0},"1052":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1094":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.0},"1112":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"1124":{"tf":1.0},"1135":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"116":{"tf":1.0},"1161":{"tf":1.0},"1165":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.7320508075688772},"120":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"124":{"tf":1.7320508075688772},"1242":{"tf":1.0},"127":{"tf":3.1622776601683795},"1278":{"tf":1.0},"1300":{"tf":2.23606797749979},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1310":{"tf":2.0},"1318":{"tf":2.0},"132":{"tf":2.0},"1320":{"tf":1.4142135623730951},"1323":{"tf":3.872983346207417},"1325":{"tf":1.7320508075688772},"1328":{"tf":2.449489742783178},"1330":{"tf":2.449489742783178},"1332":{"tf":2.8284271247461903},"1336":{"tf":1.7320508075688772},"1338":{"tf":1.0},"134":{"tf":3.1622776601683795},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1346":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":2.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":2.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.449489742783178},"1405":{"tf":1.0},"141":{"tf":1.7320508075688772},"1410":{"tf":1.0},"1419":{"tf":3.872983346207417},"142":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1425":{"tf":1.7320508075688772},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1467":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"148":{"tf":1.0},"1484":{"tf":1.4142135623730951},"1487":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":2.23606797749979},"1500":{"tf":1.4142135623730951},"151":{"tf":2.0},"1512":{"tf":1.0},"1515":{"tf":2.0},"1517":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"192":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"327":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.7320508075688772},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.7320508075688772},"587":{"tf":1.4142135623730951},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"61":{"tf":1.0},"622":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"652":{"tf":1.4142135623730951},"653":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"71":{"tf":1.4142135623730951},"719":{"tf":1.0},"72":{"tf":2.6457513110645907},"721":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":2.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"748":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.449489742783178},"771":{"tf":1.4142135623730951},"773":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"8":{"tf":2.0},"80":{"tf":2.0},"804":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":3.3166247903554},"881":{"tf":1.0},"882":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.4142135623730951},"921":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"845":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1361":{"tf":1.4142135623730951},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.0}}}}}},"df":6,"docs":{"332":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"515":{"tf":1.0},"536":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.7320508075688772}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1151":{"tf":1.0},"507":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":18,"docs":{"1179":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"431":{"tf":1.7320508075688772},"540":{"tf":1.0},"543":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":32,"docs":{"1043":{"tf":1.0},"1140":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"356":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"590":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"696":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"782":{"tf":1.0}}},"df":4,"docs":{"1390":{"tf":1.0},"28":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1072":{"tf":1.0},"1278":{"tf":1.0},"1355":{"tf":1.0},"1490":{"tf":1.4142135623730951},"339":{"tf":1.0},"491":{"tf":1.0},"566":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"29":{"tf":1.0},"47":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1042":{"tf":1.0},"1052":{"tf":1.0},"1194":{"tf":1.0},"1450":{"tf":1.0},"1515":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1099":{"tf":1.0},"1154":{"tf":1.0},"1404":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"1119":{"tf":1.0},"841":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":100,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1173":{"tf":1.0},"1176":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.0},"1212":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1237":{"tf":1.0},"1262":{"tf":1.0},"127":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1415":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1432":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1458":{"tf":1.0},"1463":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"341":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.4142135623730951},"568":{"tf":1.0},"617":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"724":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"792":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"984":{"tf":1.4142135623730951},"995":{"tf":1.0}},"i":{"df":5,"docs":{"1010":{"tf":1.0},"1029":{"tf":1.0},"1254":{"tf":1.0},"24":{"tf":1.4142135623730951},"984":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"1268":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"465":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"1302":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"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":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}},"df":46,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1003":{"tf":1.0},"1011":{"tf":1.0},"1115":{"tf":1.0},"1213":{"tf":1.0},"1220":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1298":{"tf":1.0},"1328":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1423":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"15":{"tf":1.0},"1510":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"219":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"407":{"tf":1.0},"524":{"tf":1.0},"57":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.4142135623730951},"606":{"tf":1.0},"641":{"tf":1.0},"701":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"808":{"tf":1.0},"827":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"996":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1017":{"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":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1212":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"822":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1302":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":81,"docs":{"1044":{"tf":1.4142135623730951},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":2.0},"1124":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1197":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":2.0},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"134":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1441":{"tf":1.0},"1456":{"tf":1.0},"1460":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":1.7320508075688772},"284":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"446":{"tf":1.0},"49":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"593":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.4142135623730951},"72":{"tf":1.0},"738":{"tf":2.0},"739":{"tf":1.0},"742":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"759":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.8284271247461903},"833":{"tf":1.0},"98":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"f":{"df":2,"docs":{"1095":{"tf":1.0},"1097":{"tf":1.0}}}}},"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"294":{"tf":1.0},"298":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"845":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"238":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1140":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":2.0},"1078":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1087":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1295":{"tf":1.7320508075688772},"1296":{"tf":1.4142135623730951},"1297":{"tf":2.0},"1298":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1316":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"16":{"tf":1.0},"64":{"tf":1.0},"779":{"tf":1.0},"871":{"tf":1.0}},"e":{"(":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"595":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":114,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1067":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1093":{"tf":1.0},"11":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":2.449489742783178},"1149":{"tf":1.0},"116":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.0},"1256":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1290":{"tf":1.0},"1298":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1422":{"tf":1.0},"1430":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"21":{"tf":1.0},"312":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"46":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"532":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"548":{"tf":1.0},"55":{"tf":1.4142135623730951},"575":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.7320508075688772},"648":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"709":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.0},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1304":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"df":31,"docs":{"1045":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"1339":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"739":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.7320508075688772},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"808":{"tf":1.4142135623730951},"816":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"648":{"tf":1.0},"705":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1399":{"tf":1.0},"1507":{"tf":1.0},"812":{"tf":1.0},"933":{"tf":1.0}}}},"df":23,"docs":{"132":{"tf":2.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1530":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"73":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"420":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.0},"856":{"tf":1.4142135623730951},"859":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":20,"docs":{"1191":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1293":{"tf":1.0},"1428":{"tf":1.0},"1439":{"tf":1.0},"1444":{"tf":1.0},"1496":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"311":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"66":{"tf":1.0},"679":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"935":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"1041":{"tf":1.0},"11":{"tf":1.4142135623730951},"1441":{"tf":1.0},"21":{"tf":1.0},"308":{"tf":1.0},"901":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"1164":{"tf":1.0},"1166":{"tf":1.0},"1422":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"669":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1505":{"tf":1.0},"434":{"tf":1.0},"489":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"256":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":64,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1304":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1355":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.7320508075688772},"1440":{"tf":1.0},"1441":{"tf":1.0},"1449":{"tf":2.449489742783178},"1452":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772},"298":{"tf":1.0},"338":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"418":{"tf":1.0},"473":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.4142135623730951},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"565":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.4142135623730951},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"72":{"tf":1.0},"742":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"996":{"tf":1.0}}}}}},"df":46,"docs":{"1103":{"tf":1.0},"1120":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.7320508075688772},"1392":{"tf":2.23606797749979},"1394":{"tf":1.7320508075688772},"1402":{"tf":2.23606797749979},"1404":{"tf":3.3166247903554},"576":{"tf":1.0},"588":{"tf":2.0},"617":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":2.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1108":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1384":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"774":{"tf":1.0},"80":{"tf":1.0},"800":{"tf":1.4142135623730951},"804":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.0},"829":{"tf":1.0},"887":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"1120":{"tf":1.0},"127":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1453":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"332":{"tf":1.0},"354":{"tf":1.0},"377":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"610":{"tf":1.0},"72":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.4142135623730951},"759":{"tf":1.0},"833":{"tf":1.0},"938":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"1094":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1515":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"151":{"tf":1.0},"859":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"33":{"tf":1.0},"815":{"tf":1.0},"856":{"tf":1.0},"859":{"tf":1.0},"883":{"tf":1.0}},"i":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"246":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"116":{"tf":1.0},"1194":{"tf":1.0},"915":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"1011":{"tf":1.0},"106":{"tf":1.0},"1061":{"tf":1.0},"107":{"tf":1.0},"1087":{"tf":1.0},"1094":{"tf":1.0},"115":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"248":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"292":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"682":{"tf":1.0},"911":{"tf":1.0},"942":{"tf":1.0},"969":{"tf":1.0},"972":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":18,"docs":{"1054":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1175":{"tf":1.0},"1211":{"tf":1.0},"1215":{"tf":1.0},"1284":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"680":{"tf":1.0},"682":{"tf":1.0},"767":{"tf":1.4142135623730951},"822":{"tf":1.0},"929":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1135":{"tf":1.0},"1449":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1509":{"tf":1.0},"545":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"950":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"1253":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.0},"925":{"tf":1.0}}}}},"s":{"c":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"1211":{"tf":1.0},"47":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":108,"docs":{"1000":{"tf":1.0},"1055":{"tf":1.0},"108":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1115":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"1310":{"tf":1.0},"132":{"tf":2.449489742783178},"1323":{"tf":1.0},"1332":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"138":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.7320508075688772},"288":{"tf":1.0},"292":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"532":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.0},"709":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":2.0},"752":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.449489742783178},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"80":{"tf":2.0},"803":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"847":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.7320508075688772},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":1.0},"946":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"0":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"357":{"tf":1.0},"591":{"tf":1.0},"63":{"tf":1.0},"852":{"tf":1.0},"910":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}}},"r":{"df":3,"docs":{"802":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":21,"docs":{"1437":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1440":{"tf":2.0},"1442":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"899":{"tf":2.449489742783178},"900":{"tf":2.449489742783178},"902":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1013":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1347":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1406":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"603":{"tf":1.0},"679":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"851":{"tf":1.0},"87":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"980":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"1336":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1163":{"tf":1.0},"1175":{"tf":1.0},"1263":{"tf":1.0},"1432":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"928":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1450":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"921":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1454":{"tf":1.0}}}}}},"df":5,"docs":{"115":{"tf":1.0},"1343":{"tf":1.0},"1441":{"tf":1.0},"348":{"tf":1.0},"930":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":28,"docs":{"1":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1089":{"tf":1.0},"1194":{"tf":1.0},"1343":{"tf":1.0},"1444":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"250":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0},"346":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"573":{"tf":1.0},"625":{"tf":1.0},"654":{"tf":1.4142135623730951},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"968":{"tf":1.0},"976":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"t":{"df":1,"docs":{"979":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":18,"docs":{"1376":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.0},"1394":{"tf":2.0},"1402":{"tf":1.0},"1404":{"tf":2.8284271247461903},"599":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"617":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"725":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"706":{"tf":1.0},"707":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"1194":{"tf":1.0},"976":{"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":{"1014":{"tf":1.0},"1119":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"129":{"tf":1.0},"1298":{"tf":1.0},"1333":{"tf":1.0},"1343":{"tf":1.0},"1467":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"220":{"tf":1.4142135623730951},"289":{"tf":1.0},"487":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1475":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1014":{"tf":1.0},"1028":{"tf":1.0},"24":{"tf":1.0},"760":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":27,"docs":{"1015":{"tf":1.4142135623730951},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1031":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.4142135623730951},"57":{"tf":1.0},"571":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":2,"docs":{"1340":{"tf":1.0},"585":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"302":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1091":{"tf":1.0},"1156":{"tf":1.0},"1297":{"tf":1.0},"185":{"tf":1.0},"239":{"tf":1.0},"494":{"tf":1.0},"676":{"tf":1.0},"684":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":67,"docs":{"1043":{"tf":1.0},"1059":{"tf":1.0},"113":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.7320508075688772},"124":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.7320508075688772},"1340":{"tf":1.0},"136":{"tf":1.7320508075688772},"1369":{"tf":1.0},"137":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.7320508075688772},"1426":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1462":{"tf":2.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1528":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"43":{"tf":1.0},"536":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"79":{"tf":1.0},"831":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"924":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"128":{"tf":1.0},"1439":{"tf":1.0},"242":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":4,"docs":{"221":{"tf":1.0},"228":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1099":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1164":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}},"i":{"df":5,"docs":{"1212":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"884":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":6,"docs":{"1062":{"tf":1.0},"1101":{"tf":1.0},"1489":{"tf":1.0},"371":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"125":{"tf":1.0},"1498":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"836":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1062":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1208":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1452":{"tf":1.0},"214":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"935":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"256":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":86,"docs":{"1002":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.7320508075688772},"1006":{"tf":1.0},"1007":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1075":{"tf":1.0},"1196":{"tf":1.0},"1214":{"tf":1.0},"1235":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.7320508075688772},"1261":{"tf":1.4142135623730951},"128":{"tf":3.4641016151377544},"129":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"1333":{"tf":3.3166247903554},"1334":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1475":{"tf":1.7320508075688772},"1476":{"tf":2.23606797749979},"1477":{"tf":2.0},"165":{"tf":2.0},"169":{"tf":1.0},"172":{"tf":1.0},"202":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.0},"234":{"tf":2.449489742783178},"235":{"tf":2.6457513110645907},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":3.3166247903554},"243":{"tf":3.4641016151377544},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":2.449489742783178},"256":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.7320508075688772},"773":{"tf":1.0},"896":{"tf":2.0},"908":{"tf":1.0},"909":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":2.0},"940":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"95":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"976":{"tf":3.0},"977":{"tf":1.0},"979":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"f":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"937":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":28,"docs":{"1227":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1474":{"tf":2.23606797749979},"165":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":2.23606797749979},"246":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.4142135623730951},"918":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1361":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"522":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1351":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1352":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1342":{"tf":1.0},"139":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"179":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"1":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"2":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"588":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1302":{"tf":2.0},"657":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1094":{"tf":1.0},"288":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0},"725":{"tf":1.0},"846":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1143":{"tf":1.4142135623730951},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"df":83,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":2.0},"1151":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":1.0},"210":{"tf":1.4142135623730951},"224":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"419":{"tf":1.0},"45":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"581":{"tf":1.0},"605":{"tf":1.4142135623730951},"616":{"tf":1.0},"634":{"tf":1.4142135623730951},"653":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"723":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"845":{"tf":3.0},"911":{"tf":1.0},"921":{"tf":1.0},"997":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"682":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":13,"docs":{"1209":{"tf":1.0},"1421":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"379":{"tf":1.0},"397":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"612":{"tf":1.0},"631":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"847":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"134":{"tf":2.449489742783178},"1345":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"141":{"tf":1.0},"1419":{"tf":2.23606797749979},"142":{"tf":2.0},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"88":{"tf":2.0}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":2.449489742783178},"605":{"tf":1.0},"612":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"641":{"tf":1.0},"642":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":470,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"1007":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1027":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1086":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":2.0},"1103":{"tf":1.0},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"111":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1115":{"tf":1.0},"113":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":2.23606797749979},"1142":{"tf":2.0},"1143":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"122":{"tf":1.0},"1228":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1240":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1256":{"tf":1.0},"1260":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":2.23606797749979},"1298":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1301":{"tf":2.6457513110645907},"1302":{"tf":2.6457513110645907},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1307":{"tf":1.0},"1312":{"tf":2.449489742783178},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1318":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1322":{"tf":1.0},"1323":{"tf":3.605551275463989},"1324":{"tf":3.3166247903554},"1325":{"tf":2.6457513110645907},"1326":{"tf":2.449489742783178},"1328":{"tf":2.0},"1329":{"tf":2.0},"133":{"tf":1.0},"1330":{"tf":3.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"134":{"tf":3.3166247903554},"1340":{"tf":2.23606797749979},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":2.6457513110645907},"1350":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1352":{"tf":2.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.0},"136":{"tf":3.1622776601683795},"1361":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.0},"1369":{"tf":2.6457513110645907},"137":{"tf":2.23606797749979},"1370":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.7320508075688772},"1375":{"tf":2.0},"1376":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"138":{"tf":2.0},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":2.449489742783178},"139":{"tf":1.0},"1390":{"tf":3.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.8284271247461903},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"1415":{"tf":1.0},"1418":{"tf":1.7320508075688772},"1419":{"tf":4.0},"142":{"tf":2.23606797749979},"1420":{"tf":3.0},"1421":{"tf":3.1622776601683795},"1422":{"tf":3.1622776601683795},"1423":{"tf":3.1622776601683795},"1425":{"tf":2.8284271247461903},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"145":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.0},"1466":{"tf":1.0},"1469":{"tf":2.0},"147":{"tf":1.0},"1470":{"tf":2.0},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"1481":{"tf":2.0},"1482":{"tf":1.4142135623730951},"1484":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"149":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.7320508075688772},"1515":{"tf":2.0},"1517":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":1.0},"156":{"tf":2.23606797749979},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":2.6457513110645907},"372":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":2.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"480":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":2.449489742783178},"523":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"558":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.7320508075688772},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"593":{"tf":1.0},"599":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"604":{"tf":2.449489742783178},"605":{"tf":2.6457513110645907},"606":{"tf":1.4142135623730951},"61":{"tf":1.0},"612":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":2.0},"645":{"tf":1.0},"646":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":2.0},"657":{"tf":1.4142135623730951},"66":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"696":{"tf":2.6457513110645907},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"699":{"tf":2.449489742783178},"700":{"tf":1.7320508075688772},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.7320508075688772},"71":{"tf":1.0},"710":{"tf":1.7320508075688772},"724":{"tf":1.0},"725":{"tf":1.4142135623730951},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"741":{"tf":1.4142135623730951},"744":{"tf":2.0},"747":{"tf":2.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"751":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":2.0},"76":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":2.0},"776":{"tf":1.0},"778":{"tf":1.7320508075688772},"779":{"tf":1.0},"780":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":2.0},"793":{"tf":1.0},"794":{"tf":2.449489742783178},"795":{"tf":1.0},"796":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":2.0},"80":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.7320508075688772},"831":{"tf":1.7320508075688772},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"84":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"847":{"tf":2.0},"849":{"tf":1.0},"850":{"tf":1.7320508075688772},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":3.3166247903554},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"875":{"tf":1.0},"88":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"92":{"tf":1.0},"921":{"tf":2.0},"922":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"970":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.4142135623730951}},"i":{"d":{"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"371":{"tf":1.0},"379":{"tf":1.0}},"}":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"522":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"87":{"tf":1.0}}}}}}}}},"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"787":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0},"1309":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"407":{"tf":1.0},"408":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"852":{"tf":1.0}},"e":{"df":3,"docs":{"1404":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1456":{"tf":1.0},"1475":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"230":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"1109":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1239":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1259":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.0},"1333":{"tf":2.6457513110645907},"143":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"374":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.0},"833":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"1051":{"tf":1.0},"1088":{"tf":1.0},"1287":{"tf":1.0},"1323":{"tf":1.0},"1490":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0},"908":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"141":{"tf":1.0},"1456":{"tf":1.0},"72":{"tf":1.0},"811":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"942":{"tf":1.0},"976":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1513":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"1325":{"tf":1.0},"1432":{"tf":1.0},"728":{"tf":1.0},"804":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"1474":{"tf":1.4142135623730951},"253":{"tf":1.0},"976":{"tf":1.0}},"s":{"df":1,"docs":{"985":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1336":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1399":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1161":{"tf":1.0},"1309":{"tf":1.0},"1476":{"tf":1.0},"249":{"tf":1.0},"769":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1122":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1507":{"tf":1.0},"303":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.4142135623730951},"527":{"tf":1.0},"602":{"tf":1.0},"608":{"tf":1.0},"704":{"tf":1.0},"836":{"tf":1.0},"870":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1046":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"b":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":48,"docs":{"1003":{"tf":1.0},"11":{"tf":1.0},"1144":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1189":{"tf":1.0},"1206":{"tf":1.0},"1246":{"tf":1.0},"1285":{"tf":1.0},"1310":{"tf":1.0},"1330":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"693":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"874":{"tf":1.0},"881":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"954":{"tf":1.4142135623730951},"968":{"tf":1.0},"97":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"1061":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"548":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1381":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"1148":{"tf":1.0},"1330":{"tf":2.6457513110645907},"1338":{"tf":2.0},"1339":{"tf":2.8284271247461903},"1340":{"tf":2.0},"1345":{"tf":2.6457513110645907},"1346":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.7320508075688772},"956":{"tf":1.0},"962":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}}}},"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":{"1076":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":87,"docs":{"1015":{"tf":1.4142135623730951},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":2.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.4142135623730951},"389":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.0},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1164":{"tf":1.0},"1169":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0}}}}},"df":22,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.4142135623730951},"135":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.8284271247461903},"1402":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1420":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"384":{"tf":1.7320508075688772},"554":{"tf":1.0},"618":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.449489742783178},"723":{"tf":2.449489742783178},"949":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"950":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1130":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1309":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1381":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"1112":{"tf":2.23606797749979},"1116":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1332":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"507":{"tf":2.0},"65":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"816":{"tf":1.0}}}}},"b":{"df":29,"docs":{"1323":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":2.0},"185":{"tf":2.0},"206":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.7320508075688772},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":2.0},"522":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"797":{"tf":1.0},"838":{"tf":1.7320508075688772},"850":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":5,"docs":{"1092":{"tf":1.0},"600":{"tf":1.4142135623730951},"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":5,"docs":{"1091":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":26,"docs":{"1091":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1306":{"tf":1.0},"1326":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1422":{"tf":2.23606797749979},"1425":{"tf":1.0},"1433":{"tf":1.0},"1476":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.0},"273":{"tf":1.0},"366":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"4":{"tf":1.0},"600":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.7320508075688772},"789":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1169":{"tf":1.0},"1200":{"tf":1.0},"261":{"tf":1.0},"451":{"tf":1.0},"517":{"tf":1.0},"694":{"tf":1.0},"911":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1199":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.0},"1263":{"tf":1.0},"1296":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"169":{"tf":1.0},"212":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"536":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"679":{"tf":1.4142135623730951},"728":{"tf":1.0},"874":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"90":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"984":{"tf":1.0},"989":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}},"o":{"d":{"df":22,"docs":{"1045":{"tf":1.0},"1091":{"tf":1.0},"129":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"186":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.0},"376":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"609":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1457":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"1051":{"tf":1.0},"1106":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1505":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.4142135623730951},"541":{"tf":1.0},"892":{"tf":1.4142135623730951},"911":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1448":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":13,"docs":{"1263":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"225":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"813":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1102":{"tf":1.0},"1106":{"tf":1.0},"1149":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1243":{"tf":1.0},"1285":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":2.0},"1445":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"486":{"tf":1.0},"65":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"810":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1197":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"47":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"151":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1175":{"tf":1.0},"423":{"tf":1.0},"876":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"1":{"tf":1.0},"1109":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1421":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1465":{"tf":1.0},"1493":{"tf":1.0},"15":{"tf":1.0},"1528":{"tf":1.7320508075688772},"227":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"511":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"79":{"tf":1.0},"882":{"tf":1.0},"910":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"1175":{"tf":1.0},"767":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"1323":{"tf":1.0},"1334":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1226":{"tf":1.0},"1403":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}}}}},"y":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"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":{"1403":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1131":{"tf":1.0},"742":{"tf":1.0},"746":{"tf":2.0},"753":{"tf":1.0},"754":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"746":{"tf":1.0}}}}}},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1449":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1212":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"1050":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1066":{"tf":1.0},"1079":{"tf":1.0},"1086":{"tf":1.0},"113":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1215":{"tf":1.0},"125":{"tf":1.0},"1296":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.4142135623730951},"1430":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"160":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"37":{"tf":1.0},"437":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.0},"660":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"935":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1323":{"tf":1.4142135623730951},"1325":{"tf":2.0},"1328":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1338":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1027":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"286":{"tf":1.0},"299":{"tf":1.0}}},"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"442":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"382":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":2.23606797749979}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1356":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":12,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.0},"419":{"tf":1.7320508075688772},"477":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":126,"docs":{"1127":{"tf":1.0},"1149":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":2.23606797749979},"1282":{"tf":1.4142135623730951},"1344":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":3.605551275463989},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":2.449489742783178},"14":{"tf":1.0},"1401":{"tf":3.1622776601683795},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1439":{"tf":1.4142135623730951},"144":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1490":{"tf":1.7320508075688772},"1491":{"tf":1.4142135623730951},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1528":{"tf":1.4142135623730951},"243":{"tf":1.0},"261":{"tf":1.0},"286":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"419":{"tf":2.0},"442":{"tf":1.0},"463":{"tf":1.4142135623730951},"473":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.23606797749979},"498":{"tf":2.23606797749979},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"546":{"tf":2.23606797749979},"555":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"585":{"tf":1.0},"593":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"653":{"tf":2.6457513110645907},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"758":{"tf":1.0},"899":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"941":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1345":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1349":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1194":{"tf":1.4142135623730951},"21":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"811":{"tf":1.4142135623730951}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"681":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":14,"docs":{"1109":{"tf":1.0},"1160":{"tf":1.0},"1212":{"tf":1.0},"1298":{"tf":1.0},"1429":{"tf":1.4142135623730951},"28":{"tf":1.0},"369":{"tf":1.0},"439":{"tf":1.0},"729":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"932":{"tf":1.0},"933":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":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":{"255":{"tf":1.0}},"u":{"df":1,"docs":{"732":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1035":{"tf":1.0},"1085":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":2.0},"874":{"tf":1.0}},"t":{"df":5,"docs":{"1192":{"tf":1.0},"1205":{"tf":1.0},"1405":{"tf":1.7320508075688772},"664":{"tf":1.0},"833":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"1115":{"tf":1.0},"122":{"tf":1.0},"1462":{"tf":1.0},"327":{"tf":1.0},"555":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1114":{"tf":1.0},"60":{"tf":1.0}}}},"v":{"df":1,"docs":{"984":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1080":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":114,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1084":{"tf":1.0},"1128":{"tf":1.0},"1185":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1248":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1337":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1371":{"tf":1.4142135623730951},"1396":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1406":{"tf":2.449489742783178},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1454":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"19":{"tf":1.4142135623730951},"226":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"356":{"tf":1.7320508075688772},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"590":{"tf":1.7320508075688772},"616":{"tf":1.0},"654":{"tf":1.0},"67":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.4142135623730951},"734":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"902":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"997":{"tf":1.0},"999":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"129":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1126":{"tf":1.4142135623730951},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1378":{"tf":2.449489742783178},"1390":{"tf":2.0},"1394":{"tf":3.4641016151377544},"1402":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"618":{"tf":1.7320508075688772},"653":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.0},"723":{"tf":2.23606797749979},"724":{"tf":1.4142135623730951},"798":{"tf":1.0},"949":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"1161":{"tf":1.0},"1185":{"tf":1.0},"1219":{"tf":1.0},"1310":{"tf":1.0},"1449":{"tf":1.0},"255":{"tf":1.0},"50":{"tf":1.0},"732":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1042":{"tf":1.0},"1082":{"tf":1.0},"1094":{"tf":1.0},"1135":{"tf":1.0},"116":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1209":{"tf":1.0},"127":{"tf":1.0},"1298":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1332":{"tf":1.0},"135":{"tf":1.0},"1404":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"334":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"605":{"tf":1.0},"634":{"tf":1.0},"664":{"tf":1.0},"699":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"876":{"tf":1.0},"894":{"tf":1.0},"92":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0},"976":{"tf":1.0},"984":{"tf":1.0}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1345":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":4,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1471":{"tf":1.0},"1482":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1000":{"tf":1.0},"1507":{"tf":1.0},"918":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":2.23606797749979}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"941":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1436":{"tf":1.0},"950":{"tf":1.0},"954":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1214":{"tf":1.0},"234":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"606":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"372":{"tf":1.0}}}},"df":37,"docs":{"1066":{"tf":1.7320508075688772},"1079":{"tf":2.0},"1095":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1215":{"tf":2.0},"1234":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1440":{"tf":2.449489742783178},"1454":{"tf":2.23606797749979},"1456":{"tf":1.0},"1466":{"tf":1.0},"1497":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1520":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"298":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"336":{"tf":2.0},"372":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"506":{"tf":1.4142135623730951},"563":{"tf":2.0},"606":{"tf":1.0},"660":{"tf":2.0},"903":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"s":{"df":2,"docs":{"1194":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"1264":{"tf":1.0},"1267":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"547":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1287":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.7320508075688772},"510":{"tf":1.0},"538":{"tf":1.0}}}}}}},"df":36,"docs":{"1148":{"tf":2.0},"1192":{"tf":2.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.7320508075688772},"486":{"tf":1.0},"497":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":2.0},"538":{"tf":1.4142135623730951},"547":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1108":{"tf":1.0},"1111":{"tf":1.0},"1124":{"tf":1.0},"1367":{"tf":1.0},"498":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"1244":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"412":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1092":{"tf":1.0},"1174":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1405":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"206":{"tf":1.0},"272":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"646":{"tf":1.0},"838":{"tf":1.0},"847":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1080":{"tf":1.0},"1185":{"tf":1.0},"1300":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1326":{"tf":2.449489742783178},"1356":{"tf":1.0},"137":{"tf":2.23606797749979},"1379":{"tf":1.0},"1422":{"tf":2.8284271247461903},"1425":{"tf":1.4142135623730951},"1433":{"tf":1.0},"156":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"273":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"529":{"tf":1.0},"58":{"tf":1.4142135623730951},"601":{"tf":1.0},"706":{"tf":1.0},"725":{"tf":1.0},"884":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1148":{"tf":1.0},"1381":{"tf":1.0},"666":{"tf":1.0},"684":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"675":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}}},"{":{"a":{"df":1,"docs":{"1381":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"699":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1517":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"661":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1330":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1079":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":5,"docs":{"1182":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":67,"docs":{"1006":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1469":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1530":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":2.0},"253":{"tf":1.0},"299":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"520":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"653":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"855":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"929":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":21,"docs":{"1062":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1334":{"tf":1.0},"1346":{"tf":1.0},"1429":{"tf":1.4142135623730951},"155":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"759":{"tf":1.0},"76":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"916":{"tf":1.0},"935":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1177":{"tf":1.0},"1505":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1197":{"tf":1.0},"21":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0}}},"s":{"df":43,"docs":{"1001":{"tf":1.0},"1122":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"1194":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"1315":{"tf":1.0},"1332":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1449":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"185":{"tf":1.0},"206":{"tf":1.0},"295":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.4142135623730951},"600":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.0},"816":{"tf":1.0},"897":{"tf":1.0},"902":{"tf":1.0},"946":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1149":{"tf":1.7320508075688772},"1264":{"tf":1.0},"1270":{"tf":2.0},"1372":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"1018":{"tf":1.0},"1042":{"tf":1.0},"1061":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1030":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"992":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"617":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"684":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1148":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1381":{"tf":2.0},"1402":{"tf":1.4142135623730951},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"617":{"tf":1.7320508075688772},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":2.0},"670":{"tf":1.0},"675":{"tf":1.7320508075688772},"684":{"tf":1.4142135623730951},"686":{"tf":2.0},"687":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"718":{"tf":2.0},"719":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":77,"docs":{"1140":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"135":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"138":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1404":{"tf":2.23606797749979},"141":{"tf":1.4142135623730951},"1419":{"tf":2.449489742783178},"142":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.4142135623730951},"1425":{"tf":2.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"661":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"1055":{"tf":1.0},"107":{"tf":2.6457513110645907},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"110":{"tf":1.0},"1118":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"290":{"tf":1.4142135623730951},"292":{"tf":2.0},"298":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"536":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.4142135623730951},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1336":{"tf":1.0},"765":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"1208":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"459":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":4,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"d":{"df":127,"docs":{"1045":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.0},"1126":{"tf":1.0},"1134":{"tf":1.0},"1136":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":2.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1450":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1471":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1515":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"334":{"tf":1.4142135623730951},"370":{"tf":1.0},"398":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"498":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"58":{"tf":1.4142135623730951},"604":{"tf":1.0},"632":{"tf":1.7320508075688772},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.0},"698":{"tf":2.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"773":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":2.449489742783178},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":2.0},"807":{"tf":1.7320508075688772},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"828":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.4142135623730951},"901":{"tf":1.0},"903":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"135":{"tf":1.0},"1420":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":198,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1090":{"tf":1.0},"1091":{"tf":1.7320508075688772},"1092":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"1112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.4142135623730951},"122":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"132":{"tf":2.23606797749979},"1323":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1336":{"tf":1.0},"1338":{"tf":2.0},"1339":{"tf":1.7320508075688772},"134":{"tf":3.0},"1340":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1345":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1420":{"tf":2.8284271247461903},"1421":{"tf":2.8284271247461903},"1422":{"tf":3.3166247903554},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":2.0},"1433":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.7320508075688772},"144":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1446":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1455":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1479":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"1528":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"317":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"478":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.7320508075688772},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"560":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.0},"584":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":2.0},"605":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"616":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.4142135623730951},"644":{"tf":1.0},"65":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.4142135623730951},"678":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"699":{"tf":1.0},"708":{"tf":1.7320508075688772},"712":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"747":{"tf":1.0},"772":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":2.23606797749979},"788":{"tf":2.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":2.0},"838":{"tf":1.7320508075688772},"841":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"850":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"925":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"962":{"tf":1.0},"969":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"519":{"tf":1.0},"536":{"tf":2.0},"614":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"722":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"911":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1365":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":24,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1097":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1105":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":1,"docs":{"319":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"815":{"tf":1.0},"826":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"1403":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1175":{"tf":1.0},"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1401":{"tf":1.0},"1460":{"tf":1.0},"1495":{"tf":1.0},"280":{"tf":1.0},"354":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"1046":{"tf":1.0},"1053":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1476":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"82":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"1001":{"tf":1.4142135623730951},"117":{"tf":1.0},"1320":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1410":{"tf":1.0},"142":{"tf":1.0},"1436":{"tf":1.0},"148":{"tf":1.0},"1484":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"23":{"tf":1.0},"349":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"576":{"tf":1.0},"676":{"tf":1.0},"72":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"987":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"x":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"1077":{"tf":1.0},"1087":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"292":{"tf":1.0},"762":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1264":{"tf":1.0},"1271":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1014":{"tf":1.0},"1054":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":9,"docs":{"1184":{"tf":1.0},"1247":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1441":{"tf":1.0},"291":{"tf":1.0},"456":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"997":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"df":18,"docs":{"1001":{"tf":1.4142135623730951},"1161":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.4142135623730951},"991":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1265":{"tf":1.0},"1333":{"tf":1.0},"139":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"545":{"tf":1.0},"729":{"tf":1.0},"867":{"tf":1.0},"901":{"tf":1.0},"936":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1145":{"tf":1.0},"312":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0}}}}},"v":{"df":1,"docs":{"1194":{"tf":1.0}}}},"g":{"df":2,"docs":{"552":{"tf":1.0},"586":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"869":{"tf":1.0}}},"t":{"df":53,"docs":{"1011":{"tf":1.0},"1044":{"tf":1.7320508075688772},"1112":{"tf":1.0},"1116":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1166":{"tf":1.0},"129":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1421":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1471":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1528":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"400":{"tf":1.0},"495":{"tf":1.0},"522":{"tf":1.0},"58":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"634":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"731":{"tf":1.0},"745":{"tf":2.23606797749979},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"987":{"tf":1.4142135623730951}}}},"df":3,"docs":{"879":{"tf":1.0},"881":{"tf":1.0},"988":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":38,"docs":{"116":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":2.23606797749979},"1403":{"tf":1.0},"1404":{"tf":1.7320508075688772},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1495":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"351":{"tf":1.4142135623730951},"366":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"465":{"tf":1.0},"583":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"618":{"tf":1.4142135623730951},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"837":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"152":{"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":{"1441":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":10,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.4142135623730951},"13":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"454":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"848":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"934":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"758":{"tf":1.0},"879":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1103":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"1161":{"tf":1.0},"918":{"tf":1.0},"976":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"2":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1522":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1361":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":48,"docs":{"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1058":{"tf":1.0},"1089":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1461":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1115":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}},"l":{"df":29,"docs":{"109":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1214":{"tf":1.0},"1251":{"tf":1.0},"1296":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1436":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"4":{"tf":1.0},"544":{"tf":1.0},"603":{"tf":1.0},"612":{"tf":1.0},"776":{"tf":1.0},"861":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":6,"docs":{"1144":{"tf":1.0},"152":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"753":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":63,"docs":{"1164":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1278":{"tf":1.0},"1288":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0},"259":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"370":{"tf":1.0},"416":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"534":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":1.0},"650":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1103":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"=":{"1":{"0":{"0":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1138":{"tf":1.0},"146":{"tf":1.0},"386":{"tf":1.0},"40":{"tf":1.0},"620":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1014":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1254":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"960":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.4142135623730951},"1165":{"tf":2.6457513110645907},"1166":{"tf":1.7320508075688772}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"1215":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":4,"docs":{"1243":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":4,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":74,"docs":{"1004":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1020":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"11":{"tf":1.0},"1154":{"tf":1.0},"1158":{"tf":1.4142135623730951},"119":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1235":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1429":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1505":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"780":{"tf":1.0},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"851":{"tf":1.0},"884":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.4142135623730951},"926":{"tf":1.0},"934":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"1069":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1384":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1305":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"b":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1305":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1003":{"tf":1.0},"1161":{"tf":1.0},"119":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0},"547":{"tf":1.0},"727":{"tf":1.0},"909":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"262":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1300":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1158":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"1158":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}},"n":{"df":2,"docs":{"1423":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"1102":{"tf":1.0},"1160":{"tf":1.0},"1281":{"tf":1.0},"1378":{"tf":1.0},"1408":{"tf":1.0},"1428":{"tf":1.0},"368":{"tf":1.0},"497":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"733":{"tf":1.0},"766":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0}}}},"df":6,"docs":{"450":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"978":{"tf":1.0}},"e":{"df":2,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0}}},"o":{"d":{"df":3,"docs":{"1312":{"tf":1.0},"884":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1050":{"tf":1.0},"1177":{"tf":1.0},"424":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"477":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"732":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1330":{"tf":1.0},"583":{"tf":1.0},"979":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1117":{"tf":1.0},"1277":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"1278":{"tf":1.0},"21":{"tf":1.0},"491":{"tf":1.0},"914":{"tf":1.0},"954":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"df":19,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"1112":{"tf":1.0},"1211":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"909":{"tf":1.4142135623730951},"92":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"985":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"1208":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":68,"docs":{"1112":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"332":{"tf":1.0},"335":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"738":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"770":{"tf":1.0},"794":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.0},"96":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":22,"docs":{"1148":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"331":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":17,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"357":{"tf":1.0},"916":{"tf":1.0}}}}}}}},"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"373":{"tf":1.0},"937":{"tf":1.7320508075688772},"939":{"tf":2.23606797749979},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"373":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"911":{"tf":1.0},"930":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1452":{"tf":1.0},"1455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"1055":{"tf":1.7320508075688772},"1073":{"tf":1.7320508075688772},"1074":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1214":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"739":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"38":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":46,"docs":{"1011":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1200":{"tf":1.0},"1268":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1344":{"tf":1.0},"1346":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.7320508075688772},"14":{"tf":1.0},"1401":{"tf":1.0},"228":{"tf":1.0},"286":{"tf":1.0},"359":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"546":{"tf":1.4142135623730951},"593":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"723":{"tf":1.4142135623730951},"949":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1267":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"507":{"tf":1.0},"833":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1048":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1145":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1003":{"tf":1.0}}},"2":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"557":{"tf":1.0},"651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":84,"docs":{"1001":{"tf":1.7320508075688772},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.0},"1067":{"tf":1.0},"1092":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1333":{"tf":1.0},"1403":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1429":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"332":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"417":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"520":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":2.449489742783178},"544":{"tf":1.0},"557":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"614":{"tf":1.4142135623730951},"631":{"tf":1.0},"651":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"697":{"tf":1.0},"708":{"tf":1.0},"739":{"tf":1.4142135623730951},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"776":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":2.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.4142135623730951},"996":{"tf":1.0},"997":{"tf":3.1622776601683795}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"332":{"tf":1.0},"417":{"tf":1.0},"420":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"417":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"1260":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"1194":{"tf":1.0},"248":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"831":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"729":{"tf":1.0},"740":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":47,"docs":{"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1136":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":2.0},"1442":{"tf":2.23606797749979},"1445":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":2.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"729":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"744":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.4142135623730951},"832":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"899":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.4142135623730951},"369":{"tf":1.0},"507":{"tf":1.0},"603":{"tf":1.0},"760":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1401":{"tf":1.0},"1402":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":25,"docs":{"1148":{"tf":1.0},"1237":{"tf":1.0},"1248":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"197":{"tf":1.0},"268":{"tf":1.0},"349":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"519":{"tf":1.0},"576":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"884":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":15,"docs":{"105":{"tf":1.0},"1162":{"tf":1.0},"119":{"tf":2.6457513110645907},"1411":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"739":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"1220":{"tf":1.0},"1278":{"tf":1.0},"259":{"tf":1.4142135623730951},"292":{"tf":1.0},"491":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1161":{"tf":1.0},"1276":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1442":{"tf":1.0},"180":{"tf":1.7320508075688772},"370":{"tf":1.0},"45":{"tf":1.4142135623730951},"486":{"tf":1.0},"604":{"tf":1.0},"679":{"tf":1.0},"794":{"tf":1.4142135623730951},"798":{"tf":1.0},"845":{"tf":1.0},"884":{"tf":1.0},"921":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"535":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"729":{"tf":1.0}},"i":{"df":3,"docs":{"1124":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":14,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1089":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1336":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"959":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"322":{"tf":1.0},"549":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.0},"725":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"991":{"tf":1.4142135623730951}},"i":{"df":14,"docs":{"1006":{"tf":1.0},"1314":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"62":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"882":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1162":{"tf":1.0},"261":{"tf":1.0},"857":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"995":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"1209":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"237":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1307":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.7320508075688772},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1154":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.0}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"667":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":0,"docs":{},"s":{":":{"9":{"0":{"9":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":41,"docs":{"1020":{"tf":1.0},"110":{"tf":1.0},"1149":{"tf":1.0},"1203":{"tf":1.0},"1262":{"tf":1.0},"1268":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1284":{"tf":1.0},"1294":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1493":{"tf":1.0},"1525":{"tf":1.0},"311":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.7320508075688772},"481":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"537":{"tf":1.0},"547":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.0},"734":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"955":{"tf":1.0},"964":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":2,"docs":{"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"104":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"830":{"tf":1.0},"832":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"853":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"180":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"775":{"tf":1.0},"778":{"tf":1.0},"791":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1139":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1437":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"197":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"801":{"tf":1.0},"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"803":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"872":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"941":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"1227":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"370":{"tf":1.4142135623730951},"51":{"tf":1.0},"604":{"tf":1.4142135623730951},"66":{"tf":1.0},"746":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":2.23606797749979},"754":{"tf":1.7320508075688772},"761":{"tf":1.0},"766":{"tf":1.4142135623730951},"767":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1015":{"tf":1.0},"1034":{"tf":1.4142135623730951},"152":{"tf":1.0},"157":{"tf":1.0},"345":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"761":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"197":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"142":{"tf":1.0},"1484":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1047":{"tf":1.0},"1515":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"1188":{"tf":1.0},"1189":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"979":{"tf":1.0}}}}}}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":127,"docs":{"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1230":{"tf":1.0},"1241":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":2.0},"1302":{"tf":2.0},"1306":{"tf":2.23606797749979},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1405":{"tf":2.0},"142":{"tf":1.0},"1436":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1522":{"tf":1.7320508075688772},"174":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"49":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"587":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"612":{"tf":1.0},"649":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"700":{"tf":1.0},"707":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"832":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"884":{"tf":1.0},"894":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.4142135623730951},"989":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"1013":{"tf":1.0},"1175":{"tf":1.0},"1189":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.0},"1227":{"tf":1.0},"1231":{"tf":1.0},"1258":{"tf":1.0},"1285":{"tf":1.0},"1333":{"tf":1.0},"1415":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.4142135623730951},"918":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"977":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1441":{"tf":1.0},"760":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0}},"i":{"df":21,"docs":{"1111":{"tf":1.0},"1441":{"tf":1.0},"155":{"tf":1.0},"232":{"tf":1.0},"262":{"tf":1.0},"41":{"tf":1.0},"445":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":2.0},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.7320508075688772},"831":{"tf":1.0},"879":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"987":{"tf":1.0}}}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1300":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1300":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951}}}}}}},"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1063":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1082":{"tf":1.0},"128":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1426":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1082":{"tf":1.0},"61":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.4142135623730951},"914":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"918":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":37,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"1103":{"tf":1.0},"1158":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1204":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"446":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"910":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0},"981":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"1194":{"tf":1.0},"930":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":188,"docs":{"10":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.7320508075688772},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1103":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1140":{"tf":3.3166247903554},"1142":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1179":{"tf":2.0},"1180":{"tf":2.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":2.0},"1199":{"tf":1.0},"1205":{"tf":1.0},"1217":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"1270":{"tf":2.23606797749979},"1271":{"tf":1.7320508075688772},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":2.0},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.23606797749979},"1379":{"tf":1.7320508075688772},"1381":{"tf":2.0},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.4142135623730951},"1388":{"tf":2.23606797749979},"1390":{"tf":2.0},"1392":{"tf":2.449489742783178},"1394":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1401":{"tf":2.6457513110645907},"1402":{"tf":2.6457513110645907},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.23606797749979},"1405":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.7320508075688772},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"483":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"515":{"tf":1.0},"527":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"592":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"622":{"tf":1.0},"625":{"tf":1.4142135623730951},"638":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.7320508075688772},"666":{"tf":2.449489742783178},"667":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"681":{"tf":1.4142135623730951},"684":{"tf":2.449489742783178},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"692":{"tf":1.4142135623730951},"704":{"tf":1.0},"712":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"79":{"tf":1.7320508075688772},"794":{"tf":1.7320508075688772},"82":{"tf":1.0},"822":{"tf":1.4142135623730951},"83":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"925":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":3,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.23606797749979}},"i":{"d":{"df":1,"docs":{"1010":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"100":{"tf":1.0},"1006":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1114":{"tf":1.0},"1137":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"125":{"tf":1.0},"1255":{"tf":1.0},"1295":{"tf":1.0},"1324":{"tf":1.0},"1490":{"tf":1.0},"1522":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.4142135623730951},"544":{"tf":1.0},"620":{"tf":1.0},"634":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"792":{"tf":1.4142135623730951},"813":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"932":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":18,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"1340":{"tf":1.0},"1493":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"760":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1200":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1200":{"tf":1.0},"1482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1027":{"tf":1.0},"1515":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":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":{"192":{"tf":1.0},"303":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":3,"docs":{"1404":{"tf":1.4142135623730951},"79":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1163":{"tf":1.0},"199":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"857":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1080":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1300":{"tf":2.6457513110645907},"1304":{"tf":2.0},"1306":{"tf":1.4142135623730951},"1308":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"182":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":4,"docs":{"152":{"tf":1.0},"51":{"tf":1.0},"753":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1022":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"595":{"tf":1.0},"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"361":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"595":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"df":21,"docs":{"1324":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"442":{"tf":1.0},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"884":{"tf":1.0},"899":{"tf":1.4142135623730951},"902":{"tf":1.0},"966":{"tf":1.0},"979":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"1381":{"tf":1.0},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"363":{"tf":1.0},"47":{"tf":1.0},"597":{"tf":1.0},"66":{"tf":1.0},"733":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":2.0},"761":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"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":7,"docs":{"1042":{"tf":1.0},"1054":{"tf":1.0},"1075":{"tf":1.0},"1298":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1109":{"tf":1.0},"1123":{"tf":1.0},"308":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"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":2,"docs":{"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}}}},"df":21,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"1165":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"149":{"tf":1.0},"580":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":74,"docs":{"1107":{"tf":1.0},"111":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1180":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1349":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"149":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"54":{"tf":1.0},"580":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"71":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1162":{"tf":1.0},"1166":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1432":{"tf":1.0},"210":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0},"72":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1082":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"989":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.4142135623730951},"606":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":56,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.7320508075688772},"1154":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"1223":{"tf":1.7320508075688772},"1349":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1409":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"554":{"tf":1.7320508075688772},"555":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"6":{"tf":1.0},"682":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"70":{"tf":2.0},"727":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"n":{"c":{"df":16,"docs":{"332":{"tf":1.0},"388":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"558":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"686":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"718":{"tf":1.0},"726":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":13,"docs":{"1292":{"tf":1.0},"134":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1449":{"tf":1.0},"179":{"tf":1.0},"234":{"tf":1.0},"253":{"tf":1.0},"545":{"tf":1.0},"711":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"763":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"319":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"1180":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1306":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"742":{"tf":1.0},"901":{"tf":1.0}},"r":{"df":117,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1042":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"108":{"tf":1.0},"1137":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1173":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1316":{"tf":1.0},"1357":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1523":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"44":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.7320508075688772},"503":{"tf":1.0},"512":{"tf":1.4142135623730951},"520":{"tf":1.0},"547":{"tf":1.4142135623730951},"548":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"590":{"tf":1.0},"598":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"617":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"664":{"tf":1.4142135623730951},"673":{"tf":1.0},"674":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"697":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"86":{"tf":1.0},"871":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"914":{"tf":1.0},"931":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1102":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1194":{"tf":1.0},"780":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1144":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"1225":{"tf":1.0},"1263":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"423":{"tf":1.0},"663":{"tf":1.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1177":{"tf":1.0},"439":{"tf":1.0},"470":{"tf":1.0},"669":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1183":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}}}},"df":2,"docs":{"732":{"tf":1.0},"88":{"tf":1.0}},"f":{"a":{"c":{"df":11,"docs":{"118":{"tf":1.0},"1407":{"tf":1.0},"357":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"4":{"tf":1.0},"516":{"tf":1.0},"591":{"tf":1.0},"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"510":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"1268":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"287":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"688":{"tf":1.0},"726":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"231":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1026":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"446":{"tf":1.0},"728":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1282":{"tf":1.0},"477":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1127":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"1127":{"tf":1.0},"1148":{"tf":1.0},"1169":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1307":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1355":{"tf":1.0},"1375":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1461":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.4142135623730951},"1479":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1494":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"380":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"507":{"tf":1.0},"595":{"tf":1.0},"613":{"tf":1.0},"724":{"tf":1.0},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":7,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1111":{"tf":1.7320508075688772},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1323":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1323":{"tf":2.23606797749979},"1324":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1346":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1111":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1131":{"tf":1.0}}}},"p":{"df":3,"docs":{"1288":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"708":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"644":{"tf":1.0}}}}}},"df":27,"docs":{"1142":{"tf":2.449489742783178},"1302":{"tf":2.0},"1375":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":2.0},"1404":{"tf":1.4142135623730951},"1517":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.4142135623730951},"653":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.4142135623730951},"795":{"tf":1.0},"87":{"tf":1.4142135623730951},"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"319":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}},"l":{"df":5,"docs":{"1139":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1404":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"531":{"tf":1.0},"772":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":15,"docs":{"1164":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1528":{"tf":1.0},"19":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"451":{"tf":1.4142135623730951},"509":{"tf":1.0},"582":{"tf":1.0},"586":{"tf":1.0},"679":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"976":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}},"df":22,"docs":{"1301":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1403":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":3,"docs":{"357":{"tf":1.0},"471":{"tf":1.0},"591":{"tf":1.0}}},"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":28,"docs":{"1112":{"tf":2.23606797749979},"1121":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":2.449489742783178},"870":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"874":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}}},"r":{"df":5,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.7320508075688772},"23":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}}}},"j":{"a":{"c":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"<":{"4":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":568,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"103":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"106":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1065":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":2.449489742783178},"1071":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"11":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"111":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"113":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"117":{"tf":1.0},"1173":{"tf":1.0},"1175":{"tf":2.0},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"118":{"tf":1.0},"1180":{"tf":2.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":2.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":2.6457513110645907},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.4142135623730951},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.7320508075688772},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.0},"1248":{"tf":1.4142135623730951},"125":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"1270":{"tf":2.0},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"128":{"tf":2.449489742783178},"1281":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"129":{"tf":2.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1312":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"1320":{"tf":2.23606797749979},"1321":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":2.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1333":{"tf":2.8284271247461903},"1334":{"tf":2.449489742783178},"1336":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":3.1622776601683795},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1349":{"tf":1.0},"135":{"tf":1.7320508075688772},"1355":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"136":{"tf":2.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"137":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"138":{"tf":1.7320508075688772},"1381":{"tf":2.6457513110645907},"1382":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"14":{"tf":1.0},"1401":{"tf":2.449489742783178},"1402":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":2.23606797749979},"1407":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"1410":{"tf":2.0},"1411":{"tf":1.7320508075688772},"1413":{"tf":1.7320508075688772},"1415":{"tf":1.7320508075688772},"1417":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1419":{"tf":3.0},"142":{"tf":2.0},"1420":{"tf":2.449489742783178},"1421":{"tf":2.23606797749979},"1422":{"tf":2.0},"1423":{"tf":2.6457513110645907},"1425":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"146":{"tf":1.0},"1460":{"tf":2.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1484":{"tf":1.0},"149":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"150":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.0},"151":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":2.23606797749979},"1513":{"tf":1.4142135623730951},"1515":{"tf":1.0},"152":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1529":{"tf":2.23606797749979},"1530":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"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.4142135623730951},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.7320508075688772},"336":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":2.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":2.23606797749979},"585":{"tf":1.4142135623730951},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"63":{"tf":1.0},"648":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":2.6457513110645907},"667":{"tf":2.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.0},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"71":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"72":{"tf":2.0},"725":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":2.0},"800":{"tf":1.0},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.7320508075688772},"850":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"887":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.7320508075688772},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.7320508075688772},"981":{"tf":1.0},"986":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":2.0}},"s":{"'":{"df":1,"docs":{"1447":{"tf":1.0}}},".":{"a":{"2":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.0},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"443":{"tf":1.0},"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1510":{"tf":1.0},"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"113":{"tf":1.0},"1140":{"tf":1.0},"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1320":{"tf":1.0},"1355":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"160":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"361":{"tf":1.4142135623730951},"389":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"560":{"tf":1.0},"564":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.4142135623730951},"623":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"907":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"731":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"609":{"tf":1.0},"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"376":{"tf":1.0},"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"651":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1264":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"10":{"tf":1.0},"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1149":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1404":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"618":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1273":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"545":{"tf":1.0},"712":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1301":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":18,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1437":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"616":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"618":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"599":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"592":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"713":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"670":{"tf":1.0},"676":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1290":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"467":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"1145":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1139":{"tf":1.0},"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"714":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"714":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"669":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"670":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"716":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"716":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1313":{"tf":1.0},"1315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1301":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"364":{"tf":1.0},"382":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"70":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"963":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"a":{"2":{"a":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1084":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"575":{"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":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":2.23606797749979},"684":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1430":{"tf":1.0}}}}},"i":{"d":{"=":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1003":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":19,"docs":{"1047":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1204":{"tf":1.0},"1419":{"tf":1.0},"1515":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"r":{"df":5,"docs":{"336":{"tf":1.0},"557":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":45,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":2.0},"1047":{"tf":1.4142135623730951},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1461":{"tf":1.0},"1515":{"tf":1.4142135623730951},"160":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"1520":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"$":{"(":{"d":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1329":{"tf":1.0},"142":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1460":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"682":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"1430":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"*":{"*":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1063":{"tf":1.0},"1510":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"1530":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1063":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1430":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":42,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1106":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"562":{"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":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"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":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"r":{"d":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":41,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1105":{"tf":1.0},"113":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1497":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":44,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":2.0},"1454":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"336":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"946":{"tf":1.0},"965":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":2.0},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1310":{"tf":2.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1452":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1454":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"965":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1248":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1239":{"tf":1.4142135623730951},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":34,"docs":{"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"562":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"557":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1342":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1214":{"tf":1.0},"1436":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1436":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"995":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":44,"docs":{"1043":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"161":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.4142135623730951}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1520":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"1520":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1507":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1199":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"684":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"963":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"903":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1466":{"tf":1.0},"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"1448":{"tf":1.0},"1455":{"tf":1.0},"332":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"1507":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1310":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1237":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1081":{"tf":1.0},"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.0},"897":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1240":{"tf":1.4142135623730951},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}}}}}},"a":{"2":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1217":{"tf":1.0},"1218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":54,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"332":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"593":{"tf":1.0},"619":{"tf":1.4142135623730951},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"694":{"tf":1.4142135623730951},"711":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"151":{"tf":1.0},"167":{"tf":1.0},"244":{"tf":1.4142135623730951},"757":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"976":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"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":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":17,"docs":{"1332":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"741":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1143":{"tf":1.0},"1484":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"785":{"tf":1.4142135623730951},"858":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1486":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"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":2,"docs":{"217":{"tf":1.0},"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1046":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"785":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"779":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"885":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"854":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1084":{"tf":1.0},"854":{"tf":1.0},"859":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"856":{"tf":1.0},"857":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1305":{"tf":1.0},"262":{"tf":1.7320508075688772},"329":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":1,"docs":{"1305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1309":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"615":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1367":{"tf":2.6457513110645907},"1394":{"tf":2.449489742783178},"329":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":32,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.0},"538":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"1091":{"tf":1.0},"186":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"445":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":50,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1314":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.4142135623730951},"244":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"468":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"537":{"tf":1.0},"539":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"539":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"1382":{"tf":1.0},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1203":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}}},"df":9,"docs":{"1148":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1382":{"tf":1.0},"667":{"tf":1.0},"670":{"tf":1.7320508075688772},"678":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":14,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"330":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.7320508075688772},"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1180":{"tf":1.0},"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"1192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"798":{"tf":1.4142135623730951},"816":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1183":{"tf":1.0},"1371":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"861":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"536":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"741":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":13,"docs":{"1046":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1196":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":32,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1186":{"tf":1.0},"1196":{"tf":1.0},"1374":{"tf":1.0},"1392":{"tf":1.0},"1470":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"521":{"tf":1.0},"632":{"tf":1.0},"698":{"tf":1.0},"729":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"934":{"tf":1.0},"990":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"808":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"819":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"49":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"809":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"808":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"804":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"818":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"866":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"865":{"tf":1.0},"867":{"tf":1.0},"872":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"865":{"tf":1.0},"872":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":5,"docs":{"1182":{"tf":1.0},"429":{"tf":1.7320508075688772},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"541":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"498":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"938":{"tf":1.4142135623730951},"940":{"tf":1.0},"976":{"tf":2.0},"979":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":41,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1217":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.0},"836":{"tf":1.0},"861":{"tf":1.0},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1439":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"761":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1140":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1369":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1404":{"tf":1.0},"154":{"tf":1.0},"766":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"1480":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":7,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0},"1151":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1302":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1142":{"tf":1.0},"1171":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"634":{"tf":1.0},"635":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1088":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"696":{"tf":1.0},"797":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"709":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"695":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"769":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"588":{"tf":1.0},"656":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"518":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"770":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1361":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"522":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"408":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1151":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"349":{"tf":1.0},"519":{"tf":1.7320508075688772},"522":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}}},"y":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1399":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1312":{"tf":1.0},"1369":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1353":{"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":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"400":{"tf":1.0},"401":{"tf":1.0}}},"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":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":12,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"df":165,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"1021":{"tf":1.0},"1057":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1080":{"tf":1.0},"1094":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1231":{"tf":1.0},"127":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1302":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1340":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.23606797749979},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.0},"1479":{"tf":2.0},"16":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"528":{"tf":1.0},"532":{"tf":1.0},"536":{"tf":1.4142135623730951},"562":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"606":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"64":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"669":{"tf":1.4142135623730951},"695":{"tf":1.0},"696":{"tf":1.7320508075688772},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"725":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"828":{"tf":1.0},"842":{"tf":1.0},"851":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"921":{"tf":1.0},"94":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"581":{"tf":2.23606797749979},"590":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1219":{"tf":1.0},"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"816":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":3,"docs":{"1015":{"tf":2.0},"1030":{"tf":1.7320508075688772},"1036":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1526":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.4142135623730951},"204":{"tf":1.0},"433":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"_":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":3,"docs":{"1217":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":264,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":2.0},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.7320508075688772},"1004":{"tf":1.4142135623730951},"1006":{"tf":2.0},"1007":{"tf":2.0},"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1018":{"tf":1.7320508075688772},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.0},"1043":{"tf":2.0},"1044":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1085":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1177":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":2.6457513110645907},"1219":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1253":{"tf":2.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"127":{"tf":2.449489742783178},"1285":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1369":{"tf":1.0},"139":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.0},"1410":{"tf":1.0},"1432":{"tf":1.0},"1436":{"tf":2.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1464":{"tf":2.449489742783178},"1465":{"tf":2.449489742783178},"1466":{"tf":1.7320508075688772},"1467":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"1493":{"tf":1.0},"150":{"tf":1.4142135623730951},"1505":{"tf":2.0},"151":{"tf":1.0},"1512":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1528":{"tf":2.23606797749979},"1530":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":2.0},"42":{"tf":1.4142135623730951},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"45":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"478":{"tf":1.7320508075688772},"522":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"536":{"tf":2.449489742783178},"544":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":3.0},"608":{"tf":1.0},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"634":{"tf":1.0},"638":{"tf":1.0},"657":{"tf":1.7320508075688772},"681":{"tf":2.0},"682":{"tf":1.0},"699":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.4142135623730951},"71":{"tf":1.0},"710":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"722":{"tf":1.7320508075688772},"724":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"816":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"847":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.7320508075688772},"892":{"tf":2.449489742783178},"896":{"tf":1.0},"90":{"tf":1.4142135623730951},"908":{"tf":2.0},"91":{"tf":1.0},"911":{"tf":2.23606797749979},"913":{"tf":2.23606797749979},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":2.449489742783178},"925":{"tf":2.23606797749979},"926":{"tf":2.23606797749979},"939":{"tf":2.0},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.0},"950":{"tf":2.23606797749979},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":2.449489742783178},"97":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"981":{"tf":2.449489742783178},"982":{"tf":1.0},"983":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.0},"988":{"tf":2.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":2.23606797749979},"992":{"tf":1.7320508075688772},"993":{"tf":1.0},"994":{"tf":2.23606797749979},"995":{"tf":1.7320508075688772},"996":{"tf":3.0},"997":{"tf":2.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1505":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"368":{"tf":1.4142135623730951},"43":{"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":1,"docs":{"1307":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1085":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":1,"docs":{"1106":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":8,"docs":{"1213":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0},"911":{"tf":1.0},"992":{"tf":1.0}}}}}},"o":{"a":{"df":7,"docs":{"1264":{"tf":1.0},"1268":{"tf":2.0},"454":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":2.6457513110645907},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1175":{"tf":1.0},"21":{"tf":1.0}}}},"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"831":{"tf":1.0},"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1181":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.0},"1310":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1068":{"tf":1.0},"1169":{"tf":1.0},"1426":{"tf":1.4142135623730951},"206":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"818":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":6,"docs":{"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.0},"185":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1039":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"1001":{"tf":1.0},"762":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1070":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"1194":{"tf":1.0},"1477":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"934":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1084":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1482":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1015":{"tf":1.0},"1029":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1051":{"tf":1.0},"1175":{"tf":1.0},"871":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":1,"docs":{"1154":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":1,"docs":{"1276":{"tf":1.0}}}},"d":{"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"1015":{"tf":1.0},"1026":{"tf":1.0},"1041":{"tf":1.0},"159":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1042":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"1130":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1194":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1021":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"458":{"tf":1.0},"925":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1033":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"19":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":45,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1103":{"tf":1.0},"1208":{"tf":1.0},"1276":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"204":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"357":{"tf":1.0},"500":{"tf":1.0},"545":{"tf":1.0},"591":{"tf":1.0},"676":{"tf":1.0},"711":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"780":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0},"899":{"tf":1.7320508075688772},"902":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"959":{"tf":1.0},"966":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1194":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"1017":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0},"257":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.0},"4":{"tf":1.7320508075688772},"548":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"841":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"759":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"1425":{"tf":1.0},"214":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"368":{"tf":1.0},"43":{"tf":1.0},"602":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1062":{"tf":1.0},"1083":{"tf":1.7320508075688772},"109":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"248":{"tf":1.0},"501":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":12,"docs":{"1154":{"tf":1.4142135623730951},"118":{"tf":1.0},"1403":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"607":{"tf":1.0},"67":{"tf":1.0},"762":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"742":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":12,"docs":{"1298":{"tf":1.0},"192":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.7320508075688772},"93":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1479":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"578":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"322":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1388":{"tf":1.0},"613":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"1209":{"tf":1.0},"1255":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1423":{"tf":1.0},"1436":{"tf":1.0},"1486":{"tf":1.7320508075688772},"270":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"583":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"732":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.4142135623730951},"870":{"tf":1.0},"873":{"tf":3.0},"874":{"tf":1.0},"886":{"tf":1.0},"916":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1292":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1038":{"tf":1.0},"129":{"tf":1.0},"234":{"tf":1.0},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"789":{"tf":1.0},"790":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1154":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":104,"docs":{"1047":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1436":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"378":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"410":{"tf":1.0},"419":{"tf":1.0},"43":{"tf":2.0},"431":{"tf":1.0},"458":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.4142135623730951},"576":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"622":{"tf":1.4142135623730951},"644":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.7320508075688772},"708":{"tf":1.0},"712":{"tf":1.0},"724":{"tf":1.0},"75":{"tf":1.0},"769":{"tf":1.0},"772":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"904":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1436":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1333":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"734":{"tf":1.0},"788":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"458":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.0}}}}}}},"t":{"df":15,"docs":{"1095":{"tf":1.0},"1131":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1452":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"762":{"tf":1.0},"775":{"tf":1.0},"788":{"tf":1.0},"801":{"tf":1.0},"830":{"tf":1.0},"841":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":4,"docs":{"1046":{"tf":1.0},"1487":{"tf":1.0},"726":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"284":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":53,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1191":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1205":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1293":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":3.605551275463989},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":2.449489742783178},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.23606797749979},"36":{"tf":1.0},"4":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"502":{"tf":1.4142135623730951},"679":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":2.0},"902":{"tf":1.0},"908":{"tf":1.0},"942":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"1199":{"tf":1.0},"1293":{"tf":1.0},"679":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1205":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"28":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"250":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"1001":{"tf":1.0},"1233":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"991":{"tf":1.0},"997":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"1077":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1256":{"tf":1.0},"130":{"tf":2.23606797749979},"1333":{"tf":1.4142135623730951},"143":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"939":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1312":{"tf":1.0}}},"t":{"df":1,"docs":{"1452":{"tf":1.0}}}},"w":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"976":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1452":{"tf":1.0},"6":{"tf":1.0},"827":{"tf":1.0}}}}},"o":{"df":4,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1006":{"tf":1.0},"62":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"762":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1356":{"tf":1.0},"1359":{"tf":1.0},"420":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1382":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"474":{"tf":1.0},"576":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"667":{"tf":1.0},"761":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1314":{"tf":1.0},"1325":{"tf":1.0},"1503":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.0},"42":{"tf":1.0},"516":{"tf":1.0},"59":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"798":{"tf":1.0},"947":{"tf":1.0},"983":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1181":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"548":{"tf":1.0},"882":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1471":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1055":{"tf":1.0},"1073":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":2.0},"1209":{"tf":1.0},"1335":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"1441":{"tf":1.0},"146":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"447":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"654":{"tf":1.0},"658":{"tf":1.0},"681":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"816":{"tf":1.4142135623730951},"91":{"tf":1.0},"923":{"tf":1.0},"947":{"tf":1.4142135623730951},"981":{"tf":1.0},"985":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1026":{"tf":1.0},"985":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"918":{"tf":1.0}},"i":{"df":4,"docs":{"1162":{"tf":1.0},"308":{"tf":1.0},"746":{"tf":1.0},"985":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1095":{"tf":1.0},"112":{"tf":1.0},"1161":{"tf":1.0},"1456":{"tf":1.0},"150":{"tf":1.0},"238":{"tf":1.0},"36":{"tf":1.4142135623730951},"463":{"tf":2.0},"676":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":3,"docs":{"1399":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"1006":{"tf":1.0},"1214":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1251":{"tf":1.0},"1260":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1528":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.0},"939":{"tf":1.7320508075688772},"950":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"974":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1175":{"tf":1.0},"1286":{"tf":1.0},"982":{"tf":1.0}}}}}},"x":{"df":6,"docs":{"1036":{"tf":1.0},"1084":{"tf":1.0},"308":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1116":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1507":{"tf":1.0},"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1512":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"666":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}}}},"df":96,"docs":{"1020":{"tf":1.0},"1042":{"tf":1.0},"108":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.4142135623730951},"1173":{"tf":1.7320508075688772},"1174":{"tf":1.4142135623730951},"1175":{"tf":2.449489742783178},"1176":{"tf":1.7320508075688772},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1210":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1294":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":2.0},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1402":{"tf":2.0},"1406":{"tf":1.4142135623730951},"1523":{"tf":1.0},"1524":{"tf":1.0},"2":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"442":{"tf":1.7320508075688772},"443":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"593":{"tf":1.0},"6":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"664":{"tf":1.7320508075688772},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"673":{"tf":1.4142135623730951},"679":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.0},"847":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"851":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"916":{"tf":1.0},"955":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1401":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951}}}}}}}}}},"df":3,"docs":{"1340":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"144":{"tf":1.0},"837":{"tf":1.0},"855":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1114":{"tf":1.0},"170":{"tf":1.0}}}}},"t":{"df":2,"docs":{"182":{"tf":1.0},"780":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"733":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"869":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"62":{"tf":1.0},"766":{"tf":1.0},"941":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"113":{"tf":1.0},"1209":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.7320508075688772},"285":{"tf":1.0},"340":{"tf":1.4142135623730951},"536":{"tf":1.0},"567":{"tf":1.4142135623730951},"722":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":2.0},"845":{"tf":1.7320508075688772},"848":{"tf":2.0},"973":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"831":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"833":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"848":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"1219":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":91,"docs":{"1020":{"tf":1.0},"1021":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1177":{"tf":2.23606797749979},"1184":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1212":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1278":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"1457":{"tf":1.0},"197":{"tf":2.0},"358":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"592":{"tf":1.0},"613":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"65":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"774":{"tf":1.0},"862":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":2.449489742783178},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"93":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":2.0},"995":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":15,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1122":{"tf":1.0},"1403":{"tf":2.0},"1420":{"tf":1.0},"1433":{"tf":1.0},"174":{"tf":1.0},"382":{"tf":1.4142135623730951},"47":{"tf":1.0},"495":{"tf":1.0},"616":{"tf":1.4142135623730951},"739":{"tf":1.0},"792":{"tf":1.0},"845":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"739":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":31,"docs":{"1045":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1186":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1297":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"414":{"tf":1.0},"439":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"558":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":36,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1440":{"tf":3.1622776601683795},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"34":{"tf":1.0},"4":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"908":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1440":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"301":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"295":{"tf":1.0},"302":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"918":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":53,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1278":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1355":{"tf":1.0},"1381":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":2.0},"462":{"tf":1.0},"465":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"547":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"1047":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1084":{"tf":1.0},"1093":{"tf":1.0},"1095":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1502":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1505":{"tf":1.0},"1508":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1525":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"446":{"tf":1.0},"545":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"614":{"tf":1.0}}}}}},"df":5,"docs":{"1432":{"tf":1.0},"381":{"tf":1.0},"614":{"tf":1.0},"788":{"tf":1.0},"836":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"1358":{"tf":1.0},"381":{"tf":1.0},"442":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1084":{"tf":1.0},"934":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"264":{"tf":1.0},"664":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0},"889":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"1071":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1439":{"tf":1.0},"742":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.0},"1130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"18":{"tf":1.0},"357":{"tf":1.0},"501":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"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":{"916":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"1292":{"tf":1.0},"1429":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"254":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":21,"docs":{"1126":{"tf":1.4142135623730951},"115":{"tf":1.0},"1220":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1363":{"tf":1.0},"1374":{"tf":1.0},"1386":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"319":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"916":{"tf":1.0}}}},"x":{"df":2,"docs":{"1287":{"tf":1.0},"925":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1320":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":{"1151":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1151":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1137":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":4.0},"1152":{"tf":2.0},"506":{"tf":1.4142135623730951}},"j":{"a":{"c":{"df":1,"docs":{"506":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"1197":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.0},"1497":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"440":{"tf":1.0},"446":{"tf":1.0},"554":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0}},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1358":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":44,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"108":{"tf":1.0},"1082":{"tf":1.0},"1107":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":2.0},"1193":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1501":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"790":{"tf":1.0},"851":{"tf":1.0},"881":{"tf":1.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.0},"917":{"tf":1.0},"986":{"tf":1.0}}},"r":{"df":1,"docs":{"1030":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1255":{"tf":1.0},"2":{"tf":1.0},"227":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}},"i":{"df":25,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1260":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.0},"1469":{"tf":1.0},"1487":{"tf":1.4142135623730951},"166":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"532":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.4142135623730951},"634":{"tf":1.0},"699":{"tf":1.4142135623730951},"709":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"1264":{"tf":1.0},"1349":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"357":{"tf":1.0},"515":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"545":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.4142135623730951},"591":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"711":{"tf":1.0},"717":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":5,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}},"y":{"[":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1305":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"171":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"935":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"21":{"tf":1.0},"295":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"858":{"tf":1.0},"932":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1048":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":1.0},"1003":{"tf":1.0},"1050":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.4142135623730951},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1397":{"tf":1.0},"1404":{"tf":1.4142135623730951},"142":{"tf":1.0},"1423":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"593":{"tf":1.0},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"799":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"980":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1014":{"tf":1.0},"1054":{"tf":1.0},"1161":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1262":{"tf":1.0},"1277":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.0},"1390":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1423":{"tf":1.0},"1426":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"406":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"523":{"tf":1.0},"593":{"tf":1.0},"640":{"tf":1.0},"693":{"tf":1.0},"700":{"tf":1.0},"726":{"tf":1.4142135623730951},"992":{"tf":1.0}},"i":{"df":10,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":10,"docs":{"1216":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"845":{"tf":1.0},"873":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1340":{"tf":1.4142135623730951},"1520":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"669":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"676":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"1333":{"tf":2.23606797749979},"151":{"tf":1.0},"167":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"902":{"tf":1.0},"938":{"tf":1.0},"945":{"tf":1.0},"976":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":97,"docs":{"1112":{"tf":2.0},"1122":{"tf":1.0},"1127":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1158":{"tf":2.449489742783178},"1179":{"tf":1.0},"1186":{"tf":1.0},"1219":{"tf":1.0},"1227":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1399":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1475":{"tf":1.0},"1506":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"309":{"tf":1.0},"348":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"398":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":2.0},"51":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"645":{"tf":1.4142135623730951},"676":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"73":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"762":{"tf":2.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"956":{"tf":1.0},"999":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"1181":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1452":{"tf":1.0},"2":{"tf":1.0},"353":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":18,"docs":{"132":{"tf":2.0},"1325":{"tf":1.0},"1336":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.0},"138":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":2.0},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.4142135623730951},"226":{"tf":1.0},"579":{"tf":1.0},"73":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"101":{"tf":1.0},"1027":{"tf":1.0},"1070":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1285":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1456":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":1.0},"1524":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"602":{"tf":1.0},"69":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1061":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":1.0},"681":{"tf":1.4142135623730951},"911":{"tf":1.0},"927":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1085":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"61":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"987":{"tf":1.0}}}}},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1095":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1420":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1047":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"1515":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":155,"docs":{"1007":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.449489742783178},"1052":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1161":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1209":{"tf":1.0},"1218":{"tf":1.0},"124":{"tf":1.0},"1268":{"tf":1.0},"127":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1288":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1325":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1340":{"tf":2.0},"1349":{"tf":1.0},"135":{"tf":2.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1399":{"tf":3.0},"1401":{"tf":2.23606797749979},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":2.449489742783178},"1456":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1487":{"tf":1.0},"150":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":2.6457513110645907},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"271":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.0},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"622":{"tf":1.0},"635":{"tf":1.7320508075688772},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"709":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"794":{"tf":1.0},"81":{"tf":1.0},"847":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"926":{"tf":2.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":2.0},"995":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1000":{"tf":1.0},"1033":{"tf":1.0},"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"345":{"tf":1.0},"572":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"df":34,"docs":{"117":{"tf":1.0},"1261":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"491":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"827":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"57":{"tf":1.0},"985":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":5,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1088":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":54,"docs":{"1127":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":1.0},"1172":{"tf":1.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1268":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"327":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"770":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1158":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1359":{"tf":1.0},"1451":{"tf":1.0},"1524":{"tf":1.0},"327":{"tf":1.0},"348":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"732":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":18,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1228":{"tf":1.0},"1287":{"tf":1.0},"1298":{"tf":1.0},"1451":{"tf":1.0},"1526":{"tf":1.0},"242":{"tf":1.0},"446":{"tf":1.0},"456":{"tf":1.0},"486":{"tf":1.0},"510":{"tf":1.0},"82":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"976":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":45,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1169":{"tf":1.0},"1216":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1404":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.7320508075688772},"243":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"284":{"tf":2.23606797749979},"288":{"tf":2.8284271247461903},"295":{"tf":2.0},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"314":{"tf":2.0},"315":{"tf":1.4142135623730951},"597":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"79":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1080":{"tf":1.0},"669":{"tf":1.0},"911":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"371":{"tf":1.0},"394":{"tf":1.0},"519":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"581":{"tf":2.23606797749979},"590":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":18,"docs":{"1085":{"tf":1.0},"110":{"tf":1.0},"1129":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1505":{"tf":1.0},"1515":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"450":{"tf":1.0},"605":{"tf":1.0},"82":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0},"996":{"tf":1.0}}},"h":{"df":2,"docs":{"1082":{"tf":1.0},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1006":{"tf":1.0},"1011":{"tf":1.0},"1405":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1522":{"tf":1.0},"355":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"921":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"m":{"df":17,"docs":{"1156":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1510":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"5":{"tf":1.0},"514":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"935":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":33,"docs":{"1081":{"tf":2.449489742783178},"1088":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1306":{"tf":2.0},"1307":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"298":{"tf":1.0},"334":{"tf":1.0},"363":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"506":{"tf":1.4142135623730951},"519":{"tf":2.0},"75":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0},"999":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1180":{"tf":1.0},"1390":{"tf":1.0},"1441":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"790":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"767":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1120":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"28":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.4142135623730951},"511":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"608":{"tf":1.0},"64":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":2.0},"811":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"306":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":36,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":2.23606797749979},"294":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.4142135623730951},"320":{"tf":1.0},"4":{"tf":1.0},"887":{"tf":1.0},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1458":{"tf":1.0},"83":{"tf":1.0},"932":{"tf":1.0}}}}},"df":0,"docs":{}},"df":14,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":1.4142135623730951},"1346":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"179":{"tf":1.0},"208":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1083":{"tf":1.7320508075688772}}}}}}},"k":{"df":21,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0}}},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.23606797749979},"1135":{"tf":1.0},"1506":{"tf":1.0},"1515":{"tf":1.7320508075688772},"545":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"1082":{"tf":1.0},"1194":{"tf":1.0},"177":{"tf":1.0},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"942":{"tf":1.0}}},"df":18,"docs":{"1035":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"1342":{"tf":1.0},"1436":{"tf":1.0},"1448":{"tf":1.0},"359":{"tf":1.0},"43":{"tf":1.0},"593":{"tf":1.0},"71":{"tf":1.0},"809":{"tf":1.0},"855":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"984":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"661":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"'":{"df":2,"docs":{"1222":{"tf":1.0},"1243":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1228":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1223":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1225":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"1221":{"tf":1.7320508075688772},"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1258":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"1154":{"tf":1.4142135623730951},"1155":{"tf":1.0},"1174":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"1520":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"259":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.4142135623730951},"4":{"tf":1.0},"899":{"tf":1.0}}}}}}}}}}}},"r":{"df":71,"docs":{"1046":{"tf":1.0},"1082":{"tf":1.0},"1088":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1207":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1313":{"tf":1.0},"1322":{"tf":1.0},"1331":{"tf":1.0},"1350":{"tf":1.0},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1369":{"tf":1.0},"1373":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1401":{"tf":1.0},"1448":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1484":{"tf":1.0},"171":{"tf":1.0},"268":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"409":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"451":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"516":{"tf":1.0},"549":{"tf":1.0},"558":{"tf":1.4142135623730951},"589":{"tf":1.0},"591":{"tf":1.0},"595":{"tf":1.0},"615":{"tf":1.0},"620":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"767":{"tf":1.0},"799":{"tf":1.0},"847":{"tf":1.0},"851":{"tf":1.0},"911":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.4142135623730951},"981":{"tf":1.0},"983":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1048":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"940":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1100":{"tf":1.0},"1102":{"tf":1.0},"871":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"614":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"611":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":89,"docs":{"107":{"tf":1.4142135623730951},"1079":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1196":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1247":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1501":{"tf":1.0},"1515":{"tf":1.0},"1531":{"tf":1.4142135623730951},"179":{"tf":1.0},"244":{"tf":1.0},"271":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"43":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"519":{"tf":2.23606797749979},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":3.0},"595":{"tf":1.0},"600":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"605":{"tf":1.4142135623730951},"64":{"tf":1.0},"696":{"tf":2.23606797749979},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.7320508075688772},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"722":{"tf":1.0},"740":{"tf":1.0},"751":{"tf":1.0},"836":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"880":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":2.0},"918":{"tf":1.0},"922":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"538":{"tf":1.0},"539":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":3,"docs":{"1112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":22,"docs":{"1080":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"1286":{"tf":2.0},"1292":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1314":{"tf":1.0},"1436":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"479":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"61":{"tf":1.0},"747":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"152":{"tf":1.0},"37":{"tf":1.0},"753":{"tf":1.0},"767":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"751":{"tf":1.0}}}}}},"df":7,"docs":{"152":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"767":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}},"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}},"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":{"1394":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1353":{"tf":1.4142135623730951}}},"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":{"1367":{"tf":2.0}}}}}}}}},"df":41,"docs":{"1142":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1433":{"tf":1.0},"1469":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.4142135623730951},"527":{"tf":1.0},"605":{"tf":1.4142135623730951},"614":{"tf":1.0},"634":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"798":{"tf":1.0},"819":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.4142135623730951},"850":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"[":{"'":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1072":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1072":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1072":{"tf":1.0},"1094":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"79":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1276":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"292":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1227":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"802":{"tf":1.0},"93":{"tf":1.0}}}}},"df":7,"docs":{"1452":{"tf":1.0},"1477":{"tf":1.0},"1520":{"tf":1.0},"356":{"tf":1.0},"590":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":9,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"393":{"tf":1.0},"627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1338":{"tf":1.4142135623730951},"1390":{"tf":1.0}}}}},"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":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1385":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":43,"docs":{"1154":{"tf":1.0},"1219":{"tf":1.0},"1250":{"tf":1.0},"129":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1346":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.0},"1428":{"tf":1.0},"1433":{"tf":1.0},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1497":{"tf":1.0},"179":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"449":{"tf":1.0},"627":{"tf":1.4142135623730951},"628":{"tf":1.0},"629":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"453":{"tf":1.0},"914":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"903":{"tf":1.0}}}}},"df":9,"docs":{"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.4142135623730951},"277":{"tf":1.0},"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"1017":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1109":{"tf":1.0},"1136":{"tf":1.0},"120":{"tf":1.0},"1222":{"tf":1.0},"1263":{"tf":1.0},"1398":{"tf":1.0},"1435":{"tf":1.0},"231":{"tf":1.0},"291":{"tf":1.0},"454":{"tf":1.0},"482":{"tf":1.0},"664":{"tf":1.0},"751":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"995":{"tf":1.0}}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":2,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0}}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1219":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"18":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.4142135623730951},"332":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.4142135623730951},"6":{"tf":1.0},"690":{"tf":1.0},"725":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"347":{"tf":1.0},"348":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1022":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1407":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1077":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1376":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1052":{"tf":1.0},"1206":{"tf":1.0},"1225":{"tf":1.0},"149":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1160":{"tf":1.0},"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"m":{"df":12,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1306":{"tf":1.0},"439":{"tf":1.0},"467":{"tf":1.0},"528":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"713":{"tf":1.0},"82":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":68,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"648":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1039":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1212":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"809":{"tf":1.0},"818":{"tf":1.0},"871":{"tf":1.0},"901":{"tf":1.0},"976":{"tf":1.0}}}}},"s":{"df":30,"docs":{"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1197":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1419":{"tf":1.0},"1465":{"tf":1.0},"1479":{"tf":1.0},"372":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"522":{"tf":1.0},"588":{"tf":1.7320508075688772},"606":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.0},"699":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"656":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"656":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"1144":{"tf":1.4142135623730951},"370":{"tf":1.0},"604":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"214":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"749":{"tf":1.0}}}}},"df":36,"docs":{"1130":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1305":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"855":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"980":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1333":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1144":{"tf":1.0},"1148":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1219":{"tf":1.0},"1339":{"tf":2.0},"370":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"849":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":2,"docs":{"1197":{"tf":1.0},"446":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"1145":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1253":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":2.0},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":2.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":3.605551275463989},"963":{"tf":1.4142135623730951},"969":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"1000":{"tf":1.0},"1256":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"_":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"104":{"tf":1.0},"1092":{"tf":1.0},"1114":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1154":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1219":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"1288":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1365":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.23606797749979},"1421":{"tf":2.0},"1422":{"tf":2.23606797749979},"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1495":{"tf":1.0},"1522":{"tf":1.0},"1528":{"tf":1.0},"280":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"378":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.7320508075688772},"462":{"tf":1.0},"485":{"tf":1.0},"502":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"522":{"tf":1.0},"528":{"tf":1.0},"531":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.4142135623730951},"626":{"tf":1.0},"629":{"tf":1.0},"648":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"740":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.0},"890":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"911":{"tf":2.6457513110645907},"916":{"tf":1.7320508075688772},"950":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":32,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.0},"1129":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1182":{"tf":1.0},"1275":{"tf":1.0},"1294":{"tf":1.0},"13":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"23":{"tf":1.0},"422":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.0},"547":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"856":{"tf":1.0},"91":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"a":{"df":1,"docs":{"1378":{"tf":1.0}}},"b":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":57,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":2.0},"1268":{"tf":1.7320508075688772},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"424":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"461":{"tf":2.8284271247461903},"463":{"tf":1.0},"465":{"tf":2.6457513110645907},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"495":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":2.23606797749979},"530":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":2.23606797749979},"707":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1399":{"tf":1.0},"382":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1119":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":4,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"985":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1323":{"tf":1.0},"156":{"tf":1.0},"859":{"tf":1.0}}}},"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"506":{"tf":1.0},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1006":{"tf":1.0}}}},"m":{"df":4,"docs":{"1044":{"tf":2.8284271247461903},"1465":{"tf":1.0},"376":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772}}},"n":{"d":{"df":12,"docs":{"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1329":{"tf":1.0},"1362":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"855":{"tf":1.4142135623730951},"868":{"tf":1.0},"872":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"901":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"1404":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":16,"docs":{"1041":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1100":{"tf":1.0},"1214":{"tf":1.0},"1381":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"871":{"tf":1.0},"925":{"tf":1.0},"948":{"tf":1.0},"996":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.0},"1035":{"tf":1.0},"1315":{"tf":1.0},"1403":{"tf":1.4142135623730951},"169":{"tf":1.0},"856":{"tf":1.0},"951":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1194":{"tf":1.7320508075688772},"181":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1071":{"tf":1.0},"1105":{"tf":1.0},"116":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1528":{"tf":1.0},"352":{"tf":2.0},"55":{"tf":1.0},"584":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1054":{"tf":1.0},"1088":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"43":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"1301":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"814":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"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":{"22":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1116":{"tf":1.0},"157":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"759":{"tf":1.0},"760":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":1,"docs":{"760":{"tf":1.4142135623730951}}},"p":{"df":18,"docs":{"10":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"581":{"tf":1.0},"583":{"tf":1.7320508075688772},"585":{"tf":2.23606797749979},"6":{"tf":1.0},"682":{"tf":1.0},"691":{"tf":1.0},"78":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1333":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}},"i":{"df":3,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1177":{"tf":1.0},"1197":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"511":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1402":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"$":{"1":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":18,"docs":{"1011":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"974":{"tf":1.0},"996":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"109":{"tf":1.7320508075688772},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1221":{"tf":1.0},"1437":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"36":{"tf":1.0},"93":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"807":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.4142135623730951},"580":{"tf":2.449489742783178}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1062":{"tf":1.0},"1161":{"tf":1.0},"478":{"tf":1.0},"798":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"1071":{"tf":1.0},"1106":{"tf":1.0},"1490":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"911":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1522":{"tf":1.0}}},"y":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1301":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1426":{"tf":1.0},"366":{"tf":1.0},"600":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"473":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"913":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1006":{"tf":1.0},"1419":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"760":{"tf":1.0},"762":{"tf":1.0}}}},"df":36,"docs":{"1012":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"1038":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.0},"1268":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"474":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.0},"572":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"b":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0},"1310":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1164":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1015":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1254":{"tf":1.0},"1472":{"tf":1.0},"345":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"82":{"tf":1.7320508075688772},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"1015":{"tf":1.0},"1028":{"tf":1.0},"1031":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.4142135623730951},"57":{"tf":1.0},"571":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":18,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"925":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1011":{"tf":1.0},"1174":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0},"833":{"tf":1.0},"934":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"833":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"236":{"tf":1.0},"666":{"tf":1.0},"911":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"946":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":10,"docs":{"1077":{"tf":1.0},"1080":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1312":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"911":{"tf":1.0},"981":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"884":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"1144":{"tf":1.0},"1161":{"tf":1.0},"1255":{"tf":1.0},"227":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"373":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":15,"docs":{"1003":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"981":{"tf":1.0},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1306":{"tf":1.0},"1522":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1154":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"912":{"tf":1.0},"936":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"581":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"581":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1381":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"555":{"tf":1.0},"644":{"tf":1.0},"695":{"tf":1.0}},"r":{"df":2,"docs":{"642":{"tf":1.0},"654":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"576":{"tf":1.0},"631":{"tf":1.0},"653":{"tf":1.0},"656":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"651":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"555":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"649":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"637":{"tf":1.0},"656":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0}}}}}},"df":3,"docs":{"625":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"706":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"595":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.0},"769":{"tf":1.4142135623730951},"82":{"tf":1.0},"949":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"595":{"tf":1.0},"618":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1374":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"598":{"tf":1.0},"667":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"618":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1376":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0}}}},"o":{"df":1,"docs":{"618":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"599":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1021":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0}}}}}},"df":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1126":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}},"s":{"df":1,"docs":{"1374":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"723":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"576":{"tf":1.0},"87":{"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":{"555":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"653":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"653":{"tf":1.0}}}}}}}},"df":2,"docs":{"1375":{"tf":1.4142135623730951},"1386":{"tf":2.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"609":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1154":{"tf":1.0},"120":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"138":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"1440":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"916":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"987":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"1166":{"tf":1.0},"1336":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"759":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":47,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1106":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1253":{"tf":1.0},"1320":{"tf":1.0},"1448":{"tf":1.0},"1464":{"tf":1.7320508075688772},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1528":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"280":{"tf":1.4142135623730951},"31":{"tf":1.0},"418":{"tf":1.4142135623730951},"526":{"tf":1.0},"536":{"tf":1.7320508075688772},"58":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"722":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1206":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"913":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1022":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1530":{"tf":1.0},"974":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":41,"docs":{"11":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1149":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1378":{"tf":1.0},"1389":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"177":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.4142135623730951},"359":{"tf":1.0},"43":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"593":{"tf":1.0},"675":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"920":{"tf":1.0},"981":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1390":{"tf":1.0},"311":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1343":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0}},"u":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1170":{"tf":1.0},"176":{"tf":1.0},"837":{"tf":1.0},"856":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":42,"docs":{"1068":{"tf":1.0},"1086":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1205":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1396":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.4142135623730951},"49":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"91":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.4142135623730951},"930":{"tf":1.0},"935":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"759":{"tf":1.0},"871":{"tf":1.0}}},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"732":{"tf":1.0},"94":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"257":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.4142135623730951},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"82":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"804":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1202":{"tf":1.0},"1285":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":2.449489742783178},"1365":{"tf":1.0},"1388":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.4142135623730951},"321":{"tf":1.0},"347":{"tf":1.4142135623730951},"391":{"tf":1.0},"548":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0},"625":{"tf":1.0},"766":{"tf":1.0},"814":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"845":{"tf":1.0},"848":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"900":{"tf":1.7320508075688772},"902":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"543":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"82":{"tf":1.0},"856":{"tf":1.0},"925":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":12,"docs":{"1014":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1403":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"456":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"915":{"tf":1.0},"960":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1011":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.7320508075688772},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1455":{"tf":1.4142135623730951},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1149":{"tf":1.0},"1499":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":29,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.7320508075688772},"1119":{"tf":1.7320508075688772},"1120":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1122":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1162":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1170":{"tf":1.0},"41":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"827":{"tf":1.7320508075688772},"883":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1162":{"tf":1.0},"1163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1008":{"tf":1.0},"1032":{"tf":1.0},"1042":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1378":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"169":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"760":{"tf":1.0},"918":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":26,"docs":{"108":{"tf":2.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"93":{"tf":1.4142135623730951},"936":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"995":{"tf":1.4142135623730951}},"n":{"df":10,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.0},"1237":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"837":{"tf":1.0},"850":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1051":{"tf":1.0},"1073":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1173":{"tf":1.0},"118":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1333":{"tf":2.0},"1336":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1400":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1466":{"tf":1.0},"147":{"tf":1.0},"1476":{"tf":1.0},"225":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"357":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"482":{"tf":1.0},"50":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.4142135623730951},"861":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"952":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1176":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1197":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"542":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"951":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":24,"docs":{"1015":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"343":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"262":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1213":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}}}}}},"_":{"a":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":13,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1518":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"_":{"b":{"6":{"4":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"638":{"tf":1.0},"646":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"948":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"611":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"277":{"tf":1.0},"616":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}}}}}},"df":87,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1212":{"tf":1.0},"1228":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1276":{"tf":1.4142135623730951},"130":{"tf":1.0},"1320":{"tf":1.0},"1333":{"tf":1.0},"1436":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"486":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"84":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"896":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.7320508075688772},"915":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"939":{"tf":1.7320508075688772},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"404":{"tf":1.0},"412":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":7,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"608":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":19,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"375":{"tf":1.0},"45":{"tf":1.0},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"911":{"tf":1.0},"913":{"tf":1.0},"950":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"378":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":17,"docs":{"1222":{"tf":1.0},"1235":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1476":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1015":{"tf":1.0},"1041":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1158":{"tf":1.0}}}},"t":{"df":3,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0},"1292":{"tf":1.0}}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"587":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1392":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1148":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1149":{"tf":1.0},"1155":{"tf":1.0},"1392":{"tf":1.4142135623730951},"684":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"3":{".":{"1":{"1":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"10":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1155":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1274":{"tf":1.0},"1293":{"tf":1.0},"1302":{"tf":1.0},"1371":{"tf":1.4142135623730951},"1395":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"548":{"tf":2.0},"549":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"6":{"tf":1.0},"610":{"tf":1.0},"620":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0},"690":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}}},"q":{"1":{"df":17,"docs":{"1403":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"616":{"tf":1.0},"640":{"tf":1.0},"785":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1112":{"tf":2.0},"1116":{"tf":1.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":32,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1032":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.7320508075688772},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"572":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"984":{"tf":1.0},"996":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"1507":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1010":{"tf":1.0},"226":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"843":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1309":{"tf":1.0},"35":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"871":{"tf":1.0},"944":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1143":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":16,"docs":{"1242":{"tf":1.0},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"856":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":22,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.0},"122":{"tf":1.0},"1318":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"83":{"tf":1.0},"889":{"tf":1.0},"909":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1479":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1160":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1168":{"tf":1.0}}},"s":{"df":18,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0},"1394":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"(":{"1":{"0":{"df":1,"docs":{"726":{"tf":1.0}}},"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":10,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"379":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.4142135623730951},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}},"df":10,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"682":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1276":{"tf":1.0},"41":{"tf":1.0},"486":{"tf":1.0},"751":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1227":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"1094":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1194":{"tf":1.0},"125":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1340":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1422":{"tf":1.0},"1498":{"tf":1.0},"1529":{"tf":1.0},"192":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.0},"369":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"603":{"tf":1.0},"660":{"tf":1.0},"667":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":9,"docs":{"1396":{"tf":1.0},"14":{"tf":1.4142135623730951},"19":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"454":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"673":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"1042":{"tf":1.0},"1211":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"506":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1403":{"tf":1.0},"856":{"tf":1.0},"934":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"1152":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1286":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"440":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"525":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"702":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1083":{"tf":1.0},"916":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"208":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"599":{"tf":1.0},"616":{"tf":1.4142135623730951},"879":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"103":{"tf":1.0},"1035":{"tf":1.0},"1041":{"tf":1.0},"1089":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.0},"1295":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"241":{"tf":1.0},"342":{"tf":1.0},"437":{"tf":1.0},"545":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"922":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":44,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.4142135623730951},"1004":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1235":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1251":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.23606797749979},"1476":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"292":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0},"732":{"tf":1.0},"763":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"932":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":2.0},"977":{"tf":1.0},"979":{"tf":1.0},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1096":{"tf":1.0},"1099":{"tf":1.0},"974":{"tf":1.4142135623730951},"983":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}},"s":{"df":5,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1369":{"tf":1.0},"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1307":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}}}},"df":50,"docs":{"1052":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1355":{"tf":2.449489742783178},"1401":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1471":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"166":{"tf":1.0},"192":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"434":{"tf":2.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"538":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"847":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"883":{"tf":1.0},"916":{"tf":1.4142135623730951}},"f":{"df":13,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":54,"docs":{"1092":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1347":{"tf":1.7320508075688772},"1370":{"tf":1.0},"1395":{"tf":1.0},"1407":{"tf":1.4142135623730951},"1426":{"tf":1.0},"1434":{"tf":1.0},"1457":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"262":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"366":{"tf":1.0},"385":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"589":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"619":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"685":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"860":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"881":{"tf":1.0},"885":{"tf":1.0},"977":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1419":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1292":{"tf":1.0},"1491":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1465":{"tf":1.0},"1467":{"tf":1.0},"254":{"tf":1.0},"976":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1099":{"tf":1.0},"1102":{"tf":1.0},"1154":{"tf":1.0},"1437":{"tf":1.0},"1452":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1179":{"tf":1.0},"1208":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1405":{"tf":1.4142135623730951},"373":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"816":{"tf":1.0},"93":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1474":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"783":{"tf":2.0},"976":{"tf":1.0}}}},"df":16,"docs":{"1208":{"tf":1.4142135623730951},"1230":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"533":{"tf":1.0},"646":{"tf":1.0},"710":{"tf":1.0},"783":{"tf":1.4142135623730951},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"96":{"tf":1.0},"977":{"tf":1.0}},"i":{"df":3,"docs":{"1075":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1010":{"tf":1.0},"1097":{"tf":1.0},"169":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"951":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"351":{"tf":1.0},"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":16,"docs":{"1171":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1507":{"tf":1.0},"221":{"tf":1.0},"458":{"tf":1.4142135623730951},"505":{"tf":1.0},"782":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"929":{"tf":1.0},"930":{"tf":1.0},"932":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"954":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"1117":{"tf":1.0},"1298":{"tf":1.0},"748":{"tf":1.0},"869":{"tf":1.0},"885":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1194":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"947":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}},"df":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"871":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1007":{"tf":1.0},"1047":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"166":{"tf":1.0},"874":{"tf":1.0},"911":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"1214":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0}}},"v":{"df":7,"docs":{"1094":{"tf":1.0},"1403":{"tf":1.0},"1470":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"451":{"tf":1.0},"874":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"805":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":8,"docs":{"1310":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1507":{"tf":1.0},"237":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":3,"docs":{"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":1.7320508075688772}}},"df":1,"docs":{"884":{"tf":1.0}}}},"o":{"df":1,"docs":{"93":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"635":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1339":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":22,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1206":{"tf":1.0},"1339":{"tf":3.4641016151377544},"182":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"519":{"tf":1.4142135623730951},"696":{"tf":1.0},"797":{"tf":1.4142135623730951},"833":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.4142135623730951},"849":{"tf":1.0},"859":{"tf":1.4142135623730951},"916":{"tf":1.0},"921":{"tf":1.0},"94":{"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":3,"docs":{"554":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"1213":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"1194":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"749":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"456":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1278":{"tf":1.7320508075688772},"1281":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.0},"509":{"tf":1.0},"538":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"503":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"1148":{"tf":1.0},"1192":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1355":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"538":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"1020":{"tf":1.0},"1146":{"tf":1.0},"1262":{"tf":1.0},"1265":{"tf":1.0},"413":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"647":{"tf":1.0},"676":{"tf":1.0},"955":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":70,"docs":{"1146":{"tf":1.4142135623730951},"1148":{"tf":2.0},"1149":{"tf":1.0},"1185":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1206":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":2.23606797749979},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":2.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.7320508075688772},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":2.23606797749979},"1405":{"tf":1.0},"1441":{"tf":1.0},"1474":{"tf":1.0},"1493":{"tf":2.0},"151":{"tf":1.0},"19":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.4142135623730951},"420":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.0},"507":{"tf":1.0},"528":{"tf":1.7320508075688772},"617":{"tf":1.0},"648":{"tf":1.4142135623730951},"654":{"tf":1.0},"663":{"tf":1.0},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.7320508075688772},"713":{"tf":1.0},"714":{"tf":1.0},"804":{"tf":1.0},"956":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"383":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":163,"docs":{"100":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1055":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.4142135623730951},"11":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"115":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1208":{"tf":1.0},"1213":{"tf":1.0},"1222":{"tf":1.0},"1242":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":2.449489742783178},"1304":{"tf":1.7320508075688772},"132":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1333":{"tf":1.4142135623730951},"1334":{"tf":2.23606797749979},"1336":{"tf":1.0},"135":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1420":{"tf":1.0},"1423":{"tf":1.0},"143":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1452":{"tf":2.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1466":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1480":{"tf":1.7320508075688772},"1490":{"tf":1.0},"1515":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":2.23606797749979},"245":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.4142135623730951},"31":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"342":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.0},"446":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"549":{"tf":1.0},"569":{"tf":1.0},"588":{"tf":1.0},"603":{"tf":1.0},"615":{"tf":1.0},"62":{"tf":1.0},"640":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.0},"766":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"82":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.0},"890":{"tf":1.0},"896":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.7320508075688772},"94":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"946":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"977":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"1522":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"df":1,"docs":{"503":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"682":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":2,"docs":{"1355":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1292":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}}}},"df":25,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"461":{"tf":1.4142135623730951},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.0},"511":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1278":{"tf":1.0},"1355":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"1267":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"497":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"312":{"tf":1.7320508075688772},"506":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1254":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1212":{"tf":1.0},"1220":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.4142135623730951},"991":{"tf":1.0}}}},"v":{"df":5,"docs":{"1145":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"1071":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"442":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.7320508075688772},"803":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"237":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"139":{"tf":1.0},"1441":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":67,"docs":{"1010":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1474":{"tf":1.0},"1494":{"tf":2.0},"221":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.0},"415":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"511":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"782":{"tf":1.4142135623730951},"944":{"tf":1.0},"954":{"tf":1.0},"957":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1149":{"tf":1.0},"1379":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.4142135623730951},"953":{"tf":1.0}}}}}}}}}},"t":{"df":8,"docs":{"1106":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"65":{"tf":1.0},"810":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":2.0},"1530":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1105":{"tf":1.0},"1253":{"tf":1.0},"51":{"tf":1.0},"908":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"364":{"tf":1.0},"384":{"tf":1.0},"598":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"957":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"706":{"tf":1.0},"716":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"468":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1301":{"tf":1.0},"1310":{"tf":1.0},"1314":{"tf":1.0}},"s":{"[":{"0":{"df":1,"docs":{"1301":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"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":2,"docs":{"367":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"384":{"tf":1.4142135623730951},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}},"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"649":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1314":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1355":{"tf":2.449489742783178},"1358":{"tf":2.449489742783178},"1365":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1381":{"tf":2.23606797749979},"1388":{"tf":1.0},"1390":{"tf":2.449489742783178},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"182":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"603":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"649":{"tf":1.4142135623730951},"667":{"tf":1.7320508075688772},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"687":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"916":{"tf":1.7320508075688772},"925":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"991":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1390":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"1080":{"tf":1.0},"1214":{"tf":1.0},"1313":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":163,"docs":{"1103":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1301":{"tf":2.449489742783178},"1302":{"tf":2.449489742783178},"1305":{"tf":2.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1381":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":2.449489742783178},"1403":{"tf":2.449489742783178},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1436":{"tf":1.0},"262":{"tf":2.0},"286":{"tf":1.0},"31":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"576":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"617":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.0},"916":{"tf":1.0},"950":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1120":{"tf":1.0},"1278":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1336":{"tf":2.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"214":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"33":{"tf":1.0},"420":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"765":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.4142135623730951},"88":{"tf":2.8284271247461903},"92":{"tf":1.0},"951":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":7,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1052":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"983":{"tf":1.0},"996":{"tf":1.4142135623730951}}}}}},"f":{"c":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":1,"docs":{"351":{"tf":1.0}},"p":{"df":3,"docs":{"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"389":{"tf":1.0},"404":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1346":{"tf":1.0},"1520":{"tf":1.0},"351":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1346":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"1130":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"1145":{"tf":1.0},"248":{"tf":1.0},"911":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1439":{"tf":1.0},"169":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"59":{"tf":1.0},"681":{"tf":1.4142135623730951},"918":{"tf":1.0},"926":{"tf":1.4142135623730951},"969":{"tf":1.0},"981":{"tf":1.4142135623730951},"982":{"tf":1.0},"984":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":1.0},"989":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"996":{"tf":2.23606797749979},"997":{"tf":2.0},"999":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1267":{"tf":1.0},"1276":{"tf":2.0},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1401":{"tf":1.0},"1526":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"302":{"tf":1.0},"311":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"491":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"500":{"tf":2.449489742783178}}}}}},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0}}}},"p":{"c":{"df":11,"docs":{"1177":{"tf":1.0},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"669":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"a":{"df":31,"docs":{"1015":{"tf":1.7320508075688772},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1227":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1491":{"tf":1.0},"728":{"tf":1.0},"743":{"tf":1.0},"827":{"tf":1.0},"978":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}}},"df":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":{"1399":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1078":{"tf":1.0},"1084":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1200":{"tf":1.0},"1243":{"tf":1.0},"1258":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1462":{"tf":1.0},"1476":{"tf":1.0},"18":{"tf":1.0},"239":{"tf":1.0},"327":{"tf":1.0},"369":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"473":{"tf":1.0},"555":{"tf":1.0},"603":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.7320508075688772},"871":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0},"116":{"tf":1.0},"1215":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"724":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":41,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1084":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1160":{"tf":1.4142135623730951},"1162":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.0},"1213":{"tf":1.0},"1216":{"tf":1.0},"1219":{"tf":1.0},"1347":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"257":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.4142135623730951},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"841":{"tf":1.4142135623730951},"844":{"tf":1.0},"845":{"tf":1.0},"860":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"91":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"115":{"tf":1.0}}}}}}}},"s":{"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0}}}}},"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1094":{"tf":1.7320508075688772},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.0},"1102":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1512":{"tf":2.0},"1513":{"tf":1.4142135623730951},"285":{"tf":1.0},"339":{"tf":1.7320508075688772},"536":{"tf":1.0},"566":{"tf":1.7320508075688772},"64":{"tf":1.0},"722":{"tf":1.0},"893":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1108":{"tf":1.0},"287":{"tf":1.0},"726":{"tf":1.7320508075688772},"911":{"tf":1.0},"950":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1161":{"tf":1.4142135623730951},"287":{"tf":1.0},"726":{"tf":1.0},"911":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1330":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"1024":{"tf":1.0},"1080":{"tf":1.0},"1265":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"227":{"tf":1.0},"368":{"tf":1.0},"516":{"tf":1.0},"543":{"tf":1.0},"693":{"tf":1.0},"726":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"954":{"tf":1.0},"978":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.8284271247461903},"1445":{"tf":1.0},"1529":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"308":{"tf":2.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"319":{"tf":1.0},"791":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"1063":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1323":{"tf":2.0},"134":{"tf":2.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.0},"179":{"tf":1.7320508075688772},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"371":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"1089":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1452":{"tf":1.0},"1502":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"985":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"741":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1480":{"tf":1.0},"189":{"tf":1.0},"803":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":158,"docs":{"1081":{"tf":1.0},"1108":{"tf":1.7320508075688772},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.7320508075688772},"1113":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":2.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":2.0},"1139":{"tf":1.0},"1166":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1209":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":2.449489742783178},"1422":{"tf":1.7320508075688772},"1427":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1480":{"tf":2.0},"151":{"tf":1.0},"1522":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"278":{"tf":1.7320508075688772},"287":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"389":{"tf":1.0},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"560":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"66":{"tf":1.0},"672":{"tf":1.0},"696":{"tf":1.4142135623730951},"721":{"tf":1.0},"728":{"tf":1.7320508075688772},"729":{"tf":2.23606797749979},"730":{"tf":1.0},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"735":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":2.0},"739":{"tf":1.0},"740":{"tf":1.7320508075688772},"741":{"tf":1.7320508075688772},"742":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"747":{"tf":3.0},"748":{"tf":1.7320508075688772},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"759":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"773":{"tf":1.7320508075688772},"774":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.7320508075688772},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.0},"803":{"tf":2.23606797749979},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.0},"828":{"tf":2.0},"829":{"tf":1.4142135623730951},"830":{"tf":1.0},"832":{"tf":2.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.7320508075688772},"863":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.7320508075688772},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"883":{"tf":1.0},"886":{"tf":1.7320508075688772},"888":{"tf":1.0},"889":{"tf":1.0},"895":{"tf":1.4142135623730951},"902":{"tf":1.0},"909":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1324":{"tf":1.0},"278":{"tf":1.0},"519":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"178":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1134":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1017":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"548":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1337":{"tf":1.0},"1456":{"tf":1.0},"348":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0},"82":{"tf":1.0},"925":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"1176":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":12,"docs":{"1302":{"tf":3.4641016151377544},"1323":{"tf":1.0},"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"663":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":2.0},"776":{"tf":1.0},"789":{"tf":1.0},"836":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1084":{"tf":1.0},"129":{"tf":1.0},"1329":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.23606797749979},"901":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1423":{"tf":1.0},"1510":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":131,"docs":{"1":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1018":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1032":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1085":{"tf":1.0},"11":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.4142135623730951},"113":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1179":{"tf":1.0},"1193":{"tf":1.0},"1205":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1283":{"tf":1.0},"1288":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1401":{"tf":1.0},"1455":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1520":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"320":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.7320508075688772},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"536":{"tf":1.0},"56":{"tf":1.4142135623730951},"569":{"tf":1.0},"570":{"tf":1.0},"59":{"tf":1.0},"603":{"tf":1.7320508075688772},"664":{"tf":1.0},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"748":{"tf":1.4142135623730951},"758":{"tf":1.0},"760":{"tf":1.0},"816":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"897":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"91":{"tf":1.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.0},"924":{"tf":1.0},"927":{"tf":1.0},"930":{"tf":1.0},"936":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"969":{"tf":1.0},"971":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":49,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"1107":{"tf":1.0},"1136":{"tf":1.0},"1172":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1316":{"tf":1.0},"1347":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"1406":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.0},"547":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"67":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"763":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0}},"k":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"1029":{"tf":1.0},"1040":{"tf":1.0},"1089":{"tf":1.0},"1225":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"206":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"921":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"588":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1404":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1388":{"tf":2.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1001":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"1161":{"tf":1.7320508075688772},"147":{"tf":1.0},"185":{"tf":1.0},"277":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"950":{"tf":1.0},"977":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":2.449489742783178},"1398":{"tf":1.0},"1399":{"tf":3.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1144":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1274":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":19,"docs":{"1248":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1292":{"tf":1.0},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"31":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"456":{"tf":1.0},"879":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1228":{"tf":1.0},"1313":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"921":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}}}}}},"t":{"df":7,"docs":{"1192":{"tf":1.0},"1439":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"664":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1101":{"tf":1.0},"112":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1148":{"tf":1.0},"1168":{"tf":1.0},"1202":{"tf":1.0},"1285":{"tf":1.0},"138":{"tf":1.0},"1436":{"tf":1.0},"1453":{"tf":1.0},"185":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"968":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"860":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1216":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"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":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}}},"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1200":{"tf":1.0},"439":{"tf":1.0},"705":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1243":{"tf":1.0},"1248":{"tf":1.0},"1259":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1179":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1524":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1524":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"473":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"a":{"d":{"d":{"df":3,"docs":{"1179":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1148":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":106,"docs":{"1060":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1179":{"tf":2.0},"1180":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":2.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1262":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1265":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.449489742783178},"1401":{"tf":2.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"248":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":2.449489742783178},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"442":{"tf":2.8284271247461903},"443":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"547":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"617":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":2.0},"682":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.23606797749979},"687":{"tf":1.0},"718":{"tf":2.23606797749979},"719":{"tf":1.0},"82":{"tf":1.0},"851":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"473":{"tf":1.0},"495":{"tf":1.0}}}}}}},"i":{"c":{"df":54,"docs":{"1076":{"tf":1.0},"1143":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"147":{"tf":1.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"523":{"tf":1.0},"55":{"tf":1.4142135623730951},"616":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"733":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.7320508075688772},"759":{"tf":2.0},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"785":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1401":{"tf":2.0},"816":{"tf":1.7320508075688772}},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":58,"docs":{"1056":{"tf":1.0},"1072":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1159":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"1247":{"tf":1.0},"1258":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1315":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1410":{"tf":1.0},"1413":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"182":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"336":{"tf":1.0},"465":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"682":{"tf":1.0},"756":{"tf":1.0},"773":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.4142135623730951},"88":{"tf":1.0},"887":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":39,"docs":{"1061":{"tf":1.0},"1078":{"tf":1.0},"1107":{"tf":1.0},"1139":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1222":{"tf":1.0},"1224":{"tf":1.0},"1225":{"tf":1.0},"1261":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1349":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1372":{"tf":1.0},"1392":{"tf":1.0},"1395":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1476":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"328":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":12,"docs":{"1045":{"tf":1.0},"1245":{"tf":1.0},"1421":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"913":{"tf":1.0},"925":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"1046":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.0},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1213":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1228":{"tf":1.0}}}},"df":0,"docs":{}},"df":28,"docs":{"1075":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1145":{"tf":2.23606797749979},"1518":{"tf":1.4142135623730951},"161":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"214":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.0},"798":{"tf":1.0},"852":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"580":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1296":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"925":{"tf":1.0}}}},"w":{"df":8,"docs":{"101":{"tf":1.0},"1230":{"tf":1.0},"1323":{"tf":1.0},"1428":{"tf":1.0},"223":{"tf":1.0},"771":{"tf":1.0},"907":{"tf":1.0},"963":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"454":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"991":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"df":2,"docs":{"1151":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1346":{"tf":1.4142135623730951},"309":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":220,"docs":{"1":{"tf":1.0},"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1006":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1045":{"tf":2.0},"1047":{"tf":1.0},"1051":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1142":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1166":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1177":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":2.0},"1196":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1248":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1375":{"tf":1.7320508075688772},"138":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1423":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.7320508075688772},"1485":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.449489742783178},"523":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"53":{"tf":2.0},"531":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.7320508075688772},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.0},"598":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"640":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"654":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":2.449489742783178},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"708":{"tf":1.0},"710":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"782":{"tf":3.0},"783":{"tf":1.7320508075688772},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.0},"823":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":2.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.7320508075688772},"950":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.7320508075688772},"991":{"tf":1.7320508075688772},"994":{"tf":1.0},"995":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":1,"docs":{"698":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1306":{"tf":1.0},"1315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"404":{"tf":1.0},"527":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":328,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1000":{"tf":1.0},"1007":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1042":{"tf":1.0},"1048":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1144":{"tf":1.7320508075688772},"1146":{"tf":2.23606797749979},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1173":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1194":{"tf":3.1622776601683795},"1195":{"tf":1.0},"1206":{"tf":2.0},"1209":{"tf":2.23606797749979},"1210":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.7320508075688772},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":2.8284271247461903},"1330":{"tf":2.449489742783178},"1332":{"tf":1.0},"1338":{"tf":2.449489742783178},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.0},"1369":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1390":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979},"1402":{"tf":1.0},"1405":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"142":{"tf":2.0},"1421":{"tf":1.0},"1423":{"tf":2.0},"1436":{"tf":1.0},"146":{"tf":1.0},"1469":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.0},"1500":{"tf":1.0},"1503":{"tf":1.0},"1515":{"tf":2.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"445":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.23606797749979},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":2.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"530":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.7320508075688772},"605":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.4142135623730951},"616":{"tf":2.23606797749979},"617":{"tf":1.4142135623730951},"620":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.7320508075688772},"638":{"tf":1.0},"641":{"tf":1.4142135623730951},"642":{"tf":1.0},"646":{"tf":1.4142135623730951},"647":{"tf":1.0},"648":{"tf":1.4142135623730951},"649":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.7320508075688772},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"710":{"tf":1.7320508075688772},"713":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.7320508075688772},"747":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":2.0},"77":{"tf":1.0},"782":{"tf":1.7320508075688772},"81":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.0},"833":{"tf":1.0},"837":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.7320508075688772},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":2.449489742783178},"882":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.0},"921":{"tf":2.23606797749979},"926":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"997":{"tf":1.4142135623730951}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"592":{"tf":1.0},"599":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1330":{"tf":2.23606797749979},"1362":{"tf":1.0},"1385":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"365":{"tf":1.0},"383":{"tf":1.0},"599":{"tf":1.0},"617":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"646":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1385":{"tf":1.0},"641":{"tf":1.0},"654":{"tf":1.0},"701":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"617":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":15,"docs":{"1248":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"656":{"tf":1.0},"846":{"tf":1.0}},"u":{"df":6,"docs":{"601":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"632":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"654":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"412":{"tf":1.0}}}}}}}}},"r":{"df":6,"docs":{"1362":{"tf":1.4142135623730951},"1399":{"tf":1.7320508075688772},"407":{"tf":1.0},"420":{"tf":1.0},"524":{"tf":1.0},"88":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"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":2,"docs":{"1361":{"tf":1.4142135623730951},"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1517":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951}},"u":{"df":15,"docs":{"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"612":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1148":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.0},"528":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"469":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"420":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":5,"docs":{"1255":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1384":{"tf":1.0},"406":{"tf":1.0},"525":{"tf":1.0},"617":{"tf":1.0},"640":{"tf":1.0},"702":{"tf":1.0},"786":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1436":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"1039":{"tf":1.0},"1148":{"tf":1.0},"1182":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":14,"docs":{"1045":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1507":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"913":{"tf":1.0},"990":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1151":{"tf":1.0},"1176":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"545":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1185":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1082":{"tf":1.0},"1214":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"1061":{"tf":1.0},"1145":{"tf":1.0},"1336":{"tf":1.0},"1351":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"327":{"tf":1.0},"37":{"tf":1.0},"555":{"tf":1.0},"581":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"383":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"1060":{"tf":1.0},"1062":{"tf":1.0},"1089":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"184":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"593":{"tf":1.0},"856":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"711":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}},"x":{"df":1,"docs":{"847":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"1015":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"934":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1209":{"tf":1.0},"1256":{"tf":1.4142135623730951},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.4142135623730951},"835":{"tf":1.0},"842":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":4,"docs":{"130":{"tf":1.0},"1334":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":2,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"682":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1039":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1426":{"tf":1.4142135623730951},"342":{"tf":1.0},"569":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"818":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1041":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1112":{"tf":1.4142135623730951},"154":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"985":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"767":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":36,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"767":{"tf":1.0},"976":{"tf":2.449489742783178}}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"845":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":1,"docs":{"308":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"3":{"0":{"df":4,"docs":{"1084":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"269":{"tf":1.0},"273":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1305":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"884":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"104":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1436":{"tf":1.7320508075688772},"182":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"70":{"tf":1.0},"809":{"tf":1.0},"972":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1062":{"tf":1.0},"1426":{"tf":1.0},"1489":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"901":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"df":2,"docs":{"309":{"tf":2.0},"319":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"1423":{"tf":1.0},"151":{"tf":1.0},"196":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":55,"docs":{"0":{"tf":1.0},"1001":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"119":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.0},"1309":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"1452":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"757":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":23,"docs":{"1323":{"tf":1.0},"138":{"tf":1.0},"1419":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1442":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"188":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"740":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"976":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"872":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"348":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"576":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"1101":{"tf":1.0}}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"1106":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1203":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"541":{"tf":1.0},"664":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"249":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":5,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1441":{"tf":1.0},"930":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"852":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"1022":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.7320508075688772},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"858":{"tf":1.0},"911":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"884":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":43,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.0},"122":{"tf":1.0},"1319":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"293":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"483":{"tf":1.0},"507":{"tf":1.0},"547":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"727":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"808":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"83":{"tf":1.0},"855":{"tf":1.0},"884":{"tf":1.0},"889":{"tf":1.0},"909":{"tf":1.4142135623730951},"976":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1378":{"tf":1.4142135623730951},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1209":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":36,"docs":{"1011":{"tf":1.0},"1144":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":3.0},"1230":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.0},"43":{"tf":1.0},"516":{"tf":1.0},"603":{"tf":1.0},"693":{"tf":1.0},"732":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"808":{"tf":1.0},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.7320508075688772},"829":{"tf":2.0},"831":{"tf":2.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.4142135623730951},"847":{"tf":2.6457513110645907},"850":{"tf":1.0},"916":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"317":{"tf":1.0}}}}}}},"u":{"df":61,"docs":{"1000":{"tf":1.4142135623730951},"1006":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1214":{"tf":1.0},"1230":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":2.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":2.0},"1399":{"tf":2.23606797749979},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"408":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.7320508075688772},"603":{"tf":1.0},"642":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"849":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"940":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1145":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.4142135623730951},"525":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1362":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1098":{"tf":1.0}}}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1143":{"tf":1.0},"702":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}},"y":{"df":2,"docs":{"950":{"tf":1.0},"97":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"1161":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":7,"docs":{"1191":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"298":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.4142135623730951},"1524":{"tf":1.0},"427":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":11,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"450":{"tf":1.4142135623730951},"541":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1154":{"tf":1.0},"1191":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1444":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"761":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":32,"docs":{"111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1158":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"1261":{"tf":1.0},"1330":{"tf":2.6457513110645907},"145":{"tf":1.0},"1510":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"994":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1012":{"tf":1.0},"1144":{"tf":1.0},"1506":{"tf":1.0},"223":{"tf":1.0},"997":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{".":{".":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":1,"docs":{"1306":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1452":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":70,"docs":{"1054":{"tf":1.4142135623730951},"1055":{"tf":1.7320508075688772},"1056":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1064":{"tf":1.4142135623730951},"1069":{"tf":1.0},"1070":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"110":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1295":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1320":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":2.449489742783178},"1452":{"tf":2.23606797749979},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"1481":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":2.0},"1491":{"tf":1.4142135623730951},"1511":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"161":{"tf":1.0},"261":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.8284271247461903},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"418":{"tf":1.0},"519":{"tf":1.0},"536":{"tf":2.0},"564":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"696":{"tf":1.0},"722":{"tf":1.7320508075688772},"85":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.7320508075688772},"916":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":60,"docs":{"1057":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1209":{"tf":1.0},"1222":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":1.0},"1253":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.7320508075688772},"1312":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"334":{"tf":1.4142135623730951},"366":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"600":{"tf":1.0},"64":{"tf":1.0},"681":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"84":{"tf":1.0},"846":{"tf":1.0},"850":{"tf":1.0},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0},"947":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.4142135623730951}}}}},"r":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1390":{"tf":1.4142135623730951},"1394":{"tf":2.0},"1402":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1080":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1296":{"tf":1.0},"1308":{"tf":1.0},"833":{"tf":1.0}}}}}}},"df":51,"docs":{"1001":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.23606797749979},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"1390":{"tf":1.7320508075688772},"1394":{"tf":2.23606797749979},"1402":{"tf":2.0},"1404":{"tf":3.4641016151377544},"587":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":2.0},"614":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"695":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"699":{"tf":1.7320508075688772},"700":{"tf":2.23606797749979},"701":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"703":{"tf":1.4142135623730951},"704":{"tf":1.7320508075688772},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"725":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1182":{"tf":1.0},"1439":{"tf":1.0},"37":{"tf":1.0},"450":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"357":{"tf":1.0},"591":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"1144":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"165":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.7320508075688772},"897":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":124,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1115":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":2.8284271247461903},"1119":{"tf":1.4142135623730951},"1120":{"tf":2.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":2.0},"1129":{"tf":2.449489742783178},"1130":{"tf":2.8284271247461903},"1131":{"tf":2.0},"1134":{"tf":1.0},"1227":{"tf":2.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1304":{"tf":2.0},"1401":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1471":{"tf":1.0},"262":{"tf":1.7320508075688772},"270":{"tf":1.0},"332":{"tf":1.7320508075688772},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"378":{"tf":2.0},"379":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"494":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":2.23606797749979},"523":{"tf":2.6457513110645907},"524":{"tf":2.0},"525":{"tf":2.23606797749979},"526":{"tf":1.7320508075688772},"527":{"tf":2.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"535":{"tf":2.23606797749979},"536":{"tf":3.4641016151377544},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"562":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"651":{"tf":1.4142135623730951},"652":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"722":{"tf":2.6457513110645907},"742":{"tf":1.7320508075688772},"753":{"tf":1.0},"756":{"tf":2.8284271247461903},"757":{"tf":1.4142135623730951},"759":{"tf":3.1622776601683795},"762":{"tf":3.3166247903554},"778":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":3.0},"786":{"tf":1.4142135623730951},"788":{"tf":2.0},"790":{"tf":1.0},"808":{"tf":2.23606797749979},"811":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":2.8284271247461903},"854":{"tf":1.0},"856":{"tf":2.449489742783178},"865":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1215":{"tf":1.0},"169":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1161":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"287":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":53,"docs":{"1043":{"tf":1.0},"1045":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1111":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"1228":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1417":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1528":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"291":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"728":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"803":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"916":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1413":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1417":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"802":{"tf":1.0},"818":{"tf":1.0},"869":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"883":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1182":{"tf":1.0},"1191":{"tf":1.0},"433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1163":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"1149":{"tf":1.0},"1321":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"155":{"tf":1.0},"264":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"715":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"1324":{"tf":1.0},"1338":{"tf":1.0},"1346":{"tf":1.0},"1458":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"855":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1062":{"tf":1.0},"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1166":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"1154":{"tf":1.0},"1339":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1000":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.4142135623730951},"505":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"1002":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1054":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1078":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"1135":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1212":{"tf":1.0},"1264":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1428":{"tf":1.0},"1438":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":2.0},"297":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"544":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"587":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"725":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.4142135623730951},"82":{"tf":1.0},"871":{"tf":1.0},"898":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"954":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"981":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"108":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1010":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1042":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"1512":{"tf":1.0},"1513":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1479":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":52,"docs":{"1":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1062":{"tf":1.0},"1068":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"1160":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1211":{"tf":1.0},"1222":{"tf":1.0},"1298":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.7320508075688772},"422":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"758":{"tf":1.0},"816":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"726":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"726":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"997":{"tf":1.0}}},"1":{"df":1,"docs":{"997":{"tf":1.0}}},"2":{"df":1,"docs":{"997":{"tf":1.0}}},"3":{"df":1,"docs":{"997":{"tf":1.0}}},"4":{"df":1,"docs":{"997":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1081":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1310":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1121":{"tf":1.0},"1309":{"tf":1.0},"303":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"848":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}},"df":12,"docs":{"1142":{"tf":2.0},"1163":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1263":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1469":{"tf":1.0},"456":{"tf":1.0},"663":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"1095":{"tf":1.4142135623730951},"1097":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1213":{"tf":1.0},"759":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"654":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"873":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":91,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1256":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":3.4641016151377544},"1335":{"tf":1.0},"1336":{"tf":2.6457513110645907},"1416":{"tf":1.0},"1417":{"tf":2.0},"196":{"tf":2.0},"197":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"33":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"574":{"tf":1.0},"590":{"tf":1.0},"654":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.7320508075688772},"77":{"tf":2.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":2.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":2.0},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.7320508075688772},"81":{"tf":2.0},"813":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"862":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"871":{"tf":2.0},"872":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":2.0},"886":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":2,"docs":{"31":{"tf":2.0},"726":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1336":{"tf":1.0},"1403":{"tf":1.0},"1437":{"tf":1.0},"901":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"766":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1392":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":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":{"1140":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1369":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1174":{"tf":1.0},"1195":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1392":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}},"df":1,"docs":{"931":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1404":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":1,"docs":{"1404":{"tf":4.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"759":{"tf":1.0},"785":{"tf":1.0},"804":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"883":{"tf":1.0},"884":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"766":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"327":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1343":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"555":{"tf":1.4142135623730951}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"976":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"348":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1169":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1170":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1171":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"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":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1146":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1078":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":86,"docs":{"1012":{"tf":1.0},"1033":{"tf":1.0},"1060":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":1.0},"1137":{"tf":2.0},"1138":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":3.3166247903554},"1141":{"tf":1.0},"1142":{"tf":2.449489742783178},"1143":{"tf":2.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":2.23606797749979},"1149":{"tf":1.7320508075688772},"1151":{"tf":2.6457513110645907},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1156":{"tf":1.4142135623730951},"1158":{"tf":2.449489742783178},"1159":{"tf":1.4142135623730951},"1160":{"tf":1.7320508075688772},"1161":{"tf":3.0},"1162":{"tf":1.4142135623730951},"1163":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1166":{"tf":1.0},"1168":{"tf":2.0},"1169":{"tf":2.0},"1170":{"tf":1.0},"1171":{"tf":1.7320508075688772},"1172":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":2.449489742783178},"1391":{"tf":1.0},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1500":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"302":{"tf":1.0},"312":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"340":{"tf":1.0},"348":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"555":{"tf":1.7320508075688772},"567":{"tf":1.0},"574":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":2.0},"618":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.7320508075688772},"723":{"tf":1.0},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"979":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"588":{"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":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1392":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"836":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1148":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"505":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"1080":{"tf":1.4142135623730951},"1081":{"tf":2.23606797749979},"1148":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1279":{"tf":1.0},"1287":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1306":{"tf":2.449489742783178},"1310":{"tf":1.7320508075688772},"1358":{"tf":2.23606797749979},"1401":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"235":{"tf":1.0},"383":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"483":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"510":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"684":{"tf":1.0},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"789":{"tf":1.0},"956":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"845":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"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":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{".":{".":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":15,"docs":{"287":{"tf":1.7320508075688772},"47":{"tf":1.0},"726":{"tf":2.8284271247461903},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.7320508075688772},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":2.0},"883":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"726":{"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1014":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"1177":{"tf":1.0},"1212":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"424":{"tf":1.0},"59":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"898":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}}}}},"w":{"df":20,"docs":{"1281":{"tf":1.0},"1313":{"tf":1.0},"1356":{"tf":1.0},"1367":{"tf":2.0},"1399":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"546":{"tf":1.0},"618":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1102":{"tf":1.0},"758":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"1011":{"tf":1.0},"1042":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1087":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.0},"1215":{"tf":1.0},"129":{"tf":1.0},"1296":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1342":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1522":{"tf":1.0},"234":{"tf":1.0},"37":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"925":{"tf":1.0},"935":{"tf":1.0},"953":{"tf":1.0},"973":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"221":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1084":{"tf":1.0},"1200":{"tf":1.0},"1477":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":49,"docs":{"1097":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1245":{"tf":1.0},"1255":{"tf":1.0},"1288":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1522":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"744":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":2.23606797749979},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"z":{"df":1,"docs":{"1081":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":58,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1310":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":2.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1392":{"tf":2.0},"1394":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"276":{"tf":1.0},"288":{"tf":1.0},"349":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"797":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"88":{"tf":1.4142135623730951},"921":{"tf":1.0}}}}},"l":{"df":12,"docs":{"1051":{"tf":1.0},"1203":{"tf":1.0},"1284":{"tf":1.0},"681":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"850":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"867":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"995":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":2.0},"1445":{"tf":1.0},"816":{"tf":1.0},"899":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"934":{"tf":1.0},"935":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":50,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1165":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1182":{"tf":1.0},"1185":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.7320508075688772},"1236":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"17":{"tf":1.0},"246":{"tf":1.0},"359":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"4":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"433":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"446":{"tf":1.0},"586":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0},"684":{"tf":1.4142135623730951},"733":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"847":{"tf":1.7320508075688772},"848":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"439":{"tf":1.0},"676":{"tf":1.0},"713":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"320":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":30,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":3.4641016151377544},"1445":{"tf":1.0},"1509":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"299":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"307":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":32,"docs":{"1094":{"tf":1.0},"1263":{"tf":1.0},"1403":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.4142135623730951},"850":{"tf":1.0},"862":{"tf":1.0},"873":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"914":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1314":{"tf":1.0},"1403":{"tf":2.6457513110645907},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"423":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"942":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"t":{"df":2,"docs":{"1161":{"tf":1.0},"268":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"382":{"tf":1.7320508075688772},"616":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1102":{"tf":1.0},"365":{"tf":1.0},"599":{"tf":1.0},"65":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"1007":{"tf":1.0},"1010":{"tf":1.0},"1015":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1050":{"tf":1.0},"249":{"tf":1.0},"805":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"984":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"664":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1051":{"tf":1.0},"1152":{"tf":2.0},"1174":{"tf":1.0},"1176":{"tf":2.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1190":{"tf":1.0},"1203":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.4142135623730951},"681":{"tf":1.0},"964":{"tf":1.4142135623730951},"969":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":2.23606797749979}}}}}}},"df":1,"docs":{"1330":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"940":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":37,"docs":{"1126":{"tf":1.0},"1127":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"1477":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"667":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1310":{"tf":1.7320508075688772},"833":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"1163":{"tf":1.0}}}},"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":10,"docs":{"114":{"tf":1.0},"1220":{"tf":1.0},"1257":{"tf":1.0},"1291":{"tf":1.0},"1527":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0},"975":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":123,"docs":{"1088":{"tf":1.4142135623730951},"112":{"tf":1.0},"1121":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":2.23606797749979},"1151":{"tf":2.0},"1226":{"tf":1.0},"1248":{"tf":1.0},"127":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":3.0},"1323":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1378":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1437":{"tf":2.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1465":{"tf":1.0},"150":{"tf":1.0},"1500":{"tf":1.0},"1507":{"tf":1.0},"1509":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"295":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"354":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":2.449489742783178},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.4142135623730951},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"822":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"88":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":2.23606797749979},"945":{"tf":1.4142135623730951},"946":{"tf":1.7320508075688772},"965":{"tf":1.7320508075688772},"966":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1448":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1006":{"tf":1.0},"1052":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1436":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":2.0},"37":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0},"947":{"tf":1.7320508075688772},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0},"992":{"tf":1.4142135623730951},"998":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1001":{"tf":1.0},"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"919":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"546":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"723":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"354":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"129":{"tf":1.7320508075688772},"1307":{"tf":1.0},"1333":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"607":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":8,"docs":{"1036":{"tf":1.0},"1145":{"tf":2.23606797749979},"1180":{"tf":1.0},"1328":{"tf":1.0},"216":{"tf":1.0},"43":{"tf":1.0},"858":{"tf":1.0},"881":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1003":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":182,"docs":{"1015":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":2.0},"1112":{"tf":3.4641016151377544},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":3.1622776601683795},"1119":{"tf":1.7320508075688772},"1120":{"tf":2.23606797749979},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1124":{"tf":2.6457513110645907},"1129":{"tf":3.0},"1130":{"tf":3.3166247903554},"1131":{"tf":3.0},"1134":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1179":{"tf":1.0},"1227":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":2.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1304":{"tf":2.6457513110645907},"1305":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1365":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":3.0},"1403":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":2.23606797749979},"1440":{"tf":2.23606797749979},"1441":{"tf":1.7320508075688772},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"1526":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"348":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"587":{"tf":1.0},"606":{"tf":1.0},"610":{"tf":1.4142135623730951},"614":{"tf":1.0},"616":{"tf":1.0},"72":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.4142135623730951},"741":{"tf":1.7320508075688772},"742":{"tf":3.0},"744":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.0},"760":{"tf":1.4142135623730951},"762":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"774":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"790":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"838":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"877":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":2.23606797749979},"900":{"tf":2.23606797749979},"901":{"tf":1.0},"902":{"tf":1.4142135623730951},"954":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1489":{"tf":1.0},"151":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.0},"249":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1038":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1526":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1292":{"tf":1.0},"1358":{"tf":1.0},"1381":{"tf":1.0},"332":{"tf":2.23606797749979},"418":{"tf":2.23606797749979},"490":{"tf":1.0},"509":{"tf":1.0},"536":{"tf":2.23606797749979},"544":{"tf":1.0}}}}},"r":{"df":4,"docs":{"357":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1176":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"542":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1194":{"tf":1.4142135623730951},"1345":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"855":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":20,"docs":{"1111":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.4142135623730951},"778":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"968":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1522":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"1131":{"tf":1.0},"1137":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1452":{"tf":1.0},"505":{"tf":1.0},"684":{"tf":1.0},"733":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":2.0},"816":{"tf":1.7320508075688772},"818":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"588":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"1472":{"tf":1.7320508075688772},"202":{"tf":1.0},"249":{"tf":1.0},"473":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"939":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1290":{"tf":1.0},"1470":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0},"837":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1144":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1166":{"tf":1.0},"911":{"tf":1.0},"949":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1214":{"tf":1.0},"1220":{"tf":1.0},"937":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1011":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":82,"docs":{"1006":{"tf":1.0},"101":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1135":{"tf":1.0},"115":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1209":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":2.23606797749979},"1353":{"tf":1.7320508075688772},"1376":{"tf":1.7320508075688772},"1403":{"tf":2.449489742783178},"1420":{"tf":2.6457513110645907},"1425":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"209":{"tf":2.0},"249":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":2.449489742783178},"382":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"522":{"tf":2.0},"532":{"tf":1.7320508075688772},"55":{"tf":1.0},"585":{"tf":1.0},"59":{"tf":1.0},"604":{"tf":2.23606797749979},"605":{"tf":2.449489742783178},"61":{"tf":1.0},"616":{"tf":1.4142135623730951},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"645":{"tf":2.0},"657":{"tf":1.4142135623730951},"699":{"tf":2.0},"709":{"tf":1.7320508075688772},"780":{"tf":1.4142135623730951},"796":{"tf":2.23606797749979},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"874":{"tf":1.0},"926":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"987":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"616":{"tf":1.0},"709":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"u":{"df":2,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"382":{"tf":1.0},"532":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"411":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"400":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"522":{"tf":1.0}},"u":{"df":2,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1353":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1233":{"tf":1.0},"1258":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1410":{"tf":1.0},"143":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1505":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"68":{"tf":1.0},"773":{"tf":1.0},"976":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":6,"docs":{"1010":{"tf":1.0},"1505":{"tf":1.0},"1510":{"tf":1.0},"585":{"tf":1.0},"978":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1154":{"tf":1.0},"1158":{"tf":1.0},"1512":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":4,"docs":{"1358":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"836":{"tf":1.0}}},"l":{"df":12,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1491":{"tf":1.0},"262":{"tf":1.0},"46":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"744":{"tf":1.0},"759":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"761":{"tf":1.0},"767":{"tf":1.0}},"g":{"df":40,"docs":{"107":{"tf":1.0},"1161":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1256":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1501":{"tf":1.0},"287":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"500":{"tf":1.0},"547":{"tf":1.4142135623730951},"589":{"tf":1.0},"619":{"tf":1.4142135623730951},"620":{"tf":1.0},"67":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"758":{"tf":1.0},"759":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"d":{"df":7,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"810":{"tf":1.0},"812":{"tf":1.0}}},"df":266,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1145":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"1158":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":2.23606797749979},"1163":{"tf":1.0},"1168":{"tf":1.4142135623730951},"117":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1222":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1292":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1348":{"tf":1.0},"1371":{"tf":1.0},"139":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1421":{"tf":1.0},"1430":{"tf":1.0},"1436":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1453":{"tf":2.0},"1457":{"tf":1.0},"1472":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"359":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"433":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"510":{"tf":1.4142135623730951},"516":{"tf":1.0},"535":{"tf":1.0},"545":{"tf":4.123105625617661},"546":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"586":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"657":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"673":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"735":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.0},"790":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"82":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"93":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.23606797749979},"98":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0},"996":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":6,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"759":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"925":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":8,"docs":{"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1262":{"tf":1.0},"259":{"tf":1.0},"332":{"tf":1.0},"416":{"tf":1.0},"453":{"tf":1.0},"534":{"tf":1.0},"557":{"tf":1.0},"650":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"138":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"950":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"389":{"tf":1.0},"400":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":80,"docs":{"1130":{"tf":1.0},"1186":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1248":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"147":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"226":{"tf":1.0},"27":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"400":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"436":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903},"560":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.7320508075688772},"640":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":1.7320508075688772},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"756":{"tf":1.7320508075688772},"778":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.4142135623730951},"785":{"tf":2.0},"798":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":3.1622776601683795},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.4142135623730951},"84":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":2.0},"870":{"tf":1.0},"880":{"tf":1.7320508075688772},"883":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"913":{"tf":1.0},"941":{"tf":1.0},"950":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":6,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1372":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"0":{".":{"4":{".":{"0":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1376":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"1405":{"tf":1.0},"1482":{"tf":1.0},"740":{"tf":2.449489742783178},"798":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1325":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951}}}}}}},"df":5,"docs":{"1482":{"tf":1.0},"1520":{"tf":1.0},"798":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":2,"docs":{"798":{"tf":1.0},"988":{"tf":1.0}}},"4":{"df":4,"docs":{"46":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"987":{"tf":1.0}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":145,"docs":{"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1007":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1148":{"tf":1.0},"1166":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1214":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1263":{"tf":1.0},"1278":{"tf":2.0},"128":{"tf":2.23606797749979},"1290":{"tf":1.0},"130":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1352":{"tf":1.0},"1355":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1432":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1515":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.4142135623730951},"287":{"tf":1.0},"34":{"tf":1.0},"349":{"tf":1.0},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"491":{"tf":2.0},"498":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"626":{"tf":1.0},"631":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"654":{"tf":1.0},"66":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"743":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"778":{"tf":1.0},"827":{"tf":1.0},"842":{"tf":1.0},"87":{"tf":2.23606797749979},"896":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.0},"927":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":2.6457513110645907},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":53,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1055":{"tf":1.0},"1083":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1200":{"tf":1.0},"125":{"tf":1.0},"1297":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1369":{"tf":1.0},"1384":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1419":{"tf":1.0},"1441":{"tf":1.0},"1451":{"tf":1.0},"1475":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.4142135623730951},"528":{"tf":1.0},"599":{"tf":1.0},"604":{"tf":1.0},"687":{"tf":1.0},"705":{"tf":1.0},"719":{"tf":1.0},"739":{"tf":1.0},"746":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"892":{"tf":1.0},"893":{"tf":1.0},"897":{"tf":1.0},"976":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1446":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"902":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"899":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"900":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1446":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"0":{"df":1,"docs":{"1300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1449":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":40,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.7320508075688772},"1159":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1215":{"tf":1.0},"125":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.4142135623730951},"1430":{"tf":1.0},"1436":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1512":{"tf":1.0},"160":{"tf":1.0},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"660":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"963":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":1,"docs":{"1048":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"1054":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":14,"docs":{"1324":{"tf":1.0},"1325":{"tf":1.0},"1330":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"733":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"554":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"297":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":159,"docs":{"1006":{"tf":1.0},"1008":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1214":{"tf":1.7320508075688772},"1219":{"tf":1.0},"1222":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1249":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":2.0},"1330":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1339":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":2.0},"1421":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1469":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1507":{"tf":1.0},"1529":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.4142135623730951},"206":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"520":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.0},"697":{"tf":1.0},"725":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"788":{"tf":1.0},"816":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.4142135623730951},"938":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.7320508075688772},"942":{"tf":1.0},"943":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.7320508075688772},"979":{"tf":1.0},"980":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"997":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1365":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.4142135623730951},"598":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}},"df":283,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1007":{"tf":1.0},"101":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":1.0},"1146":{"tf":1.0},"1149":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1227":{"tf":1.0},"1232":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1240":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"128":{"tf":3.0},"1282":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1324":{"tf":2.8284271247461903},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":2.6457513110645907},"1339":{"tf":1.4142135623730951},"1340":{"tf":2.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"1365":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1421":{"tf":3.0},"1425":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"146":{"tf":1.0},"1460":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1503":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1526":{"tf":1.0},"1528":{"tf":2.0},"1529":{"tf":2.449489742783178},"1530":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":2.6457513110645907},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":2.0},"277":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"39":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":2.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":2.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"527":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"555":{"tf":1.4142135623730951},"576":{"tf":1.0},"58":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"613":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"649":{"tf":1.7320508075688772},"654":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"698":{"tf":1.7320508075688772},"704":{"tf":1.0},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"708":{"tf":2.23606797749979},"714":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":1.4142135623730951},"725":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":2.23606797749979},"795":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.4142135623730951},"833":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.4142135623730951},"87":{"tf":3.1622776601683795},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"937":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"940":{"tf":1.0},"941":{"tf":2.23606797749979},"942":{"tf":1.7320508075688772},"944":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":2.8284271247461903},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"676":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"367":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"1":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"617":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1436":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1151":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1352":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1185":{"tf":1.0},"1265":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"1151":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"456":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":6,"docs":{"1103":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1522":{"tf":2.0}}},"df":0,"docs":{}}},"df":148,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":2.23606797749979},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1098":{"tf":1.7320508075688772},"11":{"tf":1.0},"1114":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.7320508075688772},"115":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1206":{"tf":1.0},"1255":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1365":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1388":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":1.0},"1409":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1482":{"tf":2.23606797749979},"1502":{"tf":1.0},"1503":{"tf":2.0},"1515":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"199":{"tf":3.0},"2":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"322":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"46":{"tf":2.0},"522":{"tf":1.0},"536":{"tf":1.0},"549":{"tf":1.0},"583":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"61":{"tf":1.7320508075688772},"634":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0},"722":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.7320508075688772},"744":{"tf":1.7320508075688772},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"776":{"tf":1.7320508075688772},"779":{"tf":2.23606797749979},"782":{"tf":1.0},"783":{"tf":1.0},"798":{"tf":2.0},"816":{"tf":1.7320508075688772},"836":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"874":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"908":{"tf":1.0},"914":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"942":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":2.0},"988":{"tf":1.7320508075688772},"989":{"tf":1.4142135623730951},"991":{"tf":1.7320508075688772},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":25,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"160":{"tf":1.0},"192":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"482":{"tf":1.0},"72":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"871":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"911":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"922":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0},"95":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1155":{"tf":1.0},"771":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"554":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1086":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1068":{"tf":1.0}}}}}},"p":{"c":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"185":{"tf":1.0},"43":{"tf":1.0},"978":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"911":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"976":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1515":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"1194":{"tf":1.0},"1439":{"tf":1.0},"1506":{"tf":1.0},"243":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"892":{"tf":1.0},"899":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1087":{"tf":1.0},"1451":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1340":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1340":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1340":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.7320508075688772},"171":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"1":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"294":{"tf":1.0},"43":{"tf":1.0}}}},"df":10,"docs":{"1140":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951},"661":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1042":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1406":{"tf":1.0},"1451":{"tf":1.4142135623730951},"321":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"964":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1405":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1405":{"tf":3.4641016151377544}},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"1212":{"tf":1.0},"1213":{"tf":2.23606797749979},"1217":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.4142135623730951},"383":{"tf":1.0},"608":{"tf":1.4142135623730951},"617":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1437":{"tf":1.0},"1454":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"941":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"17":{"tf":1.0},"223":{"tf":1.0},"759":{"tf":1.0},"788":{"tf":1.0},"831":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"863":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"232":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"93":{"tf":1.0},"960":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"586":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0}},"m":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"855":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1209":{"tf":1.0},"1399":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.4142135623730951},"831":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"1088":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1194":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0},"127":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.0},"1484":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"394":{"tf":1.0},"43":{"tf":1.0},"506":{"tf":1.0},"519":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0},"984":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1286":{"tf":1.0},"242":{"tf":1.0},"479":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":64,"docs":{"1080":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1182":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1426":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1506":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"327":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"405":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"555":{"tf":1.0},"617":{"tf":1.0},"639":{"tf":1.0},"655":{"tf":1.0},"664":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.4142135623730951},"808":{"tf":2.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"857":{"tf":1.0},"87":{"tf":1.0},"885":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"932":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":32,"docs":{"1115":{"tf":1.0},"1144":{"tf":1.0},"1248":{"tf":1.0},"13":{"tf":1.0},"1317":{"tf":1.0},"1327":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1397":{"tf":1.0},"140":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"359":{"tf":1.0},"548":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"773":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.0},"821":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"841":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":7,"docs":{"1021":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.0},"519":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1524":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"528":{"tf":1.0},"541":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"705":{"tf":1.0},"718":{"tf":1.4142135623730951},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"1183":{"tf":1.7320508075688772},"669":{"tf":1.0},"670":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"317":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":15,"docs":{"116":{"tf":1.0},"1422":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1489":{"tf":1.4142135623730951},"226":{"tf":1.0},"302":{"tf":1.0},"536":{"tf":1.0},"661":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}},"r":{"df":3,"docs":{"1206":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1286":{"tf":1.0},"1292":{"tf":1.0},"1465":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"941":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"322":{"tf":1.0},"549":{"tf":1.0}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1122":{"tf":1.0},"1169":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"822":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"z":{"df":0,"docs":{},"f":{"df":1,"docs":{"1095":{"tf":1.0}}}}},"y":{"%":{"df":0,"docs":{},"m":{"%":{"d":{")":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1097":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"325":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"1175":{"tf":2.23606797749979},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"181":{"tf":2.8284271247461903},"756":{"tf":2.6457513110645907},"757":{"tf":1.4142135623730951},"759":{"tf":1.7320508075688772},"778":{"tf":1.7320508075688772},"779":{"tf":2.0},"782":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"811":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1456":{"tf":1.0}}}},"r":{"df":4,"docs":{"17":{"tf":1.0},"228":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"760":{"tf":1.0}}}},"o":{"d":{"df":6,"docs":{"1179":{"tf":1.0},"1349":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1300":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"976":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"3":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1441":{"tf":1.0}}},"5":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":1,"docs":{"1441":{"tf":1.0}}},"1":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.4142135623730951}}}},"df":5,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1437":{"tf":1.0},"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"1504":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":8,"docs":{"1112":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":2,"docs":{"157":{"tf":1.0},"761":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1003":{"tf":1.0},"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"298":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"654":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"859":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"779":{"tf":1.0}}}},"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":6,"docs":{"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}},"3":{"df":3,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"859":{"tf":1.4142135623730951}}},"6":{"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1432":{"tf":1.0},"728":{"tf":1.0}}},"df":27,"docs":{"1084":{"tf":1.4142135623730951},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1129":{"tf":1.0},"1307":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1362":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"382":{"tf":1.0},"588":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"897":{"tf":1.0},"901":{"tf":1.0},"933":{"tf":1.0},"977":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"779":{"tf":1.0}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":9,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":15,"docs":{"1134":{"tf":1.0},"1179":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.0},"1401":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"845":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1441":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0}}},"3":{"df":2,"docs":{"1015":{"tf":1.4142135623730951},"1030":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1329":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":2,"docs":{"1169":{"tf":1.0},"1403":{"tf":1.4142135623730951}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}},"1":{"df":1,"docs":{"767":{"tf":1.0}}},"df":5,"docs":{"1116":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"198":{"tf":1.0},"501":{"tf":1.0}}},"df":16,"docs":{"1048":{"tf":1.0},"1390":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"501":{"tf":1.4142135623730951},"519":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"812":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"k":{"df":1,"docs":{"1253":{"tf":1.0}}}},"df":15,"docs":{"1071":{"tf":1.0},"1079":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1441":{"tf":1.7320508075688772},"308":{"tf":1.0},"315":{"tf":1.0},"443":{"tf":1.0},"68":{"tf":1.0},"916":{"tf":1.0}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1024":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"196":{"tf":1.0},"365":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"599":{"tf":1.0},"654":{"tf":1.0},"761":{"tf":1.0},"881":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0}}},"d":{"3":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1079":{"tf":1.0},"1215":{"tf":1.4142135623730951},"916":{"tf":1.0}}},"4":{"df":1,"docs":{"1087":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0}}},"df":3,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0}}},"df":5,"docs":{"1003":{"tf":1.0},"1336":{"tf":1.0},"298":{"tf":1.0},"501":{"tf":1.4142135623730951},"859":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":15,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.0},"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"783":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"785":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"767":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"351":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"1071":{"tf":1.0}}},"8":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":76,"docs":{"1048":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1072":{"tf":1.0},"1079":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.0},"1168":{"tf":1.4142135623730951},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1248":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1301":{"tf":2.23606797749979},"1302":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1312":{"tf":2.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1392":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1512":{"tf":1.0},"1522":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"303":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"700":{"tf":1.0},"742":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"814":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"913":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"953":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0}}},"5":{"df":3,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"1149":{"tf":1.0},"1271":{"tf":1.0},"1379":{"tf":1.0},"458":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"1071":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":37,"docs":{"100":{"tf":1.0},"1045":{"tf":1.0},"115":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1403":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"176":{"tf":1.0},"180":{"tf":2.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":4,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1048":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.0}}},"df":2,"docs":{"443":{"tf":1.0},"53":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{"c":{"d":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"d":{"3":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1003":{"tf":1.0},"1015":{"tf":1.0},"1024":{"tf":1.0},"1046":{"tf":1.0},"1228":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.4142135623730951},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1346":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":62,"docs":{"1048":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1170":{"tf":1.0},"1185":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1248":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"1437":{"tf":1.0},"144":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"357":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"591":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"762":{"tf":1.0},"785":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"881":{"tf":1.0},"914":{"tf":1.4142135623730951},"925":{"tf":1.0},"95":{"tf":1.7320508075688772},"953":{"tf":1.0},"963":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0}}},"3":{".":{"1":{"0":{"df":2,"docs":{"549":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":8,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.0},"458":{"tf":1.0}}},"df":5,"docs":{"1079":{"tf":1.0},"1399":{"tf":1.0},"1445":{"tf":1.0},"310":{"tf":1.0},"902":{"tf":1.0}}},"1":{"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}},"2":{"df":2,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.4142135623730951}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"6":{"0":{"0":{"df":9,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"1307":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"1030":{"tf":1.0},"1170":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1345":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.4142135623730951},"581":{"tf":1.0},"700":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.0},"824":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"881":{"tf":1.0},"915":{"tf":1.4142135623730951},"953":{"tf":1.0},"96":{"tf":1.7320508075688772},"964":{"tf":1.4142135623730951}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1268":{"tf":1.0},"1271":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0}}},"4":{"df":1,"docs":{"465":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"987":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"1226":{"tf":1.0}}}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1273":{"tf":1.0},"1274":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"493":{"tf":1.0},"849":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"1":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"2":{"df":2,"docs":{"767":{"tf":1.0},"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}},"df":21,"docs":{"1171":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1345":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"581":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":8,"docs":{"1305":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"625":{"tf":1.0}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":4,"docs":{"365":{"tf":1.0},"498":{"tf":1.0},"599":{"tf":1.0},"810":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.7320508075688772}}},"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":23,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.7320508075688772},"883":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"157":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"1185":{"tf":1.0},"1186":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"581":{"tf":1.0},"826":{"tf":1.4142135623730951},"916":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"966":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1505":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1105":{"tf":1.0},"1528":{"tf":1.0},"250":{"tf":1.0},"352":{"tf":1.0},"584":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}},"k":{"df":1,"docs":{"911":{"tf":1.0}}}},"df":6,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.0},"255":{"tf":1.0},"501":{"tf":1.0},"900":{"tf":1.0}}},"4":{"df":3,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0}}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"7":{"0":{"0":{"df":5,"docs":{"1105":{"tf":1.0},"682":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"5":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"8":{"'":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"9":{"df":0,"docs":{},"f":{"b":{"9":{"d":{"8":{"8":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"1270":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1522":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1507":{"tf":1.0},"933":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1119":{"tf":1.0}}},"6":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1001":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1161":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1247":{"tf":1.0},"944":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1250":{"tf":1.0},"1251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1003":{"tf":1.4142135623730951},"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1333":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"374":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":3,"docs":{"1247":{"tf":1.0},"1248":{"tf":1.0},"31":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":13,"docs":{"1211":{"tf":2.0},"1212":{"tf":2.0},"1213":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1234":{"tf":1.0},"1244":{"tf":1.0}}},"df":1,"docs":{"1145":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{"df":3,"docs":{"53":{"tf":1.0},"791":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"881":{"tf":1.7320508075688772},"925":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"981":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"937":{"tf":1.0},"977":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1102":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1149":{"tf":1.0},"1214":{"tf":1.0},"1290":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.4142135623730951},"823":{"tf":1.0},"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1490":{"tf":1.0}}}}}},"df":30,"docs":{"1061":{"tf":1.0},"1066":{"tf":1.0},"1092":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1174":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1477":{"tf":1.0},"1528":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.0},"352":{"tf":1.0},"423":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"584":{"tf":1.0},"610":{"tf":1.0},"656":{"tf":1.0},"92":{"tf":1.0},"942":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"810":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}}},"r":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1070":{"tf":1.0},"1194":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":3,"docs":{"1154":{"tf":1.0},"151":{"tf":1.0},"992":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"766":{"tf":1.0}}}}}},"m":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"767":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":34,"docs":{"1071":{"tf":1.0},"1149":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.0},"1403":{"tf":2.449489742783178},"1485":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"237":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.4142135623730951},"599":{"tf":1.0},"617":{"tf":1.0},"733":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.7320508075688772},"811":{"tf":1.7320508075688772},"868":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1004":{"tf":1.0},"1012":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1476":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.0},"991":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1148":{"tf":1.0},"1194":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"789":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"d":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":47,"docs":{"106":{"tf":1.0},"1109":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1165":{"tf":1.0},"1180":{"tf":1.0},"1186":{"tf":1.0},"1212":{"tf":1.7320508075688772},"1310":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1420":{"tf":1.0},"1480":{"tf":1.0},"1510":{"tf":1.0},"1526":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"473":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"553":{"tf":1.0},"580":{"tf":1.4142135623730951},"589":{"tf":1.0},"640":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"823":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0},"938":{"tf":1.0},"976":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1051":{"tf":1.0},"1083":{"tf":1.0},"1249":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1420":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"523":{"tf":1.0},"687":{"tf":1.0},"700":{"tf":1.0},"719":{"tf":1.0},"786":{"tf":1.0},"908":{"tf":1.0},"939":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0},"760":{"tf":2.23606797749979},"762":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"443":{"tf":1.0}}}}}}}}},"df":14,"docs":{"1166":{"tf":1.0},"1175":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1522":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"173":{"tf":1.0},"258":{"tf":1.4142135623730951},"423":{"tf":1.0},"524":{"tf":1.0},"701":{"tf":1.0},"797":{"tf":1.4142135623730951},"874":{"tf":1.0},"950":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1209":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"847":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"1118":{"tf":1.4142135623730951},"320":{"tf":1.0},"4":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.4142135623730951},"1069":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1002":{"tf":1.0},"1007":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}},"s":{"2":{"5":{"6":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1450":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1477":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1032":{"tf":1.0},"1254":{"tf":1.0},"1333":{"tf":1.0},"1427":{"tf":1.0},"178":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"918":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"944":{"tf":1.0},"973":{"tf":1.0}}}}}}},"df":2,"docs":{"1507":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":51,"docs":{"1006":{"tf":1.0},"1177":{"tf":1.0},"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1245":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"1423":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"454":{"tf":1.0},"518":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"695":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.4142135623730951},"850":{"tf":1.0},"86":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"981":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"616":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"382":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"642":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1385":{"tf":1.0},"654":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1363":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1362":{"tf":1.0},"420":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":4,"docs":{"1384":{"tf":1.0},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1088":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"581":{"tf":1.0},"696":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"921":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"587":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"653":{"tf":1.0},"723":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"558":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"846":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":2,"docs":{"269":{"tf":1.0},"288":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1361":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"523":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":14,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"545":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0},"419":{"tf":1.0},"519":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"794":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1517":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.7320508075688772},"143":{"tf":1.0},"241":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"347":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1213":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"1515":{"tf":1.0},"201":{"tf":1.0},"242":{"tf":2.23606797749979},"410":{"tf":1.0},"531":{"tf":1.0},"644":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1356":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1518":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.0},"738":{"tf":1.4142135623730951},"75":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"794":{"tf":1.4142135623730951},"822":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1148":{"tf":1.0},"1149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1047":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1140":{"tf":1.0},"1394":{"tf":1.4142135623730951},"681":{"tf":1.0},"695":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1140":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1399":{"tf":1.0},"518":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1302":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":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":{"545":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"641":{"tf":1.0},"701":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"648":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"558":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1021":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"637":{"tf":1.0},"703":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"412":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":3,"docs":{"407":{"tf":1.0},"524":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1362":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1148":{"tf":1.0},"1405":{"tf":1.0},"414":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"526":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1047":{"tf":1.0},"645":{"tf":1.0},"709":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"657":{"tf":1.0},"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"411":{"tf":1.0},"532":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1353":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"522":{"tf":1.0},"545":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"tf":1.4142135623730951}}}}}}}}}}},"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"795":{"tf":1.0},"922":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"1375":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0}}}}}},"df":1,"docs":{"725":{"tf":1.0}},"u":{"df":1,"docs":{"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"558":{"tf":1.0},"697":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"576":{"tf":1.0},"587":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"631":{"tf":1.0},"697":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"654":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"957":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"632":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"698":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"545":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1401":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"795":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1352":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":1,"docs":{"1401":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"419":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1369":{"tf":1.0},"349":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"520":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"420":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1356":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"527":{"tf":1.0},"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"142":{"tf":1.0},"1484":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"406":{"tf":1.0},"640":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1329":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"217":{"tf":1.0},"406":{"tf":1.0},"640":{"tf":1.0}}},":":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"1204":{"tf":1.0}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1332":{"tf":1.0},"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"606":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"=":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"287":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"769":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"604":{"tf":1.0},"606":{"tf":1.0},"616":{"tf":1.0},"769":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"708":{"tf":1.0}}}}},"i":{"d":{"df":14,"docs":{"1081":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1384":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"700":{"tf":1.7320508075688772},"949":{"tf":1.0},"957":{"tf":1.0},"999":{"tf":1.0}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"264":{"tf":1.0},"695":{"tf":1.0},"769":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"770":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.4142135623730951}},"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":1,"docs":{"382":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"76":{"tf":1.0},"770":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"76":{"tf":1.0},"770":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":586,"docs":{"0":{"tf":2.0},"1":{"tf":2.0},"10":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1004":{"tf":1.0},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"1112":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.23606797749979},"1143":{"tf":1.4142135623730951},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":2.0},"1166":{"tf":1.0},"117":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1175":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1194":{"tf":2.23606797749979},"1196":{"tf":1.0},"120":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1206":{"tf":2.8284271247461903},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":3.1622776601683795},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.0},"1216":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.7320508075688772},"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1234":{"tf":2.0},"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1242":{"tf":1.7320508075688772},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.7320508075688772},"1247":{"tf":2.6457513110645907},"1248":{"tf":2.6457513110645907},"1249":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"126":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1263":{"tf":1.0},"127":{"tf":2.6457513110645907},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"128":{"tf":3.4641016151377544},"129":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"130":{"tf":2.23606797749979},"1302":{"tf":1.0},"1318":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"1320":{"tf":1.0},"1321":{"tf":2.23606797749979},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1332":{"tf":3.0},"1333":{"tf":3.3166247903554},"1334":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"1390":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"1399":{"tf":3.4641016151377544},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.4142135623730951},"1415":{"tf":2.23606797749979},"1417":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"142":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"1430":{"tf":1.0},"1432":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"1460":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"147":{"tf":2.23606797749979},"1476":{"tf":1.0},"148":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"1499":{"tf":2.0},"150":{"tf":1.7320508075688772},"151":{"tf":2.8284271247461903},"1515":{"tf":1.7320508075688772},"1518":{"tf":2.0},"152":{"tf":2.0},"1529":{"tf":1.4142135623730951},"153":{"tf":2.0},"1530":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":2.6457513110645907},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":2.0},"223":{"tf":1.4142135623730951},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.449489742783178},"242":{"tf":2.8284271247461903},"244":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"261":{"tf":2.8284271247461903},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"27":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":2.23606797749979},"327":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":2.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"35":{"tf":2.449489742783178},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"410":{"tf":1.7320508075688772},"411":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":2.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":2.0},"436":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"478":{"tf":2.0},"48":{"tf":1.0},"487":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"52":{"tf":1.0},"523":{"tf":2.23606797749979},"524":{"tf":1.0},"525":{"tf":1.0},"53":{"tf":3.0},"530":{"tf":1.7320508075688772},"531":{"tf":2.23606797749979},"532":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"54":{"tf":2.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":2.23606797749979},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"590":{"tf":1.0},"592":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.4142135623730951},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":2.449489742783178},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":2.6457513110645907},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":2.0},"623":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":2.23606797749979},"646":{"tf":1.4142135623730951},"649":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"672":{"tf":1.0},"673":{"tf":2.449489742783178},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.4142135623730951},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"700":{"tf":2.23606797749979},"701":{"tf":1.0},"702":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":2.23606797749979},"709":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":3.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":2.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":2.23606797749979},"749":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"750":{"tf":1.0},"751":{"tf":2.0},"752":{"tf":2.0},"753":{"tf":2.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.7320508075688772},"756":{"tf":2.0},"757":{"tf":2.23606797749979},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"76":{"tf":2.23606797749979},"760":{"tf":1.0},"761":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"765":{"tf":2.0},"766":{"tf":2.0},"767":{"tf":2.0},"768":{"tf":1.7320508075688772},"769":{"tf":2.0},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":2.6457513110645907},"773":{"tf":1.7320508075688772},"774":{"tf":1.0},"778":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":2.0},"79":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.1622776601683795},"82":{"tf":3.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"828":{"tf":1.4142135623730951},"829":{"tf":2.8284271247461903},"830":{"tf":1.0},"831":{"tf":2.0},"832":{"tf":1.7320508075688772},"833":{"tf":2.6457513110645907},"834":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":2.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"84":{"tf":2.0},"840":{"tf":1.7320508075688772},"841":{"tf":1.4142135623730951},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":2.0},"846":{"tf":1.0},"847":{"tf":2.8284271247461903},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.7320508075688772},"863":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"879":{"tf":1.4142135623730951},"88":{"tf":4.58257569495584},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.7320508075688772},"896":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.4142135623730951},"913":{"tf":2.0},"915":{"tf":1.0},"92":{"tf":1.7320508075688772},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":2.0},"949":{"tf":2.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"953":{"tf":2.0},"956":{"tf":1.0},"96":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":2.0},"970":{"tf":1.0},"976":{"tf":2.449489742783178},"978":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":2.0},"983":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"989":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":2.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}},"i":{"d":{"df":40,"docs":{"1045":{"tf":1.0},"1130":{"tf":1.0},"1186":{"tf":1.0},"1196":{"tf":1.0},"1226":{"tf":1.0},"1242":{"tf":1.0},"1245":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1361":{"tf":1.4142135623730951},"138":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1486":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"791":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.449489742783178},"913":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.4142135623730951},"990":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{":":{"'":{")":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.0},"611":{"tf":1.7320508075688772}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"518":{"tf":1.0},"770":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0},"1399":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"615":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"990":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.4142135623730951},"984":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"1143":{"tf":1.0},"1242":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"883":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1486":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1328":{"tf":2.0},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.0},"219":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"702":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":116,"docs":{"1":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1143":{"tf":2.6457513110645907},"1144":{"tf":2.23606797749979},"1145":{"tf":2.0},"118":{"tf":1.0},"1194":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.8284271247461903},"1329":{"tf":3.7416573867739413},"1330":{"tf":3.4641016151377544},"1360":{"tf":1.4142135623730951},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":1.4142135623730951},"138":{"tf":3.0},"1383":{"tf":1.4142135623730951},"1384":{"tf":2.449489742783178},"1385":{"tf":2.23606797749979},"1386":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.0},"142":{"tf":2.8284271247461903},"1423":{"tf":3.3166247903554},"145":{"tf":1.4142135623730951},"1483":{"tf":1.4142135623730951},"1484":{"tf":2.449489742783178},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1487":{"tf":2.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":2.0},"214":{"tf":2.449489742783178},"215":{"tf":1.7320508075688772},"216":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"225":{"tf":2.0},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"256":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"523":{"tf":2.449489742783178},"524":{"tf":1.7320508075688772},"525":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":2.23606797749979},"55":{"tf":2.449489742783178},"639":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"641":{"tf":2.0},"642":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":2.449489742783178},"701":{"tf":1.7320508075688772},"702":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":2.23606797749979},"786":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"852":{"tf":1.0},"858":{"tf":1.7320508075688772},"875":{"tf":1.0},"88":{"tf":3.872983346207417},"886":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"952":{"tf":1.7320508075688772},"953":{"tf":1.7320508075688772},"954":{"tf":1.7320508075688772},"970":{"tf":1.0},"980":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.7320508075688772},"524":{"tf":1.7320508075688772},"525":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"548":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1226":{"tf":1.0},"13":{"tf":1.0},"1332":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":2.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.4142135623730951},"663":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"76":{"tf":1.0},"765":{"tf":1.7320508075688772},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"938":{"tf":1.0},"976":{"tf":1.0}},"r":{"df":2,"docs":{"1060":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"1003":{"tf":1.0},"1250":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"1472":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":101,"docs":{"1010":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":2.0},"1015":{"tf":2.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1040":{"tf":1.7320508075688772},"1041":{"tf":1.4142135623730951},"1042":{"tf":1.0},"1043":{"tf":1.7320508075688772},"1044":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1047":{"tf":2.449489742783178},"1048":{"tf":1.4142135623730951},"1049":{"tf":1.0},"1050":{"tf":2.6457513110645907},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1227":{"tf":1.0},"1230":{"tf":1.0},"1245":{"tf":1.0},"1254":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":2.6457513110645907},"1472":{"tf":2.23606797749979},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.0},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"159":{"tf":2.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"334":{"tf":1.0},"341":{"tf":1.4142135623730951},"345":{"tf":1.0},"375":{"tf":1.0},"404":{"tf":1.0},"418":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"572":{"tf":1.0},"608":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.4142135623730951},"959":{"tf":1.7320508075688772},"960":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"984":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.7320508075688772}}}}}}}}},"i":{"a":{"df":1,"docs":{"1343":{"tf":2.0}}},"c":{"df":1,"docs":{"1305":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"w":{"df":19,"docs":{"1054":{"tf":1.0},"1071":{"tf":1.0},"1108":{"tf":1.0},"1209":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"446":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"934":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"978":{"tf":1.4142135623730951},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1447":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1485":{"tf":2.23606797749979},"43":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}},"n":{"df":3,"docs":{"112":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1085":{"tf":1.0},"1151":{"tf":1.0},"1163":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1455":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"477":{"tf":1.0},"509":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"951":{"tf":1.0},"964":{"tf":1.0},"970":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1451":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"1111":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"1480":{"tf":1.0},"198":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.0},"519":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"182":{"tf":1.0},"35":{"tf":2.0},"49":{"tf":1.0},"581":{"tf":1.0},"765":{"tf":1.0}}},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.0}}},"z":{"df":7,"docs":{"1256":{"tf":1.0},"156":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"412":{"tf":1.0},"531":{"tf":1.4142135623730951},"533":{"tf":1.0},"646":{"tf":1.0},"708":{"tf":1.4142135623730951},"710":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1194":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"528":{"tf":1.0},"705":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"414":{"tf":1.0},"648":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":213,"docs":{"1042":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"1172":{"tf":2.0},"1179":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1276":{"tf":1.0},"1290":{"tf":1.0},"1355":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":2.23606797749979},"1402":{"tf":2.23606797749979},"1437":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":2.0},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"486":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":2.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"592":{"tf":1.0},"593":{"tf":2.0},"594":{"tf":1.7320508075688772},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.7320508075688772},"65":{"tf":1.0},"662":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"690":{"tf":2.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"810":{"tf":1.0},"844":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1276":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1276":{"tf":1.0},"486":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"434":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1149":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1355":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"1267":{"tf":1.0},"1526":{"tf":1.0},"483":{"tf":1.0},"493":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":4,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"507":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":5,"docs":{"1148":{"tf":1.0},"1355":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1281":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1526":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1526":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":2.0},"1287":{"tf":1.4142135623730951},"1288":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"479":{"tf":2.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"509":{"tf":2.0},"510":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":33,"docs":{"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"348":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"186":{"tf":1.0},"317":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1082":{"tf":1.4142135623730951},"892":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1279":{"tf":1.0},"1358":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"186":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"1032":{"tf":1.0},"1086":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"257":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.4142135623730951},"548":{"tf":1.0},"576":{"tf":1.4142135623730951},"593":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}},"df":11,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1482":{"tf":1.0},"192":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"501":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"1042":{"tf":1.0},"1137":{"tf":1.0},"1295":{"tf":1.0},"21":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1116":{"tf":1.4142135623730951},"1194":{"tf":1.0},"204":{"tf":1.0}}}}},"v":{"df":12,"docs":{"11":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"288":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"617":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"115":{"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":10,"docs":{"365":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"599":{"tf":1.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"287":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"109":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1294":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"549":{"tf":1.0},"729":{"tf":1.4142135623730951},"828":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"866":{"tf":1.0},"873":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1186":{"tf":1.0},"1345":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"676":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"956":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"886":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":1,"docs":{"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"s":{"3":{":":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1071":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.7320508075688772},"1130":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"742":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"790":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1197":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1237":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"575":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1151":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1217":{"tf":1.0},"1392":{"tf":2.6457513110645907},"684":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"420":{"tf":1.0},"654":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"808":{"tf":1.0},"816":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1336":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":59,"docs":{"1148":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1301":{"tf":2.23606797749979},"1305":{"tf":2.23606797749979},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.23606797749979},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1378":{"tf":2.23606797749979},"1382":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.6457513110645907},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0},"383":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"1148":{"tf":1.0},"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":47,"docs":{"1059":{"tf":1.0},"1067":{"tf":1.0},"1323":{"tf":2.8284271247461903},"134":{"tf":2.449489742783178},"135":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.449489742783178},"1421":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":2.6457513110645907},"1432":{"tf":1.0},"1433":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"206":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"371":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"395":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"461":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":2.449489742783178},"522":{"tf":2.23606797749979},"605":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"629":{"tf":1.7320508075688772},"635":{"tf":1.7320508075688772},"65":{"tf":1.0},"696":{"tf":2.0},"699":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.7320508075688772},"797":{"tf":1.7320508075688772},"880":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1326":{"tf":1.0},"194":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"395":{"tf":1.0},"629":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":8,"docs":{"1032":{"tf":1.0},"1254":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.7320508075688772},"973":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"440":{"tf":1.0},"946":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1194":{"tf":1.0},"1208":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0},"62":{"tf":1.0},"901":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}}}}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":32,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1288":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1403":{"tf":2.8284271247461903},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"423":{"tf":1.0},"502":{"tf":1.0},"60":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"845":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":2.23606797749979},"942":{"tf":1.0},"951":{"tf":1.4142135623730951},"966":{"tf":1.7320508075688772},"969":{"tf":2.0},"988":{"tf":1.0},"995":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":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":{"1403":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":35,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1206":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1442":{"tf":2.449489742783178},"1455":{"tf":1.0},"147":{"tf":1.0},"1474":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"503":{"tf":2.23606797749979},"6":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.7320508075688772},"669":{"tf":1.0},"679":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"816":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"944":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1194":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1486":{"tf":1.4142135623730951},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"783":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"899":{"tf":1.0},"995":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1109":{"tf":1.0}}}}}}}}},"df":1,"docs":{"181":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1295":{"tf":1.0},"1432":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.0},"495":{"tf":1.0},"73":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0}}}},"df":3,"docs":{"255":{"tf":1.0},"765":{"tf":1.0},"916":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":20,"docs":{"1055":{"tf":1.4142135623730951},"1068":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1092":{"tf":1.0},"1220":{"tf":1.0},"1451":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.7320508075688772},"381":{"tf":1.0},"427":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"847":{"tf":1.0},"916":{"tf":1.0}}}}},"df":1,"docs":{"1097":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1287":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":71,"docs":{"1148":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":2.449489742783178},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.3166247903554},"1305":{"tf":2.6457513110645907},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.6457513110645907},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1359":{"tf":2.23606797749979},"1361":{"tf":1.7320508075688772},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":2.23606797749979},"1369":{"tf":2.449489742783178},"1378":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1399":{"tf":3.7416573867739413},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.3166247903554},"1405":{"tf":2.23606797749979},"1515":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"458":{"tf":2.0},"459":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":2.6457513110645907},"477":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}},"r":{"df":3,"docs":{"981":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0}}}},"df":23,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":2.0},"1065":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":2.449489742783178},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.7320508075688772},"1512":{"tf":2.23606797749979},"1513":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"255":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0},"893":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1066":{"tf":1.0},"1454":{"tf":1.0},"1512":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}}}}}},"s":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1452":{"tf":1.0},"1454":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"64":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"1197":{"tf":1.0},"1422":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0},"805":{"tf":1.0},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":83,"docs":{"1054":{"tf":2.0},"1055":{"tf":2.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1079":{"tf":1.0},"108":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1090":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"113":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.7320508075688772},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.6457513110645907},"1489":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1528":{"tf":1.0},"1531":{"tf":1.0},"285":{"tf":1.7320508075688772},"289":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"536":{"tf":1.0},"564":{"tf":1.4142135623730951},"722":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"901":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1011":{"tf":1.0},"1061":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.7320508075688772},"1098":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1510":{"tf":1.0},"1520":{"tf":1.0},"171":{"tf":1.4142135623730951},"974":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1503":{"tf":1.0},"711":{"tf":1.0},"940":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1312":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1119":{"tf":1.0}}}}}},"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"760":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":30,"docs":{"1021":{"tf":1.0},"1045":{"tf":1.0},"1091":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"129":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"404":{"tf":1.0},"45":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"53":{"tf":1.4142135623730951},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":71,"docs":{"1013":{"tf":1.0},"1015":{"tf":1.0},"1029":{"tf":1.0},"1077":{"tf":1.0},"110":{"tf":1.0},"1108":{"tf":1.0},"1119":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1192":{"tf":1.0},"1196":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1482":{"tf":1.0},"16":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"607":{"tf":1.0},"615":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"739":{"tf":1.0},"751":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"925":{"tf":1.0},"943":{"tf":1.4142135623730951},"960":{"tf":1.0},"980":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":121,"docs":{"107":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1334":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1373":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"327":{"tf":1.0},"334":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"519":{"tf":1.0},"547":{"tf":1.0},"555":{"tf":1.0},"576":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.7320508075688772},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"696":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"75":{"tf":1.4142135623730951},"758":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":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":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1315":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1338":{"tf":2.0},"1389":{"tf":1.4142135623730951},"1390":{"tf":2.0},"206":{"tf":1.0},"237":{"tf":1.0},"311":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1033":{"tf":1.0}}}}}},"df":30,"docs":{"1145":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1206":{"tf":1.0},"1247":{"tf":1.7320508075688772},"1248":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1355":{"tf":2.6457513110645907},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.0},"1361":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1384":{"tf":1.0},"226":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"426":{"tf":2.0},"427":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.0},"883":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"899":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"173":{"tf":1.0},"21":{"tf":1.0},"439":{"tf":1.0},"54":{"tf":1.0}}}}},"df":1,"docs":{"804":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":36,"docs":{"1140":{"tf":1.0},"1161":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1292":{"tf":1.0},"1310":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.4142135623730951},"249":{"tf":1.0},"30":{"tf":1.0},"361":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"595":{"tf":1.0},"673":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"1310":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"856":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"804":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1215":{"tf":1.0},"1453":{"tf":1.4142135623730951},"243":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1077":{"tf":1.0},"1295":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"831":{"tf":1.0},"863":{"tf":1.0}}}},"w":{"df":4,"docs":{"1295":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"1042":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1161":{"tf":1.0},"36":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1009":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1283":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1452":{"tf":2.0},"168":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"433":{"tf":1.0},"681":{"tf":1.4142135623730951},"69":{"tf":1.0},"908":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"961":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1306":{"tf":1.0},"250":{"tf":1.4142135623730951},"725":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1173":{"tf":1.0},"1417":{"tf":1.0},"1456":{"tf":1.7320508075688772},"1502":{"tf":1.0},"1516":{"tf":1.4142135623730951},"1518":{"tf":1.4142135623730951},"156":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.4142135623730951},"934":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1083":{"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":1,"docs":{"1182":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1330":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1346":{"tf":1.0},"255":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"108":{"tf":1.0},"353":{"tf":1.7320508075688772},"585":{"tf":1.7320508075688772}}}}},"d":{"df":19,"docs":{"1194":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1384":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"321":{"tf":1.0},"327":{"tf":1.0},"54":{"tf":1.0},"548":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"753":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"978":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1305":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"879":{"tf":1.0},"883":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"1375":{"tf":1.0},"1404":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":23,"docs":{"1129":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"788":{"tf":1.0},"811":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1222":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"h":{"df":22,"docs":{"1007":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1036":{"tf":1.0},"1135":{"tf":1.0},"1145":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.4142135623730951},"125":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"15":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"451":{"tf":1.0},"530":{"tf":1.0},"707":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"88":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":12,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1154":{"tf":1.0},"779":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1080":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"473":{"tf":2.0},"818":{"tf":1.0},"940":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1035":{"tf":1.0},"35":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"837":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"1451":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1512":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1067":{"tf":1.7320508075688772},"1071":{"tf":1.4142135623730951},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"381":{"tf":1.0},"404":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"19":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":24,"docs":{"1":{"tf":1.0},"1078":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":2.0},"1262":{"tf":1.0},"1296":{"tf":1.0},"1305":{"tf":1.0},"1409":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"453":{"tf":1.0},"481":{"tf":1.0},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"70":{"tf":1.0},"758":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":20,"docs":{"1069":{"tf":1.0},"1075":{"tf":1.0},"1136":{"tf":1.0},"1207":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"304":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"5":{"tf":1.0},"587":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"1015":{"tf":1.7320508075688772},"1018":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1024":{"tf":1.0},"1080":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"277":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1214":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"585":{"tf":1.0},"871":{"tf":1.0},"950":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"761":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1403":{"tf":1.0},"31":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":1,"docs":{"1379":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"474":{"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":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"1148":{"tf":1.0},"1174":{"tf":1.0},"1185":{"tf":1.7320508075688772},"1195":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"361":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"517":{"tf":1.0},"595":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"694":{"tf":1.0},"726":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}}},"df":1,"docs":{"1356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"911":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"58":{"tf":1.0},"911":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"1083":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1418":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"1213":{"tf":1.0},"1234":{"tf":2.0},"1244":{"tf":1.0},"760":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1106":{"tf":1.0},"249":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"258":{"tf":1.0},"292":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1154":{"tf":3.0},"1165":{"tf":2.6457513110645907},"1296":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":30,"docs":{"1016":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1026":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1038":{"tf":1.4142135623730951},"1042":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"1451":{"tf":1.0},"182":{"tf":1.0},"473":{"tf":2.0},"925":{"tf":1.0},"93":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":8,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"1339":{"tf":1.0},"1480":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"739":{"tf":1.4142135623730951},"792":{"tf":1.0},"836":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":3,"docs":{"51":{"tf":1.0},"730":{"tf":1.4142135623730951},"792":{"tf":2.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":31,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"104":{"tf":1.0},"1320":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":4,"docs":{"1095":{"tf":1.0},"552":{"tf":1.0},"586":{"tf":1.7320508075688772},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"261":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"930":{"tf":1.4142135623730951},"939":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"34":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.7320508075688772},"928":{"tf":1.7320508075688772},"929":{"tf":2.0},"939":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1403":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1194":{"tf":1.0},"1212":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.0},"61":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"929":{"tf":1.0},"972":{"tf":1.4142135623730951},"988":{"tf":2.0}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"1011":{"tf":1.0},"1219":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1456":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1509":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"664":{"tf":1.0},"780":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"940":{"tf":1.0},"942":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1174":{"tf":1.0},"59":{"tf":1.0},"951":{"tf":1.0},"973":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1137":{"tf":1.0},"1221":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.0},"620":{"tf":1.0},"763":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1021":{"tf":1.0},"82":{"tf":1.4142135623730951},"925":{"tf":2.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1250":{"tf":1.0}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"1144":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":76,"docs":{"1109":{"tf":1.0},"1166":{"tf":1.0},"1200":{"tf":1.0},"1208":{"tf":1.0},"1260":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1378":{"tf":1.0},"138":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"142":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1494":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"188":{"tf":1.0},"205":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"408":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"603":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"642":{"tf":1.7320508075688772},"654":{"tf":1.0},"702":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"96":{"tf":1.0},"970":{"tf":1.0},"979":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1421":{"tf":1.0},"1433":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"871":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1105":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"682":{"tf":1.0},"908":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"960":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"24":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"i":{"/":{"c":{"d":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":11,"docs":{"936":{"tf":2.0},"937":{"tf":1.7320508075688772},"938":{"tf":1.4142135623730951},"939":{"tf":2.0},"941":{"tf":2.0},"942":{"tf":2.0},"975":{"tf":1.4142135623730951},"976":{"tf":2.23606797749979},"977":{"tf":1.7320508075688772},"978":{"tf":1.4142135623730951},"979":{"tf":1.0}}}},"p":{"df":1,"docs":{"108":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":36,"docs":{"1152":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.0},"429":{"tf":1.0},"498":{"tf":1.0},"516":{"tf":1.7320508075688772},"541":{"tf":1.0},"588":{"tf":1.0},"593":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.4142135623730951},"619":{"tf":1.0},"693":{"tf":1.7320508075688772},"711":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"969":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"960":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1018":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"751":{"tf":1.0},"757":{"tf":1.0}},"i":{"df":3,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"753":{"tf":1.0}}}}}}},"u":{"d":{"df":5,"docs":{"831":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"1168":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}}},"r":{"df":8,"docs":{"170":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"929":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":117,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"1182":{"tf":1.0},"119":{"tf":1.0},"1191":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.4142135623730951},"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},"1317":{"tf":2.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.0},"143":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1501":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.7320508075688772},"359":{"tf":1.0},"4":{"tf":1.7320508075688772},"433":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"771":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"907":{"tf":1.4142135623730951},"925":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.4142135623730951},"427":{"tf":1.0},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"667":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":44,"docs":{"1149":{"tf":1.0},"1152":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1189":{"tf":2.0},"1202":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1265":{"tf":1.0},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1359":{"tf":2.8284271247461903},"1379":{"tf":1.4142135623730951},"1382":{"tf":2.449489742783178},"1493":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"427":{"tf":2.8284271247461903},"429":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":2.8284271247461903},"447":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"478":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"667":{"tf":2.23606797749979},"670":{"tf":1.7320508075688772},"672":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":2.23606797749979},"719":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"446":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"934":{"tf":1.4142135623730951},"935":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"554":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"u":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1064":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1439":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1310":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.0}}}}},"df":76,"docs":{"1154":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"1457":{"tf":2.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"320":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.0},"679":{"tf":1.0},"711":{"tf":1.0},"748":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.7320508075688772},"822":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}}},"df":1,"docs":{"858":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1076":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"88":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1304":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.0},"213":{"tf":1.0},"786":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"302":{"tf":1.7320508075688772},"311":{"tf":2.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1396":{"tf":1.0},"152":{"tf":1.0},"345":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"572":{"tf":1.0},"657":{"tf":1.0},"753":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"479":{"tf":1.0},"509":{"tf":1.0},"996":{"tf":2.0}}},"m":{"a":{"df":3,"docs":{"138":{"tf":1.0},"1436":{"tf":1.0},"1479":{"tf":1.0}},"n":{"d":{"df":60,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"1229":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1250":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1359":{"tf":1.0},"138":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1407":{"tf":2.23606797749979},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.7320508075688772},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.7320508075688772},"1415":{"tf":1.0},"1416":{"tf":1.7320508075688772},"1417":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":2.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1458":{"tf":1.0},"1501":{"tf":1.0},"1524":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"255":{"tf":1.0},"4":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"67":{"tf":1.0},"979":{"tf":1.4142135623730951},"996":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":26,"docs":{"1084":{"tf":1.0},"1194":{"tf":2.0},"169":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"747":{"tf":1.0},"833":{"tf":1.0},"852":{"tf":2.449489742783178},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.7320508075688772},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"858":{"tf":1.7320508075688772},"859":{"tf":1.4142135623730951},"860":{"tf":2.8284271247461903},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.7320508075688772},"875":{"tf":1.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1200":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1317":{"tf":1.0},"140":{"tf":1.4142135623730951},"1424":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1502":{"tf":1.0},"1528":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"303":{"tf":1.0},"350":{"tf":1.4142135623730951},"357":{"tf":1.0},"451":{"tf":1.4142135623730951},"547":{"tf":1.0},"582":{"tf":1.4142135623730951},"591":{"tf":1.0},"678":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"727":{"tf":1.0},"741":{"tf":1.0},"925":{"tf":1.0},"93":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":28,"docs":{"0":{"tf":2.0},"1020":{"tf":1.0},"1042":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"422":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"663":{"tf":1.0},"88":{"tf":1.0},"910":{"tf":1.0},"927":{"tf":1.0},"955":{"tf":1.0},"964":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1328":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"753":{"tf":1.0}}}},"r":{"df":3,"docs":{"231":{"tf":1.0},"922":{"tf":1.0},"944":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1048":{"tf":1.4142135623730951},"973":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"1023":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1292":{"tf":1.0},"1432":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.7320508075688772},"1528":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"25":{"tf":1.0},"353":{"tf":1.7320508075688772},"451":{"tf":1.0},"585":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"711":{"tf":1.0},"940":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"856":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1296":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":106,"docs":{"11":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1256":{"tf":1.0},"1268":{"tf":1.0},"1312":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"1347":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1370":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":2.0},"1400":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1458":{"tf":1.0},"1487":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"370":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"441":{"tf":1.4142135623730951},"452":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"480":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"604":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"619":{"tf":1.0},"62":{"tf":1.0},"654":{"tf":1.4142135623730951},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"765":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"820":{"tf":1.0},"825":{"tf":1.4142135623730951},"826":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"83":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0},"902":{"tf":1.4142135623730951},"970":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":12,"docs":{"1086":{"tf":1.0},"1089":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.0},"1297":{"tf":1.0},"17":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"593":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"1010":{"tf":1.0},"1026":{"tf":1.0},"1033":{"tf":1.0},"11":{"tf":1.0},"1166":{"tf":1.0},"1421":{"tf":1.4142135623730951},"188":{"tf":1.0},"37":{"tf":1.0},"62":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"985":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1079":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"51":{"tf":1.4142135623730951},"729":{"tf":1.0},"733":{"tf":1.4142135623730951},"740":{"tf":1.0},"753":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"1161":{"tf":1.0},"741":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"501":{"tf":1.4142135623730951},"729":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"0":{"tf":1.0},"1173":{"tf":1.0},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"290":{"tf":1.0},"60":{"tf":1.0},"898":{"tf":1.0},"910":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.0},"1010":{"tf":1.0},"1052":{"tf":2.0},"918":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":2.23606797749979},"996":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1036":{"tf":1.0},"1254":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"789":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":35,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"552":{"tf":2.0},"579":{"tf":2.23606797749979},"586":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1119":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1384":{"tf":1.0},"54":{"tf":1.0},"757":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0}}}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1051":{"tf":1.0},"1129":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1047":{"tf":1.0},"139":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.4142135623730951},"661":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1140":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.7320508075688772},"595":{"tf":1.0},"611":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"112":{"tf":1.0},"1140":{"tf":2.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1413":{"tf":2.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1428":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1460":{"tf":1.0},"1467":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"150":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"378":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"485":{"tf":1.0},"544":{"tf":1.0},"595":{"tf":1.0},"611":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.4142135623730951},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":2.0},"892":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":2.23606797749979},"925":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":47,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1301":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1495":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"378":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"518":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":219,"docs":{"1019":{"tf":1.4142135623730951},"1025":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1056":{"tf":1.7320508075688772},"1058":{"tf":1.4142135623730951},"1065":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1074":{"tf":1.4142135623730951},"1079":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1139":{"tf":1.0},"116":{"tf":1.0},"1168":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1189":{"tf":1.4142135623730951},"120":{"tf":1.0},"1206":{"tf":1.0},"1215":{"tf":1.4142135623730951},"122":{"tf":1.0},"1220":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1227":{"tf":1.4142135623730951},"1228":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"1277":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1296":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.4142135623730951},"139":{"tf":1.0},"1394":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1430":{"tf":1.0},"1434":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1437":{"tf":1.7320508075688772},"1438":{"tf":2.23606797749979},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1441":{"tf":2.449489742783178},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.7320508075688772},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.7320508075688772},"1447":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":2.23606797749979},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1460":{"tf":2.23606797749979},"1461":{"tf":2.0},"1467":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1489":{"tf":1.0},"149":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"150":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"182":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"337":{"tf":1.0},"361":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"447":{"tf":1.0},"462":{"tf":1.4142135623730951},"478":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"561":{"tf":1.7320508075688772},"562":{"tf":1.7320508075688772},"563":{"tf":1.0},"564":{"tf":1.0},"595":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"71":{"tf":1.0},"712":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.7320508075688772},"737":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"769":{"tf":1.0},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"829":{"tf":1.0},"833":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"887":{"tf":2.0},"888":{"tf":1.0},"889":{"tf":1.4142135623730951},"890":{"tf":1.0},"891":{"tf":1.7320508075688772},"892":{"tf":1.7320508075688772},"893":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"898":{"tf":1.7320508075688772},"899":{"tf":1.7320508075688772},"900":{"tf":1.7320508075688772},"901":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"904":{"tf":1.7320508075688772},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"969":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"1012":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1475":{"tf":1.0},"318":{"tf":1.0},"824":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1082":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1522":{"tf":1.0},"510":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1480":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1084":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1179":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":2.449489742783178},"318":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"678":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"30":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"954":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1051":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1194":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"37":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1005":{"tf":1.4142135623730951},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.4142135623730951},"1039":{"tf":1.4142135623730951},"1049":{"tf":1.4142135623730951},"1062":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1087":{"tf":1.4142135623730951},"1104":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"320":{"tf":1.0},"444":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"971":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1109":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"874":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":3,"docs":{"1358":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"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":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.0},"327":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"419":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}}},"j":{"a":{"c":{"df":4,"docs":{"1282":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"546":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1127":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"384":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"`":{"a":{"d":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"518":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":7,"docs":{"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"408":{"tf":1.0},"420":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"525":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"418":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":3,"docs":{"1365":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":8,"docs":{"1351":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"349":{"tf":1.4142135623730951},"397":{"tf":1.0},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"327":{"tf":1.0},"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"461":{"tf":1.0},"465":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"525":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"h":{"a":{"df":1,"docs":{"535":{"tf":1.0}},"r":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1351":{"tf":1.0},"1362":{"tf":1.0},"403":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}}}},"df":3,"docs":{"391":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1362":{"tf":1.0},"1399":{"tf":1.0},"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"420":{"tf":1.7320508075688772},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"400":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"458":{"tf":1.0},"529":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"770":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"358":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1355":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}}},"t":{"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":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"376":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1218":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"1352":{"tf":2.0},"1363":{"tf":2.0},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"973":{"tf":1.0}}}}},"df":171,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1140":{"tf":2.449489742783178},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1273":{"tf":2.23606797749979},"1276":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.4641016151377544},"1304":{"tf":1.0},"1305":{"tf":3.1622776601683795},"1306":{"tf":2.6457513110645907},"1307":{"tf":2.23606797749979},"1310":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1315":{"tf":2.0},"1349":{"tf":1.0},"1351":{"tf":2.0},"1352":{"tf":2.0},"1353":{"tf":2.23606797749979},"1355":{"tf":2.449489742783178},"1356":{"tf":2.6457513110645907},"1358":{"tf":2.0},"1359":{"tf":2.6457513110645907},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":2.0},"1365":{"tf":3.7416573867739413},"1367":{"tf":1.7320508075688772},"1369":{"tf":3.7416573867739413},"1399":{"tf":4.0},"1401":{"tf":3.872983346207417},"1403":{"tf":4.898979485566356},"1405":{"tf":3.3166247903554},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1522":{"tf":3.4641016151377544},"1524":{"tf":2.23606797749979},"1526":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":2.0},"358":{"tf":2.0},"361":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":3.1622776601683795},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":2.6457513110645907},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"443":{"tf":2.449489742783178},"458":{"tf":2.449489742783178},"459":{"tf":2.23606797749979},"461":{"tf":1.7320508075688772},"463":{"tf":2.23606797749979},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":2.449489742783178},"477":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"507":{"tf":2.449489742783178},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"770":{"tf":1.7320508075688772},"772":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"9":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1121":{"tf":1.4142135623730951},"51":{"tf":1.0},"746":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1152":{"tf":1.0},"1399":{"tf":1.0},"517":{"tf":1.4142135623730951},"541":{"tf":1.0},"694":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"766":{"tf":1.4142135623730951}}}},"m":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1332":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.7320508075688772},"170":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"733":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.7320508075688772},"757":{"tf":1.0},"761":{"tf":1.7320508075688772},"762":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1186":{"tf":1.0},"1422":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"185":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"489":{"tf":1.0},"529":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"66":{"tf":1.0},"706":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"836":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"950":{"tf":1.7320508075688772},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"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":{"1270":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":121,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1091":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":2.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":2.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"135":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"1374":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"167":{"tf":2.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"238":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.7320508075688772},"349":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"383":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"426":{"tf":1.0},"442":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.7320508075688772},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"601":{"tf":1.0},"605":{"tf":1.0},"614":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"725":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"780":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":2.0},"788":{"tf":2.0},"791":{"tf":1.7320508075688772},"792":{"tf":1.4142135623730951},"794":{"tf":2.0},"796":{"tf":2.0},"80":{"tf":1.7320508075688772},"831":{"tf":1.0},"836":{"tf":1.7320508075688772},"838":{"tf":2.0},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":3.0},"883":{"tf":1.0},"914":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"855":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":70,"docs":{"108":{"tf":1.0},"1173":{"tf":2.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.7320508075688772},"228":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":2.0},"53":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"700":{"tf":1.4142135623730951},"727":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":9,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"209":{"tf":1.0},"38":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"940":{"tf":1.0},"983":{"tf":1.0},"995":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1323":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"616":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"1130":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1213":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1330":{"tf":3.605551275463989},"1336":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.449489742783178},"1404":{"tf":1.0},"209":{"tf":2.23606797749979},"217":{"tf":1.0},"224":{"tf":1.4142135623730951},"276":{"tf":1.0},"406":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"728":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"1399":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"463":{"tf":1.0},"593":{"tf":1.0},"64":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"610":{"tf":1.0}}},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":22,"docs":{"1236":{"tf":1.0},"1256":{"tf":1.0},"47":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":2.449489742783178},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.7320508075688772},"883":{"tf":1.0},"884":{"tf":1.7320508075688772},"885":{"tf":1.7320508075688772},"886":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1261":{"tf":1.0},"172":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"1528":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"682":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.7320508075688772},"819":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":53,"docs":{"1447":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"292":{"tf":1.0},"329":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"692":{"tf":1.4142135623730951},"739":{"tf":1.0},"756":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"p":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1467":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1495":{"tf":1.0},"1528":{"tf":1.4142135623730951},"248":{"tf":1.0},"451":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1142":{"tf":1.0},"1493":{"tf":1.0},"1528":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1171":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1070":{"tf":1.0},"1102":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1083":{"tf":1.0},"1505":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1155":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1154":{"tf":2.8284271247461903},"1155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1153":{"tf":1.4142135623730951},"1154":{"tf":2.449489742783178},"1155":{"tf":2.0},"1156":{"tf":2.23606797749979},"1158":{"tf":1.0}}}},"df":12,"docs":{"1137":{"tf":1.0},"1219":{"tf":1.0},"1221":{"tf":1.0},"1298":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.4142135623730951},"620":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1510":{"tf":1.0},"1520":{"tf":1.0},"1530":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"1161":{"tf":1.0},"299":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":323,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1043":{"tf":1.0},"1047":{"tf":1.0},"1052":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1094":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"1124":{"tf":1.0},"1135":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"116":{"tf":1.0},"1161":{"tf":1.0},"1165":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.7320508075688772},"120":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"124":{"tf":2.0},"1242":{"tf":1.0},"127":{"tf":3.3166247903554},"1278":{"tf":1.0},"1300":{"tf":2.23606797749979},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1310":{"tf":2.0},"1318":{"tf":2.0},"132":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1323":{"tf":4.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":2.6457513110645907},"1330":{"tf":2.449489742783178},"1332":{"tf":3.0},"1336":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":3.3166247903554},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1346":{"tf":1.0},"1351":{"tf":2.0},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":2.23606797749979},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":2.0},"1378":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":2.23606797749979},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.449489742783178},"1405":{"tf":1.0},"141":{"tf":2.0},"1410":{"tf":1.0},"1419":{"tf":4.0},"142":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1425":{"tf":1.7320508075688772},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1467":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"148":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1487":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":2.449489742783178},"1500":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"1512":{"tf":1.0},"1515":{"tf":2.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1529":{"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.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"192":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"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":2.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"327":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.4142135623730951},"41":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.7320508075688772},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.7320508075688772},"587":{"tf":1.4142135623730951},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"61":{"tf":1.0},"622":{"tf":1.7320508075688772},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"640":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"71":{"tf":1.4142135623730951},"719":{"tf":1.0},"72":{"tf":2.8284271247461903},"721":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":2.23606797749979},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772},"748":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"768":{"tf":1.4142135623730951},"769":{"tf":1.0},"77":{"tf":2.6457513110645907},"771":{"tf":1.4142135623730951},"773":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.7320508075688772},"8":{"tf":2.0},"80":{"tf":2.23606797749979},"804":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":3.3166247903554},"881":{"tf":1.0},"882":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.4142135623730951},"921":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"845":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1361":{"tf":1.4142135623730951},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"332":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"515":{"tf":1.0},"536":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.7320508075688772}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1151":{"tf":1.0},"507":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":18,"docs":{"1179":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":2.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"431":{"tf":2.0},"540":{"tf":1.0},"543":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":32,"docs":{"1043":{"tf":1.0},"1140":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"356":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"590":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.4142135623730951},"696":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.0},"924":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"782":{"tf":1.0}}},"df":4,"docs":{"1390":{"tf":1.4142135623730951},"28":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1072":{"tf":1.0},"1278":{"tf":1.0},"1355":{"tf":1.0},"1490":{"tf":1.4142135623730951},"339":{"tf":1.0},"491":{"tf":1.0},"566":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"29":{"tf":1.0},"47":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1042":{"tf":1.0},"1052":{"tf":1.0},"1194":{"tf":1.0},"1450":{"tf":1.0},"1515":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1099":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1404":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"857":{"tf":1.4142135623730951},"860":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}}}}},"u":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"1119":{"tf":1.0},"841":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":138,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":2.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"1049":{"tf":1.0},"1050":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1173":{"tf":1.0},"1176":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.0},"1212":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1237":{"tf":1.0},"1262":{"tf":1.0},"127":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1415":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1432":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1458":{"tf":1.0},"1463":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1531":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"341":{"tf":1.4142135623730951},"41":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"617":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"724":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.4142135623730951},"782":{"tf":1.0},"792":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"984":{"tf":1.7320508075688772},"995":{"tf":1.0}},"i":{"df":5,"docs":{"1010":{"tf":1.0},"1029":{"tf":1.0},"1254":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"984":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"1268":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"465":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"1302":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"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":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}},"df":46,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1003":{"tf":1.0},"1011":{"tf":1.0},"1115":{"tf":1.0},"1213":{"tf":1.0},"1220":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1298":{"tf":1.0},"1328":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1423":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"15":{"tf":1.0},"1510":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"219":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"407":{"tf":1.0},"524":{"tf":1.0},"57":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.4142135623730951},"606":{"tf":1.0},"641":{"tf":1.0},"701":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"808":{"tf":1.0},"827":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"996":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1017":{"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":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1212":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"822":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1302":{"tf":1.0},"696":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":102,"docs":{"1044":{"tf":1.4142135623730951},"1108":{"tf":2.0},"1109":{"tf":1.4142135623730951},"1110":{"tf":1.7320508075688772},"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1197":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":2.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":2.0},"1324":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"134":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1441":{"tf":1.0},"1456":{"tf":1.0},"1460":{"tf":1.0},"151":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"205":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":2.0},"284":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"392":{"tf":2.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"446":{"tf":1.0},"49":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"593":{"tf":1.0},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.4142135623730951},"72":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"742":{"tf":1.7320508075688772},"748":{"tf":1.4142135623730951},"759":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.8284271247461903},"833":{"tf":1.0},"98":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"f":{"df":2,"docs":{"1095":{"tf":1.0},"1097":{"tf":1.0}}}}},"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"294":{"tf":1.0},"298":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"845":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"238":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1140":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":36,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":2.449489742783178},"1078":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1087":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1295":{"tf":2.23606797749979},"1296":{"tf":1.7320508075688772},"1297":{"tf":2.449489742783178},"1298":{"tf":2.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1522":{"tf":2.0},"16":{"tf":1.0},"64":{"tf":1.0},"779":{"tf":1.0},"871":{"tf":1.0}},"e":{"(":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"595":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":114,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1067":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1093":{"tf":1.4142135623730951},"11":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":2.449489742783178},"1149":{"tf":1.0},"116":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.0},"1256":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1290":{"tf":1.0},"1298":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1422":{"tf":1.0},"1430":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"21":{"tf":1.0},"312":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"46":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"532":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"548":{"tf":1.0},"55":{"tf":1.4142135623730951},"575":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.7320508075688772},"638":{"tf":2.0},"648":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"709":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.0},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1304":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"df":31,"docs":{"1045":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"1339":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"739":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.7320508075688772},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"808":{"tf":1.4142135623730951},"816":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"648":{"tf":1.0},"705":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1399":{"tf":1.0},"1507":{"tf":1.0},"812":{"tf":1.0},"933":{"tf":1.0}}}},"df":23,"docs":{"132":{"tf":2.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1530":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"73":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"420":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.0},"856":{"tf":1.4142135623730951},"859":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":20,"docs":{"1191":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"1293":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1439":{"tf":1.0},"1444":{"tf":1.0},"1496":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"311":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"66":{"tf":1.0},"679":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"935":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"1041":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1441":{"tf":1.0},"21":{"tf":1.0},"308":{"tf":1.0},"901":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"1164":{"tf":1.0},"1166":{"tf":1.0},"1422":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"669":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1505":{"tf":1.0},"434":{"tf":1.0},"489":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"256":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":64,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1304":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1355":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.7320508075688772},"1440":{"tf":1.0},"1441":{"tf":1.0},"1449":{"tf":2.449489742783178},"1452":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.0},"294":{"tf":2.0},"298":{"tf":1.0},"338":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"418":{"tf":1.0},"473":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.4142135623730951},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"565":{"tf":1.4142135623730951},"595":{"tf":1.0},"600":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.4142135623730951},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"72":{"tf":1.0},"742":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"996":{"tf":1.0}}}}}},"df":46,"docs":{"1103":{"tf":1.0},"1120":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.7320508075688772},"1392":{"tf":2.23606797749979},"1394":{"tf":1.7320508075688772},"1402":{"tf":2.23606797749979},"1404":{"tf":3.3166247903554},"576":{"tf":1.0},"588":{"tf":2.0},"617":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":2.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1108":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1384":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"774":{"tf":1.0},"80":{"tf":1.0},"800":{"tf":1.4142135623730951},"804":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.0},"829":{"tf":1.0},"887":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"1120":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1453":{"tf":1.0},"151":{"tf":1.7320508075688772},"155":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"332":{"tf":1.0},"354":{"tf":1.0},"377":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"610":{"tf":1.4142135623730951},"72":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.4142135623730951},"759":{"tf":1.0},"833":{"tf":1.0},"938":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"1094":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1515":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"151":{"tf":1.0},"859":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"33":{"tf":1.0},"815":{"tf":1.0},"856":{"tf":1.0},"859":{"tf":1.0},"883":{"tf":1.0}},"i":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"246":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"116":{"tf":1.0},"1194":{"tf":1.0},"915":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"1011":{"tf":1.0},"106":{"tf":1.0},"1061":{"tf":1.0},"107":{"tf":1.0},"1087":{"tf":1.0},"1094":{"tf":1.0},"115":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"248":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"292":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"682":{"tf":1.0},"911":{"tf":1.0},"942":{"tf":1.0},"969":{"tf":1.0},"972":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":18,"docs":{"1054":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1175":{"tf":1.0},"1211":{"tf":1.0},"1215":{"tf":1.0},"1284":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"822":{"tf":1.0},"929":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1135":{"tf":1.0},"1449":{"tf":1.0},"1506":{"tf":1.7320508075688772},"1509":{"tf":1.0},"545":{"tf":2.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"950":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"1253":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.0},"925":{"tf":1.0}}}}},"s":{"c":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"1211":{"tf":1.0},"47":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":108,"docs":{"1000":{"tf":1.0},"1055":{"tf":1.0},"108":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1115":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"1310":{"tf":1.0},"132":{"tf":2.449489742783178},"1323":{"tf":1.0},"1332":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"138":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.7320508075688772},"288":{"tf":1.0},"292":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"532":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.0},"709":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":2.0},"752":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.449489742783178},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"80":{"tf":2.0},"803":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"847":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.7320508075688772},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":1.0},"946":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"0":{"tf":1.0},"13":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1304":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"357":{"tf":1.0},"591":{"tf":1.0},"63":{"tf":1.0},"852":{"tf":1.0},"910":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}}},"r":{"df":3,"docs":{"802":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":21,"docs":{"1437":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1440":{"tf":2.0},"1442":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"899":{"tf":2.449489742783178},"900":{"tf":2.449489742783178},"902":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1013":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1347":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1406":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"603":{"tf":1.0},"679":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"851":{"tf":1.0},"87":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"980":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"1336":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1163":{"tf":1.0},"1175":{"tf":1.0},"1263":{"tf":1.0},"1432":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"928":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1450":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"921":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1454":{"tf":1.0}}}}}},"df":5,"docs":{"115":{"tf":1.0},"1343":{"tf":1.0},"1441":{"tf":1.0},"348":{"tf":1.0},"930":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":28,"docs":{"1":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1089":{"tf":1.0},"1194":{"tf":1.0},"1343":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"250":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"391":{"tf":1.0},"420":{"tf":1.4142135623730951},"554":{"tf":1.7320508075688772},"573":{"tf":1.4142135623730951},"625":{"tf":1.0},"654":{"tf":1.4142135623730951},"758":{"tf":1.0},"928":{"tf":1.7320508075688772},"930":{"tf":1.0},"968":{"tf":1.4142135623730951},"976":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"t":{"df":1,"docs":{"979":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":18,"docs":{"1376":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.0},"1394":{"tf":2.0},"1402":{"tf":1.0},"1404":{"tf":2.8284271247461903},"599":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"617":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"725":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"706":{"tf":1.0},"707":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"1194":{"tf":1.0},"976":{"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":{"1014":{"tf":1.0},"1119":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"129":{"tf":1.0},"1298":{"tf":1.0},"1333":{"tf":1.0},"1343":{"tf":1.0},"1467":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.7320508075688772},"289":{"tf":1.0},"487":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1475":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1014":{"tf":1.0},"1028":{"tf":1.0},"24":{"tf":1.0},"760":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":27,"docs":{"1015":{"tf":1.4142135623730951},"1028":{"tf":2.0},"1029":{"tf":1.0},"1031":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.7320508075688772},"57":{"tf":1.0},"571":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":2,"docs":{"1340":{"tf":1.0},"585":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"302":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1091":{"tf":1.0},"1156":{"tf":1.0},"1297":{"tf":1.0},"185":{"tf":1.0},"239":{"tf":1.0},"494":{"tf":1.0},"676":{"tf":1.0},"684":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":67,"docs":{"1043":{"tf":1.0},"1059":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":2.0},"124":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.7320508075688772},"1340":{"tf":1.0},"136":{"tf":1.7320508075688772},"1369":{"tf":1.0},"137":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.7320508075688772},"1426":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1462":{"tf":2.23606797749979},"1464":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1528":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"210":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"43":{"tf":1.0},"536":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"79":{"tf":1.0},"831":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"924":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"128":{"tf":1.0},"1439":{"tf":1.0},"242":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":4,"docs":{"221":{"tf":1.0},"228":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1099":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1164":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}},"i":{"df":5,"docs":{"1212":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.4142135623730951},"374":{"tf":1.0},"607":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"884":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":6,"docs":{"1062":{"tf":1.0},"1101":{"tf":1.0},"1489":{"tf":1.0},"371":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"125":{"tf":1.0},"1498":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"836":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1062":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1208":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1452":{"tf":1.0},"214":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"935":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"256":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":90,"docs":{"1002":{"tf":1.7320508075688772},"1003":{"tf":1.4142135623730951},"1004":{"tf":2.0},"1006":{"tf":1.0},"1007":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1075":{"tf":1.0},"1196":{"tf":1.0},"1214":{"tf":1.0},"1235":{"tf":2.0},"1247":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1250":{"tf":2.0},"1251":{"tf":2.0},"1261":{"tf":1.4142135623730951},"128":{"tf":3.4641016151377544},"129":{"tf":2.8284271247461903},"130":{"tf":1.4142135623730951},"1333":{"tf":3.4641016151377544},"1334":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1473":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":2.449489742783178},"1477":{"tf":2.23606797749979},"165":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":1.0},"202":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":2.8284271247461903},"235":{"tf":2.8284271247461903},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"242":{"tf":3.605551275463989},"243":{"tf":3.7416573867739413},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.6457513110645907},"256":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":2.0},"773":{"tf":1.0},"896":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":2.0},"940":{"tf":1.0},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"95":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"976":{"tf":3.0},"977":{"tf":1.0},"979":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"f":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"937":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":28,"docs":{"1227":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1474":{"tf":2.449489742783178},"165":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":2.449489742783178},"246":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":2.23606797749979},"763":{"tf":1.0},"896":{"tf":1.4142135623730951},"918":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1361":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"522":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1351":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1352":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1342":{"tf":1.0},"139":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"179":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"1":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"2":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"588":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1302":{"tf":2.0},"657":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1094":{"tf":1.0},"288":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0},"725":{"tf":1.0},"846":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1143":{"tf":1.4142135623730951},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"df":83,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":2.0},"1151":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":1.0},"210":{"tf":1.4142135623730951},"224":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"419":{"tf":1.0},"45":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"581":{"tf":1.0},"605":{"tf":1.4142135623730951},"616":{"tf":1.0},"634":{"tf":1.4142135623730951},"653":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"723":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"845":{"tf":3.0},"911":{"tf":1.0},"921":{"tf":1.0},"997":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"682":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":13,"docs":{"1209":{"tf":1.0},"1421":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"379":{"tf":1.0},"397":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"612":{"tf":1.0},"631":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"847":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"134":{"tf":2.449489742783178},"1345":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"141":{"tf":1.0},"1419":{"tf":2.23606797749979},"142":{"tf":2.0},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"88":{"tf":2.0}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":2.449489742783178},"605":{"tf":1.0},"612":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"641":{"tf":1.0},"642":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":486,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"1007":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1027":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1086":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":2.0},"1103":{"tf":1.0},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"111":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"113":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":2.23606797749979},"1142":{"tf":2.23606797749979},"1143":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"122":{"tf":1.0},"1228":{"tf":1.0},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.7320508075688772},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1240":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1256":{"tf":1.0},"1260":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":2.23606797749979},"1298":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1301":{"tf":2.6457513110645907},"1302":{"tf":2.6457513110645907},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1307":{"tf":1.0},"1312":{"tf":2.6457513110645907},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1318":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1323":{"tf":3.7416573867739413},"1324":{"tf":3.4641016151377544},"1325":{"tf":2.8284271247461903},"1326":{"tf":2.449489742783178},"1328":{"tf":2.0},"1329":{"tf":2.0},"133":{"tf":1.4142135623730951},"1330":{"tf":3.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.7320508075688772},"1339":{"tf":1.4142135623730951},"134":{"tf":3.4641016151377544},"1340":{"tf":2.449489742783178},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":2.8284271247461903},"1350":{"tf":1.4142135623730951},"1351":{"tf":2.0},"1352":{"tf":2.23606797749979},"1353":{"tf":2.0},"1355":{"tf":1.0},"136":{"tf":3.3166247903554},"1361":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":1.0},"1369":{"tf":2.6457513110645907},"137":{"tf":2.23606797749979},"1370":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1374":{"tf":2.0},"1375":{"tf":2.23606797749979},"1376":{"tf":2.0},"1378":{"tf":1.4142135623730951},"138":{"tf":2.0},"1384":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":2.449489742783178},"139":{"tf":1.0},"1390":{"tf":3.1622776601683795},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1403":{"tf":3.0},"1404":{"tf":3.605551275463989},"1405":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"1415":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":4.123105625617661},"142":{"tf":2.23606797749979},"1420":{"tf":3.1622776601683795},"1421":{"tf":3.3166247903554},"1422":{"tf":3.3166247903554},"1423":{"tf":3.1622776601683795},"1425":{"tf":3.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"145":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.0},"1466":{"tf":1.0},"1469":{"tf":2.0},"147":{"tf":1.0},"1470":{"tf":2.0},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"1481":{"tf":2.23606797749979},"1482":{"tf":1.4142135623730951},"1484":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"149":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.7320508075688772},"1515":{"tf":2.0},"1517":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":1.0},"156":{"tf":2.23606797749979},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.7320508075688772},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.449489742783178},"210":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"276":{"tf":2.23606797749979},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":2.0},"287":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":2.6457513110645907},"372":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"452":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"480":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":2.449489742783178},"523":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"558":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.7320508075688772},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"593":{"tf":1.0},"599":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"604":{"tf":2.449489742783178},"605":{"tf":2.6457513110645907},"606":{"tf":1.4142135623730951},"61":{"tf":1.0},"612":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":2.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"634":{"tf":2.23606797749979},"645":{"tf":1.0},"646":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.4142135623730951},"656":{"tf":2.23606797749979},"657":{"tf":1.7320508075688772},"66":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"696":{"tf":2.6457513110645907},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"699":{"tf":2.449489742783178},"700":{"tf":1.7320508075688772},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.7320508075688772},"71":{"tf":1.0},"710":{"tf":1.7320508075688772},"724":{"tf":1.0},"725":{"tf":1.4142135623730951},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"741":{"tf":1.4142135623730951},"744":{"tf":2.0},"747":{"tf":2.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"751":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":2.0},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.4142135623730951},"780":{"tf":2.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"791":{"tf":2.23606797749979},"792":{"tf":1.0},"793":{"tf":1.7320508075688772},"794":{"tf":2.8284271247461903},"795":{"tf":1.7320508075688772},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"798":{"tf":1.4142135623730951},"799":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.7320508075688772},"831":{"tf":1.7320508075688772},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"84":{"tf":1.0},"843":{"tf":1.7320508075688772},"845":{"tf":1.4142135623730951},"847":{"tf":2.0},"849":{"tf":1.4142135623730951},"850":{"tf":1.7320508075688772},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":3.3166247903554},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"875":{"tf":1.0},"88":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":2.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"92":{"tf":1.0},"921":{"tf":2.23606797749979},"922":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"970":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.4142135623730951}},"i":{"d":{"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"371":{"tf":1.0},"379":{"tf":1.0}},"}":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"522":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"87":{"tf":1.0}}}}}}}}},"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"787":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0},"1309":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"407":{"tf":1.0},"408":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"852":{"tf":1.0}},"e":{"df":3,"docs":{"1404":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1456":{"tf":1.0},"1475":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"230":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"1109":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1239":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1259":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.0},"1333":{"tf":2.6457513110645907},"143":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"374":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.0},"833":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"1051":{"tf":1.0},"1088":{"tf":1.0},"1287":{"tf":1.0},"1323":{"tf":1.0},"1490":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0},"908":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"141":{"tf":1.0},"1456":{"tf":1.0},"72":{"tf":1.0},"811":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"942":{"tf":1.0},"976":{"tf":1.4142135623730951},"978":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1513":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"1325":{"tf":1.0},"1432":{"tf":1.0},"728":{"tf":1.0},"804":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"1474":{"tf":1.4142135623730951},"253":{"tf":1.0},"976":{"tf":1.0}},"s":{"df":1,"docs":{"985":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1336":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1399":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1161":{"tf":1.0},"1309":{"tf":1.0},"1476":{"tf":1.0},"249":{"tf":1.0},"769":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1122":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1507":{"tf":1.0},"303":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.4142135623730951},"527":{"tf":1.0},"602":{"tf":1.0},"608":{"tf":1.0},"704":{"tf":1.0},"836":{"tf":1.0},"870":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1046":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"b":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":48,"docs":{"1003":{"tf":1.0},"11":{"tf":1.0},"1144":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1189":{"tf":1.0},"1206":{"tf":1.0},"1246":{"tf":1.0},"1285":{"tf":1.0},"1310":{"tf":1.0},"1330":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"693":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"874":{"tf":1.0},"881":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"954":{"tf":1.4142135623730951},"968":{"tf":1.0},"97":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"1061":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"548":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1381":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"1148":{"tf":1.0},"1330":{"tf":2.6457513110645907},"1338":{"tf":2.0},"1339":{"tf":2.8284271247461903},"1340":{"tf":2.0},"1345":{"tf":2.6457513110645907},"1346":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.7320508075688772},"956":{"tf":1.0},"962":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}}}},"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":{"1076":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":87,"docs":{"1015":{"tf":1.4142135623730951},"1016":{"tf":2.0},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":2.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.7320508075688772},"389":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"569":{"tf":1.7320508075688772},"57":{"tf":1.0},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0}}}}},"df":22,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.4142135623730951},"135":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.8284271247461903},"1402":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1420":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"384":{"tf":1.7320508075688772},"554":{"tf":1.0},"618":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.449489742783178},"723":{"tf":2.449489742783178},"949":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"950":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1130":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1309":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1381":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"1112":{"tf":2.23606797749979},"1116":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1332":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"507":{"tf":2.0},"65":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"816":{"tf":1.0}}}}},"b":{"df":29,"docs":{"1323":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":2.0},"185":{"tf":2.23606797749979},"206":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.0},"366":{"tf":2.23606797749979},"371":{"tf":2.0},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":2.23606797749979},"522":{"tf":2.0},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"797":{"tf":1.0},"838":{"tf":1.7320508075688772},"850":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":5,"docs":{"1092":{"tf":1.0},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":5,"docs":{"1091":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":26,"docs":{"1091":{"tf":1.7320508075688772},"1092":{"tf":1.0},"1306":{"tf":1.0},"1326":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1422":{"tf":2.23606797749979},"1425":{"tf":1.0},"1433":{"tf":1.0},"1476":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.4142135623730951},"273":{"tf":1.0},"366":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"4":{"tf":1.0},"600":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.7320508075688772},"789":{"tf":2.0},"790":{"tf":1.7320508075688772},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1169":{"tf":1.0},"1200":{"tf":1.0},"261":{"tf":1.0},"451":{"tf":1.0},"517":{"tf":1.0},"694":{"tf":1.0},"911":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.0},"1263":{"tf":1.0},"1296":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"169":{"tf":1.0},"212":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"304":{"tf":1.0},"306":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"536":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"679":{"tf":1.4142135623730951},"728":{"tf":1.0},"874":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"90":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"984":{"tf":1.0},"989":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}},"o":{"d":{"df":22,"docs":{"1045":{"tf":1.0},"1091":{"tf":1.0},"129":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"186":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.0},"376":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"609":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1457":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"1051":{"tf":1.0},"1106":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1505":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1528":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.4142135623730951},"541":{"tf":1.0},"892":{"tf":1.4142135623730951},"911":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1448":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":13,"docs":{"1263":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"225":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"813":{"tf":1.0},"815":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1102":{"tf":1.0},"1106":{"tf":1.0},"1149":{"tf":1.7320508075688772},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":2.0},"1445":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"486":{"tf":1.0},"65":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"810":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1197":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"47":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.7320508075688772},"942":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"151":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1175":{"tf":1.0},"423":{"tf":1.0},"876":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"1":{"tf":1.0},"1109":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1421":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1465":{"tf":1.0},"1493":{"tf":1.0},"15":{"tf":1.0},"1528":{"tf":1.7320508075688772},"227":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"511":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"79":{"tf":1.0},"882":{"tf":1.0},"910":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"1175":{"tf":1.0},"767":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"1323":{"tf":1.0},"1334":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1226":{"tf":1.0},"1403":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}}}}},"y":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"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":{"1403":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1131":{"tf":1.0},"742":{"tf":1.0},"746":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"746":{"tf":1.0}}}}}},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1449":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1212":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"1050":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1086":{"tf":1.0},"113":{"tf":1.7320508075688772},"1159":{"tf":1.7320508075688772},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1215":{"tf":1.0},"125":{"tf":1.0},"1296":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1342":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"1430":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1512":{"tf":1.0},"160":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"37":{"tf":1.0},"437":{"tf":1.4142135623730951},"554":{"tf":1.0},"563":{"tf":1.7320508075688772},"566":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.0},"660":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"935":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1323":{"tf":1.4142135623730951},"1325":{"tf":2.0},"1328":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1338":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1027":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"286":{"tf":1.0},"299":{"tf":1.0}}},"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"442":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"382":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":2.23606797749979}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1356":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":12,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.0},"419":{"tf":1.7320508075688772},"477":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":132,"docs":{"1127":{"tf":1.0},"1149":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"1171":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.449489742783178},"1282":{"tf":1.7320508075688772},"1344":{"tf":1.4142135623730951},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1367":{"tf":3.7416573867739413},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1394":{"tf":2.6457513110645907},"14":{"tf":1.0},"1401":{"tf":3.1622776601683795},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1439":{"tf":1.4142135623730951},"144":{"tf":1.0},"1457":{"tf":2.0},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.7320508075688772},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1463":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1467":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1469":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1473":{"tf":1.7320508075688772},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.7320508075688772},"1479":{"tf":1.7320508075688772},"1480":{"tf":1.4142135623730951},"1481":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1483":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.7320508075688772},"1489":{"tf":2.23606797749979},"1490":{"tf":2.23606797749979},"1491":{"tf":2.0},"1492":{"tf":1.7320508075688772},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":2.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1528":{"tf":1.4142135623730951},"243":{"tf":1.0},"261":{"tf":1.0},"286":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"419":{"tf":2.23606797749979},"442":{"tf":1.0},"463":{"tf":1.4142135623730951},"473":{"tf":1.0},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":2.449489742783178},"498":{"tf":2.449489742783178},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"546":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"584":{"tf":1.7320508075688772},"585":{"tf":1.0},"593":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":2.8284271247461903},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"723":{"tf":2.0},"758":{"tf":1.0},"899":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"941":{"tf":1.7320508075688772},"950":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1345":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1349":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1194":{"tf":1.4142135623730951},"21":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"811":{"tf":1.4142135623730951}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"681":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":14,"docs":{"1109":{"tf":1.0},"1160":{"tf":1.0},"1212":{"tf":1.0},"1298":{"tf":1.0},"1429":{"tf":1.4142135623730951},"28":{"tf":1.0},"369":{"tf":1.0},"439":{"tf":1.0},"729":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"932":{"tf":1.0},"933":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":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":{"255":{"tf":1.0}},"u":{"df":1,"docs":{"732":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1035":{"tf":1.0},"1085":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":2.0},"874":{"tf":1.0}},"t":{"df":5,"docs":{"1192":{"tf":1.4142135623730951},"1205":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"664":{"tf":1.0},"833":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"1115":{"tf":1.4142135623730951},"122":{"tf":1.0},"1462":{"tf":1.0},"327":{"tf":1.0},"555":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1114":{"tf":1.0},"60":{"tf":1.0}}}},"v":{"df":1,"docs":{"984":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1080":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":196,"docs":{"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1128":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1206":{"tf":1.7320508075688772},"1216":{"tf":1.4142135623730951},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":2.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":2.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":2.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":2.6457513110645907},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1454":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"356":{"tf":2.0},"382":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"46":{"tf":1.0},"472":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"590":{"tf":2.0},"616":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"67":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.4142135623730951},"734":{"tf":1.0},"764":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":1.4142135623730951},"833":{"tf":1.0},"839":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"129":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1126":{"tf":1.4142135623730951},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1378":{"tf":2.449489742783178},"1390":{"tf":2.0},"1394":{"tf":3.4641016151377544},"1402":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"615":{"tf":1.7320508075688772},"618":{"tf":1.7320508075688772},"653":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.0},"723":{"tf":2.23606797749979},"724":{"tf":1.7320508075688772},"798":{"tf":1.0},"949":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"1161":{"tf":1.0},"1185":{"tf":1.0},"1219":{"tf":1.0},"1310":{"tf":1.0},"1449":{"tf":1.0},"255":{"tf":1.0},"50":{"tf":1.0},"732":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1042":{"tf":1.0},"1082":{"tf":1.0},"1094":{"tf":1.0},"1135":{"tf":1.0},"116":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1209":{"tf":1.0},"127":{"tf":1.0},"1298":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1332":{"tf":1.0},"135":{"tf":1.0},"1404":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"334":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"605":{"tf":1.0},"634":{"tf":1.4142135623730951},"664":{"tf":1.0},"699":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"876":{"tf":1.0},"894":{"tf":1.0},"92":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0},"976":{"tf":1.0},"984":{"tf":1.0}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1345":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":4,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":1.0},"1471":{"tf":1.0},"1482":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1000":{"tf":1.0},"1507":{"tf":1.0},"918":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":2.449489742783178}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"941":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1436":{"tf":1.0},"950":{"tf":1.0},"954":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1214":{"tf":1.0},"234":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"606":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"372":{"tf":1.4142135623730951}}}},"df":37,"docs":{"1066":{"tf":1.7320508075688772},"1079":{"tf":2.0},"1095":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1215":{"tf":2.0},"1234":{"tf":2.0},"1296":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1440":{"tf":2.449489742783178},"1454":{"tf":2.23606797749979},"1456":{"tf":1.0},"1466":{"tf":1.0},"1497":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1520":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"298":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.4142135623730951},"336":{"tf":2.0},"372":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"506":{"tf":1.4142135623730951},"563":{"tf":2.0},"606":{"tf":1.0},"660":{"tf":2.0},"903":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"s":{"df":2,"docs":{"1194":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"1264":{"tf":1.0},"1267":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"547":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1287":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.7320508075688772},"510":{"tf":1.0},"538":{"tf":1.0}}}}}}},"df":61,"docs":{"1148":{"tf":2.0},"1192":{"tf":2.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.449489742783178},"1401":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"348":{"tf":1.0},"355":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":2.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.23606797749979},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"538":{"tf":1.4142135623730951},"547":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1108":{"tf":1.0},"1111":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1367":{"tf":1.0},"498":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"1244":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"412":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1092":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1405":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"206":{"tf":1.0},"272":{"tf":1.0},"412":{"tf":1.4142135623730951},"423":{"tf":1.0},"646":{"tf":1.4142135623730951},"838":{"tf":1.0},"847":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1080":{"tf":1.0},"1185":{"tf":1.0},"1300":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1326":{"tf":2.6457513110645907},"1356":{"tf":1.0},"137":{"tf":2.449489742783178},"1379":{"tf":1.0},"1422":{"tf":3.0},"1425":{"tf":1.4142135623730951},"1433":{"tf":1.0},"156":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178},"273":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"529":{"tf":1.0},"58":{"tf":1.4142135623730951},"601":{"tf":1.0},"706":{"tf":1.0},"725":{"tf":1.0},"884":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1148":{"tf":1.0},"1381":{"tf":1.0},"666":{"tf":1.0},"684":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"675":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}}},"{":{"a":{"df":1,"docs":{"1381":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"699":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1517":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"661":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1330":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1079":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":5,"docs":{"1182":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":67,"docs":{"1006":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1282":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1469":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.7320508075688772},"1494":{"tf":1.7320508075688772},"1530":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":2.0},"253":{"tf":1.4142135623730951},"299":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"520":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"653":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"855":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"929":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":21,"docs":{"1062":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1334":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"155":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"759":{"tf":1.0},"76":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"916":{"tf":1.0},"935":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1177":{"tf":1.0},"1505":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1197":{"tf":1.0},"21":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0}}},"s":{"df":43,"docs":{"1001":{"tf":1.0},"1122":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"1194":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"1315":{"tf":1.0},"1332":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1449":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"185":{"tf":1.0},"206":{"tf":1.0},"295":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.4142135623730951},"600":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.0},"816":{"tf":1.0},"897":{"tf":1.0},"902":{"tf":1.0},"946":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1149":{"tf":1.7320508075688772},"1264":{"tf":1.0},"1270":{"tf":2.23606797749979},"1372":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"1018":{"tf":1.0},"1042":{"tf":1.0},"1061":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1030":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"992":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"617":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"684":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1148":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1381":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"617":{"tf":1.7320508075688772},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":2.0},"670":{"tf":1.0},"675":{"tf":2.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.0},"687":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"718":{"tf":2.0},"719":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":77,"docs":{"1140":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"135":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"138":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1404":{"tf":2.23606797749979},"141":{"tf":1.4142135623730951},"1419":{"tf":2.449489742783178},"142":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.4142135623730951},"1425":{"tf":2.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"661":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":35,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"1055":{"tf":1.0},"107":{"tf":2.8284271247461903},"1075":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"1087":{"tf":1.0},"110":{"tf":1.0},"1118":{"tf":1.4142135623730951},"113":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"259":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"292":{"tf":2.23606797749979},"298":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"536":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.4142135623730951},"897":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"\"":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1336":{"tf":1.0},"765":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"1208":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1259":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"459":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":4,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"d":{"df":127,"docs":{"1045":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1122":{"tf":1.0},"1126":{"tf":1.0},"1134":{"tf":1.4142135623730951},"1136":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":2.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":2.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1450":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1471":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1515":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"334":{"tf":1.4142135623730951},"370":{"tf":1.0},"398":{"tf":2.0},"406":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"498":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"58":{"tf":1.4142135623730951},"604":{"tf":1.0},"632":{"tf":2.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.0},"698":{"tf":2.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951},"744":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.7320508075688772},"759":{"tf":1.7320508075688772},"762":{"tf":1.7320508075688772},"765":{"tf":1.0},"773":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"782":{"tf":2.449489742783178},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"786":{"tf":1.7320508075688772},"788":{"tf":1.7320508075688772},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"792":{"tf":2.23606797749979},"807":{"tf":2.0},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.7320508075688772},"816":{"tf":1.7320508075688772},"828":{"tf":1.0},"835":{"tf":1.7320508075688772},"836":{"tf":1.7320508075688772},"854":{"tf":1.7320508075688772},"856":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.7320508075688772},"868":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.7320508075688772},"901":{"tf":1.0},"903":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"135":{"tf":1.0},"1420":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":198,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1091":{"tf":2.0},"1092":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.0},"1112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.4142135623730951},"122":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"132":{"tf":2.23606797749979},"1323":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1336":{"tf":1.0},"1338":{"tf":2.0},"1339":{"tf":1.7320508075688772},"134":{"tf":3.0},"1340":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1345":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1365":{"tf":2.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1420":{"tf":2.8284271247461903},"1421":{"tf":2.8284271247461903},"1422":{"tf":3.3166247903554},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":2.23606797749979},"1433":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.7320508075688772},"144":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1446":{"tf":2.0},"1449":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1455":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1479":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"1528":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"317":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"352":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"478":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.7320508075688772},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"584":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":2.0},"605":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"616":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.4142135623730951},"627":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.4142135623730951},"644":{"tf":1.0},"65":{"tf":1.0},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"678":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"699":{"tf":1.0},"708":{"tf":1.7320508075688772},"712":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.7320508075688772},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.4142135623730951},"747":{"tf":1.0},"772":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":2.449489742783178},"788":{"tf":2.23606797749979},"829":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":2.0},"838":{"tf":2.0},"841":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.4142135623730951},"850":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"925":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"962":{"tf":1.0},"969":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"519":{"tf":1.0},"536":{"tf":2.0},"614":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"722":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"911":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1365":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":24,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1063":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1105":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1522":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":1,"docs":{"319":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"815":{"tf":1.0},"826":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"1403":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1175":{"tf":1.0},"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1401":{"tf":1.0},"1460":{"tf":1.0},"1495":{"tf":1.0},"280":{"tf":1.0},"354":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"1046":{"tf":1.0},"1053":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1476":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.7320508075688772},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"82":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"1001":{"tf":1.4142135623730951},"117":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1410":{"tf":1.0},"142":{"tf":1.0},"1436":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"23":{"tf":1.4142135623730951},"349":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"576":{"tf":1.0},"676":{"tf":1.0},"72":{"tf":1.4142135623730951},"744":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"987":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"x":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1160":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"1077":{"tf":1.0},"1087":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"271":{"tf":1.0},"292":{"tf":1.4142135623730951},"762":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1264":{"tf":1.0},"1271":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1014":{"tf":1.0},"1054":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":9,"docs":{"1184":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1265":{"tf":1.7320508075688772},"1441":{"tf":1.0},"291":{"tf":1.0},"456":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"997":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"df":18,"docs":{"1001":{"tf":1.4142135623730951},"1161":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.4142135623730951},"991":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1265":{"tf":1.0},"1333":{"tf":1.0},"139":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"545":{"tf":1.0},"729":{"tf":1.0},"867":{"tf":1.0},"901":{"tf":1.0},"936":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"c":{"df":2,"docs":{"1145":{"tf":1.0},"312":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0}}}}},"v":{"df":1,"docs":{"1194":{"tf":1.0}}}},"g":{"df":2,"docs":{"552":{"tf":1.0},"586":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"869":{"tf":1.0}}},"t":{"df":53,"docs":{"1011":{"tf":1.0},"1044":{"tf":2.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1166":{"tf":1.0},"129":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1421":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1465":{"tf":2.0},"1471":{"tf":1.7320508075688772},"1510":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1528":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"400":{"tf":1.0},"495":{"tf":1.4142135623730951},"522":{"tf":1.0},"58":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"634":{"tf":1.0},"657":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"699":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"731":{"tf":1.0},"745":{"tf":2.449489742783178},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"987":{"tf":1.7320508075688772}}}},"df":3,"docs":{"879":{"tf":1.0},"881":{"tf":1.0},"988":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":38,"docs":{"116":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":2.23606797749979},"1403":{"tf":1.0},"1404":{"tf":1.7320508075688772},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1475":{"tf":1.4142135623730951},"1481":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1495":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"366":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"465":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"618":{"tf":1.4142135623730951},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"837":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"152":{"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":{"1441":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":10,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.7320508075688772},"13":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"454":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"848":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"934":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"758":{"tf":1.0},"879":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1103":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"1161":{"tf":1.0},"918":{"tf":1.0},"976":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"2":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1522":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1361":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":48,"docs":{"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1089":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1461":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1115":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}},"l":{"df":29,"docs":{"109":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1214":{"tf":1.0},"1251":{"tf":1.0},"1296":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1436":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"4":{"tf":1.0},"544":{"tf":1.0},"603":{"tf":1.0},"612":{"tf":1.0},"776":{"tf":1.0},"861":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":6,"docs":{"1144":{"tf":1.0},"152":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"753":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":63,"docs":{"1164":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1278":{"tf":1.0},"1288":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0},"259":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"370":{"tf":1.0},"416":{"tf":1.4142135623730951},"420":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"534":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":1.0},"650":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.7320508075688772},"711":{"tf":1.7320508075688772},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1103":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"=":{"1":{"0":{"0":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1138":{"tf":1.4142135623730951},"146":{"tf":1.0},"386":{"tf":1.0},"40":{"tf":1.0},"620":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1014":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1254":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"960":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.7320508075688772},"1165":{"tf":2.8284271247461903},"1166":{"tf":2.0}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"1215":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":4,"docs":{"1243":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":4,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":74,"docs":{"1004":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1020":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.7320508075688772},"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"11":{"tf":1.0},"1154":{"tf":1.0},"1158":{"tf":1.4142135623730951},"119":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1235":{"tf":1.7320508075688772},"1250":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1429":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1505":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"780":{"tf":1.0},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"851":{"tf":1.0},"884":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"934":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"1069":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1384":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1305":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"b":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1305":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1003":{"tf":1.0},"1161":{"tf":1.0},"119":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.4142135623730951},"1319":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"547":{"tf":1.0},"727":{"tf":1.0},"909":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"262":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1300":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1158":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"1158":{"tf":1.4142135623730951},"19":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}},"n":{"df":2,"docs":{"1423":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"1102":{"tf":1.0},"1160":{"tf":1.0},"1281":{"tf":1.0},"1378":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"368":{"tf":1.0},"497":{"tf":1.7320508075688772},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"733":{"tf":1.0},"766":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0}}}},"df":6,"docs":{"450":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"978":{"tf":1.0}},"e":{"df":2,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0}}},"o":{"d":{"df":3,"docs":{"1312":{"tf":1.0},"884":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1050":{"tf":1.0},"1177":{"tf":1.0},"424":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"477":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"732":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1330":{"tf":1.0},"583":{"tf":1.0},"979":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1277":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"1278":{"tf":1.0},"21":{"tf":1.0},"491":{"tf":1.0},"914":{"tf":1.0},"954":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"df":48,"docs":{"1040":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.7320508075688772},"773":{"tf":1.0},"799":{"tf":1.0},"909":{"tf":1.4142135623730951},"92":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"985":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"1208":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":68,"docs":{"1112":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1290":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"335":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"505":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"738":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"770":{"tf":1.0},"794":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.0},"96":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":22,"docs":{"1148":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"331":{"tf":1.7320508075688772},"461":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":17,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"357":{"tf":1.0},"916":{"tf":1.0}}}}}}}},"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"373":{"tf":1.0},"937":{"tf":1.7320508075688772},"939":{"tf":2.23606797749979},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"373":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"911":{"tf":1.0},"930":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1452":{"tf":1.0},"1455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"1055":{"tf":1.7320508075688772},"1073":{"tf":2.23606797749979},"1074":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1214":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"739":{"tf":1.7320508075688772},"792":{"tf":1.7320508075688772},"893":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"38":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":46,"docs":{"1011":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1268":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.4142135623730951},"1344":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1366":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1394":{"tf":2.0},"14":{"tf":1.0},"1401":{"tf":1.0},"228":{"tf":1.0},"286":{"tf":1.4142135623730951},"359":{"tf":1.0},"384":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"434":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":2.0},"482":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"546":{"tf":1.7320508075688772},"593":{"tf":1.0},"618":{"tf":1.4142135623730951},"653":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"949":{"tf":1.0},"963":{"tf":1.4142135623730951},"973":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1267":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.7320508075688772},"498":{"tf":1.0},"507":{"tf":1.0},"833":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1048":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1003":{"tf":1.0}}},"2":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"557":{"tf":1.0},"651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":84,"docs":{"1001":{"tf":1.7320508075688772},"1046":{"tf":2.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1092":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1333":{"tf":1.0},"1403":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1429":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"236":{"tf":1.0},"24":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"332":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"417":{"tf":2.449489742783178},"420":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"520":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":2.449489742783178},"544":{"tf":1.0},"557":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"614":{"tf":1.4142135623730951},"631":{"tf":1.0},"651":{"tf":2.0},"654":{"tf":1.4142135623730951},"697":{"tf":1.0},"708":{"tf":1.0},"739":{"tf":1.4142135623730951},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"776":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":2.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.4142135623730951},"996":{"tf":1.0},"997":{"tf":3.1622776601683795}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"332":{"tf":1.0},"417":{"tf":1.0},"420":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"417":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"1260":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"1194":{"tf":1.0},"248":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"831":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"729":{"tf":1.0},"740":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":47,"docs":{"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1136":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":2.0},"1442":{"tf":2.449489742783178},"1445":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":2.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"729":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"744":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.7320508075688772},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.7320508075688772},"832":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"899":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.4142135623730951},"369":{"tf":1.0},"507":{"tf":1.0},"603":{"tf":1.0},"760":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1401":{"tf":1.0},"1402":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":25,"docs":{"1148":{"tf":1.0},"1237":{"tf":1.0},"1248":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"197":{"tf":1.0},"268":{"tf":1.0},"349":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"519":{"tf":1.0},"576":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"884":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":15,"docs":{"105":{"tf":1.0},"1162":{"tf":1.0},"119":{"tf":2.8284271247461903},"1411":{"tf":2.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"739":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"1220":{"tf":1.0},"1278":{"tf":1.0},"259":{"tf":1.4142135623730951},"292":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1161":{"tf":1.0},"1276":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1442":{"tf":1.0},"180":{"tf":1.7320508075688772},"370":{"tf":1.0},"45":{"tf":1.4142135623730951},"486":{"tf":1.0},"604":{"tf":1.0},"679":{"tf":1.0},"794":{"tf":1.4142135623730951},"798":{"tf":1.0},"845":{"tf":1.0},"884":{"tf":1.0},"921":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"535":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"729":{"tf":1.0}},"i":{"df":3,"docs":{"1124":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":14,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1089":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1336":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"959":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"322":{"tf":1.0},"549":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.4142135623730951},"725":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"991":{"tf":1.4142135623730951}},"i":{"df":14,"docs":{"1006":{"tf":1.0},"1314":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1403":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"62":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.4142135623730951},"882":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.7320508075688772}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1162":{"tf":1.0},"261":{"tf":1.0},"857":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"995":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"1209":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"237":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1307":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.7320508075688772},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1154":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"667":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":0,"docs":{},"s":{":":{"9":{"0":{"9":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":65,"docs":{"1020":{"tf":1.0},"110":{"tf":1.0},"1149":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1268":{"tf":1.0},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1284":{"tf":1.0},"1294":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1356":{"tf":1.7320508075688772},"1370":{"tf":1.4142135623730951},"1377":{"tf":1.4142135623730951},"1379":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1493":{"tf":1.0},"1525":{"tf":1.4142135623730951},"311":{"tf":1.0},"331":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"453":{"tf":2.23606797749979},"454":{"tf":1.7320508075688772},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":2.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.0},"734":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"955":{"tf":1.0},"964":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":2,"docs":{"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"104":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"830":{"tf":1.0},"832":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"853":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"180":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"775":{"tf":1.0},"778":{"tf":1.0},"791":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1139":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1437":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"197":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"801":{"tf":1.0},"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"803":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"872":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"941":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"1227":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"157":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"370":{"tf":1.4142135623730951},"51":{"tf":1.0},"604":{"tf":1.4142135623730951},"66":{"tf":1.0},"746":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":2.23606797749979},"754":{"tf":1.7320508075688772},"761":{"tf":1.0},"766":{"tf":1.7320508075688772},"767":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1015":{"tf":1.0},"1034":{"tf":1.7320508075688772},"152":{"tf":1.0},"157":{"tf":1.0},"345":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951},"572":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"761":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"197":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"142":{"tf":1.0},"1484":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1047":{"tf":1.0},"1515":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"1188":{"tf":1.0},"1189":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"979":{"tf":1.0}}}}}}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":127,"docs":{"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1230":{"tf":1.0},"1241":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":2.0},"1302":{"tf":2.0},"1306":{"tf":2.23606797749979},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1405":{"tf":2.0},"142":{"tf":1.0},"1436":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1522":{"tf":1.7320508075688772},"174":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"49":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"592":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"612":{"tf":1.0},"649":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"700":{"tf":1.0},"707":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"832":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"884":{"tf":1.0},"894":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.4142135623730951},"989":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"1013":{"tf":1.0},"1175":{"tf":1.0},"1189":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1214":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1227":{"tf":1.0},"1231":{"tf":1.0},"1258":{"tf":1.0},"1285":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1415":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"90":{"tf":1.0},"913":{"tf":1.7320508075688772},"918":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.4142135623730951},"977":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1441":{"tf":1.0},"760":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.4142135623730951}},"i":{"df":21,"docs":{"1111":{"tf":1.0},"1441":{"tf":1.0},"155":{"tf":1.0},"232":{"tf":1.0},"262":{"tf":1.0},"41":{"tf":1.0},"445":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":2.0},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.7320508075688772},"831":{"tf":1.0},"879":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"987":{"tf":1.0}}}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1300":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1300":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951}}}}}}},"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1063":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1082":{"tf":1.0},"128":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1426":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1082":{"tf":1.0},"61":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.7320508075688772},"914":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"918":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":37,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"1103":{"tf":1.0},"1158":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"446":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"910":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0},"981":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"1194":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":188,"docs":{"10":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.7320508075688772},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1103":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1140":{"tf":3.3166247903554},"1142":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1179":{"tf":2.0},"1180":{"tf":2.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":2.0},"1199":{"tf":1.0},"1205":{"tf":1.0},"1217":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"1270":{"tf":2.23606797749979},"1271":{"tf":1.7320508075688772},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":2.0},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.23606797749979},"1379":{"tf":1.7320508075688772},"1381":{"tf":2.0},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.4142135623730951},"1388":{"tf":2.23606797749979},"1390":{"tf":2.0},"1392":{"tf":2.449489742783178},"1394":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1401":{"tf":2.6457513110645907},"1402":{"tf":2.6457513110645907},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.23606797749979},"1405":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.7320508075688772},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"483":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"515":{"tf":1.0},"527":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"592":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"622":{"tf":1.0},"625":{"tf":1.4142135623730951},"638":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.7320508075688772},"666":{"tf":2.449489742783178},"667":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"681":{"tf":1.4142135623730951},"684":{"tf":2.449489742783178},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"692":{"tf":1.4142135623730951},"704":{"tf":1.0},"712":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"79":{"tf":1.7320508075688772},"794":{"tf":1.7320508075688772},"82":{"tf":1.0},"822":{"tf":1.4142135623730951},"83":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"925":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":3,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.23606797749979}},"i":{"d":{"df":1,"docs":{"1010":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"100":{"tf":1.0},"1006":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1114":{"tf":1.0},"1137":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"125":{"tf":1.0},"1255":{"tf":1.0},"1295":{"tf":1.0},"1324":{"tf":1.0},"1490":{"tf":1.0},"1522":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.4142135623730951},"544":{"tf":1.0},"620":{"tf":1.0},"634":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"792":{"tf":1.4142135623730951},"813":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"932":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":18,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"1340":{"tf":1.0},"1493":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"760":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1200":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1200":{"tf":1.0},"1482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1027":{"tf":1.0},"1515":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":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":{"192":{"tf":1.0},"303":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":3,"docs":{"1404":{"tf":1.4142135623730951},"79":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1163":{"tf":1.0},"199":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"857":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1080":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1300":{"tf":2.6457513110645907},"1304":{"tf":2.0},"1306":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"182":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":4,"docs":{"152":{"tf":1.0},"51":{"tf":1.0},"753":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1022":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"595":{"tf":1.0},"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"361":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"595":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"df":21,"docs":{"1324":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"442":{"tf":1.0},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"884":{"tf":1.0},"899":{"tf":1.4142135623730951},"902":{"tf":1.0},"966":{"tf":1.0},"979":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"1381":{"tf":1.0},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"363":{"tf":1.0},"47":{"tf":1.0},"597":{"tf":1.0},"66":{"tf":1.0},"733":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":2.0},"761":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"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":7,"docs":{"1042":{"tf":1.0},"1054":{"tf":1.0},"1075":{"tf":1.0},"1298":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1109":{"tf":1.0},"1123":{"tf":1.4142135623730951},"308":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"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":2,"docs":{"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}}}},"df":21,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"1165":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"149":{"tf":1.0},"580":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":74,"docs":{"1107":{"tf":1.0},"111":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1180":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1225":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1349":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"149":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"54":{"tf":1.0},"580":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1162":{"tf":1.0},"1166":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1432":{"tf":1.4142135623730951},"210":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0},"72":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1082":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"989":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.4142135623730951},"606":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":125,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.0},"1165":{"tf":1.4142135623730951},"117":{"tf":1.0},"1223":{"tf":2.0},"1349":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1409":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.7320508075688772},"547":{"tf":1.0},"548":{"tf":1.7320508075688772},"549":{"tf":1.0},"550":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":2.23606797749979},"555":{"tf":1.7320508075688772},"556":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.7320508075688772},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"581":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.7320508075688772},"584":{"tf":1.0},"585":{"tf":1.7320508075688772},"586":{"tf":1.7320508075688772},"587":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":1.0},"6":{"tf":1.0},"682":{"tf":1.4142135623730951},"691":{"tf":1.7320508075688772},"70":{"tf":2.23606797749979},"727":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":2.0}}},"n":{"c":{"df":16,"docs":{"332":{"tf":1.0},"388":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"558":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"686":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"718":{"tf":1.0},"726":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":13,"docs":{"1292":{"tf":1.0},"134":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1449":{"tf":1.0},"179":{"tf":1.0},"234":{"tf":1.0},"253":{"tf":1.0},"545":{"tf":1.0},"711":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"763":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"319":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"1180":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1306":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"742":{"tf":1.0},"901":{"tf":1.0}},"r":{"df":174,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1042":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"108":{"tf":1.0},"1137":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1396":{"tf":2.0},"1397":{"tf":1.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.7320508075688772},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1523":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"520":{"tf":1.0},"547":{"tf":1.4142135623730951},"548":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"590":{"tf":1.0},"598":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"664":{"tf":1.7320508075688772},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"697":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"86":{"tf":1.0},"871":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"914":{"tf":1.4142135623730951},"931":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1102":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1194":{"tf":1.0},"780":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1144":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"1225":{"tf":1.0},"1263":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"423":{"tf":1.0},"663":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1177":{"tf":1.0},"439":{"tf":1.0},"470":{"tf":1.0},"669":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1183":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}}}},"df":2,"docs":{"732":{"tf":1.0},"88":{"tf":1.0}},"f":{"a":{"c":{"df":11,"docs":{"118":{"tf":1.0},"1407":{"tf":1.0},"357":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"4":{"tf":1.0},"516":{"tf":1.0},"591":{"tf":1.0},"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"510":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"1268":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"287":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"688":{"tf":1.0},"726":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"231":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1026":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1211":{"tf":2.0},"1212":{"tf":1.0},"1213":{"tf":1.7320508075688772},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"446":{"tf":1.0},"728":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"856":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"0":{"tf":1.0},"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},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1282":{"tf":1.0},"477":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1127":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"1127":{"tf":1.0},"1148":{"tf":1.0},"1169":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1307":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1355":{"tf":1.0},"1375":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1461":{"tf":1.7320508075688772},"1465":{"tf":1.7320508075688772},"1471":{"tf":1.7320508075688772},"1479":{"tf":2.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"380":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"507":{"tf":1.0},"595":{"tf":1.0},"613":{"tf":1.0},"724":{"tf":1.0},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":7,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1111":{"tf":1.7320508075688772},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1323":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1323":{"tf":2.23606797749979},"1324":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1346":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1111":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}},"p":{"df":3,"docs":{"1288":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"708":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"644":{"tf":1.0}}}}}},"df":27,"docs":{"1142":{"tf":2.449489742783178},"1302":{"tf":2.0},"1375":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":2.0},"1404":{"tf":1.4142135623730951},"1517":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.4142135623730951},"653":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.4142135623730951},"795":{"tf":1.0},"87":{"tf":1.4142135623730951},"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"319":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}},"l":{"df":5,"docs":{"1139":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1168":{"tf":1.4142135623730951},"1404":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"531":{"tf":1.0},"772":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":15,"docs":{"1164":{"tf":1.0},"1200":{"tf":2.0},"1292":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"19":{"tf":1.0},"350":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"509":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"679":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}},"df":22,"docs":{"1301":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1403":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":3,"docs":{"357":{"tf":1.0},"471":{"tf":1.0},"591":{"tf":1.0}}},"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":28,"docs":{"1112":{"tf":2.23606797749979},"1121":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":2.6457513110645907},"870":{"tf":1.7320508075688772},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"874":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}}},"r":{"df":5,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.7320508075688772},"23":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}}}},"j":{"a":{"c":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"<":{"4":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":577,"docs":{"0":{"tf":2.0},"1":{"tf":2.0},"10":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"103":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"106":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1065":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":2.449489742783178},"1071":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"11":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"111":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"113":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1166":{"tf":1.7320508075688772},"117":{"tf":1.0},"1173":{"tf":1.0},"1175":{"tf":2.23606797749979},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"118":{"tf":1.0},"1180":{"tf":2.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":2.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1212":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1214":{"tf":1.4142135623730951},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.7320508075688772},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.0},"1248":{"tf":1.4142135623730951},"125":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1258":{"tf":2.0},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"1270":{"tf":2.0},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"128":{"tf":2.449489742783178},"1281":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"129":{"tf":2.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1312":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"1320":{"tf":2.23606797749979},"1321":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":2.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1333":{"tf":2.8284271247461903},"1334":{"tf":2.449489742783178},"1336":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":3.1622776601683795},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1349":{"tf":1.0},"135":{"tf":1.7320508075688772},"1355":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"136":{"tf":2.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"137":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"138":{"tf":1.7320508075688772},"1381":{"tf":2.8284271247461903},"1382":{"tf":2.23606797749979},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"14":{"tf":1.0},"1401":{"tf":2.449489742783178},"1402":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":2.23606797749979},"1407":{"tf":1.0},"1409":{"tf":2.0},"141":{"tf":1.7320508075688772},"1410":{"tf":2.23606797749979},"1411":{"tf":2.0},"1413":{"tf":2.0},"1415":{"tf":2.0},"1417":{"tf":2.0},"1418":{"tf":1.0},"1419":{"tf":3.1622776601683795},"142":{"tf":2.0},"1420":{"tf":2.6457513110645907},"1421":{"tf":2.449489742783178},"1422":{"tf":2.23606797749979},"1423":{"tf":2.6457513110645907},"1425":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"146":{"tf":1.0},"1460":{"tf":2.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1484":{"tf":1.0},"149":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"150":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.0},"151":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":2.23606797749979},"1513":{"tf":1.4142135623730951},"1515":{"tf":1.0},"152":{"tf":1.0},"1524":{"tf":2.0},"1526":{"tf":2.0},"1529":{"tf":2.23606797749979},"1530":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"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.4142135623730951},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.7320508075688772},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.7320508075688772},"33":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":2.0},"426":{"tf":2.23606797749979},"427":{"tf":2.6457513110645907},"429":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":2.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":2.23606797749979},"585":{"tf":1.4142135623730951},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"63":{"tf":1.0},"648":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":2.8284271247461903},"667":{"tf":2.23606797749979},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"71":{"tf":1.7320508075688772},"712":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"72":{"tf":2.0},"725":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":2.0},"800":{"tf":1.0},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.7320508075688772},"850":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"887":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.7320508075688772},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.7320508075688772},"981":{"tf":1.0},"986":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":2.0}},"s":{"'":{"df":1,"docs":{"1447":{"tf":1.0}}},".":{"a":{"2":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.0},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"443":{"tf":1.0},"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1510":{"tf":1.0},"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"113":{"tf":1.0},"1140":{"tf":1.0},"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1320":{"tf":1.0},"1355":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"160":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"361":{"tf":1.4142135623730951},"389":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"560":{"tf":1.0},"564":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.4142135623730951},"623":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"907":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"731":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"609":{"tf":1.0},"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"376":{"tf":1.0},"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"651":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1264":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"10":{"tf":1.0},"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1149":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1404":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"618":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1273":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"545":{"tf":1.0},"712":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1301":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":18,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1437":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"616":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"618":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"599":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"592":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"713":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"670":{"tf":1.0},"676":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1290":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"474":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"467":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"1145":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1139":{"tf":1.0},"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"714":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"714":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"669":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"670":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"716":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1313":{"tf":1.0},"1315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1301":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"364":{"tf":1.0},"382":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"70":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"963":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"a":{"2":{"a":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1084":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"575":{"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":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":2.23606797749979},"684":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1430":{"tf":1.0}}}}},"i":{"d":{"=":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1003":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":19,"docs":{"1047":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1204":{"tf":1.0},"1419":{"tf":1.0},"1515":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"r":{"df":5,"docs":{"336":{"tf":1.0},"557":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":45,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":2.0},"1047":{"tf":1.4142135623730951},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1461":{"tf":1.0},"1515":{"tf":1.4142135623730951},"160":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"1520":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"$":{"(":{"d":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1329":{"tf":1.0},"142":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1460":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"682":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"1430":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"*":{"*":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1063":{"tf":1.0},"1510":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"1530":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1063":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1430":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":42,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1106":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"562":{"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":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"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":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"r":{"d":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":41,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1105":{"tf":1.0},"113":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1497":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":44,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":2.0},"1454":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"336":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"946":{"tf":1.0},"965":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":2.0},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1310":{"tf":2.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1452":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1454":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"965":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1248":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1239":{"tf":1.7320508075688772},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":34,"docs":{"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"562":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"557":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1342":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1214":{"tf":1.0},"1436":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1436":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"995":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":44,"docs":{"1043":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"161":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.4142135623730951}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1520":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"1520":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1507":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1199":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"684":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"963":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"903":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1466":{"tf":1.0},"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"1448":{"tf":1.0},"1455":{"tf":1.0},"332":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"1507":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1310":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1237":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1248":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1081":{"tf":1.0},"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.0},"897":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.7320508075688772}}},"y":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1240":{"tf":1.7320508075688772},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}}}}}},"a":{"2":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1217":{"tf":1.0},"1218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":54,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"332":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.7320508075688772},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.4142135623730951},"593":{"tf":1.0},"619":{"tf":1.4142135623730951},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"694":{"tf":1.4142135623730951},"711":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"151":{"tf":1.0},"167":{"tf":1.0},"244":{"tf":1.4142135623730951},"757":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"976":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"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":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":17,"docs":{"1332":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"741":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1143":{"tf":1.0},"1484":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"785":{"tf":1.4142135623730951},"858":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1486":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"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":2,"docs":{"217":{"tf":1.0},"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1046":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"785":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"779":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"885":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"854":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1084":{"tf":1.0},"854":{"tf":1.0},"859":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"856":{"tf":1.0},"857":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1305":{"tf":1.0},"262":{"tf":2.0},"329":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":1,"docs":{"1305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1309":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"615":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1367":{"tf":2.6457513110645907},"1394":{"tf":2.449489742783178},"329":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":32,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"1091":{"tf":1.0},"186":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"445":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":50,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1314":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.4142135623730951},"244":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"468":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"537":{"tf":1.0},"539":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"1382":{"tf":1.0},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1203":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"1148":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1382":{"tf":1.0},"667":{"tf":1.0},"670":{"tf":2.0},"678":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":14,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"330":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":2.0},"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1180":{"tf":1.0},"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"1192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"798":{"tf":1.4142135623730951},"816":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1183":{"tf":1.4142135623730951},"1371":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"861":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"536":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"741":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":13,"docs":{"1046":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1196":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":32,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1186":{"tf":1.0},"1196":{"tf":1.0},"1374":{"tf":1.0},"1392":{"tf":1.0},"1470":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"521":{"tf":1.0},"632":{"tf":1.0},"698":{"tf":1.0},"729":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"934":{"tf":1.0},"990":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"808":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"819":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"49":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"809":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"808":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"804":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"818":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"866":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"865":{"tf":1.0},"867":{"tf":1.0},"872":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"865":{"tf":1.0},"872":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":5,"docs":{"1182":{"tf":1.0},"429":{"tf":2.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"541":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"498":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"938":{"tf":1.4142135623730951},"940":{"tf":1.0},"976":{"tf":2.0},"979":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":41,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1217":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.0},"836":{"tf":1.0},"861":{"tf":1.0},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1439":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"761":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1140":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1404":{"tf":1.0},"154":{"tf":1.0},"766":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"1480":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":7,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0},"1151":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1302":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1142":{"tf":1.0},"1171":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"634":{"tf":1.0},"635":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1088":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"696":{"tf":1.0},"797":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"709":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"695":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"769":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"588":{"tf":1.0},"656":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"518":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"770":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1361":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"522":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"408":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1151":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"349":{"tf":1.0},"519":{"tf":1.7320508075688772},"522":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}}},"y":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1399":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1312":{"tf":1.0},"1369":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1353":{"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":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"400":{"tf":1.0},"401":{"tf":1.0}}},"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":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":12,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"df":182,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"1021":{"tf":1.0},"1057":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1080":{"tf":1.0},"1094":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1231":{"tf":1.0},"127":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1302":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1340":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.23606797749979},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.0},"1479":{"tf":2.23606797749979},"16":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"528":{"tf":1.0},"532":{"tf":1.0},"536":{"tf":1.4142135623730951},"562":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"606":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"64":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"669":{"tf":1.4142135623730951},"695":{"tf":1.0},"696":{"tf":1.7320508075688772},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"725":{"tf":1.0},"728":{"tf":2.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"828":{"tf":1.0},"842":{"tf":1.0},"851":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"921":{"tf":1.0},"94":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"581":{"tf":2.449489742783178},"590":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1219":{"tf":1.0},"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"816":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":3,"docs":{"1015":{"tf":2.0},"1030":{"tf":1.7320508075688772},"1036":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1526":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.4142135623730951},"204":{"tf":1.0},"433":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"_":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":3,"docs":{"1217":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":269,"docs":{"1000":{"tf":2.0},"1001":{"tf":2.449489742783178},"1002":{"tf":2.0},"1003":{"tf":2.0},"1004":{"tf":1.7320508075688772},"1005":{"tf":1.0},"1006":{"tf":2.449489742783178},"1007":{"tf":2.23606797749979},"1008":{"tf":2.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1011":{"tf":1.4142135623730951},"1012":{"tf":2.0},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.7320508075688772},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.0},"1043":{"tf":2.23606797749979},"1044":{"tf":2.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1052":{"tf":2.0},"1053":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1085":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1163":{"tf":2.0},"1177":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1204":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":2.6457513110645907},"1219":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1253":{"tf":2.23606797749979},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.0},"127":{"tf":2.449489742783178},"1285":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1369":{"tf":1.0},"139":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.0},"1410":{"tf":1.0},"1432":{"tf":1.0},"1436":{"tf":2.23606797749979},"1437":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1462":{"tf":2.0},"1464":{"tf":2.6457513110645907},"1465":{"tf":2.6457513110645907},"1466":{"tf":2.0},"1467":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"1493":{"tf":1.0},"150":{"tf":1.4142135623730951},"1505":{"tf":2.0},"151":{"tf":1.0},"1512":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1522":{"tf":1.0},"1528":{"tf":2.23606797749979},"1530":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":2.449489742783178},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":2.0},"42":{"tf":1.4142135623730951},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"478":{"tf":2.0},"522":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"536":{"tf":2.449489742783178},"544":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":3.1622776601683795},"608":{"tf":1.0},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"634":{"tf":1.0},"638":{"tf":1.0},"657":{"tf":2.0},"681":{"tf":2.0},"682":{"tf":1.0},"699":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.4142135623730951},"71":{"tf":1.0},"710":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"722":{"tf":1.7320508075688772},"724":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"816":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"847":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.7320508075688772},"892":{"tf":2.6457513110645907},"896":{"tf":1.0},"90":{"tf":1.7320508075688772},"908":{"tf":2.0},"91":{"tf":1.0},"911":{"tf":2.23606797749979},"913":{"tf":2.23606797749979},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.6457513110645907},"925":{"tf":2.449489742783178},"926":{"tf":2.449489742783178},"939":{"tf":2.0},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.0},"950":{"tf":2.23606797749979},"951":{"tf":1.0},"962":{"tf":1.7320508075688772},"968":{"tf":1.7320508075688772},"969":{"tf":2.449489742783178},"97":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"981":{"tf":2.8284271247461903},"982":{"tf":1.7320508075688772},"983":{"tf":2.449489742783178},"984":{"tf":1.4142135623730951},"985":{"tf":2.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":2.23606797749979},"989":{"tf":1.4142135623730951},"990":{"tf":1.4142135623730951},"991":{"tf":2.6457513110645907},"992":{"tf":2.23606797749979},"993":{"tf":1.7320508075688772},"994":{"tf":2.449489742783178},"995":{"tf":2.0},"996":{"tf":3.1622776601683795},"997":{"tf":2.23606797749979},"998":{"tf":1.4142135623730951},"999":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1505":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"368":{"tf":1.4142135623730951},"43":{"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":1,"docs":{"1307":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1085":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":1,"docs":{"1106":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":8,"docs":{"1213":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"375":{"tf":1.0},"608":{"tf":1.0},"911":{"tf":1.0},"992":{"tf":1.0}}}}}},"o":{"a":{"df":7,"docs":{"1264":{"tf":1.0},"1268":{"tf":2.23606797749979},"454":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":2.8284271247461903},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.7320508075688772},"719":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1175":{"tf":1.0},"21":{"tf":1.0}}}},"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"831":{"tf":1.0},"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1181":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1264":{"tf":1.0},"1310":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1068":{"tf":1.0},"1169":{"tf":1.0},"1426":{"tf":1.4142135623730951},"206":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"818":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":6,"docs":{"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.0},"185":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1039":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"1001":{"tf":1.0},"762":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1070":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"1194":{"tf":1.0},"1477":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"934":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1084":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1482":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1015":{"tf":1.0},"1029":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1051":{"tf":1.0},"1175":{"tf":1.0},"871":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":1,"docs":{"1154":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":1,"docs":{"1276":{"tf":1.0}}}},"d":{"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"1015":{"tf":1.0},"1026":{"tf":1.0},"1041":{"tf":1.0},"159":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1042":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"1130":{"tf":1.7320508075688772},"1175":{"tf":1.0},"1194":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1021":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"458":{"tf":1.0},"925":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1033":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"19":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":45,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1103":{"tf":1.0},"1208":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"204":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"357":{"tf":1.0},"500":{"tf":1.4142135623730951},"545":{"tf":1.0},"591":{"tf":1.0},"676":{"tf":1.0},"711":{"tf":1.4142135623730951},"744":{"tf":1.0},"756":{"tf":1.0},"780":{"tf":1.7320508075688772},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0},"899":{"tf":1.7320508075688772},"902":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"959":{"tf":1.0},"966":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.7320508075688772},"978":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1194":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":46,"docs":{"1017":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"4":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"841":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"759":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"1425":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"981":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"368":{"tf":1.0},"43":{"tf":1.0},"602":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1062":{"tf":1.0},"1083":{"tf":1.7320508075688772},"109":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"248":{"tf":1.0},"501":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":12,"docs":{"1154":{"tf":1.4142135623730951},"118":{"tf":1.0},"1403":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"607":{"tf":1.0},"67":{"tf":1.0},"762":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"742":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":12,"docs":{"1298":{"tf":1.0},"192":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.7320508075688772},"93":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1479":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"578":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"322":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1388":{"tf":1.0},"613":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1209":{"tf":1.0},"1255":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1423":{"tf":1.0},"1436":{"tf":1.0},"1486":{"tf":1.7320508075688772},"270":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"583":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"732":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":2.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":3.1622776601683795},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"886":{"tf":1.0},"916":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1292":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1038":{"tf":1.0},"129":{"tf":1.0},"234":{"tf":1.0},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"789":{"tf":1.0},"790":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1154":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":104,"docs":{"1047":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1436":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"378":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.7320508075688772},"410":{"tf":1.0},"419":{"tf":1.0},"43":{"tf":2.23606797749979},"431":{"tf":1.0},"458":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.7320508075688772},"576":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"622":{"tf":1.7320508075688772},"644":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.7320508075688772},"708":{"tf":1.0},"712":{"tf":1.0},"724":{"tf":1.0},"75":{"tf":1.0},"769":{"tf":1.0},"772":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"904":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1436":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1333":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"734":{"tf":1.0},"788":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"458":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.0}}}}}}},"t":{"df":15,"docs":{"1095":{"tf":1.0},"1131":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1452":{"tf":1.0},"734":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"762":{"tf":1.0},"775":{"tf":1.4142135623730951},"788":{"tf":1.0},"801":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"841":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.4142135623730951},"929":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":4,"docs":{"1046":{"tf":1.0},"1487":{"tf":1.4142135623730951},"726":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"284":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":53,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1191":{"tf":1.0},"1199":{"tf":1.7320508075688772},"1205":{"tf":2.0},"1288":{"tf":1.7320508075688772},"1293":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":3.7416573867739413},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":2.6457513110645907},"299":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"36":{"tf":1.0},"4":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.0},"502":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":2.23606797749979},"902":{"tf":1.0},"908":{"tf":1.0},"942":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.7320508075688772},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"1199":{"tf":1.0},"1293":{"tf":1.0},"679":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1205":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"28":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"250":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"1001":{"tf":1.4142135623730951},"1233":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.7320508075688772},"759":{"tf":1.4142135623730951},"991":{"tf":1.0},"997":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"1077":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1251":{"tf":1.7320508075688772},"1256":{"tf":1.0},"130":{"tf":2.449489742783178},"1333":{"tf":1.4142135623730951},"143":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"939":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1312":{"tf":1.0}}},"t":{"df":1,"docs":{"1452":{"tf":1.0}}}},"w":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"976":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1452":{"tf":1.0},"6":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}},"o":{"df":4,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1006":{"tf":1.0},"62":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"762":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1356":{"tf":1.0},"1359":{"tf":1.0},"420":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1382":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"474":{"tf":1.0},"576":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"667":{"tf":1.0},"761":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1314":{"tf":1.0},"1325":{"tf":1.0},"1503":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.0},"42":{"tf":1.0},"516":{"tf":1.0},"59":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"798":{"tf":1.0},"947":{"tf":1.0},"983":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1181":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"548":{"tf":1.0},"882":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1471":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1055":{"tf":1.0},"1073":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":2.0},"1209":{"tf":1.0},"1335":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"1441":{"tf":1.0},"146":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"447":{"tf":1.4142135623730951},"549":{"tf":1.0},"59":{"tf":1.4142135623730951},"590":{"tf":1.0},"61":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":1.4142135623730951},"681":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"816":{"tf":1.4142135623730951},"91":{"tf":1.0},"923":{"tf":1.4142135623730951},"947":{"tf":1.7320508075688772},"981":{"tf":1.0},"985":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1026":{"tf":1.0},"985":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"918":{"tf":1.0}},"i":{"df":4,"docs":{"1162":{"tf":1.0},"308":{"tf":1.0},"746":{"tf":1.0},"985":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1095":{"tf":1.0},"112":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1456":{"tf":1.0},"150":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.4142135623730951},"463":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":3,"docs":{"1399":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"1006":{"tf":1.0},"1214":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1251":{"tf":1.0},"1260":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1528":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.0},"939":{"tf":1.7320508075688772},"950":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"974":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1175":{"tf":1.0},"1286":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}}}}},"x":{"df":6,"docs":{"1036":{"tf":1.0},"1084":{"tf":1.0},"308":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1116":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1507":{"tf":1.0},"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1512":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"666":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}}}},"df":148,"docs":{"1020":{"tf":1.0},"1042":{"tf":1.0},"108":{"tf":1.0},"1148":{"tf":2.23606797749979},"1152":{"tf":1.7320508075688772},"1173":{"tf":2.23606797749979},"1174":{"tf":2.0},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.7320508075688772},"1207":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":2.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":2.23606797749979},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":2.0},"1402":{"tf":2.0},"1406":{"tf":1.4142135623730951},"1523":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"2":{"tf":1.0},"330":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"423":{"tf":2.449489742783178},"424":{"tf":2.0},"425":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":2.23606797749979},"428":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"593":{"tf":1.0},"6":{"tf":1.4142135623730951},"617":{"tf":1.7320508075688772},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"664":{"tf":2.0},"665":{"tf":1.0},"666":{"tf":2.23606797749979},"667":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"674":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"717":{"tf":1.4142135623730951},"719":{"tf":1.0},"727":{"tf":1.0},"847":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"916":{"tf":1.0},"955":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1401":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951}}}}}}}}}},"df":3,"docs":{"1340":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"144":{"tf":1.0},"837":{"tf":1.0},"855":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1114":{"tf":1.4142135623730951},"170":{"tf":1.0}}}}},"t":{"df":2,"docs":{"182":{"tf":1.0},"780":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"733":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.4142135623730951},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"869":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"62":{"tf":1.0},"766":{"tf":1.0},"941":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"1088":{"tf":1.4142135623730951},"1089":{"tf":1.0},"113":{"tf":1.0},"1209":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.7320508075688772},"285":{"tf":1.0},"340":{"tf":1.7320508075688772},"536":{"tf":1.0},"567":{"tf":1.7320508075688772},"722":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":2.23606797749979},"845":{"tf":1.7320508075688772},"848":{"tf":2.23606797749979},"973":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"831":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"833":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"848":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"1219":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":91,"docs":{"1020":{"tf":1.0},"1021":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1177":{"tf":2.23606797749979},"1184":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1212":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1278":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"1457":{"tf":1.0},"197":{"tf":2.23606797749979},"358":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":2.23606797749979},"440":{"tf":2.0},"442":{"tf":2.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"592":{"tf":1.0},"613":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"65":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"774":{"tf":1.0},"862":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":2.449489742783178},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"93":{"tf":1.0},"941":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":2.23606797749979},"995":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":15,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1122":{"tf":1.0},"1403":{"tf":2.0},"1420":{"tf":1.0},"1433":{"tf":1.0},"174":{"tf":1.0},"382":{"tf":1.4142135623730951},"47":{"tf":1.0},"495":{"tf":1.0},"616":{"tf":1.4142135623730951},"739":{"tf":1.0},"792":{"tf":1.0},"845":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"739":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":31,"docs":{"1045":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1186":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1297":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"262":{"tf":1.0},"276":{"tf":1.0},"414":{"tf":1.0},"439":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"558":{"tf":1.4142135623730951},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":36,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1440":{"tf":3.3166247903554},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":2.23606797749979},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":2.0},"34":{"tf":1.0},"4":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":2.0},"902":{"tf":1.0},"908":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1440":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"301":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"295":{"tf":1.0},"302":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"918":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1275":{"tf":1.4142135623730951},"1278":{"tf":1.4142135623730951},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1355":{"tf":1.0},"1381":{"tf":1.0},"1495":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.4142135623730951},"465":{"tf":2.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.23606797749979},"502":{"tf":2.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"512":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"547":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":40,"docs":{"1047":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1084":{"tf":1.0},"1093":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1456":{"tf":1.7320508075688772},"1502":{"tf":2.23606797749979},"1503":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.7320508075688772},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1509":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.7320508075688772},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1522":{"tf":1.4142135623730951},"1523":{"tf":1.7320508075688772},"1524":{"tf":1.0},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.0},"1527":{"tf":1.7320508075688772},"1528":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"446":{"tf":1.0},"545":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"614":{"tf":1.0}}}}}},"df":5,"docs":{"1432":{"tf":1.0},"381":{"tf":1.0},"614":{"tf":1.0},"788":{"tf":1.0},"836":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"1358":{"tf":1.0},"381":{"tf":1.0},"442":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1084":{"tf":1.0},"934":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"264":{"tf":1.4142135623730951},"664":{"tf":1.0},"840":{"tf":1.4142135623730951},"845":{"tf":1.0},"889":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"1071":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1439":{"tf":1.0},"742":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.0},"1130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"18":{"tf":1.0},"357":{"tf":1.0},"501":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"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":{"916":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"1292":{"tf":1.0},"1429":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1482":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"976":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":21,"docs":{"1126":{"tf":1.4142135623730951},"115":{"tf":1.0},"1220":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1363":{"tf":1.0},"1374":{"tf":1.0},"1386":{"tf":1.0},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"319":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"x":{"df":2,"docs":{"1287":{"tf":1.0},"925":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1320":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":{"1151":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1151":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1137":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":4.123105625617661},"1152":{"tf":2.23606797749979},"506":{"tf":1.7320508075688772}},"j":{"a":{"c":{"df":1,"docs":{"506":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"1197":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"1497":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"554":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0}},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1358":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":146,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"108":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1107":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":2.0},"1174":{"tf":2.23606797749979},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1501":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"790":{"tf":1.0},"851":{"tf":1.0},"881":{"tf":1.4142135623730951},"910":{"tf":2.0},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.7320508075688772},"918":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0}}},"r":{"df":1,"docs":{"1030":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1255":{"tf":1.0},"2":{"tf":1.0},"227":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}},"i":{"df":25,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1260":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.0},"1469":{"tf":1.0},"1487":{"tf":1.4142135623730951},"166":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"532":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.4142135623730951},"634":{"tf":1.0},"699":{"tf":1.4142135623730951},"709":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"1264":{"tf":1.0},"1349":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"348":{"tf":1.0},"351":{"tf":1.7320508075688772},"353":{"tf":1.0},"357":{"tf":1.0},"515":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"545":{"tf":1.0},"557":{"tf":1.4142135623730951},"583":{"tf":1.7320508075688772},"591":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"692":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":5,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}},"y":{"[":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1305":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"171":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"935":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"21":{"tf":1.0},"295":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"858":{"tf":1.0},"932":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1048":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":1.0},"1003":{"tf":1.4142135623730951},"1050":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.4142135623730951},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1261":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"1423":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"593":{"tf":1.0},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"799":{"tf":1.0},"858":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"980":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1014":{"tf":1.0},"1054":{"tf":1.0},"1161":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1262":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1423":{"tf":1.0},"1426":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"406":{"tf":1.0},"487":{"tf":1.4142135623730951},"501":{"tf":1.0},"516":{"tf":1.0},"523":{"tf":1.0},"593":{"tf":1.0},"640":{"tf":1.0},"693":{"tf":1.0},"700":{"tf":1.0},"726":{"tf":1.4142135623730951},"992":{"tf":1.0}},"i":{"df":10,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":10,"docs":{"1216":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"845":{"tf":1.0},"873":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1340":{"tf":1.4142135623730951},"1520":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"669":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"676":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"1333":{"tf":2.23606797749979},"151":{"tf":1.0},"167":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"902":{"tf":1.0},"938":{"tf":1.0},"945":{"tf":1.0},"976":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":97,"docs":{"1112":{"tf":2.0},"1122":{"tf":1.0},"1127":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1158":{"tf":2.449489742783178},"1179":{"tf":1.0},"1186":{"tf":1.0},"1219":{"tf":1.0},"1227":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1399":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1475":{"tf":1.0},"1506":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"309":{"tf":1.0},"348":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"398":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":2.0},"51":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"645":{"tf":1.4142135623730951},"676":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"73":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"762":{"tf":2.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"956":{"tf":1.0},"999":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"1181":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1452":{"tf":1.0},"2":{"tf":1.0},"353":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":18,"docs":{"132":{"tf":2.0},"1325":{"tf":1.0},"1336":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.0},"138":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":2.0},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.4142135623730951},"226":{"tf":1.0},"579":{"tf":1.0},"73":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"101":{"tf":1.0},"1027":{"tf":1.0},"1070":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1285":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1456":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":1.0},"1524":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"602":{"tf":1.0},"69":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1061":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1491":{"tf":1.0},"681":{"tf":1.4142135623730951},"911":{"tf":1.0},"927":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1085":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"61":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"987":{"tf":1.0}}}}},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1095":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1420":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1047":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"1515":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{}}},"df":155,"docs":{"1007":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.449489742783178},"1052":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1161":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1209":{"tf":1.0},"1218":{"tf":1.0},"124":{"tf":1.0},"1268":{"tf":1.0},"127":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1288":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1325":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1340":{"tf":2.23606797749979},"1349":{"tf":1.0},"135":{"tf":2.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1399":{"tf":3.0},"1401":{"tf":2.23606797749979},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":2.449489742783178},"1456":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1487":{"tf":1.0},"150":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":2.6457513110645907},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"271":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.0},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"622":{"tf":1.0},"635":{"tf":2.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"709":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"794":{"tf":1.0},"81":{"tf":1.0},"847":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"926":{"tf":2.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":2.0},"995":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1000":{"tf":1.0},"1033":{"tf":1.0},"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"345":{"tf":1.0},"572":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"df":34,"docs":{"117":{"tf":1.4142135623730951},"1261":{"tf":1.4142135623730951},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.0},"145":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"512":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"827":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"57":{"tf":1.0},"985":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":5,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1088":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":75,"docs":{"1127":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1172":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1182":{"tf":2.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1348":{"tf":2.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"321":{"tf":2.0},"322":{"tf":1.0},"327":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"5":{"tf":1.4142135623730951},"513":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1158":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1359":{"tf":1.0},"1451":{"tf":1.0},"1524":{"tf":1.0},"327":{"tf":1.0},"348":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"732":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":18,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1228":{"tf":1.0},"1287":{"tf":1.0},"1298":{"tf":1.0},"1451":{"tf":1.0},"1526":{"tf":1.0},"242":{"tf":1.0},"446":{"tf":1.0},"456":{"tf":1.0},"486":{"tf":1.0},"510":{"tf":1.0},"82":{"tf":1.4142135623730951},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.4142135623730951},"976":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":45,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1169":{"tf":1.0},"1216":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1404":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.7320508075688772},"243":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"284":{"tf":2.23606797749979},"288":{"tf":2.8284271247461903},"295":{"tf":2.0},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"314":{"tf":2.0},"315":{"tf":1.4142135623730951},"597":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"79":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1080":{"tf":1.0},"669":{"tf":1.0},"911":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"371":{"tf":1.0},"394":{"tf":1.0},"519":{"tf":2.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"581":{"tf":2.449489742783178},"590":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":18,"docs":{"1085":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"450":{"tf":1.4142135623730951},"605":{"tf":1.0},"82":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"h":{"df":2,"docs":{"1082":{"tf":1.0},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}},"i":{"df":3,"docs":{"1006":{"tf":1.0},"1011":{"tf":1.0},"1405":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1522":{"tf":1.0},"355":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"921":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"m":{"df":17,"docs":{"1156":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1510":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"5":{"tf":1.0},"514":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"935":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":33,"docs":{"1081":{"tf":2.449489742783178},"1088":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1306":{"tf":2.0},"1307":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"298":{"tf":1.0},"334":{"tf":1.0},"363":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"506":{"tf":1.4142135623730951},"519":{"tf":2.0},"75":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0},"999":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1180":{"tf":1.0},"1390":{"tf":1.0},"1441":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"790":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"767":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1120":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"28":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.4142135623730951},"511":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"608":{"tf":1.0},"64":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":2.0},"811":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"306":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":60,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":2.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"4":{"tf":1.0},"887":{"tf":1.0},"898":{"tf":1.7320508075688772},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1458":{"tf":1.0},"83":{"tf":1.0},"932":{"tf":1.0}}}}},"df":0,"docs":{}},"df":14,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":1.4142135623730951},"1346":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"179":{"tf":1.0},"208":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1083":{"tf":1.7320508075688772}}}}}}},"k":{"df":21,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0}}},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.23606797749979},"1135":{"tf":1.0},"1506":{"tf":1.0},"1515":{"tf":1.7320508075688772},"545":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"1082":{"tf":1.0},"1194":{"tf":1.0},"177":{"tf":1.0},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"942":{"tf":1.0}}},"df":18,"docs":{"1035":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"1342":{"tf":1.0},"1436":{"tf":1.0},"1448":{"tf":1.0},"359":{"tf":1.0},"43":{"tf":1.0},"593":{"tf":1.0},"71":{"tf":1.0},"809":{"tf":1.0},"855":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"984":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"661":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"'":{"df":2,"docs":{"1222":{"tf":1.0},"1243":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1228":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1223":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1225":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":43,"docs":{"1221":{"tf":2.23606797749979},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":3,"docs":{"1154":{"tf":1.4142135623730951},"1155":{"tf":1.0},"1174":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"1520":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"259":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.7320508075688772},"4":{"tf":1.0},"899":{"tf":1.0}}}}}}}}}}}},"r":{"df":71,"docs":{"1046":{"tf":1.0},"1082":{"tf":1.0},"1088":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1200":{"tf":1.0},"1207":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1313":{"tf":1.0},"1322":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1369":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1401":{"tf":1.0},"1448":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1484":{"tf":1.0},"171":{"tf":1.4142135623730951},"268":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"409":{"tf":1.4142135623730951},"42":{"tf":1.0},"423":{"tf":1.0},"451":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"516":{"tf":1.0},"549":{"tf":1.0},"558":{"tf":1.4142135623730951},"589":{"tf":1.0},"591":{"tf":1.0},"595":{"tf":1.0},"615":{"tf":1.0},"620":{"tf":1.0},"643":{"tf":1.4142135623730951},"673":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"767":{"tf":1.0},"799":{"tf":1.0},"847":{"tf":1.0},"851":{"tf":1.0},"911":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.4142135623730951},"981":{"tf":1.0},"983":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1048":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"940":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1100":{"tf":1.4142135623730951},"1102":{"tf":1.0},"871":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"614":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"611":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":89,"docs":{"107":{"tf":1.7320508075688772},"1079":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1196":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1247":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.7320508075688772},"1438":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1501":{"tf":1.0},"1515":{"tf":1.0},"1531":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"244":{"tf":1.0},"271":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"43":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"519":{"tf":2.23606797749979},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":3.0},"595":{"tf":1.0},"600":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"605":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.7320508075688772},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"751":{"tf":1.0},"836":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"866":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"901":{"tf":1.0},"916":{"tf":2.0},"918":{"tf":1.0},"922":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"538":{"tf":1.0},"539":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":3,"docs":{"1112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":22,"docs":{"1080":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"1286":{"tf":2.23606797749979},"1292":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1314":{"tf":1.0},"1436":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"479":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"61":{"tf":1.0},"747":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"152":{"tf":1.0},"37":{"tf":1.0},"753":{"tf":1.0},"767":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"751":{"tf":1.0}}}}}},"df":7,"docs":{"152":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"767":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}},"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}},"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":{"1394":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1353":{"tf":1.4142135623730951}}},"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":{"1367":{"tf":2.0}}}}}}}}},"df":41,"docs":{"1142":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1433":{"tf":1.0},"1469":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.4142135623730951},"527":{"tf":1.0},"605":{"tf":1.4142135623730951},"614":{"tf":1.0},"634":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"798":{"tf":1.0},"819":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.7320508075688772},"850":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"[":{"'":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1072":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1072":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1072":{"tf":1.0},"1094":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"79":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1276":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"292":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1227":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"802":{"tf":1.0},"93":{"tf":1.0}}}}},"df":7,"docs":{"1452":{"tf":1.0},"1477":{"tf":1.0},"1520":{"tf":1.0},"356":{"tf":1.0},"590":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":9,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"461":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"393":{"tf":1.0},"627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1338":{"tf":1.4142135623730951},"1390":{"tf":1.0}}}}},"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":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1385":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":43,"docs":{"1154":{"tf":1.0},"1219":{"tf":1.0},"1250":{"tf":1.0},"129":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1346":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.0},"1428":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.0},"449":{"tf":1.0},"627":{"tf":1.7320508075688772},"628":{"tf":1.0},"629":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"16":{"tf":1.0},"36":{"tf":1.4142135623730951},"453":{"tf":1.0},"914":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"903":{"tf":1.0}}}}},"df":9,"docs":{"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.4142135623730951},"277":{"tf":1.0},"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"1017":{"tf":1.4142135623730951},"1023":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1109":{"tf":1.4142135623730951},"1136":{"tf":1.0},"120":{"tf":1.4142135623730951},"1222":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"828":{"tf":1.0},"831":{"tf":1.4142135623730951},"851":{"tf":1.0},"909":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"995":{"tf":1.0}}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":2,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.4142135623730951}}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1219":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"18":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.7320508075688772},"332":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.7320508075688772},"6":{"tf":1.0},"690":{"tf":1.0},"725":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"972":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"347":{"tf":1.0},"348":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1022":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1407":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1077":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1376":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1052":{"tf":1.0},"1206":{"tf":1.0},"1225":{"tf":1.0},"149":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1160":{"tf":1.0},"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"m":{"df":12,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1306":{"tf":1.0},"439":{"tf":1.0},"467":{"tf":1.0},"528":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"713":{"tf":1.0},"82":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":68,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"648":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1039":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1212":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"809":{"tf":1.0},"818":{"tf":1.0},"871":{"tf":1.0},"901":{"tf":1.0},"976":{"tf":1.0}}}}},"s":{"df":30,"docs":{"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1197":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1419":{"tf":1.0},"1465":{"tf":1.0},"1479":{"tf":1.0},"372":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"522":{"tf":1.0},"588":{"tf":1.7320508075688772},"606":{"tf":1.0},"656":{"tf":2.0},"657":{"tf":1.0},"699":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"656":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"656":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"1144":{"tf":1.4142135623730951},"370":{"tf":1.0},"604":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"214":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"749":{"tf":1.0}}}}},"df":36,"docs":{"1130":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1305":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"855":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"980":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1333":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1144":{"tf":1.0},"1148":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1219":{"tf":1.0},"1339":{"tf":2.0},"370":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"849":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":2,"docs":{"1197":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"1145":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1253":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":2.23606797749979},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":2.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":3.605551275463989},"963":{"tf":1.7320508075688772},"969":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"1000":{"tf":1.0},"1256":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"_":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"104":{"tf":1.0},"1092":{"tf":1.0},"1114":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1154":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1219":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"1288":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1365":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.23606797749979},"1421":{"tf":2.0},"1422":{"tf":2.23606797749979},"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1495":{"tf":1.0},"1522":{"tf":1.0},"1528":{"tf":1.0},"280":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"378":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.7320508075688772},"462":{"tf":1.0},"485":{"tf":1.0},"502":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"522":{"tf":1.0},"528":{"tf":1.0},"531":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.4142135623730951},"626":{"tf":1.0},"629":{"tf":1.0},"648":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"740":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.0},"890":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"911":{"tf":2.6457513110645907},"916":{"tf":1.7320508075688772},"950":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":32,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1182":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1294":{"tf":1.0},"13":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1424":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"23":{"tf":1.0},"422":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.4142135623730951},"689":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"856":{"tf":1.0},"91":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"a":{"df":1,"docs":{"1378":{"tf":1.0}}},"b":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":57,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":2.0},"1268":{"tf":1.7320508075688772},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"424":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"461":{"tf":2.8284271247461903},"463":{"tf":1.0},"465":{"tf":2.6457513110645907},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"489":{"tf":2.0},"490":{"tf":1.7320508075688772},"495":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":2.23606797749979},"530":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":2.23606797749979},"707":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1399":{"tf":1.0},"382":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1119":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":4,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"985":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1323":{"tf":1.0},"156":{"tf":1.0},"859":{"tf":1.0}}}},"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"506":{"tf":1.0},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1006":{"tf":1.0}}}},"m":{"df":4,"docs":{"1044":{"tf":2.8284271247461903},"1465":{"tf":1.0},"376":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772}}},"n":{"d":{"df":12,"docs":{"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1329":{"tf":1.0},"1362":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"855":{"tf":1.4142135623730951},"868":{"tf":1.0},"872":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"901":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"1404":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"486":{"tf":1.4142135623730951},"501":{"tf":1.0},"901":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":16,"docs":{"1041":{"tf":1.0},"1048":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1381":{"tf":1.0},"206":{"tf":1.4142135623730951},"29":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"871":{"tf":1.0},"925":{"tf":1.0},"948":{"tf":1.0},"996":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1315":{"tf":1.0},"1403":{"tf":1.4142135623730951},"169":{"tf":1.0},"856":{"tf":1.0},"951":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1194":{"tf":1.7320508075688772},"181":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1071":{"tf":1.0},"1105":{"tf":1.0},"116":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1528":{"tf":1.0},"352":{"tf":2.23606797749979},"55":{"tf":1.0},"584":{"tf":2.23606797749979},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1054":{"tf":1.0},"1088":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"43":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"1301":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"814":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"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":{"22":{"tf":1.4142135623730951}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1116":{"tf":1.0},"157":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"759":{"tf":1.0},"760":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":1,"docs":{"760":{"tf":1.7320508075688772}}},"p":{"df":18,"docs":{"10":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"554":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"581":{"tf":1.0},"583":{"tf":1.7320508075688772},"585":{"tf":2.23606797749979},"6":{"tf":1.0},"682":{"tf":1.0},"691":{"tf":1.0},"78":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"590":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1333":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}},"i":{"df":3,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1177":{"tf":1.0},"1197":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"511":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1402":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"$":{"1":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":18,"docs":{"1011":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"974":{"tf":1.0},"996":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"109":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1221":{"tf":1.0},"1437":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"36":{"tf":1.0},"93":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"807":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.7320508075688772},"580":{"tf":2.6457513110645907}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1062":{"tf":1.0},"1161":{"tf":1.0},"478":{"tf":1.0},"798":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"1071":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1490":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"911":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"969":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1522":{"tf":1.0}}},"y":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1301":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1426":{"tf":1.0},"366":{"tf":1.0},"600":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"473":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"913":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1006":{"tf":1.0},"1419":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"760":{"tf":1.0},"762":{"tf":1.0}}}},"df":36,"docs":{"1012":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"1038":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.7320508075688772},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"41":{"tf":1.0},"434":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"474":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"b":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1310":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1164":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1015":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1037":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1254":{"tf":1.0},"1472":{"tf":1.0},"345":{"tf":1.7320508075688772},"572":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"82":{"tf":1.7320508075688772},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"1015":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.7320508075688772},"57":{"tf":1.0},"571":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":18,"docs":{"1009":{"tf":1.4142135623730951},"1113":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1283":{"tf":1.4142135623730951},"1311":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"168":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"961":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"925":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1011":{"tf":1.4142135623730951},"1174":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0},"833":{"tf":1.0},"934":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"833":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"236":{"tf":1.0},"666":{"tf":1.0},"911":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"946":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":10,"docs":{"1077":{"tf":1.0},"1080":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1312":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"911":{"tf":1.0},"981":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"884":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"1144":{"tf":1.0},"1161":{"tf":1.0},"1255":{"tf":1.0},"227":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"373":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":15,"docs":{"1003":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"981":{"tf":1.0},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1306":{"tf":1.0},"1522":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1154":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"912":{"tf":1.4142135623730951},"936":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"581":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"581":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1381":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"555":{"tf":1.0},"644":{"tf":1.0},"695":{"tf":1.0}},"r":{"df":2,"docs":{"642":{"tf":1.0},"654":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"576":{"tf":1.0},"631":{"tf":1.0},"653":{"tf":1.0},"656":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"651":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"555":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"649":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"637":{"tf":1.0},"656":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0}}}}}},"df":3,"docs":{"625":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"706":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"595":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.0},"769":{"tf":1.4142135623730951},"82":{"tf":1.0},"949":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"595":{"tf":1.0},"618":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1374":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"598":{"tf":1.0},"667":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"618":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1376":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0}}}},"o":{"df":1,"docs":{"618":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"599":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1021":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0}}}}}},"df":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1126":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}},"s":{"df":1,"docs":{"1374":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"723":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"576":{"tf":1.0},"87":{"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":{"555":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"653":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"653":{"tf":1.0}}}}}}}},"df":2,"docs":{"1375":{"tf":1.4142135623730951},"1386":{"tf":2.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"609":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1154":{"tf":1.0},"120":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"138":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"1440":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"916":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"987":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"1166":{"tf":1.4142135623730951},"1336":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"759":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":47,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1106":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1253":{"tf":1.0},"1320":{"tf":1.0},"1448":{"tf":1.0},"1464":{"tf":2.0},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1528":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"280":{"tf":1.4142135623730951},"31":{"tf":1.0},"418":{"tf":1.4142135623730951},"526":{"tf":1.0},"536":{"tf":1.7320508075688772},"58":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"722":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1206":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"913":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1022":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1530":{"tf":1.4142135623730951},"974":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":41,"docs":{"11":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1149":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"177":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.0},"34":{"tf":1.7320508075688772},"359":{"tf":1.0},"43":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"593":{"tf":1.0},"675":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"920":{"tf":1.4142135623730951},"981":{"tf":1.0},"991":{"tf":1.4142135623730951},"993":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1390":{"tf":1.0},"311":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1343":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0}},"u":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1170":{"tf":1.0},"176":{"tf":1.0},"837":{"tf":1.0},"856":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":42,"docs":{"1068":{"tf":1.0},"1086":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1205":{"tf":1.0},"1284":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1396":{"tf":1.0},"14":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.7320508075688772},"49":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.7320508075688772},"930":{"tf":1.0},"935":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"976":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"759":{"tf":1.0},"871":{"tf":1.0}}},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"732":{"tf":1.0},"94":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"257":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.7320508075688772},"652":{"tf":1.0},"661":{"tf":1.7320508075688772},"82":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"804":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1202":{"tf":1.0},"1285":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":2.449489742783178},"1365":{"tf":1.0},"1388":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.4142135623730951},"321":{"tf":1.0},"347":{"tf":1.7320508075688772},"391":{"tf":1.0},"548":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0},"625":{"tf":1.0},"766":{"tf":1.0},"814":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"845":{"tf":1.0},"848":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"900":{"tf":1.7320508075688772},"902":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"543":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"82":{"tf":1.0},"856":{"tf":1.0},"925":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":12,"docs":{"1014":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1403":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.0},"456":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"915":{"tf":1.0},"960":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1011":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.7320508075688772},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1455":{"tf":1.4142135623730951},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1149":{"tf":1.0},"1499":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":29,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.7320508075688772},"1119":{"tf":1.7320508075688772},"1120":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1122":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"41":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"792":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.4142135623730951},"832":{"tf":1.0},"834":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"827":{"tf":1.7320508075688772},"883":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1162":{"tf":1.0},"1163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1008":{"tf":1.0},"1032":{"tf":1.0},"1042":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1276":{"tf":2.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"169":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"760":{"tf":1.0},"918":{"tf":1.7320508075688772},"925":{"tf":1.4142135623730951},"93":{"tf":1.0},"934":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":62,"docs":{"108":{"tf":2.0},"1173":{"tf":2.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"93":{"tf":1.4142135623730951},"936":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951}},"n":{"df":10,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.0},"1237":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"837":{"tf":1.0},"850":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"i":{"d":{"df":81,"docs":{"1":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1051":{"tf":1.0},"1073":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1173":{"tf":1.0},"118":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1333":{"tf":2.0},"1336":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1400":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1466":{"tf":1.0},"147":{"tf":1.0},"1476":{"tf":1.0},"225":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":2.6457513110645907},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"357":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"482":{"tf":1.0},"50":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.4142135623730951},"861":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"952":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1176":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1197":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"542":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"951":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":24,"docs":{"1015":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1025":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"343":{"tf":1.7320508075688772},"57":{"tf":1.0},"570":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"262":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1213":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}}}}}},"_":{"a":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":13,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1518":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"_":{"b":{"6":{"4":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"638":{"tf":1.0},"646":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.7320508075688772},"710":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"948":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"611":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"277":{"tf":1.0},"616":{"tf":1.0},"704":{"tf":1.7320508075688772},"710":{"tf":1.7320508075688772},"991":{"tf":1.4142135623730951}}}}}},"df":87,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1212":{"tf":1.0},"1228":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1276":{"tf":1.4142135623730951},"130":{"tf":1.0},"1320":{"tf":1.0},"1333":{"tf":1.0},"1436":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"486":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"84":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"896":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.7320508075688772},"915":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"939":{"tf":1.7320508075688772},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"404":{"tf":1.0},"412":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":7,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.0},"527":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"608":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":19,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"375":{"tf":1.0},"45":{"tf":1.0},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"911":{"tf":1.0},"913":{"tf":1.0},"950":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"378":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":17,"docs":{"1222":{"tf":1.0},"1235":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1476":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"33":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1015":{"tf":1.0},"1041":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1158":{"tf":1.0}}}},"t":{"df":3,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0},"1292":{"tf":1.0}}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"587":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1392":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1148":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1149":{"tf":1.0},"1155":{"tf":1.0},"1392":{"tf":1.7320508075688772},"684":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"3":{".":{"1":{"1":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"10":{"tf":1.4142135623730951},"1126":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1183":{"tf":2.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":2.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"548":{"tf":2.23606797749979},"549":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"561":{"tf":1.4142135623730951},"576":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"6":{"tf":1.4142135623730951},"610":{"tf":1.0},"620":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0},"690":{"tf":1.0},"769":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"q":{"1":{"df":17,"docs":{"1403":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"616":{"tf":1.0},"640":{"tf":1.0},"785":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1112":{"tf":2.0},"1116":{"tf":1.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":32,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1032":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":2.0},"15":{"tf":1.0},"1515":{"tf":1.7320508075688772},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"984":{"tf":1.0},"996":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"1507":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1010":{"tf":1.0},"226":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"843":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1083":{"tf":2.23606797749979},"1084":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1309":{"tf":1.0},"35":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"871":{"tf":1.0},"944":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1143":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"1242":{"tf":1.0},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":2.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"856":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":45,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"18":{"tf":1.0},"293":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"593":{"tf":1.0},"665":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"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.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1479":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1160":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1168":{"tf":1.0}}},"s":{"df":18,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0},"1394":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"(":{"1":{"0":{"df":1,"docs":{"726":{"tf":1.0}}},"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":10,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"379":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.4142135623730951},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}},"df":10,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"682":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1276":{"tf":1.0},"41":{"tf":1.0},"486":{"tf":1.0},"751":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1227":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"1094":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1174":{"tf":1.0},"1194":{"tf":1.0},"125":{"tf":1.7320508075688772},"1270":{"tf":1.0},"1271":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1340":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1422":{"tf":1.0},"1498":{"tf":1.0},"1529":{"tf":1.0},"192":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.0},"369":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"603":{"tf":1.0},"660":{"tf":1.0},"667":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":9,"docs":{"1396":{"tf":1.0},"14":{"tf":1.7320508075688772},"19":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"454":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"673":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"1042":{"tf":1.0},"1211":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"506":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1403":{"tf":1.0},"856":{"tf":1.0},"934":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"1152":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1286":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"440":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"525":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"702":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1083":{"tf":1.0},"916":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"208":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"599":{"tf":1.0},"616":{"tf":1.4142135623730951},"879":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"103":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1041":{"tf":1.0},"1089":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1295":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"241":{"tf":1.0},"342":{"tf":1.4142135623730951},"437":{"tf":1.0},"545":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"922":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":44,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.7320508075688772},"1004":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1235":{"tf":2.0},"1247":{"tf":1.0},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.449489742783178},"1476":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"292":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"31":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0},"732":{"tf":1.0},"763":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"932":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":2.0},"977":{"tf":1.0},"979":{"tf":1.0},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1096":{"tf":1.4142135623730951},"1099":{"tf":1.0},"974":{"tf":1.7320508075688772},"983":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}},"s":{"df":5,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1369":{"tf":1.0},"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1307":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}}}},"df":50,"docs":{"1052":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1355":{"tf":2.449489742783178},"1401":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1471":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"166":{"tf":1.0},"192":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"434":{"tf":2.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"538":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"847":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"883":{"tf":1.0},"916":{"tf":1.4142135623730951}},"f":{"df":13,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":172,"docs":{"1092":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1347":{"tf":1.7320508075688772},"1370":{"tf":1.0},"1395":{"tf":1.0},"1407":{"tf":2.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.7320508075688772},"262":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.4142135623730951},"366":{"tf":1.0},"385":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"428":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.4142135623730951},"480":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.7320508075688772},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"594":{"tf":1.4142135623730951},"600":{"tf":1.0},"619":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"685":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"747":{"tf":1.4142135623730951},"748":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"838":{"tf":1.7320508075688772},"845":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.7320508075688772},"860":{"tf":1.0},"870":{"tf":1.7320508075688772},"873":{"tf":1.0},"881":{"tf":1.0},"885":{"tf":1.4142135623730951},"977":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1419":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1292":{"tf":1.0},"1491":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1465":{"tf":1.0},"1467":{"tf":1.0},"254":{"tf":1.0},"976":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1099":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1154":{"tf":1.0},"1437":{"tf":1.0},"1452":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1179":{"tf":1.0},"1208":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1405":{"tf":1.4142135623730951},"373":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"816":{"tf":1.0},"93":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"96":{"tf":2.0},"976":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1474":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"783":{"tf":2.0},"976":{"tf":1.0}}}},"df":16,"docs":{"1208":{"tf":1.7320508075688772},"1230":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"533":{"tf":1.0},"646":{"tf":1.0},"710":{"tf":1.0},"783":{"tf":1.7320508075688772},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"96":{"tf":1.0},"977":{"tf":1.0}},"i":{"df":3,"docs":{"1075":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1010":{"tf":1.0},"1097":{"tf":1.0},"169":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"951":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"351":{"tf":1.0},"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":16,"docs":{"1171":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1507":{"tf":1.0},"221":{"tf":1.0},"458":{"tf":1.4142135623730951},"505":{"tf":1.0},"782":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"929":{"tf":1.0},"930":{"tf":1.0},"932":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"954":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"1117":{"tf":1.4142135623730951},"1298":{"tf":1.0},"748":{"tf":1.0},"869":{"tf":1.0},"885":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1194":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"871":{"tf":1.0},"947":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}},"df":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"871":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1007":{"tf":1.0},"1047":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"166":{"tf":1.0},"874":{"tf":1.0},"911":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"1214":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0}}},"v":{"df":7,"docs":{"1094":{"tf":1.0},"1403":{"tf":1.0},"1470":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"451":{"tf":1.0},"874":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"805":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":8,"docs":{"1310":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1507":{"tf":1.0},"237":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":3,"docs":{"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":2.0}}},"df":1,"docs":{"884":{"tf":1.0}}}},"o":{"df":1,"docs":{"93":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"635":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1339":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":22,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1206":{"tf":1.0},"1339":{"tf":3.605551275463989},"182":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"519":{"tf":1.4142135623730951},"696":{"tf":1.0},"797":{"tf":1.4142135623730951},"833":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.4142135623730951},"849":{"tf":1.0},"859":{"tf":1.4142135623730951},"916":{"tf":1.0},"921":{"tf":1.0},"94":{"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":3,"docs":{"554":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"1213":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"1194":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"749":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"456":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1278":{"tf":1.7320508075688772},"1281":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.0},"509":{"tf":1.0},"538":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"503":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"1148":{"tf":1.0},"1192":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1355":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"538":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"1020":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1265":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"647":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":70,"docs":{"1146":{"tf":1.4142135623730951},"1148":{"tf":2.0},"1149":{"tf":1.0},"1185":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1206":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":2.23606797749979},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":2.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.7320508075688772},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":2.23606797749979},"1405":{"tf":1.0},"1441":{"tf":1.0},"1474":{"tf":1.0},"1493":{"tf":2.23606797749979},"151":{"tf":1.0},"19":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.7320508075688772},"420":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.0},"507":{"tf":1.0},"528":{"tf":1.7320508075688772},"617":{"tf":1.0},"648":{"tf":1.7320508075688772},"654":{"tf":1.0},"663":{"tf":1.0},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.7320508075688772},"713":{"tf":1.0},"714":{"tf":1.0},"804":{"tf":1.0},"956":{"tf":1.7320508075688772}},"i":{"d":{"df":2,"docs":{"383":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":163,"docs":{"100":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1055":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.4142135623730951},"11":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"115":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1208":{"tf":1.0},"1213":{"tf":1.0},"1222":{"tf":1.0},"1242":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":2.449489742783178},"1304":{"tf":1.7320508075688772},"132":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1333":{"tf":1.4142135623730951},"1334":{"tf":2.23606797749979},"1336":{"tf":1.0},"135":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1420":{"tf":1.0},"1423":{"tf":1.0},"143":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1448":{"tf":2.0},"1452":{"tf":2.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1466":{"tf":1.7320508075688772},"1476":{"tf":1.7320508075688772},"1480":{"tf":1.7320508075688772},"1490":{"tf":1.0},"1515":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":2.23606797749979},"245":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.4142135623730951},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"342":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.0},"446":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"569":{"tf":1.0},"588":{"tf":1.0},"603":{"tf":1.0},"615":{"tf":1.0},"62":{"tf":1.0},"640":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"744":{"tf":1.7320508075688772},"754":{"tf":1.7320508075688772},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.0},"766":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"82":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.7320508075688772},"94":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"946":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"977":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":2.0}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"1522":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"df":1,"docs":{"503":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"574":{"tf":1.0},"575":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":2,"docs":{"1355":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1292":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}}}},"df":25,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"461":{"tf":1.4142135623730951},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.0},"511":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1278":{"tf":1.0},"1355":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"1267":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"497":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"312":{"tf":2.0},"506":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1254":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1212":{"tf":1.0},"1220":{"tf":1.0},"1436":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}}}},"v":{"df":5,"docs":{"1145":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"1071":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"442":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.7320508075688772},"803":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"237":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"139":{"tf":1.0},"1441":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":67,"docs":{"1010":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1474":{"tf":1.0},"1494":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.0},"415":{"tf":1.7320508075688772},"451":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.4142135623730951},"494":{"tf":2.0},"495":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"511":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"649":{"tf":1.7320508075688772},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"782":{"tf":1.4142135623730951},"944":{"tf":1.0},"954":{"tf":1.0},"957":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1149":{"tf":1.0},"1379":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.4142135623730951},"953":{"tf":1.0}}}}}}}}}},"t":{"df":8,"docs":{"1106":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"65":{"tf":1.0},"810":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":2.0},"1530":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1105":{"tf":1.0},"1253":{"tf":1.0},"51":{"tf":1.0},"908":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"364":{"tf":1.0},"384":{"tf":1.0},"598":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"957":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"706":{"tf":1.0},"716":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"468":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1301":{"tf":1.0},"1310":{"tf":1.0},"1314":{"tf":1.0}},"s":{"[":{"0":{"df":1,"docs":{"1301":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"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":2,"docs":{"367":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"384":{"tf":1.4142135623730951},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}},"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"649":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1314":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1355":{"tf":2.449489742783178},"1358":{"tf":2.449489742783178},"1365":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1381":{"tf":2.23606797749979},"1388":{"tf":1.0},"1390":{"tf":2.449489742783178},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"182":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"603":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"649":{"tf":1.4142135623730951},"667":{"tf":1.7320508075688772},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"687":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"916":{"tf":1.7320508075688772},"925":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"991":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1390":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"1080":{"tf":1.0},"1214":{"tf":1.0},"1313":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":163,"docs":{"1103":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1301":{"tf":2.449489742783178},"1302":{"tf":2.449489742783178},"1305":{"tf":2.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1381":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":2.449489742783178},"1403":{"tf":2.449489742783178},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1436":{"tf":1.0},"262":{"tf":2.0},"286":{"tf":1.0},"31":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"576":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"617":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.0},"916":{"tf":1.0},"950":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1120":{"tf":1.4142135623730951},"1278":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1336":{"tf":2.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"214":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"33":{"tf":1.0},"420":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"765":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.4142135623730951},"88":{"tf":2.8284271247461903},"92":{"tf":1.0},"951":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":7,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1052":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"983":{"tf":1.0},"996":{"tf":1.4142135623730951}}}}}},"f":{"c":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":1,"docs":{"351":{"tf":1.0}},"p":{"df":3,"docs":{"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.7320508075688772},"389":{"tf":1.0},"404":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1346":{"tf":1.0},"1520":{"tf":1.0},"351":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1346":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"1130":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"1145":{"tf":1.0},"248":{"tf":1.0},"911":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":45,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1010":{"tf":2.0},"1011":{"tf":1.7320508075688772},"1012":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1204":{"tf":1.7320508075688772},"1439":{"tf":1.0},"169":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"59":{"tf":1.0},"681":{"tf":1.4142135623730951},"918":{"tf":1.0},"926":{"tf":1.7320508075688772},"969":{"tf":1.0},"981":{"tf":2.0},"982":{"tf":1.7320508075688772},"983":{"tf":1.0},"984":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0},"993":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"995":{"tf":1.4142135623730951},"996":{"tf":2.449489742783178},"997":{"tf":2.449489742783178},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1267":{"tf":1.0},"1276":{"tf":2.23606797749979},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1401":{"tf":1.0},"1526":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"302":{"tf":1.0},"311":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"491":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"500":{"tf":2.6457513110645907}}}}}},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0}}}},"p":{"c":{"df":11,"docs":{"1177":{"tf":1.0},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"669":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"a":{"df":31,"docs":{"1015":{"tf":1.7320508075688772},"1022":{"tf":1.7320508075688772},"1023":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1227":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1491":{"tf":1.0},"728":{"tf":1.0},"743":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}}},"df":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":{"1399":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1078":{"tf":1.0},"1084":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1200":{"tf":1.0},"1243":{"tf":1.0},"1258":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1462":{"tf":1.0},"1476":{"tf":1.0},"18":{"tf":1.0},"239":{"tf":1.0},"327":{"tf":1.0},"369":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"473":{"tf":1.0},"555":{"tf":1.0},"603":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.7320508075688772},"871":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0},"116":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"724":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":73,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"1084":{"tf":1.4142135623730951},"115":{"tf":1.0},"1154":{"tf":1.7320508075688772},"1160":{"tf":1.7320508075688772},"1162":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.0},"1213":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1347":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.7320508075688772},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"841":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.0},"860":{"tf":1.4142135623730951},"87":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.0},"884":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"115":{"tf":1.0}}}}}}}},"s":{"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0}}}}},"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.7320508075688772},"1072":{"tf":1.0},"1094":{"tf":2.0},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.0},"1102":{"tf":1.7320508075688772},"1106":{"tf":1.7320508075688772},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.7320508075688772},"1512":{"tf":2.23606797749979},"1513":{"tf":1.7320508075688772},"285":{"tf":1.0},"339":{"tf":2.0},"536":{"tf":1.0},"566":{"tf":2.0},"64":{"tf":1.0},"722":{"tf":1.0},"893":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1108":{"tf":1.0},"287":{"tf":1.0},"726":{"tf":1.7320508075688772},"911":{"tf":1.0},"950":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1161":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"911":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1330":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"1024":{"tf":1.0},"1080":{"tf":1.0},"1265":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"227":{"tf":1.0},"368":{"tf":1.0},"516":{"tf":1.0},"543":{"tf":1.0},"693":{"tf":1.0},"726":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"954":{"tf":1.0},"978":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.8284271247461903},"1445":{"tf":1.0},"1529":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"308":{"tf":2.23606797749979},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"319":{"tf":1.0},"791":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"1063":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1323":{"tf":2.0},"134":{"tf":2.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.0},"179":{"tf":1.7320508075688772},"264":{"tf":1.0},"273":{"tf":1.7320508075688772},"288":{"tf":1.0},"371":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"1089":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1452":{"tf":1.0},"1502":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.4142135623730951},"985":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"741":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1480":{"tf":1.0},"189":{"tf":1.0},"803":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":263,"docs":{"1081":{"tf":1.4142135623730951},"1108":{"tf":2.23606797749979},"1109":{"tf":1.4142135623730951},"1110":{"tf":1.7320508075688772},"1111":{"tf":1.7320508075688772},"1112":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1114":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.7320508075688772},"1124":{"tf":2.449489742783178},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.7320508075688772},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1132":{"tf":1.7320508075688772},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1136":{"tf":2.23606797749979},"1139":{"tf":1.0},"1166":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1209":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":2.449489742783178},"1422":{"tf":1.7320508075688772},"1427":{"tf":2.0},"1429":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1480":{"tf":2.23606797749979},"151":{"tf":1.0},"1522":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"278":{"tf":2.0},"287":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"389":{"tf":1.0},"392":{"tf":2.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"560":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"66":{"tf":1.0},"672":{"tf":1.0},"696":{"tf":1.4142135623730951},"721":{"tf":1.0},"728":{"tf":2.23606797749979},"729":{"tf":2.6457513110645907},"730":{"tf":1.7320508075688772},"731":{"tf":2.0},"732":{"tf":2.0},"733":{"tf":2.0},"734":{"tf":2.23606797749979},"735":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"737":{"tf":1.7320508075688772},"738":{"tf":2.449489742783178},"739":{"tf":1.4142135623730951},"740":{"tf":2.0},"741":{"tf":2.23606797749979},"742":{"tf":2.449489742783178},"743":{"tf":1.0},"744":{"tf":1.7320508075688772},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"747":{"tf":3.3166247903554},"748":{"tf":2.0},"749":{"tf":2.0},"750":{"tf":1.7320508075688772},"751":{"tf":1.0},"752":{"tf":2.8284271247461903},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.7320508075688772},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":2.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"788":{"tf":1.7320508075688772},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.7320508075688772},"800":{"tf":2.0},"801":{"tf":1.7320508075688772},"802":{"tf":1.0},"803":{"tf":2.6457513110645907},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.7320508075688772},"812":{"tf":2.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":2.23606797749979},"829":{"tf":2.0},"830":{"tf":1.7320508075688772},"831":{"tf":1.0},"832":{"tf":2.449489742783178},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":2.0},"843":{"tf":1.4142135623730951},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.7320508075688772},"852":{"tf":1.7320508075688772},"853":{"tf":1.7320508075688772},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":2.0},"863":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":2.0},"876":{"tf":2.23606797749979},"877":{"tf":1.7320508075688772},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":2.0},"888":{"tf":1.4142135623730951},"889":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.0},"909":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1324":{"tf":1.0},"278":{"tf":1.0},"519":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"178":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1134":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1017":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"548":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1337":{"tf":1.4142135623730951},"1456":{"tf":1.0},"348":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0},"82":{"tf":1.0},"925":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"1176":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":12,"docs":{"1302":{"tf":3.4641016151377544},"1323":{"tf":1.0},"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"663":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":2.23606797749979},"776":{"tf":1.0},"789":{"tf":1.0},"836":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1084":{"tf":1.0},"129":{"tf":1.0},"1329":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.23606797749979},"901":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1423":{"tf":1.0},"1510":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":171,"docs":{"1":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1018":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1032":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1053":{"tf":1.4142135623730951},"1085":{"tf":1.4142135623730951},"11":{"tf":1.0},"1104":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"113":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1179":{"tf":1.0},"1193":{"tf":1.4142135623730951},"1205":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1455":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1520":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"320":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.7320508075688772},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"446":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.4142135623730951},"486":{"tf":1.0},"536":{"tf":1.0},"56":{"tf":1.7320508075688772},"569":{"tf":1.0},"570":{"tf":1.0},"59":{"tf":1.0},"603":{"tf":1.7320508075688772},"664":{"tf":1.0},"681":{"tf":2.0},"682":{"tf":1.0},"748":{"tf":1.4142135623730951},"758":{"tf":1.0},"760":{"tf":1.0},"816":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.7320508075688772},"851":{"tf":1.0},"897":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"91":{"tf":1.0},"910":{"tf":2.0},"911":{"tf":1.7320508075688772},"912":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"942":{"tf":1.7320508075688772},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.7320508075688772},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.7320508075688772},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.7320508075688772},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"961":{"tf":1.7320508075688772},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"965":{"tf":1.0},"966":{"tf":1.4142135623730951},"967":{"tf":1.7320508075688772},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"971":{"tf":1.7320508075688772},"972":{"tf":1.0},"973":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"977":{"tf":1.4142135623730951},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.4142135623730951},"981":{"tf":1.0},"985":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":49,"docs":{"1013":{"tf":1.4142135623730951},"1053":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1347":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"196":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"603":{"tf":1.0},"619":{"tf":1.4142135623730951},"67":{"tf":1.0},"727":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"763":{"tf":1.0},"773":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"1029":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"206":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"921":{"tf":1.0},"960":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"588":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1404":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1388":{"tf":2.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1001":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"1161":{"tf":1.7320508075688772},"147":{"tf":1.0},"185":{"tf":1.0},"277":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"950":{"tf":1.0},"977":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":2.449489742783178},"1398":{"tf":1.0},"1399":{"tf":3.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1144":{"tf":1.4142135623730951},"776":{"tf":1.0},"789":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1274":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":19,"docs":{"1248":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1292":{"tf":1.0},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"31":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"456":{"tf":1.0},"879":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1228":{"tf":1.0},"1313":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"921":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}}}}}},"t":{"df":7,"docs":{"1192":{"tf":1.4142135623730951},"1439":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"664":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1101":{"tf":1.0},"112":{"tf":1.0},"1145":{"tf":2.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"138":{"tf":1.0},"1436":{"tf":1.0},"1453":{"tf":1.0},"185":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"968":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"860":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1216":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"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":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}}},"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1200":{"tf":1.0},"439":{"tf":1.0},"705":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1243":{"tf":1.0},"1248":{"tf":1.0},"1259":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1179":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1524":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1524":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"473":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"a":{"d":{"d":{"df":3,"docs":{"1179":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1148":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":147,"docs":{"1060":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1179":{"tf":2.0},"1180":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1188":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1192":{"tf":2.23606797749979},"1200":{"tf":1.0},"1202":{"tf":1.7320508075688772},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.7320508075688772},"1262":{"tf":2.0},"1263":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1281":{"tf":2.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":2.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":3.0},"1359":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1401":{"tf":2.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1524":{"tf":1.7320508075688772},"248":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":2.6457513110645907},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"442":{"tf":3.0},"443":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"547":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"617":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":2.0},"682":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.23606797749979},"687":{"tf":1.0},"718":{"tf":2.23606797749979},"719":{"tf":1.0},"82":{"tf":1.0},"851":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"473":{"tf":1.0},"495":{"tf":1.0}}}}}}},"i":{"c":{"df":54,"docs":{"1076":{"tf":1.0},"1143":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1404":{"tf":2.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"147":{"tf":1.0},"155":{"tf":2.6457513110645907},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"523":{"tf":1.0},"55":{"tf":1.4142135623730951},"616":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"733":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":2.0},"759":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"785":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1401":{"tf":2.0},"816":{"tf":1.7320508075688772}},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":58,"docs":{"1056":{"tf":1.0},"1072":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1159":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"1247":{"tf":1.0},"1258":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1315":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1410":{"tf":1.0},"1413":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"182":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"336":{"tf":1.0},"465":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"682":{"tf":1.0},"756":{"tf":1.0},"773":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.4142135623730951},"88":{"tf":1.0},"887":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":39,"docs":{"1061":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1107":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1222":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1261":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1476":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"573":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.4142135623730951},"763":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"851":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"328":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":12,"docs":{"1045":{"tf":1.0},"1245":{"tf":1.0},"1421":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"913":{"tf":1.0},"925":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"1046":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.0},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1213":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1228":{"tf":1.0}}}},"df":0,"docs":{}},"df":28,"docs":{"1075":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1145":{"tf":2.23606797749979},"1518":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"214":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.0},"798":{"tf":1.0},"852":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"580":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1296":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"925":{"tf":1.0}}}},"w":{"df":8,"docs":{"101":{"tf":1.0},"1230":{"tf":1.0},"1323":{"tf":1.0},"1428":{"tf":1.0},"223":{"tf":1.0},"771":{"tf":1.0},"907":{"tf":1.0},"963":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.4142135623730951},"454":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"991":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"df":2,"docs":{"1151":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1346":{"tf":1.4142135623730951},"309":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":220,"docs":{"1":{"tf":1.0},"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1006":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1045":{"tf":2.23606797749979},"1047":{"tf":1.0},"1051":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1142":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1166":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1177":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":2.0},"1196":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1248":{"tf":1.0},"1255":{"tf":1.7320508075688772},"1260":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1375":{"tf":1.7320508075688772},"138":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1423":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1471":{"tf":2.0},"1485":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"397":{"tf":1.7320508075688772},"398":{"tf":2.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.449489742783178},"523":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"53":{"tf":2.0},"531":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.7320508075688772},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"58":{"tf":1.7320508075688772},"588":{"tf":1.0},"598":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"631":{"tf":1.7320508075688772},"632":{"tf":2.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"640":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"654":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":2.449489742783178},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"708":{"tf":1.0},"710":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"782":{"tf":3.1622776601683795},"783":{"tf":1.7320508075688772},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.0},"823":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.7320508075688772},"932":{"tf":2.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.7320508075688772},"950":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.0},"991":{"tf":1.7320508075688772},"994":{"tf":1.0},"995":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"698":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1306":{"tf":1.0},"1315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"404":{"tf":1.0},"527":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":328,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1000":{"tf":1.0},"1007":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1042":{"tf":1.0},"1048":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1144":{"tf":1.7320508075688772},"1146":{"tf":2.449489742783178},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1173":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":2.0},"1194":{"tf":3.3166247903554},"1195":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1209":{"tf":2.23606797749979},"1210":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1231":{"tf":2.0},"1232":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.7320508075688772},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":3.0},"1330":{"tf":2.449489742783178},"1332":{"tf":1.0},"1338":{"tf":2.449489742783178},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.7320508075688772},"1352":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":2.0},"1363":{"tf":1.0},"1369":{"tf":1.0},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":2.0},"1386":{"tf":1.0},"1390":{"tf":1.0},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979},"1402":{"tf":1.0},"1405":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"1415":{"tf":1.0},"142":{"tf":2.0},"1421":{"tf":1.0},"1423":{"tf":2.0},"1436":{"tf":1.0},"146":{"tf":1.0},"1469":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.0},"1472":{"tf":2.0},"1485":{"tf":2.23606797749979},"1486":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1515":{"tf":2.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.0},"404":{"tf":1.0},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"445":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.23606797749979},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":2.23606797749979},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"530":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.7320508075688772},"605":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.4142135623730951},"616":{"tf":2.23606797749979},"617":{"tf":1.4142135623730951},"620":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"tf":2.0},"638":{"tf":1.0},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"646":{"tf":1.7320508075688772},"647":{"tf":1.4142135623730951},"648":{"tf":1.7320508075688772},"649":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":2.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"710":{"tf":1.7320508075688772},"713":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.7320508075688772},"732":{"tf":1.7320508075688772},"747":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":2.0},"77":{"tf":1.0},"782":{"tf":1.7320508075688772},"81":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.0},"833":{"tf":1.0},"837":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"846":{"tf":1.7320508075688772},"847":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":2.449489742783178},"882":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.0},"921":{"tf":2.449489742783178},"926":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.7320508075688772},"957":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"997":{"tf":1.4142135623730951}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"592":{"tf":1.0},"599":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1330":{"tf":2.23606797749979},"1362":{"tf":1.0},"1385":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"365":{"tf":1.0},"383":{"tf":1.0},"599":{"tf":1.0},"617":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"646":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1385":{"tf":1.0},"641":{"tf":1.0},"654":{"tf":1.0},"701":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"617":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":15,"docs":{"1248":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"656":{"tf":1.0},"846":{"tf":1.0}},"u":{"df":6,"docs":{"601":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"632":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"654":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"412":{"tf":1.0}}}}}}}}},"r":{"df":6,"docs":{"1362":{"tf":1.4142135623730951},"1399":{"tf":1.7320508075688772},"407":{"tf":1.0},"420":{"tf":1.0},"524":{"tf":1.0},"88":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"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":2,"docs":{"1361":{"tf":1.4142135623730951},"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1517":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951}},"u":{"df":15,"docs":{"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"612":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1148":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.0},"528":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"469":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"420":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":5,"docs":{"1255":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1384":{"tf":1.0},"406":{"tf":1.0},"525":{"tf":1.0},"617":{"tf":1.0},"640":{"tf":1.0},"702":{"tf":1.0},"786":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1436":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"1039":{"tf":1.0},"1148":{"tf":1.0},"1182":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":14,"docs":{"1045":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1507":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"913":{"tf":1.0},"990":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1151":{"tf":1.0},"1176":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"545":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1185":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1082":{"tf":1.0},"1214":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"1061":{"tf":1.0},"1145":{"tf":1.0},"1336":{"tf":1.0},"1351":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"327":{"tf":1.0},"37":{"tf":1.0},"555":{"tf":1.0},"581":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":58,"docs":{"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"591":{"tf":2.0},"592":{"tf":1.0},"593":{"tf":2.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"1060":{"tf":1.0},"1062":{"tf":1.0},"1089":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"184":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"593":{"tf":1.0},"856":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"711":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}},"x":{"df":1,"docs":{"847":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"1015":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"934":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1209":{"tf":1.0},"1256":{"tf":1.7320508075688772},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.4142135623730951},"835":{"tf":1.0},"842":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":4,"docs":{"130":{"tf":1.0},"1334":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":2,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"682":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1039":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1426":{"tf":1.4142135623730951},"342":{"tf":1.0},"569":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"818":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1041":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1112":{"tf":1.4142135623730951},"154":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"985":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"767":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":36,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"767":{"tf":1.0},"976":{"tf":2.6457513110645907}}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"845":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":1,"docs":{"308":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"3":{"0":{"df":4,"docs":{"1084":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"269":{"tf":1.0},"273":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1305":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"884":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1174":{"tf":1.0},"1436":{"tf":1.7320508075688772},"182":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"70":{"tf":1.0},"809":{"tf":1.0},"972":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1062":{"tf":1.0},"1426":{"tf":1.0},"1489":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"901":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"df":2,"docs":{"309":{"tf":2.23606797749979},"319":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"1423":{"tf":1.0},"151":{"tf":1.0},"196":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":55,"docs":{"0":{"tf":1.0},"1001":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"119":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.0},"1309":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"1452":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"170":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.4142135623730951},"410":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"632":{"tf":1.4142135623730951},"644":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"757":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":23,"docs":{"1323":{"tf":1.0},"138":{"tf":1.0},"1419":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1442":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"188":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"740":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"976":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"872":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.4142135623730951}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"348":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"576":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"1101":{"tf":1.0}}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"1106":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.4142135623730951},"541":{"tf":1.0},"664":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"249":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":5,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1441":{"tf":1.0},"930":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"852":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"1022":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"858":{"tf":1.0},"911":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"884":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":66,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1319":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"348":{"tf":1.0},"358":{"tf":1.4142135623730951},"38":{"tf":1.0},"425":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"483":{"tf":1.4142135623730951},"507":{"tf":1.0},"547":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"727":{"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},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"976":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1378":{"tf":1.4142135623730951},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1209":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":47,"docs":{"1011":{"tf":1.0},"1144":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":3.1622776601683795},"1230":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.0},"43":{"tf":1.0},"516":{"tf":1.0},"603":{"tf":1.0},"693":{"tf":1.0},"732":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":2.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.0},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":2.0},"829":{"tf":2.449489742783178},"830":{"tf":1.0},"831":{"tf":2.23606797749979},"832":{"tf":1.7320508075688772},"833":{"tf":1.7320508075688772},"834":{"tf":1.0},"835":{"tf":1.7320508075688772},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.7320508075688772},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":2.0},"846":{"tf":1.0},"847":{"tf":2.8284271247461903},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"916":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"317":{"tf":1.0}}}}}}},"u":{"df":61,"docs":{"1000":{"tf":1.7320508075688772},"1006":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1214":{"tf":1.0},"1230":{"tf":2.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":2.23606797749979},"1376":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":2.23606797749979},"1399":{"tf":2.23606797749979},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"222":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"408":{"tf":2.0},"420":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.7320508075688772},"603":{"tf":1.0},"642":{"tf":2.0},"654":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"849":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.7320508075688772},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"940":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1145":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.4142135623730951},"525":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1362":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1098":{"tf":1.0}}}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1143":{"tf":1.0},"702":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}},"y":{"df":2,"docs":{"950":{"tf":1.0},"97":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"1161":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":7,"docs":{"1191":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"298":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.4142135623730951},"1524":{"tf":1.0},"427":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":11,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"450":{"tf":1.7320508075688772},"541":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1154":{"tf":1.0},"1191":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1444":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"761":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":32,"docs":{"111":{"tf":1.0},"1112":{"tf":2.0},"1158":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"1261":{"tf":1.4142135623730951},"1330":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"994":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1012":{"tf":1.0},"1144":{"tf":1.0},"1506":{"tf":1.0},"223":{"tf":1.0},"997":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{".":{".":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":1,"docs":{"1306":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1452":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":107,"docs":{"1054":{"tf":2.0},"1055":{"tf":2.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":2.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1064":{"tf":2.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":2.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1079":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.7320508075688772},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.7320508075688772},"1089":{"tf":1.7320508075688772},"109":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"1295":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1320":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":2.6457513110645907},"1452":{"tf":2.23606797749979},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.0},"1481":{"tf":1.4142135623730951},"1488":{"tf":1.4142135623730951},"1489":{"tf":2.23606797749979},"1491":{"tf":1.4142135623730951},"1511":{"tf":1.4142135623730951},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"261":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":3.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"418":{"tf":1.0},"519":{"tf":1.0},"536":{"tf":2.0},"564":{"tf":1.7320508075688772},"566":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"696":{"tf":1.0},"722":{"tf":1.7320508075688772},"85":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":2.0},"916":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":60,"docs":{"1057":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1209":{"tf":1.0},"1222":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":1.0},"1253":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.7320508075688772},"1312":{"tf":2.0},"1315":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"334":{"tf":1.4142135623730951},"366":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"600":{"tf":1.0},"64":{"tf":1.0},"681":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"84":{"tf":1.0},"846":{"tf":1.0},"850":{"tf":1.0},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0},"947":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"950":{"tf":2.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.7320508075688772}}}}},"r":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1390":{"tf":1.4142135623730951},"1394":{"tf":2.0},"1402":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1080":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1296":{"tf":1.0},"1308":{"tf":1.4142135623730951},"833":{"tf":1.0}}}}}}},"df":51,"docs":{"1001":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.23606797749979},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"1390":{"tf":1.7320508075688772},"1394":{"tf":2.23606797749979},"1402":{"tf":2.0},"1404":{"tf":3.4641016151377544},"587":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":2.0},"614":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"695":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"699":{"tf":1.7320508075688772},"700":{"tf":2.23606797749979},"701":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"703":{"tf":1.4142135623730951},"704":{"tf":1.7320508075688772},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"725":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1182":{"tf":1.0},"1439":{"tf":1.0},"37":{"tf":1.0},"450":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"357":{"tf":1.0},"591":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"1144":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"165":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":2.0},"897":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":124,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1115":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":2.8284271247461903},"1119":{"tf":1.4142135623730951},"1120":{"tf":2.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":2.0},"1129":{"tf":2.449489742783178},"1130":{"tf":2.8284271247461903},"1131":{"tf":2.0},"1134":{"tf":1.0},"1227":{"tf":2.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1304":{"tf":2.0},"1401":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1471":{"tf":1.0},"262":{"tf":1.7320508075688772},"270":{"tf":1.0},"332":{"tf":1.7320508075688772},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"378":{"tf":2.0},"379":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.7320508075688772},"418":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"494":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":2.23606797749979},"523":{"tf":2.6457513110645907},"524":{"tf":2.0},"525":{"tf":2.23606797749979},"526":{"tf":1.7320508075688772},"527":{"tf":2.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"535":{"tf":2.23606797749979},"536":{"tf":3.4641016151377544},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"562":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"651":{"tf":1.7320508075688772},"652":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"722":{"tf":2.6457513110645907},"742":{"tf":1.7320508075688772},"753":{"tf":1.0},"756":{"tf":2.8284271247461903},"757":{"tf":1.4142135623730951},"759":{"tf":3.1622776601683795},"762":{"tf":3.3166247903554},"778":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":3.0},"786":{"tf":1.4142135623730951},"788":{"tf":2.0},"790":{"tf":1.0},"808":{"tf":2.23606797749979},"811":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":2.8284271247461903},"854":{"tf":1.0},"856":{"tf":2.449489742783178},"865":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1215":{"tf":1.0},"169":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1161":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"287":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":53,"docs":{"1043":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1417":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1528":{"tf":1.0},"167":{"tf":1.4142135623730951},"173":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"224":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"25":{"tf":1.0},"291":{"tf":1.0},"328":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"36":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"728":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.4142135623730951},"774":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"803":{"tf":1.4142135623730951},"828":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"916":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"990":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1413":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1417":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"802":{"tf":1.0},"818":{"tf":1.4142135623730951},"869":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"883":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1182":{"tf":1.0},"1191":{"tf":1.0},"433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1163":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"1149":{"tf":1.0},"1321":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"155":{"tf":1.0},"264":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"715":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"1324":{"tf":1.0},"1338":{"tf":1.0},"1346":{"tf":1.0},"1458":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"855":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1062":{"tf":1.0},"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1166":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"1154":{"tf":1.0},"1339":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1000":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.7320508075688772},"505":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"1002":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1054":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1078":{"tf":1.4142135623730951},"109":{"tf":2.6457513110645907},"1135":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1428":{"tf":1.0},"1438":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":2.0},"297":{"tf":1.0},"332":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"544":{"tf":1.4142135623730951},"569":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.0},"587":{"tf":1.4142135623730951},"589":{"tf":1.0},"6":{"tf":1.0},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"725":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.4142135623730951},"82":{"tf":1.0},"871":{"tf":1.0},"898":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"954":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":1.0},"981":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"108":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1010":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1042":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"1512":{"tf":1.0},"1513":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1479":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":52,"docs":{"1":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1062":{"tf":1.0},"1068":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"1160":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1222":{"tf":1.0},"1298":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1399":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"422":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"758":{"tf":1.0},"816":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"726":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"726":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"997":{"tf":1.0}}},"1":{"df":1,"docs":{"997":{"tf":1.0}}},"2":{"df":1,"docs":{"997":{"tf":1.0}}},"3":{"df":1,"docs":{"997":{"tf":1.0}}},"4":{"df":1,"docs":{"997":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1081":{"tf":1.7320508075688772},"1084":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1310":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1121":{"tf":1.0},"1309":{"tf":1.0},"303":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"848":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}},"df":12,"docs":{"1142":{"tf":2.0},"1163":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1263":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1469":{"tf":1.0},"456":{"tf":1.0},"663":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"1095":{"tf":1.4142135623730951},"1097":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.7320508075688772},"1213":{"tf":1.0},"759":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"654":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"873":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":103,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1256":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"1335":{"tf":1.4142135623730951},"1336":{"tf":2.8284271247461903},"1416":{"tf":1.4142135623730951},"1417":{"tf":2.23606797749979},"196":{"tf":2.23606797749979},"197":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"31":{"tf":2.0},"33":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"574":{"tf":1.0},"590":{"tf":1.0},"654":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":2.23606797749979},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":2.449489742783178},"801":{"tf":1.0},"802":{"tf":1.7320508075688772},"803":{"tf":1.7320508075688772},"804":{"tf":2.449489742783178},"805":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"808":{"tf":2.0},"809":{"tf":2.0},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"813":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.7320508075688772},"818":{"tf":2.23606797749979},"819":{"tf":2.0},"820":{"tf":2.0},"821":{"tf":1.7320508075688772},"822":{"tf":2.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"871":{"tf":2.0},"872":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":2.0},"886":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":2,"docs":{"31":{"tf":2.0},"726":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1336":{"tf":1.0},"1403":{"tf":1.0},"1437":{"tf":1.0},"901":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"766":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1392":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":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":{"1140":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1369":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1174":{"tf":1.0},"1195":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1392":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}},"df":1,"docs":{"931":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1404":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":1,"docs":{"1404":{"tf":4.123105625617661}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"759":{"tf":1.0},"785":{"tf":1.0},"804":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"883":{"tf":1.0},"884":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"766":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"327":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1343":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"555":{"tf":1.4142135623730951}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"976":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"348":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1169":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1170":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1171":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"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":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1146":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1078":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":91,"docs":{"1012":{"tf":1.0},"1033":{"tf":1.0},"1060":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":1.0},"1137":{"tf":2.449489742783178},"1138":{"tf":1.7320508075688772},"1139":{"tf":2.23606797749979},"1140":{"tf":3.605551275463989},"1141":{"tf":1.7320508075688772},"1142":{"tf":2.8284271247461903},"1143":{"tf":2.449489742783178},"1144":{"tf":1.4142135623730951},"1145":{"tf":1.7320508075688772},"1146":{"tf":2.0},"1147":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1150":{"tf":1.0},"1151":{"tf":2.8284271247461903},"1152":{"tf":1.7320508075688772},"1153":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.7320508075688772},"1157":{"tf":1.0},"1158":{"tf":2.6457513110645907},"1159":{"tf":2.0},"1160":{"tf":2.23606797749979},"1161":{"tf":3.1622776601683795},"1162":{"tf":2.0},"1163":{"tf":2.23606797749979},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.0},"1168":{"tf":2.449489742783178},"1169":{"tf":2.449489742783178},"1170":{"tf":1.7320508075688772},"1171":{"tf":2.23606797749979},"1172":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":1.7320508075688772},"1316":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1369":{"tf":2.6457513110645907},"1391":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1500":{"tf":2.0},"1529":{"tf":1.4142135623730951},"302":{"tf":1.0},"312":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"340":{"tf":1.4142135623730951},"348":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":2.449489742783178},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"555":{"tf":1.7320508075688772},"567":{"tf":1.4142135623730951},"574":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":2.23606797749979},"618":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":2.0},"723":{"tf":1.0},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"968":{"tf":1.0},"979":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"588":{"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":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1392":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"836":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1148":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"505":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"1080":{"tf":1.4142135623730951},"1081":{"tf":2.23606797749979},"1148":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1279":{"tf":1.0},"1287":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1306":{"tf":2.449489742783178},"1310":{"tf":2.0},"1358":{"tf":2.23606797749979},"1401":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"235":{"tf":1.0},"383":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"483":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"510":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"684":{"tf":1.0},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"789":{"tf":1.0},"956":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"845":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"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":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{".":{".":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":15,"docs":{"287":{"tf":2.0},"47":{"tf":1.0},"726":{"tf":3.0},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":2.0},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":2.0},"883":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"726":{"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1014":{"tf":1.0},"917":{"tf":1.4142135623730951},"918":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"1177":{"tf":1.0},"1212":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.4142135623730951},"302":{"tf":1.0},"311":{"tf":1.0},"424":{"tf":1.0},"59":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"898":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}}}}},"w":{"df":20,"docs":{"1281":{"tf":1.0},"1313":{"tf":1.0},"1356":{"tf":1.0},"1367":{"tf":2.0},"1399":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"546":{"tf":1.0},"618":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1102":{"tf":1.0},"758":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"1011":{"tf":1.0},"1042":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.0},"1215":{"tf":1.0},"129":{"tf":1.0},"1296":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1320":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1522":{"tf":1.0},"234":{"tf":1.0},"37":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"925":{"tf":1.0},"935":{"tf":1.0},"953":{"tf":1.0},"973":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"221":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1084":{"tf":1.0},"1200":{"tf":1.0},"1477":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":49,"docs":{"1097":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1245":{"tf":1.0},"1255":{"tf":1.0},"1288":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1522":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"744":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"931":{"tf":1.7320508075688772},"932":{"tf":2.23606797749979},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"z":{"df":1,"docs":{"1081":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":58,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1310":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":2.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1392":{"tf":2.0},"1394":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"276":{"tf":1.0},"288":{"tf":1.0},"349":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"797":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"88":{"tf":1.4142135623730951},"921":{"tf":1.0}}}}},"l":{"df":12,"docs":{"1051":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"681":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.7320508075688772},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"850":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":2.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.7320508075688772},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"867":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"995":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":2.0},"1445":{"tf":1.0},"816":{"tf":1.0},"899":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"934":{"tf":1.0},"935":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":50,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1182":{"tf":1.0},"1185":{"tf":2.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":1.7320508075688772},"1209":{"tf":2.0},"1236":{"tf":1.7320508075688772},"1358":{"tf":1.0},"1359":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"17":{"tf":1.0},"246":{"tf":1.0},"359":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"4":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"433":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"446":{"tf":1.0},"586":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0},"684":{"tf":1.7320508075688772},"733":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"847":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"439":{"tf":1.0},"676":{"tf":1.0},"713":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"320":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":30,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":3.605551275463989},"1445":{"tf":1.0},"1509":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":2.0},"898":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":2.23606797749979},"902":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"299":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"307":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":32,"docs":{"1094":{"tf":1.0},"1263":{"tf":1.0},"1403":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.7320508075688772},"850":{"tf":1.0},"862":{"tf":1.0},"873":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"914":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1314":{"tf":1.0},"1403":{"tf":2.8284271247461903},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"423":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"942":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"t":{"df":2,"docs":{"1161":{"tf":1.0},"268":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"382":{"tf":1.7320508075688772},"616":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1102":{"tf":1.0},"365":{"tf":1.0},"599":{"tf":1.0},"65":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"1007":{"tf":1.0},"1010":{"tf":1.0},"1015":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1050":{"tf":1.0},"249":{"tf":1.0},"805":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"984":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"664":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1051":{"tf":1.0},"1152":{"tf":2.23606797749979},"1174":{"tf":1.0},"1176":{"tf":2.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1190":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951},"681":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":2.23606797749979}}}}}}},"df":1,"docs":{"1330":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"940":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":37,"docs":{"1126":{"tf":1.0},"1127":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"1477":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"667":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1310":{"tf":1.7320508075688772},"833":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"1163":{"tf":1.0}}}},"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":10,"docs":{"114":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1257":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1527":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":123,"docs":{"1088":{"tf":1.4142135623730951},"112":{"tf":1.0},"1121":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":2.23606797749979},"1151":{"tf":2.0},"1226":{"tf":1.0},"1248":{"tf":1.0},"127":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":3.0},"1323":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1378":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1437":{"tf":2.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1465":{"tf":1.0},"150":{"tf":1.0},"1500":{"tf":1.0},"1507":{"tf":1.0},"1509":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"295":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"354":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":2.449489742783178},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.4142135623730951},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"822":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"88":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":2.23606797749979},"945":{"tf":1.4142135623730951},"946":{"tf":1.7320508075688772},"965":{"tf":1.7320508075688772},"966":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1448":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1006":{"tf":1.0},"1052":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1436":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"248":{"tf":2.23606797749979},"37":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.4142135623730951},"94":{"tf":1.0},"947":{"tf":2.0},"948":{"tf":2.0},"949":{"tf":1.7320508075688772},"950":{"tf":2.0},"951":{"tf":2.23606797749979},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0},"992":{"tf":1.4142135623730951},"998":{"tf":2.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1001":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"919":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"546":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"723":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"354":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"129":{"tf":1.7320508075688772},"1307":{"tf":1.0},"1333":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"374":{"tf":2.0},"607":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":8,"docs":{"1036":{"tf":1.0},"1145":{"tf":2.449489742783178},"1180":{"tf":1.0},"1328":{"tf":1.0},"216":{"tf":1.0},"43":{"tf":1.0},"858":{"tf":1.0},"881":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1003":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":182,"docs":{"1015":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":2.0},"1112":{"tf":3.4641016151377544},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":3.1622776601683795},"1119":{"tf":1.7320508075688772},"1120":{"tf":2.23606797749979},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1124":{"tf":2.6457513110645907},"1129":{"tf":3.0},"1130":{"tf":3.3166247903554},"1131":{"tf":3.0},"1134":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1179":{"tf":1.0},"1227":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":2.23606797749979},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1304":{"tf":2.6457513110645907},"1305":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1365":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":3.0},"1403":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":2.23606797749979},"1440":{"tf":2.23606797749979},"1441":{"tf":1.7320508075688772},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"152":{"tf":2.0},"1526":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"221":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"348":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.7320508075688772},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"606":{"tf":1.0},"610":{"tf":1.7320508075688772},"614":{"tf":1.0},"616":{"tf":1.0},"72":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.7320508075688772},"741":{"tf":1.7320508075688772},"742":{"tf":3.0},"744":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":2.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.0},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"774":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"790":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.7320508075688772},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"838":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"877":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":2.23606797749979},"900":{"tf":2.23606797749979},"901":{"tf":1.0},"902":{"tf":1.4142135623730951},"954":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.7320508075688772},"354":{"tf":1.7320508075688772},"544":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1489":{"tf":1.0},"151":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.0},"249":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1038":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1526":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1292":{"tf":1.0},"1358":{"tf":1.0},"1381":{"tf":1.0},"332":{"tf":2.23606797749979},"418":{"tf":2.23606797749979},"490":{"tf":1.0},"509":{"tf":1.0},"536":{"tf":2.23606797749979},"544":{"tf":1.0}}}}},"r":{"df":4,"docs":{"357":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1176":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"542":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1194":{"tf":1.4142135623730951},"1345":{"tf":1.4142135623730951},"18":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"855":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":20,"docs":{"1111":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.4142135623730951},"778":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"968":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1522":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"1131":{"tf":1.0},"1137":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1452":{"tf":1.0},"505":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"733":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":2.23606797749979},"816":{"tf":1.7320508075688772},"818":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"588":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"25":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"1472":{"tf":2.0},"202":{"tf":1.4142135623730951},"249":{"tf":1.0},"473":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"939":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1290":{"tf":1.0},"1470":{"tf":1.0},"494":{"tf":1.4142135623730951},"505":{"tf":1.0},"837":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1144":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1166":{"tf":1.0},"911":{"tf":1.0},"949":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1214":{"tf":1.0},"1220":{"tf":1.0},"937":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1011":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":82,"docs":{"1006":{"tf":1.0},"101":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1135":{"tf":1.0},"115":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1209":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1325":{"tf":2.449489742783178},"135":{"tf":2.449489742783178},"1353":{"tf":2.0},"1376":{"tf":2.0},"1403":{"tf":2.449489742783178},"1420":{"tf":2.8284271247461903},"1425":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.7320508075688772},"209":{"tf":2.0},"249":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"370":{"tf":2.23606797749979},"371":{"tf":2.449489742783178},"382":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"400":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"41":{"tf":1.0},"411":{"tf":2.23606797749979},"42":{"tf":1.0},"46":{"tf":1.0},"522":{"tf":2.0},"532":{"tf":1.7320508075688772},"55":{"tf":1.0},"585":{"tf":1.0},"59":{"tf":1.0},"604":{"tf":2.23606797749979},"605":{"tf":2.449489742783178},"61":{"tf":1.0},"616":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"645":{"tf":2.23606797749979},"657":{"tf":1.4142135623730951},"699":{"tf":2.0},"709":{"tf":1.7320508075688772},"780":{"tf":1.4142135623730951},"796":{"tf":2.449489742783178},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"874":{"tf":1.0},"926":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"987":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"616":{"tf":1.0},"709":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"u":{"df":2,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"382":{"tf":1.0},"532":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"411":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"400":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"522":{"tf":1.0}},"u":{"df":2,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1353":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"1001":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1233":{"tf":1.0},"1258":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1410":{"tf":1.0},"143":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1505":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"68":{"tf":1.0},"773":{"tf":1.0},"976":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":6,"docs":{"1010":{"tf":1.0},"1505":{"tf":1.0},"1510":{"tf":1.0},"585":{"tf":1.0},"978":{"tf":1.7320508075688772},"984":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1154":{"tf":1.0},"1158":{"tf":1.0},"1512":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":4,"docs":{"1358":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"836":{"tf":1.0}}},"l":{"df":12,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1491":{"tf":1.0},"262":{"tf":1.0},"46":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"744":{"tf":1.0},"759":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"761":{"tf":1.0},"767":{"tf":1.0}},"g":{"df":144,"docs":{"107":{"tf":1.0},"1161":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"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},"1256":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"1399":{"tf":1.0},"140":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"287":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"500":{"tf":1.0},"547":{"tf":1.4142135623730951},"589":{"tf":1.0},"619":{"tf":1.4142135623730951},"620":{"tf":1.7320508075688772},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"758":{"tf":1.0},"759":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"d":{"df":7,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"810":{"tf":1.0},"812":{"tf":1.0}}},"df":281,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1020":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1038":{"tf":1.4142135623730951},"1042":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"106":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1145":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"1158":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":2.23606797749979},"1163":{"tf":1.0},"1168":{"tf":1.4142135623730951},"117":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1203":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1222":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.7320508075688772},"129":{"tf":1.0},"1292":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1304":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1348":{"tf":1.0},"1371":{"tf":1.0},"139":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1421":{"tf":1.0},"1430":{"tf":1.0},"1436":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1453":{"tf":2.0},"1457":{"tf":1.0},"1472":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"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.4142135623730951},"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.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.0},"359":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"370":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"433":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"510":{"tf":1.4142135623730951},"516":{"tf":1.0},"535":{"tf":1.0},"545":{"tf":4.123105625617661},"546":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"581":{"tf":1.0},"586":{"tf":1.0},"593":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.0},"657":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"673":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"735":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.0},"790":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"82":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"93":{"tf":2.0},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772},"97":{"tf":2.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"991":{"tf":1.0},"996":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":6,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"759":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"925":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":8,"docs":{"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1262":{"tf":1.0},"259":{"tf":1.0},"332":{"tf":1.0},"416":{"tf":1.4142135623730951},"453":{"tf":1.0},"534":{"tf":1.4142135623730951},"557":{"tf":1.0},"650":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"138":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"950":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"389":{"tf":1.0},"400":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":80,"docs":{"1130":{"tf":1.0},"1186":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1248":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"147":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"226":{"tf":1.0},"27":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"400":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"436":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903},"560":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.7320508075688772},"640":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":1.7320508075688772},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"756":{"tf":1.7320508075688772},"778":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.4142135623730951},"785":{"tf":2.0},"798":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":3.1622776601683795},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.4142135623730951},"84":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":2.0},"870":{"tf":1.0},"880":{"tf":1.7320508075688772},"883":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"913":{"tf":1.0},"941":{"tf":1.0},"950":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":6,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1372":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"0":{".":{"4":{".":{"0":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"911":{"tf":1.4142135623730951},"950":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1376":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"1405":{"tf":1.0},"1482":{"tf":1.0},"740":{"tf":2.449489742783178},"798":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1325":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951}}}}}}},"df":5,"docs":{"1482":{"tf":1.0},"1520":{"tf":1.0},"798":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":2,"docs":{"798":{"tf":1.0},"988":{"tf":1.0}}},"4":{"df":4,"docs":{"46":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"987":{"tf":1.0}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":145,"docs":{"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1007":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1126":{"tf":1.7320508075688772},"1127":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1166":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1214":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1263":{"tf":1.0},"1278":{"tf":2.23606797749979},"128":{"tf":2.23606797749979},"1290":{"tf":1.0},"130":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1352":{"tf":1.0},"1355":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1427":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1432":{"tf":1.0},"1474":{"tf":1.7320508075688772},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1515":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"261":{"tf":1.0},"278":{"tf":1.7320508075688772},"287":{"tf":1.0},"34":{"tf":1.0},"349":{"tf":1.0},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"626":{"tf":1.0},"631":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"654":{"tf":1.0},"66":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"743":{"tf":1.4142135623730951},"745":{"tf":1.7320508075688772},"746":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"778":{"tf":1.0},"827":{"tf":1.0},"842":{"tf":1.0},"87":{"tf":2.23606797749979},"896":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.0},"927":{"tf":1.7320508075688772},"929":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":2.6457513110645907},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":53,"docs":{"1000":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1055":{"tf":1.0},"1083":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1200":{"tf":1.0},"125":{"tf":1.0},"1297":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1369":{"tf":1.0},"1384":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1419":{"tf":1.0},"1441":{"tf":1.0},"1451":{"tf":1.0},"1475":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.4142135623730951},"528":{"tf":1.0},"599":{"tf":1.0},"604":{"tf":1.0},"687":{"tf":1.0},"705":{"tf":1.0},"719":{"tf":1.0},"739":{"tf":1.0},"746":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"892":{"tf":1.0},"893":{"tf":1.0},"897":{"tf":1.0},"976":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1446":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"902":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"899":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"900":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1446":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"0":{"df":1,"docs":{"1300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1449":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":40,"docs":{"1066":{"tf":1.4142135623730951},"1079":{"tf":1.0},"113":{"tf":2.0},"1159":{"tf":1.4142135623730951},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1215":{"tf":1.0},"125":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"1430":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.7320508075688772},"1512":{"tf":1.0},"160":{"tf":1.0},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"437":{"tf":1.4142135623730951},"563":{"tf":1.7320508075688772},"566":{"tf":1.0},"660":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":2.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"963":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":1,"docs":{"1048":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"1054":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":14,"docs":{"1324":{"tf":1.0},"1325":{"tf":1.0},"1330":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"733":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"554":{"tf":1.4142135623730951},"578":{"tf":1.7320508075688772}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"1497":{"tf":1.7320508075688772},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"297":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":180,"docs":{"1006":{"tf":1.0},"1008":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1214":{"tf":2.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1321":{"tf":1.0},"1324":{"tf":2.0},"1330":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":2.0},"1421":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"1473":{"tf":1.4142135623730951},"1493":{"tf":1.7320508075688772},"1494":{"tf":1.7320508075688772},"1503":{"tf":1.0},"1507":{"tf":1.0},"1529":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.7320508075688772},"206":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"28":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"402":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"520":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.4142135623730951},"697":{"tf":1.0},"725":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.7320508075688772},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"788":{"tf":1.0},"816":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.4142135623730951},"849":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.7320508075688772},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.7320508075688772},"942":{"tf":1.0},"943":{"tf":1.7320508075688772},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"957":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.0},"970":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"976":{"tf":1.7320508075688772},"979":{"tf":1.0},"980":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"997":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1365":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.7320508075688772},"598":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.7320508075688772}}}}}}}}}}}}},"df":0,"docs":{}},"df":283,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1007":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"105":{"tf":1.4142135623730951},"11":{"tf":1.0},"1142":{"tf":1.0},"1146":{"tf":1.0},"1149":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1227":{"tf":1.0},"1232":{"tf":2.0},"1238":{"tf":1.0},"1240":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"128":{"tf":3.1622776601683795},"1282":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1324":{"tf":3.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":2.6457513110645907},"1339":{"tf":1.4142135623730951},"1340":{"tf":2.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"136":{"tf":2.8284271247461903},"1365":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.7320508075688772},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1421":{"tf":3.1622776601683795},"1425":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"143":{"tf":2.0},"1436":{"tf":1.7320508075688772},"146":{"tf":1.0},"1460":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":2.0},"1503":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1526":{"tf":1.0},"1528":{"tf":2.0},"1529":{"tf":2.449489742783178},"1530":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"242":{"tf":2.8284271247461903},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":2.23606797749979},"277":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.7320508075688772},"34":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.7320508075688772},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"404":{"tf":1.7320508075688772},"410":{"tf":2.0},"415":{"tf":2.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":2.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":2.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":2.0},"490":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"527":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"555":{"tf":1.7320508075688772},"576":{"tf":1.0},"58":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"613":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.7320508075688772},"632":{"tf":1.7320508075688772},"638":{"tf":1.7320508075688772},"644":{"tf":2.0},"649":{"tf":2.0},"654":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"698":{"tf":1.7320508075688772},"704":{"tf":1.0},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"708":{"tf":2.23606797749979},"714":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":1.4142135623730951},"725":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":2.449489742783178},"795":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.4142135623730951},"833":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.4142135623730951},"87":{"tf":3.3166247903554},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":2.0},"937":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"94":{"tf":2.0},"940":{"tf":1.0},"941":{"tf":2.23606797749979},"942":{"tf":1.7320508075688772},"944":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":2.8284271247461903},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"676":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"367":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"1":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"617":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1436":{"tf":1.0},"43":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1151":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1352":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1185":{"tf":1.0},"1265":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"1151":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"456":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":6,"docs":{"1103":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1522":{"tf":2.0}}},"df":0,"docs":{}}},"df":148,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":2.23606797749979},"1002":{"tf":1.7320508075688772},"1003":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"1047":{"tf":2.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1098":{"tf":1.7320508075688772},"11":{"tf":1.0},"1114":{"tf":1.0},"1132":{"tf":1.4142135623730951},"1133":{"tf":1.4142135623730951},"1134":{"tf":1.4142135623730951},"1135":{"tf":1.7320508075688772},"115":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1206":{"tf":1.0},"1255":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1314":{"tf":1.7320508075688772},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1365":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1388":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":1.0},"1409":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1482":{"tf":2.449489742783178},"1502":{"tf":1.0},"1503":{"tf":2.23606797749979},"1515":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"199":{"tf":3.1622776601683795},"2":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"322":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"46":{"tf":2.0},"522":{"tf":1.0},"536":{"tf":1.0},"549":{"tf":1.0},"583":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"61":{"tf":2.0},"634":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0},"722":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":2.0},"744":{"tf":1.7320508075688772},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"776":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":1.0},"783":{"tf":1.0},"798":{"tf":2.23606797749979},"816":{"tf":1.7320508075688772},"836":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"874":{"tf":2.0},"894":{"tf":1.0},"895":{"tf":1.7320508075688772},"908":{"tf":1.0},"914":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"942":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":2.23606797749979},"988":{"tf":2.0},"989":{"tf":1.7320508075688772},"991":{"tf":1.7320508075688772},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":25,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"160":{"tf":1.0},"192":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"482":{"tf":1.0},"72":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"871":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"911":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"922":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0},"95":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1155":{"tf":1.0},"771":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"554":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1086":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1068":{"tf":1.0}}}}}},"p":{"c":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"911":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"976":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1515":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"1194":{"tf":1.0},"1439":{"tf":1.0},"1506":{"tf":1.0},"243":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"892":{"tf":1.0},"899":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1087":{"tf":1.0},"1451":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1340":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1340":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1340":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":2.0},"171":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"1":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"294":{"tf":1.0},"43":{"tf":1.0}}}},"df":10,"docs":{"1140":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951},"661":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":43,"docs":{"1042":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1262":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1451":{"tf":1.4142135623730951},"321":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"964":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1405":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1405":{"tf":3.605551275463989}},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"1212":{"tf":1.0},"1213":{"tf":2.23606797749979},"1217":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.4142135623730951},"383":{"tf":1.0},"608":{"tf":1.4142135623730951},"617":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1437":{"tf":1.0},"1454":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"941":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"17":{"tf":1.0},"223":{"tf":1.0},"759":{"tf":1.0},"788":{"tf":1.0},"831":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"863":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"232":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"93":{"tf":1.0},"960":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"586":{"tf":1.7320508075688772},"911":{"tf":1.0},"934":{"tf":1.0}},"m":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"855":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1209":{"tf":1.0},"1399":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.4142135623730951},"831":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"1088":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1194":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0},"127":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.0},"1484":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"394":{"tf":1.4142135623730951},"43":{"tf":1.0},"506":{"tf":1.0},"519":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"628":{"tf":1.4142135623730951},"696":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0},"984":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1286":{"tf":1.0},"242":{"tf":1.0},"479":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":100,"docs":{"1080":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1506":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"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.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"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},"231":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"267":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"327":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"405":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"555":{"tf":1.0},"617":{"tf":1.0},"639":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"664":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.4142135623730951},"808":{"tf":2.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"828":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"857":{"tf":1.0},"87":{"tf":1.4142135623730951},"885":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"932":{"tf":1.4142135623730951},"940":{"tf":1.0},"944":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":32,"docs":{"1115":{"tf":1.0},"1144":{"tf":1.0},"1248":{"tf":1.4142135623730951},"13":{"tf":1.0},"1317":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1397":{"tf":1.0},"140":{"tf":1.4142135623730951},"1417":{"tf":1.0},"1427":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"359":{"tf":1.0},"548":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"773":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.0},"821":{"tf":1.4142135623730951},"833":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"841":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":7,"docs":{"1021":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.4142135623730951},"519":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1524":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"528":{"tf":1.0},"541":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"705":{"tf":1.0},"718":{"tf":1.4142135623730951},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"1183":{"tf":1.7320508075688772},"669":{"tf":1.0},"670":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"317":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":15,"docs":{"116":{"tf":1.0},"1422":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1489":{"tf":1.4142135623730951},"226":{"tf":1.0},"302":{"tf":1.0},"536":{"tf":1.0},"661":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}},"r":{"df":3,"docs":{"1206":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1286":{"tf":1.0},"1292":{"tf":1.0},"1465":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"941":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"322":{"tf":1.0},"549":{"tf":1.0}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1122":{"tf":1.0},"1169":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"822":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"z":{"df":0,"docs":{},"f":{"df":1,"docs":{"1095":{"tf":1.0}}}}},"y":{"%":{"df":0,"docs":{},"m":{"%":{"d":{")":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1097":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"325":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"1175":{"tf":2.23606797749979},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"181":{"tf":2.8284271247461903},"756":{"tf":2.6457513110645907},"757":{"tf":1.4142135623730951},"759":{"tf":1.7320508075688772},"778":{"tf":1.7320508075688772},"779":{"tf":2.0},"782":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"811":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1456":{"tf":1.0}}}},"r":{"df":4,"docs":{"17":{"tf":1.0},"228":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"760":{"tf":1.0}}}},"o":{"d":{"df":6,"docs":{"1179":{"tf":1.0},"1349":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1300":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"976":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.0}}},"2":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":9,"docs":{"1168":{"tf":1.0},"1202":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"822":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.0}}},"2":{"df":9,"docs":{"1169":{"tf":1.0},"1203":{"tf":1.0},"1285":{"tf":1.0},"1313":{"tf":1.0},"823":{"tf":1.0},"85":{"tf":1.0},"914":{"tf":1.0},"95":{"tf":1.0},"963":{"tf":1.0}}},"3":{"df":9,"docs":{"1170":{"tf":1.0},"1204":{"tf":1.0},"1286":{"tf":1.0},"1314":{"tf":1.0},"824":{"tf":1.0},"86":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.0},"964":{"tf":1.0}}},"4":{"df":7,"docs":{"1171":{"tf":1.0},"1205":{"tf":1.0},"1287":{"tf":1.0},"1315":{"tf":1.0},"825":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":3,"docs":{"826":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.0}}},"a":{"2":{"a":{"df":1,"docs":{"1211":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"489":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1158":{"tf":1.0},"156":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0}}}}}}},"d":{"d":{"df":1,"docs":{"1212":{"tf":1.0}}},"df":5,"docs":{"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"258":{"tf":1.0},"797":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1118":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.0},"1069":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"918":{"tf":1.0},"934":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"95":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"518":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":104,"docs":{"0":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.0},"1236":{"tf":1.0},"1246":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1397":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"1499":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"40":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"673":{"tf":1.0},"72":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"76":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"829":{"tf":1.0},"84":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"986":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"523":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"378":{"tf":1.0},"611":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.0},"984":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"142":{"tf":1.0},"1423":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1487":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"858":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"i":{"df":3,"docs":{"153":{"tf":1.0},"33":{"tf":1.0},"765":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":16,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1040":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"341":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1485":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"241":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":20,"docs":{"1084":{"tf":1.0},"1400":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"257":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"513":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"685":{"tf":1.0},"690":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"349":{"tf":1.0},"507":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1116":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"403":{"tf":1.0},"404":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1176":{"tf":1.0},"729":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"1121":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"823":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1426":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"193":{"tf":1.0},"269":{"tf":1.0},"371":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"635":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":1,"docs":{"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"df":6,"docs":{"1288":{"tf":1.0},"1403":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"916":{"tf":1.4142135623730951},"966":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1442":{"tf":1.0},"503":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1486":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1055":{"tf":1.0},"108":{"tf":1.0},"1451":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1287":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"989":{"tf":1.0}}}},"df":5,"docs":{"1064":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1296":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1456":{"tf":1.0},"1489":{"tf":1.0},"1511":{"tf":1.0},"285":{"tf":1.0},"337":{"tf":1.0},"564":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"1162":{"tf":1.0},"1249":{"tf":1.0},"1333":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"943":{"tf":1.0}}},"i":{"c":{"df":20,"docs":{"1111":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"1425":{"tf":1.0},"188":{"tf":1.0},"216":{"tf":1.0},"334":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0},"485":{"tf":1.0},"576":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1315":{"tf":1.0},"1338":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1453":{"tf":1.0},"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"62":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1456":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"353":{"tf":1.0},"585":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1255":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1287":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1296":{"tf":1.0},"304":{"tf":1.0}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1103":{"tf":1.0},"1307":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1185":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1083":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1165":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1169":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"730":{"tf":1.0},"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"972":{"tf":1.0},"988":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1509":{"tf":1.0},"209":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"973":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"1363":{"tf":1.0},"1386":{"tf":1.0},"1498":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"408":{"tf":1.0},"642":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1529":{"tf":1.0},"967":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":2,"docs":{"1157":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"516":{"tf":1.0},"693":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"1229":{"tf":1.0},"1317":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"4":{"tf":1.0},"70":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"907":{"tf":1.0},"996":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.0}}}},"df":17,"docs":{"1189":{"tf":1.0},"1202":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1282":{"tf":1.0},"1285":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"474":{"tf":1.0},"667":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"935":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1073":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1345":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1304":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":18,"docs":{"120":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1412":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"234":{"tf":1.0},"979":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"140":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"1528":{"tf":1.0},"207":{"tf":1.0},"350":{"tf":1.0},"451":{"tf":1.0},"582":{"tf":1.0},"678":{"tf":1.0},"724":{"tf":1.0},"976":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"19":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"1503":{"tf":1.0},"16":{"tf":1.0},"353":{"tf":1.0},"585":{"tf":1.0},"66":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1078":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"1144":{"tf":1.0},"1312":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1437":{"tf":1.0},"223":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"616":{"tf":1.0},"654":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"902":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"733":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"501":{"tf":1.0},"741":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1052":{"tf":1.0},"983":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"455":{"tf":1.0}}}}}},"d":{"a":{"df":2,"docs":{"552":{"tf":1.0},"579":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1119":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1413":{"tf":1.0},"436":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"542":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":94,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1277":{"tf":1.0},"1341":{"tf":1.0},"1343":{"tf":1.0},"1412":{"tf":1.0},"1434":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"1509":{"tf":1.0},"160":{"tf":1.0},"244":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"435":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"658":{"tf":1.0},"661":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"731":{"tf":1.0},"737":{"tf":1.0},"85":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1033":{"tf":1.0},"1039":{"tf":1.0},"1049":{"tf":1.0},"1062":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1104":{"tf":1.0},"1279":{"tf":1.0},"1455":{"tf":1.0},"247":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"942":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1121":{"tf":1.0},"746":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"517":{"tf":1.0},"694":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"157":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1279":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"194":{"tf":1.0},"33":{"tf":1.0},"476":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":4,"docs":{"1173":{"tf":1.0},"217":{"tf":1.0},"422":{"tf":1.0},"523":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1130":{"tf":1.0},"1213":{"tf":1.0},"1397":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"876":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"819":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"22":{"tf":1.0},"260":{"tf":1.0},"329":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"455":{"tf":1.0},"515":{"tf":1.0},"557":{"tf":1.0},"692":{"tf":1.0},"756":{"tf":1.0},"777":{"tf":1.0},"807":{"tf":1.0},"912":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":44,"docs":{"1110":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"134":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1374":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1419":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"175":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"388":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"418":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"640":{"tf":1.0},"652":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.0},"76":{"tf":1.0},"768":{"tf":1.0},"77":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"845":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}},"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":5,"docs":{"391":{"tf":1.0},"625":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1099":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"1014":{"tf":1.0},"1463":{"tf":1.0},"1514":{"tf":1.0},"158":{"tf":1.0},"341":{"tf":1.0},"56":{"tf":1.0},"568":{"tf":1.0},"781":{"tf":1.0},"913":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":2,"docs":{"1254":{"tf":1.0},"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":17,"docs":{"1108":{"tf":1.0},"1110":{"tf":1.0},"1124":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"392":{"tf":1.0},"495":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"1077":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1093":{"tf":1.0},"34":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"655":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"1293":{"tf":1.0},"1496":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"679":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"283":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.0},"565":{"tf":1.0},"928":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1120":{"tf":1.0},"151":{"tf":1.0},"377":{"tf":1.0},"610":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1506":{"tf":1.0},"545":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1444":{"tf":1.0},"314":{"tf":1.0},"346":{"tf":1.0},"554":{"tf":1.0},"573":{"tf":1.0},"928":{"tf":1.0},"968":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"979":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"220":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1028":{"tf":1.4142135623730951},"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1059":{"tf":1.0},"1228":{"tf":1.0},"1462":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1249":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"n":{"df":27,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1473":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"165":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.0},"763":{"tf":1.0},"896":{"tf":1.0},"943":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"1474":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":98,"docs":{"1115":{"tf":1.0},"1142":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"133":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.0},"135":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1364":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1387":{"tf":1.0},"1390":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1425":{"tf":1.0},"1478":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"774":{"tf":1.0},"780":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"80":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"978":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":4,"docs":{"1016":{"tf":1.4142135623730951},"1515":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":5,"docs":{"185":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"600":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1091":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"194":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1199":{"tf":1.0},"1497":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"815":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1149":{"tf":1.0},"1243":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"746":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1066":{"tf":1.0},"113":{"tf":1.0},"1159":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1430":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.0},"577":{"tf":1.0},"660":{"tf":1.0},"903":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":40,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1344":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1457":{"tf":1.0},"1459":{"tf":1.0},"1463":{"tf":1.0},"1468":{"tf":1.0},"1473":{"tf":1.0},"1478":{"tf":1.0},"1483":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1495":{"tf":1.0},"286":{"tf":1.0},"352":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"477":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"584":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"941":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1192":{"tf":1.0},"1205":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1115":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":46,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1084":{"tf":1.0},"1128":{"tf":1.0},"1185":{"tf":1.0},"1206":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1317":{"tf":1.0},"1337":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1437":{"tf":1.0},"1454":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"356":{"tf":1.0},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"590":{"tf":1.0},"616":{"tf":1.0},"654":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"902":{"tf":1.0},"997":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"615":{"tf":1.0},"724":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1524":{"tf":1.0},"1526":{"tf":1.0},"400":{"tf":1.0},"634":{"tf":1.0}}}},"t":{"df":4,"docs":{"1345":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":2,"docs":{"1234":{"tf":1.0},"318":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1267":{"tf":1.0}}}},"df":6,"docs":{"1354":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"1092":{"tf":1.0},"412":{"tf":1.0},"646":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1309":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"1422":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1259":{"tf":1.0},"1260":{"tf":1.0},"1469":{"tf":1.0},"1474":{"tf":1.0},"1480":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"253":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1381":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"108":{"tf":1.0},"1118":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1259":{"tf":1.0},"459":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"1117":{"tf":1.0},"1134":{"tf":1.0},"1309":{"tf":1.0},"181":{"tf":1.0},"398":{"tf":1.0},"46":{"tf":1.0},"632":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"777":{"tf":1.0},"781":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"1090":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1446":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"659":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":7,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1097":{"tf":1.0},"1101":{"tf":1.0},"1105":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"826":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1320":{"tf":1.0},"148":{"tf":1.0},"23":{"tf":1.0},"72":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1160":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"292":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1271":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"1184":{"tf":1.0},"1247":{"tf":1.0},"1265":{"tf":1.0},"456":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1044":{"tf":1.0},"1431":{"tf":1.0},"1465":{"tf":1.0},"1471":{"tf":1.0},"1519":{"tf":1.0},"235":{"tf":1.0},"495":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"721":{"tf":1.0},"745":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1462":{"tf":1.0},"1464":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1484":{"tf":1.0},"252":{"tf":1.0},"351":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"1057":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"416":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"650":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"1400":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"234":{"tf":1.0},"843":{"tf":1.0},"924":{"tf":1.0}}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"119":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1408":{"tf":1.0},"1428":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":2,"docs":{"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1117":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"954":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"1112":{"tf":1.0},"1502":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1182":{"tf":1.0},"329":{"tf":1.0},"5":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1073":{"tf":1.4142135623730951},"1207":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"l":{"df":24,"docs":{"1171":{"tf":1.0},"1280":{"tf":1.0},"1314":{"tf":1.0},"1344":{"tf":1.0},"1346":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"286":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"546":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"723":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"1046":{"tf":1.0},"227":{"tf":1.0},"417":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1442":{"tf":1.0},"181":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"1411":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"871":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.0},"725":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1314":{"tf":1.0},"199":{"tf":1.0},"798":{"tf":1.0},"998":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1149":{"tf":1.0},"1272":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.0},"1377":{"tf":1.0},"1379":{"tf":1.0},"1525":{"tf":1.0},"331":{"tf":1.0},"434":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"537":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1034":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1071":{"tf":1.0}}}},"d":{"df":2,"docs":{"1114":{"tf":1.0},"587":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1208":{"tf":1.0},"1225":{"tf":1.0},"1333":{"tf":1.0},"233":{"tf":1.0},"41":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"778":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1204":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"440":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1308":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1123":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"df":8,"docs":{"121":{"tf":1.0},"1225":{"tf":1.0},"1258":{"tf":1.0},"283":{"tf":1.0},"387":{"tf":1.0},"621":{"tf":1.0},"673":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"1223":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"514":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"691":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":26,"docs":{"1147":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.0},"1221":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1357":{"tf":1.0},"1380":{"tf":1.0},"1396":{"tf":1.0},"1447":{"tf":1.0},"1523":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"330":{"tf":1.0},"383":{"tf":1.0},"422":{"tf":1.0},"503":{"tf":1.0},"617":{"tf":1.0},"663":{"tf":1.0},"674":{"tf":1.0},"914":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1211":{"tf":1.0},"1213":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1461":{"tf":1.0},"1465":{"tf":1.0},"1471":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1131":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1168":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1528":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"582":{"tf":1.0},"586":{"tf":1.0},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}},"j":{"a":{"c":{"df":44,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0},"12":{"tf":1.0},"1212":{"tf":1.0},"1225":{"tf":1.0},"1258":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"436":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"506":{"tf":1.0},"6":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"71":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"714":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1239":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1237":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1240":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"516":{"tf":1.0},"558":{"tf":1.0},"693":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.0},"538":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"539":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}}},"df":1,"docs":{"670":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"1287":{"tf":1.0},"1479":{"tf":1.0},"176":{"tf":1.0},"510":{"tf":1.0},"728":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"581":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":43,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1006":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1163":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1253":{"tf":1.0},"1259":{"tf":1.0},"1285":{"tf":1.0},"1436":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"657":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0},"993":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1243":{"tf":1.0}}}}}},"o":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1181":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"1276":{"tf":1.0},"182":{"tf":1.0},"297":{"tf":1.0},"500":{"tf":1.0},"711":{"tf":1.0},"780":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"977":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"257":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"1425":{"tf":1.0},"214":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"855":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"863":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"265":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"561":{"tf":1.0},"622":{"tf":1.0},"659":{"tf":1.0},"904":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"734":{"tf":1.0},"750":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.0},"830":{"tf":1.0},"888":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"1487":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1199":{"tf":1.0},"1205":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1439":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"449":{"tf":1.0},"502":{"tf":1.0},"899":{"tf":1.0},"966":{"tf":1.0}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"241":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.0},"130":{"tf":1.0},"1477":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1335":{"tf":1.0},"447":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"658":{"tf":1.0},"923":{"tf":1.0},"947":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"112":{"tf":1.0},"150":{"tf":1.0},"463":{"tf":1.0},"676":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1286":{"tf":1.0},"982":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1148":{"tf":1.0},"1152":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1207":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1400":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.0},"383":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"540":{"tf":1.0},"617":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"684":{"tf":1.0},"717":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1088":{"tf":1.0},"340":{"tf":1.0},"567":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"820":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1184":{"tf":1.0},"1186":{"tf":1.0},"197":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"558":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1440":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1275":{"tf":1.0},"1278":{"tf":1.0},"1286":{"tf":1.0},"1495":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"484":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"1047":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":1.0},"1456":{"tf":1.0},"1502":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1508":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.0},"1523":{"tf":1.0},"1525":{"tf":1.0},"1527":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"264":{"tf":1.0},"840":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1467":{"tf":1.0},"1482":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":4,"docs":{"1460":{"tf":1.0},"1470":{"tf":1.0},"319":{"tf":1.0},"490":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"1150":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"506":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1197":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"446":{"tf":1.0}},"l":{"df":10,"docs":{"1082":{"tf":1.0},"1173":{"tf":1.0},"1193":{"tf":1.0},"1214":{"tf":1.0},"248":{"tf":1.0},"422":{"tf":1.0},"881":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"329":{"tf":1.0},"351":{"tf":1.0},"515":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"711":{"tf":1.0},"717":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"1003":{"tf":1.0},"1206":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1397":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"226":{"tf":1.0},"35":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1277":{"tf":1.0},"1343":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"487":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1203":{"tf":1.0}}}}}}},"w":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1340":{"tf":1.0},"1507":{"tf":1.0},"401":{"tf":1.0},"635":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"1261":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":17,"docs":{"1127":{"tf":1.0},"1156":{"tf":1.0},"1179":{"tf":1.0},"1182":{"tf":1.0},"1218":{"tf":1.0},"1266":{"tf":1.0},"1273":{"tf":1.0},"1301":{"tf":1.0},"1348":{"tf":1.0},"1401":{"tf":1.0},"1517":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"770":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"915":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"581":{"tf":1.0}}}}}},"df":5,"docs":{"1085":{"tf":1.0},"110":{"tf":1.0},"1505":{"tf":1.0},"450":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"324":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1438":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"898":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1221":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}}}}},"r":{"df":8,"docs":{"1142":{"tf":1.0},"1322":{"tf":1.0},"1331":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"171":{"tf":1.0},"409":{"tf":1.0},"643":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1100":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"107":{"tf":1.0},"1227":{"tf":1.0},"1428":{"tf":1.0},"179":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"64":{"tf":1.0},"722":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"880":{"tf":1.0},"891":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1286":{"tf":1.0},"479":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"439":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"1433":{"tf":1.0},"1497":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0},"393":{"tf":1.0},"627":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":19,"docs":{"1017":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1109":{"tf":1.0},"120":{"tf":1.0},"1222":{"tf":1.0},"1263":{"tf":1.0},"1398":{"tf":1.0},"1435":{"tf":1.0},"231":{"tf":1.0},"291":{"tf":1.0},"454":{"tf":1.0},"482":{"tf":1.0},"664":{"tf":1.0},"751":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"1246":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"328":{"tf":1.0},"556":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"509":{"tf":1.0},"656":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"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":2,"docs":{"1197":{"tf":1.0},"446":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1466":{"tf":1.0},"963":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1133":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"1122":{"tf":1.0},"1161":{"tf":1.0},"1275":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"499":{"tf":1.0},"674":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"489":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1048":{"tf":1.0},"1100":{"tf":1.0},"206":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1007":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"22":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}},"p":{"df":1,"docs":{"551":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"109":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.0},"580":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1071":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1012":{"tf":1.0},"1254":{"tf":1.0},"1515":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":3,"docs":{"1077":{"tf":1.0},"1296":{"tf":1.0},"1299":{"tf":1.0}}}}}}}}}}},"q":{"2":{"0":{"2":{"5":{"df":3,"docs":{"1034":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1028":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"1011":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1166":{"tf":1.0},"992":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1338":{"tf":1.0},"1389":{"tf":1.0},"210":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"920":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1284":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"315":{"tf":1.0},"680":{"tf":1.0},"908":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"562":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1122":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"755":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1253":{"tf":1.0},"1276":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1173":{"tf":1.0},"422":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}},"n":{"df":1,"docs":{"97":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1022":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.0},"710":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"704":{"tf":1.0},"710":{"tf":1.0}}}}}},"df":1,"docs":{"1259":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"527":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"843":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"10":{"tf":1.0},"1126":{"tf":1.0},"1155":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1217":{"tf":1.0},"1269":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1371":{"tf":1.0},"1402":{"tf":1.0},"1517":{"tf":1.0},"548":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"769":{"tf":1.0},"78":{"tf":1.0},"905":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"1254":{"tf":1.0},"1515":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1083":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":1,"docs":{"523":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"1178":{"tf":1.0},"122":{"tf":1.0},"1318":{"tf":1.0},"149":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"889":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"1160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1131":{"tf":1.0},"125":{"tf":1.0}},"i":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"103":{"tf":1.0},"1165":{"tf":1.0},"149":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":9,"docs":{"1003":{"tf":1.0},"1004":{"tf":1.0},"1129":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"1475":{"tf":1.0},"236":{"tf":1.0},"252":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1096":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1318":{"tf":1.0},"1407":{"tf":1.0},"1434":{"tf":1.0},"185":{"tf":1.0},"360":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"513":{"tf":1.0},"594":{"tf":1.0},"685":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0},"977":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":2,"docs":{"1208":{"tf":1.0},"783":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"809":{"tf":1.0},"817":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"934":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"1146":{"tf":1.0},"1265":{"tf":1.0},"413":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"647":{"tf":1.0},"676":{"tf":1.0},"955":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"1493":{"tf":1.0},"414":{"tf":1.0},"488":{"tf":1.0},"648":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":1.0},"1476":{"tf":1.0},"181":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"46":{"tf":1.0},"549":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.0},"890":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"575":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1436":{"tf":1.0},"991":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"1494":{"tf":1.0},"221":{"tf":1.0},"415":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"511":{"tf":1.0},"649":{"tf":1.0},"957":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1313":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1016":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"542":{"tf":1.0},"543":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1204":{"tf":1.0},"926":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"1276":{"tf":1.0},"237":{"tf":1.0},"486":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"s":{"a":{"df":3,"docs":{"1022":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"743":{"tf":1.0},"827":{"tf":1.0},"978":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"1215":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"1084":{"tf":1.0},"1154":{"tf":1.0},"1160":{"tf":1.0},"1216":{"tf":1.0},"257":{"tf":1.0},"4":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0}}}}}},"s":{"3":{"df":10,"docs":{"1064":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.0},"726":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"308":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"273":{"tf":1.0},"394":{"tf":1.0},"628":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1010":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":55,"docs":{"1081":{"tf":1.0},"1108":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":1.0},"1132":{"tf":1.0},"1300":{"tf":1.0},"1427":{"tf":1.0},"1480":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"888":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1337":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"1005":{"tf":1.0},"1008":{"tf":1.0},"1049":{"tf":1.0},"1085":{"tf":1.0},"1104":{"tf":1.0},"1170":{"tf":1.0},"1193":{"tf":1.0},"1205":{"tf":1.0},"1252":{"tf":1.0},"1283":{"tf":1.0},"1400":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"205":{"tf":1.0},"247":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"56":{"tf":1.0},"681":{"tf":1.0},"850":{"tf":1.0},"897":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"930":{"tf":1.0},"942":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"1107":{"tf":1.0},"1136":{"tf":1.0},"1172":{"tf":1.0},"1210":{"tf":1.0},"1294":{"tf":1.0},"1316":{"tf":1.0},"1347":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"1406":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"385":{"tf":1.0},"547":{"tf":1.0},"619":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"909":{"tf":1.0},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1192":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1145":{"tf":1.0},"1202":{"tf":1.0},"1285":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"473":{"tf":1.0}}}},"df":22,"docs":{"1188":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.0},"1207":{"tf":1.0},"1262":{"tf":1.0},"1281":{"tf":1.0},"1285":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1524":{"tf":1.0},"331":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"666":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"1404":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"1449":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"938":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":20,"docs":{"1078":{"tf":1.0},"1139":{"tf":1.0},"1224":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1349":{"tf":1.0},"1369":{"tf":1.0},"1372":{"tf":1.0},"1392":{"tf":1.0},"311":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"1518":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"1045":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"58":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"782":{"tf":1.0},"920":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"990":{"tf":1.0},"995":{"tf":1.0}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":47,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1231":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1362":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"641":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"656":{"tf":1.0},"676":{"tf":1.0},"73":{"tf":1.0},"824":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"921":{"tf":1.0},"956":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"379":{"tf":1.0},"612":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"357":{"tf":1.0},"359":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"1256":{"tf":1.0},"842":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"976":{"tf":1.0}}}},"v":{"df":1,"docs":{"21":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":8,"docs":{"1452":{"tf":1.0},"164":{"tf":1.0},"235":{"tf":1.0},"398":{"tf":1.0},"632":{"tf":1.0},"757":{"tf":1.0},"808":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"0":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"1178":{"tf":1.0},"122":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"814":{"tf":1.0},"824":{"tf":1.0},"889":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1209":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"833":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0}}},"u":{"df":9,"docs":{"1000":{"tf":1.0},"1230":{"tf":1.0},"1363":{"tf":1.0},"1386":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"408":{"tf":1.0},"642":{"tf":1.0},"855":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1112":{"tf":1.4142135623730951},"117":{"tf":1.0},"1261":{"tf":1.0},"145":{"tf":1.0},"1510":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"88":{"tf":1.0},"994":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"1054":{"tf":1.0},"1057":{"tf":1.0},"1064":{"tf":1.0},"1073":{"tf":1.0},"1077":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"1090":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1453":{"tf":1.0},"1456":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1511":{"tf":1.0},"1522":{"tf":1.0},"161":{"tf":1.0},"285":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"564":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1312":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"947":{"tf":1.0},"950":{"tf":1.0},"998":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1135":{"tf":1.0},"1308":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"417":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":24,"docs":{"1045":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1111":{"tf":1.0},"1186":{"tf":1.0},"1228":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1290":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"1002":{"tf":1.0},"1015":{"tf":1.0},"109":{"tf":1.0},"1181":{"tf":1.0},"1264":{"tf":1.0},"19":{"tf":1.0},"332":{"tf":1.0},"544":{"tf":1.0},"57":{"tf":1.0},"587":{"tf":1.0},"959":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"1206":{"tf":1.0},"1397":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"338":{"tf":1.0},"565":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1081":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":28,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"196":{"tf":1.0},"225":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1153":{"tf":1.0},"1159":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1391":{"tf":1.0},"1500":{"tf":1.0},"340":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"567":{"tf":1.0},"588":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1310":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"287":{"tf":1.0},"726":{"tf":1.0},"881":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"917":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1078":{"tf":1.0},"1320":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1477":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"931":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.0}}}},"l":{"df":3,"docs":{"1203":{"tf":1.0},"1284":{"tf":1.0},"927":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"863":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":9,"docs":{"1165":{"tf":1.0},"1185":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"1400":{"tf":1.0},"684":{"tf":1.0},"847":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"1441":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.0}}},"k":{"df":2,"docs":{"209":{"tf":1.0},"837":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1403":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"995":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"1152":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"964":{"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":10,"docs":{"114":{"tf":1.0},"1220":{"tf":1.0},"1257":{"tf":1.0},"1291":{"tf":1.0},"1527":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0},"975":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"24":{"tf":1.0},"248":{"tf":1.0},"919":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0},"998":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":15,"docs":{"1279":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"260":{"tf":1.0},"377":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"587":{"tf":1.0},"610":{"tf":1.0},"725":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"833":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.0},"354":{"tf":1.0},"544":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1345":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1141":{"tf":1.0},"505":{"tf":1.0},"684":{"tf":1.0},"812":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"1472":{"tf":1.0},"202":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1420":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"271":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"796":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"1001":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"978":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"118":{"tf":1.0},"1256":{"tf":1.0},"386":{"tf":1.0},"458":{"tf":1.0},"620":{"tf":1.0}}}},"df":37,"docs":{"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.0},"1114":{"tf":1.0},"1116":{"tf":1.0},"1203":{"tf":1.0},"1284":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"212":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"593":{"tf":1.0},"735":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"416":{"tf":1.0},"534":{"tf":1.0},"650":{"tf":1.0}}}}}},"v":{"0":{".":{"6":{".":{"0":{"df":2,"docs":{"82":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"1116":{"tf":1.0},"1119":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1278":{"tf":1.0},"1427":{"tf":1.0},"1474":{"tf":1.0},"1480":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"278":{"tf":1.0},"491":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"1000":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1066":{"tf":1.0},"113":{"tf":1.0},"1159":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1430":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"903":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"789":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1497":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":31,"docs":{"1214":{"tf":1.0},"1246":{"tf":1.0},"1260":{"tf":1.0},"1315":{"tf":1.0},"1334":{"tf":1.0},"1339":{"tf":1.0},"1469":{"tf":1.0},"1473":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1529":{"tf":1.0},"165":{"tf":1.0},"188":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"402":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"636":{"tf":1.0},"763":{"tf":1.0},"846":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"989":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"380":{"tf":1.0},"613":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"1196":{"tf":1.0},"1232":{"tf":1.0},"128":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1352":{"tf":1.0},"136":{"tf":1.0},"1375":{"tf":1.0},"1421":{"tf":1.0},"143":{"tf":1.0},"1436":{"tf":1.0},"1499":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"327":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"555":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.0},"101":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1314":{"tf":1.0},"1409":{"tf":1.0},"1482":{"tf":1.0},"1503":{"tf":1.0},"199":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"740":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"895":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"998":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"185":{"tf":1.0},"43":{"tf":1.0},"978":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"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":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1262":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"394":{"tf":1.0},"628":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"1080":{"tf":1.0},"1177":{"tf":1.0},"1426":{"tf":1.0},"173":{"tf":1.0},"200":{"tf":1.0},"267":{"tf":1.0},"31":{"tf":1.0},"405":{"tf":1.0},"424":{"tf":1.0},"639":{"tf":1.0},"655":{"tf":1.0},"668":{"tf":1.0},"793":{"tf":1.0},"825":{"tf":1.0},"87":{"tf":1.0},"932":{"tf":1.0},"944":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"1248":{"tf":1.0},"1327":{"tf":1.0},"1330":{"tf":1.0},"140":{"tf":1.0},"1427":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"821":{"tf":1.0},"88":{"tf":1.0}}}}}}},"l":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"lang":"English","pipeline":["trimmer","stopWordFilter","stemmer"],"ref":"id","version":"0.9.5"},"results_options":{"limit_results":30,"teaser_word_count":30},"search_options":{"bool":"OR","expand":true,"fields":{"body":{"boost":1},"breadcrumbs":{"boost":1},"title":{"boost":2}}}}
\ No newline at end of file
+{"doc_urls":["index.html#jacs-json-agent-communication-standard","index.html#what-is-jacs","index.html#key-features","index.html#available-implementations","index.html#-rust-core-library--cli","index.html#-nodejs-haiaijacs","index.html#-python-jacs","index.html#quick-start","index.html#rust-cli","index.html#nodejs","index.html#python","index.html#when-to-use-jacs","index.html#why-jacs","index.html#--agent-focused-design","index.html#--production-ready","index.html#--future-proof-security","index.html#--universal-compatibility","index.html#--flexible-integration","index.html#getting-started","index.html#community-and-support","getting-started/what-is-jacs.html#what-is-jacs","getting-started/what-is-jacs.html#the-problem-jacs-solves","getting-started/what-is-jacs.html#jacs-core-philosophy","getting-started/what-is-jacs.html#--agent-first-design","getting-started/what-is-jacs.html#--trust-through-cryptography","getting-started/what-is-jacs.html#--standards-based","getting-started/what-is-jacs.html#key-concepts","getting-started/what-is-jacs.html#agents","getting-started/what-is-jacs.html#documents","getting-started/what-is-jacs.html#tasks","getting-started/what-is-jacs.html#agreements","getting-started/what-is-jacs.html#how-jacs-works","getting-started/what-is-jacs.html#real-world-examples","getting-started/what-is-jacs.html#--ai-content-pipeline","getting-started/what-is-jacs.html#--data-processing-workflow","getting-started/what-is-jacs.html#--multi-agent-analysis","getting-started/what-is-jacs.html#benefits-over-alternatives","getting-started/what-is-jacs.html#when-to-use-jacs","getting-started/what-is-jacs.html#next-steps","getting-started/concepts.html#core-concepts","getting-started/concepts.html#agents","getting-started/concepts.html#agent-identity","getting-started/concepts.html#agent-lifecycle","getting-started/concepts.html#verification-load-vs-verify_standalone","getting-started/concepts.html#documents","getting-started/concepts.html#document-structure","getting-started/concepts.html#required-jacs-fields","getting-started/concepts.html#document-types","getting-started/concepts.html#tasks","getting-started/concepts.html#task-structure","getting-started/concepts.html#task-lifecycle","getting-started/concepts.html#task-components","getting-started/concepts.html#agreements","getting-started/concepts.html#agreement-structure","getting-started/concepts.html#agreement-process","getting-started/concepts.html#agreement-types","getting-started/concepts.html#cryptographic-security","getting-started/concepts.html#supported-algorithms","getting-started/concepts.html#signature-process","getting-started/concepts.html#key-management","getting-started/concepts.html#versioning-and-audit-trails","getting-started/concepts.html#version-management","getting-started/concepts.html#audit-trail-benefits","getting-started/concepts.html#storage-and-transport","getting-started/concepts.html#storage-options","getting-started/concepts.html#transport-mechanisms","getting-started/concepts.html#format-compatibility","getting-started/concepts.html#next-steps","getting-started/quick-start.html#quick-start-guide","getting-started/quick-start.html#choose-your-implementation","getting-started/quick-start.html#install-rust-cli","getting-started/quick-start.html#initialize-jacs","getting-started/quick-start.html#create-your-first-agent","getting-started/quick-start.html#create-and-sign-a-task","getting-started/quick-start.html#install-nodejs-package","getting-started/quick-start.html#basic-setup","getting-started/quick-start.html#create-agent-document","getting-started/quick-start.html#create-a-task","getting-started/quick-start.html#install-python-package","getting-started/quick-start.html#basic-setup-1","getting-started/quick-start.html#create-agent-document-1","getting-started/quick-start.html#create-a-task-1","getting-started/quick-start.html#non-interactive-agent-creation-v060","getting-started/quick-start.html#understanding-what-happened","getting-started/quick-start.html#1--agent-creation","getting-started/quick-start.html#2--configuration-setup","getting-started/quick-start.html#3--task-creation","getting-started/quick-start.html#verify-everything-works","getting-started/quick-start.html#next-steps-multi-agent-workflow","getting-started/quick-start.html#what-youve-accomplished","getting-started/quick-start.html#key-takeaways","getting-started/quick-start.html#where-to-go-next","getting-started/quick-start.html#troubleshooting","usecases.html#use-cases","usecases.html#1-verifying-that-json-came-from-a-specific-program","usecases.html#2-protecting-your-agents-identity-on-the-internet","usecases.html#3-registering-and-testing-your-agent-on-haiai","usecases.html#4-a-go-node-or-python-agent-with-strong-data-provenance","usecases.html#5-openclaw-moltyjacs-proving-your-agent-sent-a-message","rust/installation.html#installation","rust/installation.html#requirements","rust/installation.html#verify-rust-version","rust/installation.html#installing-the-cli","rust/installation.html#from-cratesio-recommended","rust/installation.html#from-source","rust/installation.html#verify-installation","rust/installation.html#using-as-a-library","rust/installation.html#with-optional-features","rust/installation.html#available-features","rust/installation.html#platform-support","rust/installation.html#webassembly-notes","rust/installation.html#configuration","rust/installation.html#manual-configuration","rust/installation.html#environment-variables","rust/installation.html#troubleshooting","rust/installation.html#build-errors","rust/installation.html#runtime-errors","rust/installation.html#next-steps","rust/cli.html#cli-usage","rust/cli.html#getting-help","rust/cli.html#commands-overview","rust/cli.html#initialization","rust/cli.html#quick-start","rust/cli.html#configuration-commands","rust/cli.html#create-configuration","rust/cli.html#read-configuration","rust/cli.html#agent-commands","rust/cli.html#create-agent","rust/cli.html#verify-agent","rust/cli.html#dns-commands","rust/cli.html#lookup-agent","rust/cli.html#task-commands","rust/cli.html#create-task","rust/cli.html#document-commands","rust/cli.html#create-document","rust/cli.html#update-document","rust/cli.html#verify-document","rust/cli.html#extract-embedded-content","rust/cli.html#agreement-commands","rust/cli.html#environment-variables","rust/cli.html#common-workflows","rust/cli.html#create-and-sign-a-document","rust/cli.html#multi-agent-agreement","rust/cli.html#verify-another-agent","rust/cli.html#exit-codes","rust/cli.html#next-steps","rust/agent.html#creating-an-agent","rust/agent.html#what-is-an-agent","rust/agent.html#creating-your-first-agent","rust/agent.html#quick-method-recommended","rust/agent.html#manual-method","rust/agent.html#with-custom-agent-definition","rust/agent.html#agent-types","rust/agent.html#ai-agent-example","rust/agent.html#human-agent-example","rust/agent.html#agent-services","rust/agent.html#service-with-actions","rust/agent.html#agent-contacts","rust/agent.html#cryptographic-keys","rust/agent.html#key-algorithms","rust/agent.html#configure-key-algorithm","rust/agent.html#key-storage","rust/agent.html#verifying-agents","rust/agent.html#verify-your-own-agent","rust/agent.html#verify-a-specific-agent-file","rust/agent.html#with-dns-verification","rust/agent.html#updating-agents","rust/agent.html#agent-document-structure","rust/agent.html#best-practices","rust/agent.html#security","rust/agent.html#agent-design","rust/agent.html#operations","rust/agent.html#next-steps","rust/documents.html#working-with-documents","rust/documents.html#what-is-a-jacs-document","rust/documents.html#creating-documents","rust/documents.html#from-a-json-file","rust/documents.html#from-a-directory","rust/documents.html#with-custom-schema","rust/documents.html#output-options","rust/documents.html#document-structure","rust/documents.html#required-header-fields","rust/documents.html#document-levels","rust/documents.html#file-attachments","rust/documents.html#attach-files","rust/documents.html#embed-vs-reference","rust/documents.html#attachment-structure","rust/documents.html#verifying-documents","rust/documents.html#basic-verification","rust/documents.html#verify-with-schema","rust/documents.html#verify-directory","rust/documents.html#verbose-output","rust/documents.html#updating-documents","rust/documents.html#update-with-attachments","rust/documents.html#extracting-embedded-content","rust/documents.html#document-types","rust/documents.html#task-documents","rust/documents.html#message-documents","rust/documents.html#custom-documents","rust/documents.html#version-history","rust/documents.html#working-with-multiple-agents","rust/documents.html#different-agent-signs-document","rust/documents.html#verify-document-from-unknown-agent","rust/documents.html#best-practices","rust/documents.html#document-design","rust/documents.html#security","rust/documents.html#performance","rust/documents.html#common-workflows","rust/documents.html#create-and-share-document","rust/documents.html#track-document-changes","rust/documents.html#process-multiple-documents","rust/documents.html#next-steps","rust/agreements.html#creating-and-using-agreements","rust/agreements.html#what-is-an-agreement","rust/agreements.html#agreement-lifecycle","rust/agreements.html#creating-agreements","rust/agreements.html#basic-agreement","rust/agreements.html#with-context","rust/agreements.html#signing-agreements","rust/agreements.html#sign-as-current-agent","rust/agreements.html#sign-as-different-agent","rust/agreements.html#sign-with-response","rust/agreements.html#checking-agreement-status","rust/agreements.html#check-if-complete","rust/agreements.html#agreement-structure","rust/agreements.html#task-agreements","rust/agreements.html#multi-agent-workflow-example","rust/agreements.html#agreement-hash","rust/agreements.html#best-practices","rust/agreements.html#next-steps","rust/dns.html#dns-based-agent-verification","rust/dns.html#overview","rust/dns.html#why-dns-verification","rust/dns.html#publishing-agent-identity","rust/dns.html#generate-dns-commands","rust/dns.html#provider-specific-formats","rust/dns.html#dns-record-structure","rust/dns.html#setting-up-with-route-53-aws","rust/dns.html#setting-up-with-cloudflare","rust/dns.html#setting-up-with-azure-dns","rust/dns.html#verifying-agents-with-dns","rust/dns.html#look-up-another-agent","rust/dns.html#verify-agent-with-dns","rust/dns.html#dns-validation-modes","rust/dns.html#agent-domain-configuration","rust/dns.html#dnssec-requirements","rust/dns.html#checking-dnssec-status","rust/dns.html#security-considerations","rust/dns.html#trust-model","rust/dns.html#best-practices","rust/dns.html#caching","rust/dns.html#troubleshooting","rust/dns.html#dns-record-not-found","rust/dns.html#dnssec-validation-failed","rust/dns.html#fingerprint-mismatch","rust/dns.html#integration-with-cicd","rust/dns.html#next-steps","rust/library.html#rust-library-api","rust/library.html#adding-jacs-as-a-dependency","rust/library.html#feature-flags","rust/library.html#core-types","rust/library.html#agent","rust/library.html#jacsdocument","rust/library.html#creating-an-agent","rust/library.html#minimal-agent","rust/library.html#loading-by-configuration","rust/library.html#dns-strict-mode","rust/library.html#working-with-documents","rust/library.html#creating-documents","rust/library.html#creating-documents-with-attachments","rust/library.html#loading-documents","rust/library.html#updating-documents","rust/library.html#verifying-documents","rust/library.html#saving-documents","rust/library.html#creating-tasks","rust/library.html#signing-and-verification","rust/library.html#signing-documents","rust/library.html#verification","rust/library.html#custom-schema-validation","rust/library.html#configuration","rust/library.html#loading-configuration","rust/library.html#accessing-configuration","rust/library.html#observability","rust/library.html#initialize-default-observability","rust/library.html#custom-observability-configuration","rust/library.html#storage-backends","rust/library.html#error-handling","rust/library.html#thread-safety","rust/library.html#complete-example","rust/library.html#next-steps","rust/observability.html#observability","rust/observability.html#overview","rust/observability.html#feature-flags","rust/observability.html#quick-start","rust/observability.html#default-configuration","rust/observability.html#custom-configuration","rust/observability.html#logging","rust/observability.html#log-levels","rust/observability.html#log-destinations","rust/observability.html#using-logs","rust/observability.html#metrics","rust/observability.html#enabling-metrics","rust/observability.html#metrics-destinations","rust/observability.html#recording-metrics","rust/observability.html#built-in-metrics","rust/observability.html#distributed-tracing","rust/observability.html#enabling-tracing","rust/observability.html#tracing-destinations","rust/observability.html#sampling-configuration","rust/observability.html#using-tracing-spans","rust/observability.html#configuration-file","rust/observability.html#opentelemetry-collector-setup","rust/observability.html#reset-and-cleanup","rust/observability.html#best-practices","rust/observability.html#development","rust/observability.html#production","rust/observability.html#troubleshooting","rust/observability.html#logs-not-appearing","rust/observability.html#metrics-not-exporting","rust/observability.html#traces-missing","rust/observability.html#next-steps","nodejs/installation.html#nodejs-installation","nodejs/installation.html#requirements","nodejs/installation.html#installation","nodejs/installation.html#using-npm","nodejs/installation.html#using-yarn","nodejs/installation.html#using-pnpm","nodejs/installation.html#verify-installation","nodejs/installation.html#package-structure","nodejs/installation.html#core-module-haiaijacs","nodejs/installation.html#mcp-integration-haiaijacsmcp","nodejs/installation.html#http-server-haiaijacshttp","nodejs/installation.html#typescript-support","nodejs/installation.html#configuration","nodejs/installation.html#basic-configuration","nodejs/installation.html#configuration-file","nodejs/installation.html#environment-variables","nodejs/installation.html#storage-backends","nodejs/installation.html#file-system-default","nodejs/installation.html#s3-storage","nodejs/installation.html#memory-storage-testing","nodejs/installation.html#cryptographic-algorithms","nodejs/installation.html#ring-ed25519-recommended","nodejs/installation.html#rsa-pss","nodejs/installation.html#pq-dilithium-post-quantum","nodejs/installation.html#pq2025-post-quantum-hybrid","nodejs/installation.html#development-setup","nodejs/installation.html#project-structure","nodejs/installation.html#packagejson-setup","nodejs/installation.html#basic-application","nodejs/installation.html#common-issues","nodejs/installation.html#module-not-found","nodejs/installation.html#permission-errors","nodejs/installation.html#binary-compatibility","nodejs/installation.html#typescript-issues","nodejs/installation.html#next-steps","nodejs/installation.html#examples","nodejs/simple-api.html#simplified-api","nodejs/simple-api.html#quick-start","nodejs/simple-api.html#when-to-use-the-simplified-api","nodejs/simple-api.html#api-reference","nodejs/simple-api.html#loadconfigpath","nodejs/simple-api.html#isloaded","nodejs/simple-api.html#getagentinfo","nodejs/simple-api.html#verifyself","nodejs/simple-api.html#signmessagedata","nodejs/simple-api.html#signfilefilepath-embed","nodejs/simple-api.html#verifysigneddocument","nodejs/simple-api.html#verifystandalonesigneddocument-options","nodejs/simple-api.html#auditoptions","nodejs/simple-api.html#updateagentnewagentdata","nodejs/simple-api.html#updatedocumentdocumentid-newdocumentdata-attachments-embed","nodejs/simple-api.html#exportagent","nodejs/simple-api.html#registerwithhaioptions","nodejs/simple-api.html#getdnsrecorddomain-ttl","nodejs/simple-api.html#getwellknownjson","nodejs/simple-api.html#getpublickey","nodejs/simple-api.html#type-definitions","nodejs/simple-api.html#agentinfo","nodejs/simple-api.html#signeddocument","nodejs/simple-api.html#verificationresult","nodejs/simple-api.html#attachment","nodejs/simple-api.html#complete-example","nodejs/simple-api.html#mcp-integration","nodejs/simple-api.html#error-handling","nodejs/simple-api.html#see-also","nodejs/basic-usage.html#basic-usage","nodejs/basic-usage.html#initializing-an-agent","nodejs/basic-usage.html#create-and-load-agent","nodejs/basic-usage.html#configuration-file","nodejs/basic-usage.html#creating-documents","nodejs/basic-usage.html#basic-document-creation","nodejs/basic-usage.html#with-custom-schema","nodejs/basic-usage.html#with-output-file","nodejs/basic-usage.html#without-saving","nodejs/basic-usage.html#with-attachments","nodejs/basic-usage.html#verifying-documents","nodejs/basic-usage.html#verify-document-signature","nodejs/basic-usage.html#verify-specific-signature-field","nodejs/basic-usage.html#updating-documents","nodejs/basic-usage.html#update-existing-document","nodejs/basic-usage.html#update-with-new-attachments","nodejs/basic-usage.html#signing-and-verification","nodejs/basic-usage.html#sign-arbitrary-data","nodejs/basic-usage.html#verify-arbitrary-data","nodejs/basic-usage.html#working-with-agreements","nodejs/basic-usage.html#create-an-agreement","nodejs/basic-usage.html#sign-an-agreement","nodejs/basic-usage.html#check-agreement-status","nodejs/basic-usage.html#agent-operations","nodejs/basic-usage.html#verify-agent","nodejs/basic-usage.html#update-agent","nodejs/basic-usage.html#sign-external-agent","nodejs/basic-usage.html#requestresponse-signing","nodejs/basic-usage.html#sign-a-request","nodejs/basic-usage.html#verify-a-response","nodejs/basic-usage.html#utility-functions","nodejs/basic-usage.html#hash-string","nodejs/basic-usage.html#create-configuration","nodejs/basic-usage.html#error-handling","nodejs/basic-usage.html#complete-example","nodejs/basic-usage.html#next-steps","nodejs/mcp.html#model-context-protocol-mcp-integration","nodejs/mcp.html#what-is-mcp","nodejs/mcp.html#how-jacs-mcp-works","nodejs/mcp.html#quick-start","nodejs/mcp.html#basic-mcp-server-with-jacs","nodejs/mcp.html#mcp-client-with-jacs","nodejs/mcp.html#api-reference","nodejs/mcp.html#jacstransportproxy","nodejs/mcp.html#createjacstransportproxy","nodejs/mcp.html#createjacstransportproxyasync","nodejs/mcp.html#transport-options","nodejs/mcp.html#stdio-transport","nodejs/mcp.html#sse-transport-http","nodejs/mcp.html#configuration","nodejs/mcp.html#jacs-config-file","nodejs/mcp.html#environment-variables","nodejs/mcp.html#how-messages-are-signed","nodejs/mcp.html#outgoing-messages","nodejs/mcp.html#incoming-messages","nodejs/mcp.html#complete-example","nodejs/mcp.html#server-mcpserverjs","nodejs/mcp.html#client-mcpclientjs","nodejs/mcp.html#security-considerations","nodejs/mcp.html#message-verification","nodejs/mcp.html#passthrough-mode","nodejs/mcp.html#key-management","nodejs/mcp.html#debugging","nodejs/mcp.html#enable-debug-logging","nodejs/mcp.html#stdio-debug-note","nodejs/mcp.html#common-issues","nodejs/mcp.html#next-steps","nodejs/http.html#http-server","nodejs/http.html#overview","nodejs/http.html#core-concepts","nodejs/http.html#requestresponse-flow","nodejs/http.html#http-client","nodejs/http.html#basic-client-usage","nodejs/http.html#using-fetch","nodejs/http.html#express-server","nodejs/http.html#using-express-middleware","nodejs/http.html#middleware-configuration","nodejs/http.html#manual-requestresponse-handling","nodejs/http.html#koa-server","nodejs/http.html#using-koa-middleware","nodejs/http.html#api-reference","nodejs/http.html#jacssignrequestpayload","nodejs/http.html#jacsverifyresponseresponsestring","nodejs/http.html#jacssignresponsepayload","nodejs/http.html#jacsexpressmiddlewareoptions","nodejs/http.html#jacskoamiddlewareoptions","nodejs/http.html#complete-example","nodejs/http.html#server-serverjs","nodejs/http.html#client-clientjs","nodejs/http.html#security-considerations","nodejs/http.html#content-type","nodejs/http.html#error-handling","nodejs/http.html#agent-keys","nodejs/http.html#middleware-order","nodejs/http.html#next-steps","nodejs/express.html#express-middleware","nodejs/express.html#overview","nodejs/express.html#quick-start","nodejs/express.html#middleware-configuration","nodejs/express.html#basic-configuration","nodejs/express.html#per-route-configuration","nodejs/express.html#multiple-jacs-agents","nodejs/express.html#request-handling","nodejs/express.html#accessing-verified-payload","nodejs/express.html#handling-missing-payload","nodejs/express.html#validation-helper","nodejs/express.html#response-handling","nodejs/express.html#automatic-signing","nodejs/express.html#sending-unsigned-responses","nodejs/express.html#custom-response-format","nodejs/express.html#error-handling","nodejs/express.html#global-error-handler","nodejs/express.html#typed-errors","nodejs/express.html#advanced-patterns","nodejs/express.html#router-level-middleware","nodejs/express.html#middleware-composition","nodejs/express.html#logging-middleware","nodejs/express.html#authentication-integration","nodejs/express.html#testing","nodejs/express.html#unit-testing-routes","nodejs/express.html#mock-jacs-for-testing","nodejs/express.html#complete-application-example","nodejs/express.html#troubleshooting","nodejs/express.html#body-parsing-issues","nodejs/express.html#json-body-parser-conflict","nodejs/express.html#response-not-signed","nodejs/express.html#next-steps","nodejs/api.html#api-reference","nodejs/api.html#installation","nodejs/api.html#core-module","nodejs/api.html#jacsagent-class","nodejs/api.html#constructor","nodejs/api.html#agentloadconfigpath","nodejs/api.html#agentcreatedocumentdocumentstring-customschema-outputfilename-nosave-attachments-embed","nodejs/api.html#agentverifydocumentdocumentstring","nodejs/api.html#agentverifysignaturedocumentstring-signaturefield","nodejs/api.html#agentupdatedocumentdocumentkey-newdocumentstring-attachments-embed","nodejs/api.html#agentcreateagreementdocumentstring-agentids-question-context-agreementfieldname","nodejs/api.html#agentsignagreementdocumentstring-agreementfieldname","nodejs/api.html#agentcheckagreementdocumentstring-agreementfieldname","nodejs/api.html#agentsignstringdata","nodejs/api.html#agentverifystringdata-signaturebase64-publickey-publickeyenctype","nodejs/api.html#agentsignrequestparams","nodejs/api.html#agentverifyresponsedocumentstring","nodejs/api.html#agentverifyresponsewithagentiddocumentstring","nodejs/api.html#agentverifyagentagentfile","nodejs/api.html#agentupdateagentnewagentstring","nodejs/api.html#agentsignagentagentstring-publickey-publickeyenctype","nodejs/api.html#utility-functions","nodejs/api.html#hashstringdata","nodejs/api.html#createconfigoptions","nodejs/api.html#http-module","nodejs/api.html#jacsexpressmiddlewareoptions","nodejs/api.html#jacskoamiddlewareoptions","nodejs/api.html#mcp-module","nodejs/api.html#jacstransportproxy","nodejs/api.html#createjacstransportproxytransport-configpath-role","nodejs/api.html#createjacstransportproxyasynctransport-configpath-role","nodejs/api.html#typescript-support","nodejs/api.html#deprecated-functions","nodejs/api.html#error-handling","nodejs/api.html#see-also","python/installation.html#python-installation","python/installation.html#requirements","python/installation.html#installation","python/installation.html#using-pip","python/installation.html#using-conda","python/installation.html#using-poetry","python/installation.html#development-installation","python/installation.html#verify-installation","python/installation.html#package-structure","python/installation.html#core-module","python/installation.html#jacsagent-methods","python/installation.html#configuration","python/installation.html#configuration-file","python/installation.html#load-configuration-in-python","python/installation.html#programmatic-configuration","python/installation.html#environment-variables","python/installation.html#storage-backends","python/installation.html#file-system-default","python/installation.html#s3-storage","python/installation.html#memory-storage-testing","python/installation.html#cryptographic-algorithms","python/installation.html#ring-ed25519-recommended","python/installation.html#rsa-pss","python/installation.html#pq-dilithium-post-quantum","python/installation.html#pq2025-post-quantum-hybrid","python/installation.html#development-setup","python/installation.html#project-structure","python/installation.html#requirementstxt-setup","python/installation.html#basic-application","python/installation.html#virtual-environment-setup","python/installation.html#using-venv","python/installation.html#using-conda-1","python/installation.html#using-poetry-1","python/installation.html#jupyter-notebook-setup","python/installation.html#common-issues","python/installation.html#module-not-found","python/installation.html#permission-errors","python/installation.html#binary-compatibility","python/installation.html#windows-issues","python/installation.html#type-hints-and-ide-support","python/installation.html#testing-setup","python/installation.html#next-steps","python/installation.html#examples","python/simple-api.html#simplified-api","python/simple-api.html#quick-start","python/simple-api.html#when-to-use-the-simplified-api","python/simple-api.html#api-reference","python/simple-api.html#loadconfig_pathnone","python/simple-api.html#is_loaded","python/simple-api.html#get_agent_info","python/simple-api.html#verify_self","python/simple-api.html#sign_messagedata","python/simple-api.html#sign_filefile_path-embedfalse","python/simple-api.html#verifysigned_document","python/simple-api.html#verify_standalonedocument-key_resolutionlocal-data_directorynone-key_directorynone","python/simple-api.html#auditconfig_pathnone-recent_nnone","python/simple-api.html#update_agentnew_agent_data","python/simple-api.html#update_documentdocument_id-new_document_data-attachmentsnone-embedfalse","python/simple-api.html#export_agent","python/simple-api.html#get_dns_recorddomain-ttl3600","python/simple-api.html#get_well_known_json","python/simple-api.html#get_public_key","python/simple-api.html#type-definitions","python/simple-api.html#agentinfo","python/simple-api.html#signeddocument","python/simple-api.html#verificationresult","python/simple-api.html#attachment","python/simple-api.html#exceptions","python/simple-api.html#complete-example","python/simple-api.html#mcp-integration","python/simple-api.html#error-handling","python/simple-api.html#see-also","python/basic-usage.html#basic-usage","python/basic-usage.html#initializing-an-agent","python/basic-usage.html#create-and-load-agent","python/basic-usage.html#configuration-file","python/basic-usage.html#creating-documents","python/basic-usage.html#basic-document-creation","python/basic-usage.html#with-custom-schema","python/basic-usage.html#with-output-file","python/basic-usage.html#without-saving","python/basic-usage.html#with-attachments","python/basic-usage.html#verifying-documents","python/basic-usage.html#verify-document-signature","python/basic-usage.html#verify-specific-signature-field","python/basic-usage.html#updating-documents","python/basic-usage.html#update-existing-document","python/basic-usage.html#update-with-new-attachments","python/basic-usage.html#signing-and-verification","python/basic-usage.html#sign-arbitrary-data","python/basic-usage.html#verify-arbitrary-data","python/basic-usage.html#working-with-agreements","python/basic-usage.html#create-an-agreement","python/basic-usage.html#sign-an-agreement","python/basic-usage.html#check-agreement-status","python/basic-usage.html#agent-operations","python/basic-usage.html#verify-agent","python/basic-usage.html#update-agent","python/basic-usage.html#sign-external-agent","python/basic-usage.html#requestresponse-signing","python/basic-usage.html#sign-a-request","python/basic-usage.html#verify-a-response","python/basic-usage.html#utility-functions","python/basic-usage.html#hash-string","python/basic-usage.html#create-configuration","python/basic-usage.html#error-handling","python/basic-usage.html#complete-example","python/basic-usage.html#working-with-document-data","python/basic-usage.html#parse-signed-documents","python/basic-usage.html#document-key-format","python/basic-usage.html#configuration-management","python/basic-usage.html#load-from-file","python/basic-usage.html#environment-variables","python/basic-usage.html#programmatic-configuration","python/basic-usage.html#next-steps","python/mcp.html#mcp-integration","python/mcp.html#overview","python/mcp.html#quick-start","python/mcp.html#basic-mcp-server-with-jacs","python/mcp.html#basic-mcp-client-with-jacs","python/mcp.html#how-it-works","python/mcp.html#jacsmcpserver","python/mcp.html#jacsmcpclient","python/mcp.html#configuration","python/mcp.html#jacs-configuration-file","python/mcp.html#initializing-the-agent","python/mcp.html#integration-patterns","python/mcp.html#fastmcp-with-jacs-middleware","python/mcp.html#manual-requestresponse-signing","python/mcp.html#error-handling","python/mcp.html#common-errors","python/mcp.html#debugging","python/mcp.html#production-deployment","python/mcp.html#security-best-practices","python/mcp.html#docker-deployment","python/mcp.html#testing","python/mcp.html#unit-testing-mcp-tools","python/mcp.html#api-reference","python/mcp.html#jacsmcpservermcp_server","python/mcp.html#jacsmcpclienturl-kwargs","python/mcp.html#module-functions","python/mcp.html#next-steps","python/api.html#api-reference","python/api.html#installation","python/api.html#core-module","python/api.html#jacsagent-class","python/api.html#constructor","python/api.html#agentloadconfig_path","python/api.html#agentcreate_documentdocument_string-custom_schemanone-output_filenamenone-no_savefalse-attachmentsnone-embedfalse","python/api.html#agentverify_documentdocument_string","python/api.html#agentverify_signaturedocument_string-signature_fieldnone","python/api.html#agentupdate_documentdocument_key-new_document_string-attachmentsnone-embedfalse","python/api.html#agentcreate_agreementdocument_string-agent_ids-questionnone-contextnone-agreement_field_namenone","python/api.html#agentsign_agreementdocument_string-agreement_field_namenone","python/api.html#agentcheck_agreementdocument_string-agreement_field_namenone","python/api.html#agentsign_stringdata","python/api.html#agentverify_stringdata-signature_base64-public_key-public_key_enc_type","python/api.html#agentsign_requestparams","python/api.html#agentverify_responsedocument_string","python/api.html#agentverify_response_with_agent_iddocument_string","python/api.html#agentverify_agentagent_filenone","python/api.html#agentupdate_agentnew_agent_string","python/api.html#agentsign_agentagent_string-public_key-public_key_enc_type","python/api.html#module-level-functions","python/api.html#jacsloadconfig_path","python/api.html#jacssign_requestdata","python/api.html#jacsverify_requestdata","python/api.html#jacssign_responsedata","python/api.html#jacsverify_responsedata","python/api.html#mcp-module","python/api.html#jacsmcpservermcp_server","python/api.html#jacsmcpclienturl-kwargs","python/api.html#configuration","python/api.html#configuration-file-format","python/api.html#configuration-options","python/api.html#error-handling","python/api.html#common-exceptions","python/api.html#type-hints","python/api.html#thread-safety","python/api.html#see-also","schemas/overview.html#json-schemas","schemas/overview.html#schema-architecture","schemas/overview.html#schema-categories","schemas/overview.html#configuration-schema","schemas/overview.html#document-schemas","schemas/overview.html#component-schemas","schemas/overview.html#schema-locations","schemas/overview.html#using-schemas","schemas/overview.html#in-documents","schemas/overview.html#in-configuration-files","schemas/overview.html#custom-schema-validation","schemas/overview.html#hai-extensions","schemas/overview.html#versioning","schemas/overview.html#schema-composition","schemas/overview.html#creating-custom-schemas","schemas/overview.html#validation-rules","schemas/overview.html#required-fields","schemas/overview.html#format-validation","schemas/overview.html#enum-constraints","schemas/overview.html#schema-reference","schemas/overview.html#see-also","schemas/agent.html#agent-schema","schemas/agent.html#schema-location","schemas/agent.html#overview","schemas/agent.html#schema-structure","schemas/agent.html#agent-types","schemas/agent.html#contact-requirements","schemas/agent.html#agent-properties","schemas/agent.html#core-fields-from-header","schemas/agent.html#agent-specific-fields","schemas/agent.html#services","schemas/agent.html#service-schema-fields","schemas/agent.html#pii-types","schemas/agent.html#contacts","schemas/agent.html#contact-schema-fields","schemas/agent.html#dns-verification","schemas/agent.html#complete-example","schemas/agent.html#ai-agent","schemas/agent.html#human-agent","schemas/agent.html#organization-agent","schemas/agent.html#creating-agents","schemas/agent.html#python","schemas/agent.html#nodejs","schemas/agent.html#cli","schemas/agent.html#verifying-agents","schemas/agent.html#see-also","schemas/document.html#document-schema","schemas/document.html#schema-location","schemas/document.html#overview","schemas/document.html#core-fields","schemas/document.html#identification","schemas/document.html#versioning","schemas/document.html#document-level","schemas/document.html#cryptographic-fields","schemas/document.html#signature","schemas/document.html#registration","schemas/document.html#hash","schemas/document.html#agreements","schemas/document.html#agreement-schema-fields","schemas/document.html#file-attachments","schemas/document.html#file-schema-fields","schemas/document.html#vector-embeddings","schemas/document.html#embedding-schema-fields","schemas/document.html#complete-example","schemas/document.html#hai-field-categories","schemas/document.html#working-with-documents","schemas/document.html#creating-documents","schemas/document.html#verifying-documents","schemas/document.html#updating-documents","schemas/document.html#adding-attachments","schemas/document.html#version-history","schemas/document.html#see-also","schemas/task.html#task-schema","schemas/task.html#schema-location","schemas/task.html#overview","schemas/task.html#schema-structure","schemas/task.html#task-states","schemas/task.html#state-transitions","schemas/task.html#task-properties","schemas/task.html#core-fields-from-header","schemas/task.html#task-specific-fields","schemas/task.html#relationship-fields","schemas/task.html#actions","schemas/task.html#action-schema-fields","schemas/task.html#unit-schema","schemas/task.html#agreements","schemas/task.html#start-agreement","schemas/task.html#end-agreement","schemas/task.html#complete-example","schemas/task.html#task-relationships","schemas/task.html#sub-tasks","schemas/task.html#task-copies-branching","schemas/task.html#merged-tasks","schemas/task.html#task-workflow","schemas/task.html#1-creating-a-task","schemas/task.html#2-assigning-an-agent","schemas/task.html#3-signing-start-agreement","schemas/task.html#4-completing-work","schemas/task.html#5-final-completion","schemas/task.html#state-machine-rules","schemas/task.html#see-also","schemas/agentstate.html#agent-state-schema","schemas/agentstate.html#schema-location","schemas/agentstate.html#overview","schemas/agentstate.html#schema-structure","schemas/agentstate.html#state-types","schemas/agentstate.html#properties","schemas/agentstate.html#required-fields","schemas/agentstate.html#optional-fields","schemas/agentstate.html#origin-tracking","schemas/agentstate.html#file-references","schemas/agentstate.html#examples","schemas/agentstate.html#minimal-agent-state","schemas/agentstate.html#memory-file-with-embedding","schemas/agentstate.html#adopted-skill","schemas/agentstate.html#general-purpose-signed-document","schemas/agentstate.html#rust-api","schemas/agentstate.html#creating-agent-state-documents","schemas/agentstate.html#signing-and-verification","schemas/agentstate.html#mcp-tools","schemas/agentstate.html#mcp-example-sign-a-memory-file","schemas/agentstate.html#mcp-example-sign-any-document","schemas/agentstate.html#security-notes","schemas/agentstate.html#see-also","schemas/commitment.html#commitment-schema","schemas/commitment.html#schema","schemas/commitment.html#required-fields","schemas/commitment.html#status-lifecycle","schemas/commitment.html#optional-fields","schemas/commitment.html#cross-references","schemas/commitment.html#multi-agent-agreements","schemas/commitment.html#example","schemas/commitment.html#rust-api","schemas/commitment.html#versioning","schemas/commitment.html#see-also","schemas/todo.html#todo-list-schema","schemas/todo.html#schema","schemas/todo.html#required-fields","schemas/todo.html#optional-fields","schemas/todo.html#todo-items","schemas/todo.html#required-item-fields","schemas/todo.html#optional-item-fields","schemas/todo.html#cross-references","schemas/todo.html#item-hierarchy","schemas/todo.html#example","schemas/todo.html#rust-api","schemas/todo.html#versioning","schemas/todo.html#see-also","schemas/conversation.html#conversation-schema","schemas/conversation.html#schema","schemas/conversation.html#message-fields","schemas/conversation.html#required","schemas/conversation.html#optional","schemas/conversation.html#threading-model","schemas/conversation.html#immutability","schemas/conversation.html#example","schemas/conversation.html#rust-api","schemas/conversation.html#cross-references","schemas/conversation.html#see-also","schemas/configuration.html#configuration","schemas/configuration.html#schema-location","schemas/configuration.html#quick-start","schemas/configuration.html#required-fields","schemas/configuration.html#configuration-options","schemas/configuration.html#key-configuration","schemas/configuration.html#storage-configuration","schemas/configuration.html#agent-identity","schemas/configuration.html#schema-versions","schemas/configuration.html#dns-configuration","schemas/configuration.html#security","schemas/configuration.html#observability-configuration","schemas/configuration.html#logs-configuration","schemas/configuration.html#metrics-configuration","schemas/configuration.html#tracing-configuration","schemas/configuration.html#complete-configuration-example","schemas/configuration.html#environment-variables","schemas/configuration.html#loading-configuration","schemas/configuration.html#python","schemas/configuration.html#nodejs","schemas/configuration.html#cli","schemas/configuration.html#production-best-practices","schemas/configuration.html#see-also","advanced/security.html#security-model","advanced/security.html#security-model-v060","advanced/security.html#core-security-principles","advanced/security.html#1-cryptographic-identity","advanced/security.html#2-document-integrity","advanced/security.html#3-non-repudiation","advanced/security.html#security-audit-audit","advanced/security.html#threat-model","advanced/security.html#protected-against","advanced/security.html#trust-assumptions","advanced/security.html#signature-process","advanced/security.html#signing-a-document","advanced/security.html#verifying-a-document","advanced/security.html#key-management","advanced/security.html#key-generation","advanced/security.html#key-protection","advanced/security.html#key-rotation","advanced/security.html#tls-certificate-validation","advanced/security.html#default-behavior-development","advanced/security.html#production-configuration","advanced/security.html#security-implications","advanced/security.html#signature-timestamp-validation","advanced/security.html#how-it-works","advanced/security.html#configuring-signature-expiration","advanced/security.html#protection-against-replay-attacks","advanced/security.html#clock-synchronization","advanced/security.html#verification-claims","advanced/security.html#claim-levels","advanced/security.html#setting-a-verification-claim","advanced/security.html#claim-enforcement","advanced/security.html#backward-compatibility","advanced/security.html#error-messages","advanced/security.html#security-considerations","advanced/security.html#dns-based-verification","advanced/security.html#how-it-works-1","advanced/security.html#configuration","advanced/security.html#security-levels","advanced/security.html#trust-store-management","advanced/security.html#trusting-agents","advanced/security.html#untrusting-agents","advanced/security.html#trust-store-security","advanced/security.html#best-practices","advanced/security.html#agreement-security","advanced/security.html#agreement-structure","advanced/security.html#agreement-guarantees","advanced/security.html#requestresponse-security","advanced/security.html#request-signing","advanced/security.html#response-verification","advanced/security.html#algorithm-security","advanced/security.html#supported-algorithms","advanced/security.html#algorithm-selection","advanced/security.html#security-best-practices","advanced/security.html#1-key-storage","advanced/security.html#2-password-handling","advanced/security.html#3-transport-security","advanced/security.html#4-verification-policies","advanced/security.html#5-audit-logging","advanced/security.html#security-checklist","advanced/security.html#development","advanced/security.html#production","advanced/security.html#verification","advanced/security.html#security-considerations-1","advanced/security.html#supply-chain","advanced/security.html#side-channels","advanced/security.html#recovery","advanced/security.html#troubleshooting-verification-claims","advanced/security.html#common-issues-and-solutions","advanced/security.html#claim-level-reference","advanced/security.html#upgrade-vs-downgrade-rules","advanced/security.html#quick-diagnostic-commands","advanced/security.html#see-also","advanced/key-rotation.html#key-rotation","advanced/key-rotation.html#why-key-rotation-matters","advanced/key-rotation.html#key-compromise-recovery","advanced/key-rotation.html#cryptographic-agility","advanced/key-rotation.html#compliance-requirements","advanced/key-rotation.html#agent-versioning","advanced/key-rotation.html#version-format","advanced/key-rotation.html#version-chain","advanced/key-rotation.html#version-aware-verification","advanced/key-rotation.html#signature-structure","advanced/key-rotation.html#key-resolution-process","advanced/key-rotation.html#key-lookup-priority","advanced/key-rotation.html#key-rotation-process","advanced/key-rotation.html#step-by-step-rotation","advanced/key-rotation.html#transition-signature","advanced/key-rotation.html#cli-commands-planned","advanced/key-rotation.html#example-rotation-flow","advanced/key-rotation.html#trust-store-with-version-history","advanced/key-rotation.html#trustedagent-structure","advanced/key-rotation.html#key-status-values","advanced/key-rotation.html#looking-up-keys","advanced/key-rotation.html#dns-support-for-key-versions","advanced/key-rotation.html#multi-version-dns-records","advanced/key-rotation.html#dns-record-generation","advanced/key-rotation.html#security-considerations","advanced/key-rotation.html#key-revocation","advanced/key-rotation.html#overlap-period","advanced/key-rotation.html#secure-deletion","advanced/key-rotation.html#best-practices","advanced/key-rotation.html#rotation-schedule","advanced/key-rotation.html#pre-rotation-checklist","advanced/key-rotation.html#post-rotation-checklist","advanced/key-rotation.html#see-also","advanced/crypto.html#cryptographic-algorithms","advanced/crypto.html#supported-algorithms","advanced/crypto.html#ed25519-ring-ed25519","advanced/crypto.html#overview","advanced/crypto.html#characteristics","advanced/crypto.html#configuration","advanced/crypto.html#use-cases","advanced/crypto.html#example","advanced/crypto.html#rsa-pss","advanced/crypto.html#overview-1","advanced/crypto.html#characteristics-1","advanced/crypto.html#configuration-1","advanced/crypto.html#use-cases-1","advanced/crypto.html#considerations","advanced/crypto.html#dilithium-pq-dilithium","advanced/crypto.html#overview-2","advanced/crypto.html#characteristics-2","advanced/crypto.html#configuration-2","advanced/crypto.html#use-cases-2","advanced/crypto.html#considerations-1","advanced/crypto.html#pq2025-hybrid","advanced/crypto.html#overview-3","advanced/crypto.html#characteristics-3","advanced/crypto.html#configuration-3","advanced/crypto.html#use-cases-3","advanced/crypto.html#considerations-2","advanced/crypto.html#algorithm-selection-guide","advanced/crypto.html#decision-matrix","advanced/crypto.html#by-use-case","advanced/crypto.html#key-generation","advanced/crypto.html#key-formats","advanced/crypto.html#signature-structure","advanced/crypto.html#hashing","advanced/crypto.html#algorithm-migration","advanced/crypto.html#performance-comparison","advanced/crypto.html#security-considerations","advanced/crypto.html#algorithm-agility","advanced/crypto.html#forward-secrecy","advanced/crypto.html#key-compromise","advanced/crypto.html#see-also","advanced/storage.html#storage-backends","advanced/storage.html#available-backends","advanced/storage.html#configuration","advanced/storage.html#filesystem-storage-fs","advanced/storage.html#configuration-1","advanced/storage.html#directory-structure","advanced/storage.html#use-cases","advanced/storage.html#advantages","advanced/storage.html#considerations","advanced/storage.html#example","advanced/storage.html#aws-s3-storage-aws","advanced/storage.html#configuration-2","advanced/storage.html#environment-variables","advanced/storage.html#bucket-structure","advanced/storage.html#use-cases-1","advanced/storage.html#advantages-1","advanced/storage.html#considerations-1","advanced/storage.html#iam-policy","advanced/storage.html#example-1","advanced/storage.html#hai-cloud-storage-hai","advanced/storage.html#configuration-3","advanced/storage.html#features","advanced/storage.html#use-cases-2","advanced/storage.html#postgresql-database-storage-database","advanced/storage.html#compile-time-setup","advanced/storage.html#configuration-4","advanced/storage.html#how-it-works","advanced/storage.html#table-schema","advanced/storage.html#append-only-model","advanced/storage.html#query-capabilities","advanced/storage.html#rust-api-example","advanced/storage.html#security-note","advanced/storage.html#use-cases-3","advanced/storage.html#considerations-2","advanced/storage.html#in-memory-storage","advanced/storage.html#storage-selection-guide","advanced/storage.html#file-storage","advanced/storage.html#embedded-files","advanced/storage.html#external-files","advanced/storage.html#data-migration","advanced/storage.html#filesystem-to-s3","advanced/storage.html#exportimport","advanced/storage.html#backup-and-recovery","advanced/storage.html#filesystem-backup","advanced/storage.html#s3-backup","advanced/storage.html#cross-region-replication","advanced/storage.html#performance-optimization","advanced/storage.html#filesystem","advanced/storage.html#s3","advanced/storage.html#caching","advanced/storage.html#security-considerations","advanced/storage.html#filesystem-1","advanced/storage.html#s3-1","advanced/storage.html#see-also","advanced/custom-schemas.html#custom-schemas","advanced/custom-schemas.html#overview","advanced/custom-schemas.html#creating-a-custom-schema","advanced/custom-schemas.html#basic-structure","advanced/custom-schemas.html#step-by-step-guide","advanced/custom-schemas.html#schema-best-practices","advanced/custom-schemas.html#use-meaningful-ids","advanced/custom-schemas.html#document-everything","advanced/custom-schemas.html#use-appropriate-validation","advanced/custom-schemas.html#group-related-fields","advanced/custom-schemas.html#advanced-schema-features","advanced/custom-schemas.html#conditional-validation","advanced/custom-schemas.html#reusable-definitions","advanced/custom-schemas.html#array-constraints","advanced/custom-schemas.html#pattern-properties","advanced/custom-schemas.html#schema-inheritance","advanced/custom-schemas.html#extending-custom-schemas","advanced/custom-schemas.html#validation","advanced/custom-schemas.html#python-validation","advanced/custom-schemas.html#nodejs-validation","advanced/custom-schemas.html#example-schemas","advanced/custom-schemas.html#medical-record","advanced/custom-schemas.html#legal-contract","advanced/custom-schemas.html#iot-sensor-reading","advanced/custom-schemas.html#schema-versioning","advanced/custom-schemas.html#version-in-path","advanced/custom-schemas.html#version-field","advanced/custom-schemas.html#migration-strategy","advanced/custom-schemas.html#see-also","advanced/testing.html#testing","advanced/testing.html#testing-fundamentals","advanced/testing.html#test-agent-setup","advanced/testing.html#test-fixtures","advanced/testing.html#unit-testing","advanced/testing.html#testing-document-operations","advanced/testing.html#testing-agreements","advanced/testing.html#agreement-completion-semantics-strict","advanced/testing.html#two-agent-agreement-harness-separate-agents","advanced/testing.html#testing-requestresponse-signing","advanced/testing.html#integration-testing","advanced/testing.html#testing-mcp-integration","advanced/testing.html#testing-http-endpoints","advanced/testing.html#mocking","advanced/testing.html#mocking-jacs-agent","advanced/testing.html#mocking-mcp-transport","advanced/testing.html#test-coverage","advanced/testing.html#rust-coverage","advanced/testing.html#python-coverage","advanced/testing.html#nodejs-coverage","advanced/testing.html#cicd-integration","advanced/testing.html#github-actions","advanced/testing.html#test-environment-variables","advanced/testing.html#raii-test-fixtures-rust","advanced/testing.html#trusttestguard-pattern","advanced/testing.html#property-based-testing","advanced/testing.html#key-properties-to-test","advanced/testing.html#fuzzing","advanced/testing.html#recommended-tool-cargo-fuzz","advanced/testing.html#priority-fuzz-targets-for-jacs","advanced/testing.html#best-practices","advanced/testing.html#1-isolate-tests","advanced/testing.html#2-test-edge-cases","advanced/testing.html#3-test-security-properties","advanced/testing.html#4-test-error-handling","advanced/testing.html#see-also","integrations/mcp.html#model-context-protocol-mcp","integrations/mcp.html#what-is-mcp","integrations/mcp.html#why-jacs--mcp","integrations/mcp.html#architecture","integrations/mcp.html#how-it-works","integrations/mcp.html#quick-start","integrations/mcp.html#nodejs","integrations/mcp.html#python","integrations/mcp.html#language-support","integrations/mcp.html#nodejs-haiaijacs","integrations/mcp.html#python-jacspy","integrations/mcp.html#message-flow","integrations/mcp.html#tool-call-example","integrations/mcp.html#signed-message-structure","integrations/mcp.html#configuration","integrations/mcp.html#server-configuration","integrations/mcp.html#client-configuration","integrations/mcp.html#transports","integrations/mcp.html#stdio","integrations/mcp.html#server-sent-events-sse","integrations/mcp.html#security-model","integrations/mcp.html#signing-is-sacred","integrations/mcp.html#what-gets-signed","integrations/mcp.html#what-gets-verified","integrations/mcp.html#passthrough-mode","integrations/mcp.html#debugging","integrations/mcp.html#enable-debug-logging","integrations/mcp.html#common-issues","integrations/mcp.html#best-practices","integrations/mcp.html#1-separate-keys-for-server-and-client","integrations/mcp.html#2-use-tls-for-network-transports","integrations/mcp.html#3-implement-key-rotation","integrations/mcp.html#4-log-security-events","integrations/mcp.html#example-multi-agent-system","integrations/mcp.html#hai-mcp-server-tools","integrations/mcp.html#identity--registration-tools","integrations/mcp.html#agent-state-tools","integrations/mcp.html#see-also","integrations/a2a.html#a2a-interoperability","integrations/a2a.html#what-jacs-adds","integrations/a2a.html#interoperability-contract","integrations/a2a.html#verification-model","integrations/a2a.html#12-factor-runtime-configuration","integrations/a2a.html#rust-example","integrations/a2a.html#python-example","integrations/a2a.html#nodejs-example","integrations/a2a.html#devex-expectations","integrations/a2a.html#troubleshooting","integrations/openclaw.html#openclaw-integration","integrations/openclaw.html#overview","integrations/openclaw.html#installation","integrations/openclaw.html#setup","integrations/openclaw.html#initialize-jacs-identity","integrations/openclaw.html#configuration","integrations/openclaw.html#configuration-options","integrations/openclaw.html#directory-structure","integrations/openclaw.html#cli-commands","integrations/openclaw.html#status","integrations/openclaw.html#sign-document","integrations/openclaw.html#verify-document","integrations/openclaw.html#lookup-agent","integrations/openclaw.html#export-agent-card","integrations/openclaw.html#generate-dns-record","integrations/openclaw.html#agent-tools","integrations/openclaw.html#jacs_sign","integrations/openclaw.html#jacs_verify","integrations/openclaw.html#jacs_fetch_pubkey","integrations/openclaw.html#jacs_verify_with_key","integrations/openclaw.html#jacs_lookup_agent","integrations/openclaw.html#jacs_create_agreement","integrations/openclaw.html#well-known-endpoints","integrations/openclaw.html#well-knownagent-cardjson","integrations/openclaw.html#well-knownjacs-pubkeyjson","integrations/openclaw.html#p2p-agent-verification","integrations/openclaw.html#flow","integrations/openclaw.html#example-workflow","integrations/openclaw.html#dns-based-discovery","integrations/openclaw.html#generate-dns-record-1","integrations/openclaw.html#dns-lookup","integrations/openclaw.html#security","integrations/openclaw.html#key-protection","integrations/openclaw.html#post-quantum-cryptography","integrations/openclaw.html#signature-binding","integrations/openclaw.html#skill-usage","integrations/openclaw.html#troubleshooting","integrations/openclaw.html#jacs-not-initialized","integrations/openclaw.html#failed-to-fetch-public-key","integrations/openclaw.html#signature-verification-failed","integrations/openclaw.html#next-steps","integrations/web-servers.html#web-servers","integrations/web-servers.html#overview","integrations/web-servers.html#supported-frameworks","integrations/web-servers.html#requestresponse-flow","integrations/web-servers.html#nodejs-integration","integrations/web-servers.html#expressjs","integrations/web-servers.html#koa","integrations/web-servers.html#python-integration","integrations/web-servers.html#fastapi","integrations/web-servers.html#flask","integrations/web-servers.html#http-client","integrations/web-servers.html#nodejs-client","integrations/web-servers.html#python-client","integrations/web-servers.html#middleware-patterns","integrations/web-servers.html#route-level-protection","integrations/web-servers.html#multiple-agent-configurations","integrations/web-servers.html#validation-middleware","integrations/web-servers.html#content-type-considerations","integrations/web-servers.html#error-handling","integrations/web-servers.html#server-side-errors","integrations/web-servers.html#client-side-errors","integrations/web-servers.html#security-best-practices","integrations/web-servers.html#1-use-tls-in-production","integrations/web-servers.html#2-separate-server-and-client-keys","integrations/web-servers.html#3-middleware-order-matters","integrations/web-servers.html#4-avoid-json-body-parser-conflicts","integrations/web-servers.html#logging-and-auditing","integrations/web-servers.html#testing","integrations/web-servers.html#testing-with-supertest","integrations/web-servers.html#troubleshooting","integrations/web-servers.html#common-issues","integrations/web-servers.html#debug-logging","integrations/web-servers.html#see-also","integrations/databases.html#databases","integrations/databases.html#built-in-postgresql-backend","integrations/databases.html#custom-database-integrations","integrations/databases.html#why-use-a-custom-database-integration","integrations/databases.html#postgresql-integration","integrations/databases.html#schema-design","integrations/databases.html#nodejs-example","integrations/databases.html#python-example","integrations/databases.html#mongodb-integration","integrations/databases.html#collection-design","integrations/databases.html#example","integrations/databases.html#sqlite-integration","integrations/databases.html#redis-caching","integrations/databases.html#indexing-strategies","integrations/databases.html#extracting-searchable-fields","integrations/databases.html#full-text-search","integrations/databases.html#best-practices","integrations/databases.html#1-store-complete-documents","integrations/databases.html#2-verify-after-retrieval","integrations/databases.html#3-handle-version-history","integrations/databases.html#4-batch-verification","integrations/databases.html#see-also","examples/cli.html#cli-examples","examples/cli.html#quick-reference","examples/cli.html#getting-started","examples/cli.html#first-time-setup","examples/cli.html#verify-your-setup","examples/cli.html#document-operations","examples/cli.html#creating-documents","examples/cli.html#verifying-documents","examples/cli.html#updating-documents","examples/cli.html#extracting-embedded-content","examples/cli.html#agreement-workflows","examples/cli.html#creating-an-agreement","examples/cli.html#signing-an-agreement","examples/cli.html#complete-agreement-workflow","examples/cli.html#agent-operations","examples/cli.html#creating-a-custom-agent","examples/cli.html#dns-based-identity","examples/cli.html#agent-verification","examples/cli.html#task-management","examples/cli.html#creating-tasks","examples/cli.html#scripting-examples","examples/cli.html#batch-document-processing","examples/cli.html#verification-report","examples/cli.html#watch-for-new-documents","examples/cli.html#environment-configuration","examples/cli.html#using-environment-variables","examples/cli.html#multiple-configurations","examples/cli.html#error-handling","examples/cli.html#understanding-exit-codes","examples/cli.html#handling-failures","examples/cli.html#see-also","examples/nodejs.html#nodejs-examples","examples/nodejs.html#setup","examples/nodejs.html#basic-document-operations","examples/nodejs.html#creating-and-signing-documents","examples/nodejs.html#verifying-documents","examples/nodejs.html#updating-documents","examples/nodejs.html#http-server-with-express","examples/nodejs.html#complete-express-server","examples/nodejs.html#http-client","examples/nodejs.html#mcp-integration","examples/nodejs.html#mcp-server","examples/nodejs.html#mcp-client","examples/nodejs.html#agreements","examples/nodejs.html#creating-multi-party-agreements","examples/nodejs.html#signing-agreements","examples/nodejs.html#checking-agreement-status","examples/nodejs.html#document-store","examples/nodejs.html#simple-file-based-store","examples/nodejs.html#error-handling","examples/nodejs.html#robust-error-handling-pattern","examples/nodejs.html#testing","examples/nodejs.html#jest-test-setup","examples/nodejs.html#see-also","examples/python.html#python-examples","examples/python.html#setup","examples/python.html#basic-document-operations","examples/python.html#creating-and-signing-documents","examples/python.html#verifying-documents","examples/python.html#updating-documents","examples/python.html#http-server-with-fastapi","examples/python.html#complete-fastapi-server","examples/python.html#http-client","examples/python.html#mcp-integration","examples/python.html#fastmcp-server-with-jacs","examples/python.html#mcp-client-with-jacs","examples/python.html#agreements","examples/python.html#creating-multi-party-agreements","examples/python.html#signing-agreements","examples/python.html#checking-agreement-status","examples/python.html#document-store","examples/python.html#simple-file-based-store","examples/python.html#batch-processing","examples/python.html#batch-document-creator","examples/python.html#testing","examples/python.html#pytest-setup","examples/python.html#error-handling","examples/python.html#robust-error-handling-pattern","examples/python.html#see-also","examples/integrations.html#integration-examples","examples/integrations.html#multi-agent-contract-signing-system","examples/integrations.html#overview","examples/integrations.html#implementation","examples/integrations.html#secure-api-gateway-with-mcp-tools","examples/integrations.html#nodejs-implementation","examples/integrations.html#python-implementation","examples/integrations.html#document-audit-trail-system","examples/integrations.html#multi-tenant-document-service","examples/integrations.html#webhook-notification-system","examples/integrations.html#see-also","reference/cli-commands.html#cli-command-reference","reference/cli-commands.html#global-commands","reference/cli-commands.html#jacs-version","reference/cli-commands.html#jacs-init","reference/cli-commands.html#jacs-help","reference/cli-commands.html#configuration-commands","reference/cli-commands.html#jacs-config","reference/cli-commands.html#agent-commands","reference/cli-commands.html#jacs-agent","reference/cli-commands.html#task-commands","reference/cli-commands.html#jacs-task","reference/cli-commands.html#document-commands","reference/cli-commands.html#jacs-document-create","reference/cli-commands.html#jacs-document-update","reference/cli-commands.html#jacs-document-verify","reference/cli-commands.html#jacs-document-extract","reference/cli-commands.html#agreement-commands","reference/cli-commands.html#common-patterns","reference/cli-commands.html#basic-document-lifecycle","reference/cli-commands.html#working-with-attachments","reference/cli-commands.html#schema-validation-workflow","reference/cli-commands.html#global-options","reference/cli-commands.html#exit-codes","reference/cli-commands.html#environment-variables","reference/cli-commands.html#file-formats","reference/cli-commands.html#input-files","reference/cli-commands.html#output-files","reference/configuration.html#configuration-reference","reference/configuration.html#overview","reference/configuration.html#key-resolution-for-verifiers","reference/configuration.html#complete-example-configuration","reference/configuration.html#observability-configuration","reference/configuration.html#logs-configuration","reference/configuration.html#metrics-configuration","reference/configuration.html#tracing-configuration","reference/configuration.html#authentication--headers","reference/configuration.html#common-patterns","reference/configuration.html#development-configuration","reference/configuration.html#production-configuration","reference/configuration.html#file-based-configuration","reference/configuration.html#environment-variable-integration","reference/configuration.html#required-environment-variable","reference/configuration.html#configuration-based-settings","reference/configuration.html#storage-configuration","reference/configuration.html#available-storage-backends","reference/configuration.html#backend-specific-configuration","reference/configuration.html#storage-behavior","reference/configuration.html#configuration-examples","reference/configuration.html#security-considerations","reference/configuration.html#migration-between-storage-backends","reference/errors.html#error-codes","reference/errors.html#cli-exit-codes","reference/errors.html#configuration-errors","reference/errors.html#missing-configuration","reference/errors.html#invalid-configuration","reference/errors.html#key-directory-not-found","reference/errors.html#cryptographic-errors","reference/errors.html#private-key-not-found","reference/errors.html#invalid-key-format","reference/errors.html#key-password-required","reference/errors.html#algorithm-mismatch","reference/errors.html#signature-errors","reference/errors.html#verification-failed","reference/errors.html#missing-signature","reference/errors.html#invalid-signature-format","reference/errors.html#unknown-signing-algorithm","reference/errors.html#dns-verification-errors","reference/errors.html#dnssec-validation-failed","reference/errors.html#dns-record-not-found","reference/errors.html#dns-required","reference/errors.html#dns-lookup-timeout","reference/errors.html#document-errors","reference/errors.html#invalid-json","reference/errors.html#schema-validation-failed","reference/errors.html#document-not-found","reference/errors.html#version-mismatch","reference/errors.html#agreement-errors","reference/errors.html#agreement-not-found","reference/errors.html#already-signed","reference/errors.html#not-authorized","reference/errors.html#agreement-locked","reference/errors.html#storage-errors","reference/errors.html#storage-backend-error","reference/errors.html#aws-s3-error","reference/errors.html#connection-error","reference/errors.html#httpmcp-errors","reference/errors.html#request-verification-failed","reference/errors.html#response-verification-failed","reference/errors.html#middleware-configuration-error","reference/errors.html#debugging-tips","reference/errors.html#enable-verbose-output","reference/errors.html#check-configuration","reference/errors.html#verify-agent","reference/errors.html#test-signing","reference/errors.html#see-also","reference/migration.html#migration-guide","reference/migration.html#version-compatibility","reference/migration.html#migrating-from-051-to-052","reference/migration.html#migration-notes","reference/migration.html#deprecated-environment-variables","reference/migration.html#new-environment-variables","reference/migration.html#migrating-from-02x-to-03x","reference/migration.html#configuration-changes","reference/migration.html#migration-steps","reference/migration.html#migrating-storage-backends","reference/migration.html#filesystem-to-aws-s3","reference/migration.html#aws-s3-to-filesystem","reference/migration.html#migrating-cryptographic-algorithms","reference/migration.html#ed25519-to-post-quantum","reference/migration.html#migrating-between-platforms","reference/migration.html#nodejs-to-python","reference/migration.html#sharing-agents-between-platforms","reference/migration.html#migrating-key-formats","reference/migration.html#unencrypted-to-encrypted-keys","reference/migration.html#database-migration","reference/migration.html#adding-database-storage","reference/migration.html#mcp-integration-migration","reference/migration.html#adding-jacs-to-existing-mcp-server","reference/migration.html#http-api-migration","reference/migration.html#adding-jacs-to-existing-express-api","reference/migration.html#troubleshooting-migration","reference/migration.html#common-issues","reference/migration.html#verification-checklist","reference/migration.html#rollback-procedures","reference/migration.html#see-also"],"index":{"documentStore":{"docInfo":{"0":{"body":24,"breadcrumbs":6,"title":5},"1":{"body":48,"breadcrumbs":2,"title":1},"10":{"body":8,"breadcrumbs":2,"title":1},"100":{"body":10,"breadcrumbs":2,"title":1},"1000":{"body":22,"breadcrumbs":5,"title":3},"1001":{"body":42,"breadcrumbs":5,"title":3},"1002":{"body":7,"breadcrumbs":6,"title":4},"1003":{"body":33,"breadcrumbs":6,"title":4},"1004":{"body":9,"breadcrumbs":5,"title":3},"1005":{"body":0,"breadcrumbs":4,"title":2},"1006":{"body":22,"breadcrumbs":4,"title":2},"1007":{"body":24,"breadcrumbs":4,"title":2},"1008":{"body":14,"breadcrumbs":4,"title":2},"1009":{"body":0,"breadcrumbs":4,"title":2},"101":{"body":12,"breadcrumbs":4,"title":3},"1010":{"body":15,"breadcrumbs":4,"title":2},"1011":{"body":19,"breadcrumbs":5,"title":3},"1012":{"body":21,"breadcrumbs":5,"title":3},"1013":{"body":15,"breadcrumbs":3,"title":1},"1014":{"body":18,"breadcrumbs":4,"title":2},"1015":{"body":54,"breadcrumbs":4,"title":2},"1016":{"body":4,"breadcrumbs":5,"title":3},"1017":{"body":13,"breadcrumbs":3,"title":1},"1018":{"body":24,"breadcrumbs":3,"title":1},"1019":{"body":3,"breadcrumbs":3,"title":1},"102":{"body":0,"breadcrumbs":3,"title":2},"1020":{"body":11,"breadcrumbs":4,"title":2},"1021":{"body":21,"breadcrumbs":3,"title":1},"1022":{"body":7,"breadcrumbs":4,"title":2},"1023":{"body":14,"breadcrumbs":3,"title":1},"1024":{"body":24,"breadcrumbs":3,"title":1},"1025":{"body":3,"breadcrumbs":3,"title":1},"1026":{"body":10,"breadcrumbs":4,"title":2},"1027":{"body":12,"breadcrumbs":3,"title":1},"1028":{"body":7,"breadcrumbs":5,"title":3},"1029":{"body":18,"breadcrumbs":3,"title":1},"103":{"body":5,"breadcrumbs":3,"title":2},"1030":{"body":27,"breadcrumbs":3,"title":1},"1031":{"body":3,"breadcrumbs":3,"title":1},"1032":{"body":14,"breadcrumbs":4,"title":2},"1033":{"body":13,"breadcrumbs":3,"title":1},"1034":{"body":8,"breadcrumbs":4,"title":2},"1035":{"body":18,"breadcrumbs":3,"title":1},"1036":{"body":20,"breadcrumbs":3,"title":1},"1037":{"body":2,"breadcrumbs":3,"title":1},"1038":{"body":12,"breadcrumbs":4,"title":2},"1039":{"body":8,"breadcrumbs":3,"title":1},"104":{"body":10,"breadcrumbs":2,"title":1},"1040":{"body":0,"breadcrumbs":5,"title":3},"1041":{"body":26,"breadcrumbs":4,"title":2},"1042":{"body":41,"breadcrumbs":4,"title":2},"1043":{"body":20,"breadcrumbs":4,"title":2},"1044":{"body":30,"breadcrumbs":4,"title":2},"1045":{"body":46,"breadcrumbs":4,"title":2},"1046":{"body":20,"breadcrumbs":3,"title":1},"1047":{"body":56,"breadcrumbs":4,"title":2},"1048":{"body":32,"breadcrumbs":4,"title":2},"1049":{"body":0,"breadcrumbs":4,"title":2},"105":{"body":2,"breadcrumbs":3,"title":2},"1050":{"body":15,"breadcrumbs":4,"title":2},"1051":{"body":13,"breadcrumbs":4,"title":2},"1052":{"body":19,"breadcrumbs":4,"title":2},"1053":{"body":14,"breadcrumbs":3,"title":1},"1054":{"body":17,"breadcrumbs":4,"title":2},"1055":{"body":31,"breadcrumbs":4,"title":2},"1056":{"body":8,"breadcrumbs":3,"title":1},"1057":{"body":9,"breadcrumbs":5,"title":3},"1058":{"body":4,"breadcrumbs":3,"title":1},"1059":{"body":14,"breadcrumbs":4,"title":2},"106":{"body":6,"breadcrumbs":3,"title":2},"1060":{"body":10,"breadcrumbs":4,"title":2},"1061":{"body":10,"breadcrumbs":3,"title":1},"1062":{"body":10,"breadcrumbs":3,"title":1},"1063":{"body":21,"breadcrumbs":3,"title":1},"1064":{"body":6,"breadcrumbs":6,"title":4},"1065":{"body":6,"breadcrumbs":3,"title":1},"1066":{"body":12,"breadcrumbs":4,"title":2},"1067":{"body":16,"breadcrumbs":4,"title":2},"1068":{"body":10,"breadcrumbs":4,"title":2},"1069":{"body":10,"breadcrumbs":3,"title":1},"107":{"body":49,"breadcrumbs":3,"title":2},"1070":{"body":10,"breadcrumbs":3,"title":1},"1071":{"body":22,"breadcrumbs":4,"title":2},"1072":{"body":27,"breadcrumbs":3,"title":1},"1073":{"body":4,"breadcrumbs":6,"title":4},"1074":{"body":2,"breadcrumbs":3,"title":1},"1075":{"body":12,"breadcrumbs":3,"title":1},"1076":{"body":11,"breadcrumbs":4,"title":2},"1077":{"body":28,"breadcrumbs":6,"title":4},"1078":{"body":19,"breadcrumbs":5,"title":3},"1079":{"body":24,"breadcrumbs":3,"title":1},"108":{"body":41,"breadcrumbs":3,"title":2},"1080":{"body":37,"breadcrumbs":3,"title":1},"1081":{"body":29,"breadcrumbs":4,"title":2},"1082":{"body":24,"breadcrumbs":4,"title":2},"1083":{"body":43,"breadcrumbs":4,"title":2},"1084":{"body":53,"breadcrumbs":5,"title":3},"1085":{"body":17,"breadcrumbs":4,"title":2},"1086":{"body":22,"breadcrumbs":4,"title":2},"1087":{"body":17,"breadcrumbs":3,"title":1},"1088":{"body":31,"breadcrumbs":4,"title":2},"1089":{"body":29,"breadcrumbs":5,"title":3},"109":{"body":29,"breadcrumbs":3,"title":2},"1090":{"body":0,"breadcrumbs":4,"title":2},"1091":{"body":17,"breadcrumbs":4,"title":2},"1092":{"body":19,"breadcrumbs":4,"title":2},"1093":{"body":0,"breadcrumbs":4,"title":2},"1094":{"body":40,"breadcrumbs":4,"title":2},"1095":{"body":16,"breadcrumbs":3,"title":1},"1096":{"body":0,"breadcrumbs":4,"title":2},"1097":{"body":12,"breadcrumbs":4,"title":2},"1098":{"body":16,"breadcrumbs":4,"title":2},"1099":{"body":14,"breadcrumbs":5,"title":3},"11":{"body":39,"breadcrumbs":3,"title":2},"110":{"body":18,"breadcrumbs":3,"title":2},"1100":{"body":0,"breadcrumbs":4,"title":2},"1101":{"body":10,"breadcrumbs":3,"title":1},"1102":{"body":14,"breadcrumbs":3,"title":1},"1103":{"body":15,"breadcrumbs":3,"title":1},"1104":{"body":0,"breadcrumbs":4,"title":2},"1105":{"body":8,"breadcrumbs":3,"title":1},"1106":{"body":25,"breadcrumbs":3,"title":1},"1107":{"body":12,"breadcrumbs":3,"title":1},"1108":{"body":18,"breadcrumbs":4,"title":2},"1109":{"body":24,"breadcrumbs":3,"title":1},"111":{"body":20,"breadcrumbs":2,"title":1},"1110":{"body":0,"breadcrumbs":5,"title":3},"1111":{"body":48,"breadcrumbs":4,"title":2},"1112":{"body":161,"breadcrumbs":5,"title":3},"1113":{"body":0,"breadcrumbs":5,"title":3},"1114":{"body":7,"breadcrumbs":5,"title":3},"1115":{"body":16,"breadcrumbs":4,"title":2},"1116":{"body":19,"breadcrumbs":5,"title":3},"1117":{"body":33,"breadcrumbs":5,"title":3},"1118":{"body":0,"breadcrumbs":5,"title":3},"1119":{"body":31,"breadcrumbs":4,"title":2},"112":{"body":19,"breadcrumbs":3,"title":2},"1120":{"body":28,"breadcrumbs":4,"title":2},"1121":{"body":13,"breadcrumbs":4,"title":2},"1122":{"body":13,"breadcrumbs":4,"title":2},"1123":{"body":0,"breadcrumbs":4,"title":2},"1124":{"body":56,"breadcrumbs":5,"title":3},"1125":{"body":0,"breadcrumbs":3,"title":1},"1126":{"body":31,"breadcrumbs":4,"title":2},"1127":{"body":42,"breadcrumbs":4,"title":2},"1128":{"body":0,"breadcrumbs":4,"title":2},"1129":{"body":58,"breadcrumbs":4,"title":2},"113":{"body":45,"breadcrumbs":3,"title":2},"1130":{"body":59,"breadcrumbs":4,"title":2},"1131":{"body":54,"breadcrumbs":5,"title":3},"1132":{"body":0,"breadcrumbs":4,"title":2},"1133":{"body":2,"breadcrumbs":4,"title":2},"1134":{"body":6,"breadcrumbs":4,"title":2},"1135":{"body":15,"breadcrumbs":4,"title":2},"1136":{"body":12,"breadcrumbs":3,"title":1},"1137":{"body":14,"breadcrumbs":2,"title":1},"1138":{"body":0,"breadcrumbs":3,"title":2},"1139":{"body":23,"breadcrumbs":4,"title":3},"114":{"body":0,"breadcrumbs":2,"title":1},"1140":{"body":169,"breadcrumbs":3,"title":2},"1141":{"body":0,"breadcrumbs":3,"title":2},"1142":{"body":63,"breadcrumbs":4,"title":3},"1143":{"body":64,"breadcrumbs":3,"title":2},"1144":{"body":33,"breadcrumbs":5,"title":4},"1145":{"body":187,"breadcrumbs":7,"title":6},"1146":{"body":28,"breadcrumbs":4,"title":3},"1147":{"body":0,"breadcrumbs":3,"title":2},"1148":{"body":125,"breadcrumbs":4,"title":3},"1149":{"body":63,"breadcrumbs":4,"title":3},"115":{"body":34,"breadcrumbs":3,"title":2},"1150":{"body":0,"breadcrumbs":2,"title":1},"1151":{"body":93,"breadcrumbs":4,"title":3},"1152":{"body":27,"breadcrumbs":4,"title":3},"1153":{"body":0,"breadcrumbs":3,"title":2},"1154":{"body":96,"breadcrumbs":3,"title":2},"1155":{"body":13,"breadcrumbs":3,"title":2},"1156":{"body":10,"breadcrumbs":3,"title":2},"1157":{"body":0,"breadcrumbs":3,"title":2},"1158":{"body":55,"breadcrumbs":3,"title":2},"1159":{"body":7,"breadcrumbs":4,"title":3},"116":{"body":30,"breadcrumbs":3,"title":2},"1160":{"body":22,"breadcrumbs":5,"title":4},"1161":{"body":140,"breadcrumbs":3,"title":2},"1162":{"body":15,"breadcrumbs":4,"title":3},"1163":{"body":39,"breadcrumbs":4,"title":3},"1164":{"body":12,"breadcrumbs":2,"title":1},"1165":{"body":22,"breadcrumbs":5,"title":4},"1166":{"body":31,"breadcrumbs":5,"title":4},"1167":{"body":0,"breadcrumbs":3,"title":2},"1168":{"body":17,"breadcrumbs":4,"title":3},"1169":{"body":33,"breadcrumbs":5,"title":4},"117":{"body":16,"breadcrumbs":3,"title":2},"1170":{"body":21,"breadcrumbs":5,"title":4},"1171":{"body":20,"breadcrumbs":5,"title":4},"1172":{"body":15,"breadcrumbs":2,"title":1},"1173":{"body":18,"breadcrumbs":8,"title":4},"1174":{"body":38,"breadcrumbs":5,"title":1},"1175":{"body":51,"breadcrumbs":6,"title":2},"1176":{"body":27,"breadcrumbs":5,"title":1},"1177":{"body":30,"breadcrumbs":5,"title":1},"1178":{"body":0,"breadcrumbs":6,"title":2},"1179":{"body":60,"breadcrumbs":5,"title":1},"118":{"body":11,"breadcrumbs":4,"title":2},"1180":{"body":48,"breadcrumbs":5,"title":1},"1181":{"body":8,"breadcrumbs":6,"title":2},"1182":{"body":36,"breadcrumbs":6,"title":2},"1183":{"body":33,"breadcrumbs":6,"title":2},"1184":{"body":0,"breadcrumbs":6,"title":2},"1185":{"body":33,"breadcrumbs":7,"title":3},"1186":{"body":47,"breadcrumbs":7,"title":3},"1187":{"body":0,"breadcrumbs":5,"title":1},"1188":{"body":15,"breadcrumbs":6,"title":2},"1189":{"body":22,"breadcrumbs":6,"title":2},"119":{"body":16,"breadcrumbs":4,"title":2},"1190":{"body":0,"breadcrumbs":5,"title":1},"1191":{"body":29,"breadcrumbs":5,"title":1},"1192":{"body":48,"breadcrumbs":8,"title":4},"1193":{"body":0,"breadcrumbs":6,"title":2},"1194":{"body":122,"breadcrumbs":6,"title":2},"1195":{"body":13,"breadcrumbs":6,"title":2},"1196":{"body":14,"breadcrumbs":6,"title":2},"1197":{"body":30,"breadcrumbs":6,"title":2},"1198":{"body":0,"breadcrumbs":5,"title":1},"1199":{"body":7,"breadcrumbs":7,"title":3},"12":{"body":0,"breadcrumbs":2,"title":1},"120":{"body":31,"breadcrumbs":4,"title":2},"1200":{"body":35,"breadcrumbs":6,"title":2},"1201":{"body":0,"breadcrumbs":6,"title":2},"1202":{"body":11,"breadcrumbs":9,"title":5},"1203":{"body":5,"breadcrumbs":9,"title":5},"1204":{"body":7,"breadcrumbs":8,"title":4},"1205":{"body":7,"breadcrumbs":8,"title":4},"1206":{"body":48,"breadcrumbs":8,"title":4},"1207":{"body":8,"breadcrumbs":8,"title":4},"1208":{"body":32,"breadcrumbs":7,"title":3},"1209":{"body":75,"breadcrumbs":7,"title":3},"121":{"body":0,"breadcrumbs":3,"title":1},"1210":{"body":25,"breadcrumbs":5,"title":1},"1211":{"body":10,"breadcrumbs":4,"title":2},"1212":{"body":33,"breadcrumbs":4,"title":2},"1213":{"body":30,"breadcrumbs":4,"title":2},"1214":{"body":47,"breadcrumbs":4,"title":2},"1215":{"body":19,"breadcrumbs":6,"title":4},"1216":{"body":20,"breadcrumbs":4,"title":2},"1217":{"body":21,"breadcrumbs":4,"title":2},"1218":{"body":21,"breadcrumbs":4,"title":2},"1219":{"body":35,"breadcrumbs":4,"title":2},"122":{"body":18,"breadcrumbs":4,"title":2},"1220":{"body":28,"breadcrumbs":3,"title":1},"1221":{"body":16,"breadcrumbs":3,"title":2},"1222":{"body":42,"breadcrumbs":2,"title":1},"1223":{"body":8,"breadcrumbs":2,"title":1},"1224":{"body":0,"breadcrumbs":2,"title":1},"1225":{"body":20,"breadcrumbs":4,"title":3},"1226":{"body":31,"breadcrumbs":2,"title":1},"1227":{"body":49,"breadcrumbs":3,"title":2},"1228":{"body":29,"breadcrumbs":3,"title":2},"1229":{"body":0,"breadcrumbs":3,"title":2},"123":{"body":0,"breadcrumbs":4,"title":2},"1230":{"body":11,"breadcrumbs":2,"title":1},"1231":{"body":9,"breadcrumbs":3,"title":2},"1232":{"body":8,"breadcrumbs":3,"title":2},"1233":{"body":11,"breadcrumbs":3,"title":2},"1234":{"body":9,"breadcrumbs":4,"title":3},"1235":{"body":13,"breadcrumbs":4,"title":3},"1236":{"body":6,"breadcrumbs":3,"title":2},"1237":{"body":13,"breadcrumbs":2,"title":1},"1238":{"body":10,"breadcrumbs":2,"title":1},"1239":{"body":11,"breadcrumbs":2,"title":1},"124":{"body":11,"breadcrumbs":4,"title":2},"1240":{"body":16,"breadcrumbs":2,"title":1},"1241":{"body":10,"breadcrumbs":2,"title":1},"1242":{"body":23,"breadcrumbs":2,"title":1},"1243":{"body":5,"breadcrumbs":4,"title":3},"1244":{"body":6,"breadcrumbs":4,"title":3},"1245":{"body":20,"breadcrumbs":4,"title":3},"1246":{"body":6,"breadcrumbs":4,"title":3},"1247":{"body":34,"breadcrumbs":2,"title":1},"1248":{"body":55,"breadcrumbs":3,"title":2},"1249":{"body":8,"breadcrumbs":4,"title":3},"125":{"body":13,"breadcrumbs":4,"title":2},"1250":{"body":20,"breadcrumbs":4,"title":3},"1251":{"body":23,"breadcrumbs":3,"title":2},"1252":{"body":0,"breadcrumbs":2,"title":1},"1253":{"body":18,"breadcrumbs":3,"title":2},"1254":{"body":15,"breadcrumbs":4,"title":3},"1255":{"body":14,"breadcrumbs":3,"title":2},"1256":{"body":20,"breadcrumbs":3,"title":2},"1257":{"body":0,"breadcrumbs":2,"title":1},"1258":{"body":8,"breadcrumbs":3,"title":2},"1259":{"body":7,"breadcrumbs":5,"title":4},"126":{"body":0,"breadcrumbs":4,"title":2},"1260":{"body":13,"breadcrumbs":4,"title":3},"1261":{"body":15,"breadcrumbs":3,"title":2},"1262":{"body":13,"breadcrumbs":4,"title":2},"1263":{"body":31,"breadcrumbs":3,"title":1},"1264":{"body":15,"breadcrumbs":4,"title":2},"1265":{"body":14,"breadcrumbs":4,"title":2},"1266":{"body":0,"breadcrumbs":4,"title":2},"1267":{"body":55,"breadcrumbs":3,"title":1},"1268":{"body":56,"breadcrumbs":3,"title":1},"1269":{"body":0,"breadcrumbs":4,"title":2},"127":{"body":51,"breadcrumbs":4,"title":2},"1270":{"body":71,"breadcrumbs":3,"title":1},"1271":{"body":62,"breadcrumbs":3,"title":1},"1272":{"body":0,"breadcrumbs":4,"title":2},"1273":{"body":55,"breadcrumbs":4,"title":2},"1274":{"body":43,"breadcrumbs":4,"title":2},"1275":{"body":0,"breadcrumbs":4,"title":2},"1276":{"body":49,"breadcrumbs":5,"title":3},"1277":{"body":29,"breadcrumbs":5,"title":3},"1278":{"body":34,"breadcrumbs":4,"title":2},"1279":{"body":33,"breadcrumbs":5,"title":3},"128":{"body":69,"breadcrumbs":4,"title":2},"1280":{"body":0,"breadcrumbs":4,"title":2},"1281":{"body":35,"breadcrumbs":5,"title":3},"1282":{"body":16,"breadcrumbs":5,"title":3},"1283":{"body":0,"breadcrumbs":5,"title":3},"1284":{"body":9,"breadcrumbs":6,"title":4},"1285":{"body":16,"breadcrumbs":7,"title":5},"1286":{"body":30,"breadcrumbs":6,"title":4},"1287":{"body":19,"breadcrumbs":8,"title":6},"1288":{"body":34,"breadcrumbs":4,"title":2},"1289":{"body":0,"breadcrumbs":3,"title":1},"129":{"body":76,"breadcrumbs":4,"title":2},"1290":{"body":62,"breadcrumbs":4,"title":2},"1291":{"body":0,"breadcrumbs":3,"title":1},"1292":{"body":39,"breadcrumbs":4,"title":2},"1293":{"body":7,"breadcrumbs":4,"title":2},"1294":{"body":22,"breadcrumbs":3,"title":1},"1295":{"body":28,"breadcrumbs":2,"title":1},"1296":{"body":38,"breadcrumbs":4,"title":3},"1297":{"body":67,"breadcrumbs":4,"title":3},"1298":{"body":34,"breadcrumbs":5,"title":4},"1299":{"body":0,"breadcrumbs":3,"title":2},"13":{"body":16,"breadcrumbs":4,"title":3},"130":{"body":27,"breadcrumbs":4,"title":2},"1300":{"body":67,"breadcrumbs":3,"title":2},"1301":{"body":173,"breadcrumbs":3,"title":2},"1302":{"body":175,"breadcrumbs":3,"title":2},"1303":{"body":0,"breadcrumbs":3,"title":2},"1304":{"body":54,"breadcrumbs":3,"title":2},"1305":{"body":112,"breadcrumbs":2,"title":1},"1306":{"body":140,"breadcrumbs":3,"title":2},"1307":{"body":82,"breadcrumbs":3,"title":2},"1308":{"body":0,"breadcrumbs":3,"title":2},"1309":{"body":33,"breadcrumbs":4,"title":3},"131":{"body":0,"breadcrumbs":4,"title":2},"1310":{"body":80,"breadcrumbs":4,"title":3},"1311":{"body":0,"breadcrumbs":3,"title":2},"1312":{"body":40,"breadcrumbs":5,"title":4},"1313":{"body":39,"breadcrumbs":4,"title":3},"1314":{"body":22,"breadcrumbs":5,"title":4},"1315":{"body":37,"breadcrumbs":4,"title":3},"1316":{"body":13,"breadcrumbs":2,"title":1},"1317":{"body":9,"breadcrumbs":4,"title":2},"1318":{"body":31,"breadcrumbs":4,"title":2},"1319":{"body":0,"breadcrumbs":4,"title":2},"132":{"body":62,"breadcrumbs":4,"title":2},"1320":{"body":30,"breadcrumbs":5,"title":3},"1321":{"body":29,"breadcrumbs":4,"title":2},"1322":{"body":0,"breadcrumbs":4,"title":2},"1323":{"body":118,"breadcrumbs":4,"title":2},"1324":{"body":73,"breadcrumbs":4,"title":2},"1325":{"body":69,"breadcrumbs":4,"title":2},"1326":{"body":21,"breadcrumbs":5,"title":3},"1327":{"body":0,"breadcrumbs":4,"title":2},"1328":{"body":72,"breadcrumbs":4,"title":2},"1329":{"body":65,"breadcrumbs":4,"title":2},"133":{"body":0,"breadcrumbs":4,"title":2},"1330":{"body":159,"breadcrumbs":5,"title":3},"1331":{"body":0,"breadcrumbs":4,"title":2},"1332":{"body":54,"breadcrumbs":5,"title":3},"1333":{"body":93,"breadcrumbs":5,"title":3},"1334":{"body":47,"breadcrumbs":4,"title":2},"1335":{"body":0,"breadcrumbs":4,"title":2},"1336":{"body":45,"breadcrumbs":4,"title":2},"1337":{"body":0,"breadcrumbs":4,"title":2},"1338":{"body":43,"breadcrumbs":5,"title":3},"1339":{"body":59,"breadcrumbs":4,"title":2},"134":{"body":118,"breadcrumbs":4,"title":2},"1340":{"body":52,"breadcrumbs":5,"title":3},"1341":{"body":0,"breadcrumbs":4,"title":2},"1342":{"body":36,"breadcrumbs":5,"title":3},"1343":{"body":32,"breadcrumbs":4,"title":2},"1344":{"body":0,"breadcrumbs":4,"title":2},"1345":{"body":36,"breadcrumbs":5,"title":3},"1346":{"body":56,"breadcrumbs":4,"title":2},"1347":{"body":16,"breadcrumbs":3,"title":1},"1348":{"body":8,"breadcrumbs":4,"title":2},"1349":{"body":21,"breadcrumbs":3,"title":1},"135":{"body":65,"breadcrumbs":4,"title":2},"1350":{"body":0,"breadcrumbs":5,"title":3},"1351":{"body":58,"breadcrumbs":5,"title":3},"1352":{"body":49,"breadcrumbs":4,"title":2},"1353":{"body":68,"breadcrumbs":4,"title":2},"1354":{"body":0,"breadcrumbs":5,"title":3},"1355":{"body":173,"breadcrumbs":5,"title":3},"1356":{"body":85,"breadcrumbs":4,"title":2},"1357":{"body":0,"breadcrumbs":4,"title":2},"1358":{"body":149,"breadcrumbs":4,"title":2},"1359":{"body":98,"breadcrumbs":4,"title":2},"136":{"body":62,"breadcrumbs":4,"title":2},"1360":{"body":0,"breadcrumbs":3,"title":1},"1361":{"body":91,"breadcrumbs":6,"title":4},"1362":{"body":56,"breadcrumbs":4,"title":2},"1363":{"body":45,"breadcrumbs":5,"title":3},"1364":{"body":0,"breadcrumbs":4,"title":2},"1365":{"body":152,"breadcrumbs":6,"title":4},"1366":{"body":0,"breadcrumbs":4,"title":2},"1367":{"body":130,"breadcrumbs":6,"title":4},"1368":{"body":0,"breadcrumbs":3,"title":1},"1369":{"body":137,"breadcrumbs":5,"title":3},"137":{"body":17,"breadcrumbs":5,"title":3},"1370":{"body":18,"breadcrumbs":3,"title":1},"1371":{"body":9,"breadcrumbs":4,"title":2},"1372":{"body":15,"breadcrumbs":3,"title":1},"1373":{"body":0,"breadcrumbs":5,"title":3},"1374":{"body":56,"breadcrumbs":5,"title":3},"1375":{"body":48,"breadcrumbs":4,"title":2},"1376":{"body":63,"breadcrumbs":4,"title":2},"1377":{"body":0,"breadcrumbs":5,"title":3},"1378":{"body":208,"breadcrumbs":5,"title":3},"1379":{"body":69,"breadcrumbs":4,"title":2},"138":{"body":59,"breadcrumbs":4,"title":2},"1380":{"body":0,"breadcrumbs":4,"title":2},"1381":{"body":108,"breadcrumbs":5,"title":3},"1382":{"body":58,"breadcrumbs":5,"title":3},"1383":{"body":0,"breadcrumbs":3,"title":1},"1384":{"body":88,"breadcrumbs":6,"title":4},"1385":{"body":53,"breadcrumbs":4,"title":2},"1386":{"body":42,"breadcrumbs":5,"title":3},"1387":{"body":0,"breadcrumbs":4,"title":2},"1388":{"body":143,"breadcrumbs":6,"title":4},"1389":{"body":0,"breadcrumbs":4,"title":2},"139":{"body":29,"breadcrumbs":4,"title":2},"1390":{"body":163,"breadcrumbs":5,"title":3},"1391":{"body":0,"breadcrumbs":3,"title":1},"1392":{"body":142,"breadcrumbs":4,"title":2},"1393":{"body":0,"breadcrumbs":4,"title":2},"1394":{"body":145,"breadcrumbs":6,"title":4},"1395":{"body":15,"breadcrumbs":3,"title":1},"1396":{"body":11,"breadcrumbs":4,"title":2},"1397":{"body":7,"breadcrumbs":7,"title":5},"1398":{"body":8,"breadcrumbs":3,"title":1},"1399":{"body":262,"breadcrumbs":3,"title":1},"14":{"body":13,"breadcrumbs":3,"title":2},"140":{"body":0,"breadcrumbs":4,"title":2},"1400":{"body":8,"breadcrumbs":7,"title":5},"1401":{"body":295,"breadcrumbs":4,"title":2},"1402":{"body":198,"breadcrumbs":4,"title":2},"1403":{"body":329,"breadcrumbs":6,"title":4},"1404":{"body":352,"breadcrumbs":6,"title":4},"1405":{"body":178,"breadcrumbs":5,"title":3},"1406":{"body":23,"breadcrumbs":3,"title":1},"1407":{"body":9,"breadcrumbs":6,"title":3},"1408":{"body":0,"breadcrumbs":5,"title":2},"1409":{"body":8,"breadcrumbs":5,"title":2},"141":{"body":23,"breadcrumbs":5,"title":3},"1410":{"body":17,"breadcrumbs":5,"title":2},"1411":{"body":8,"breadcrumbs":5,"title":2},"1412":{"body":0,"breadcrumbs":5,"title":2},"1413":{"body":15,"breadcrumbs":5,"title":2},"1414":{"body":0,"breadcrumbs":5,"title":2},"1415":{"body":20,"breadcrumbs":5,"title":2},"1416":{"body":0,"breadcrumbs":5,"title":2},"1417":{"body":20,"breadcrumbs":5,"title":2},"1418":{"body":8,"breadcrumbs":5,"title":2},"1419":{"body":157,"breadcrumbs":6,"title":3},"142":{"body":46,"breadcrumbs":5,"title":3},"1420":{"body":112,"breadcrumbs":6,"title":3},"1421":{"body":105,"breadcrumbs":6,"title":3},"1422":{"body":86,"breadcrumbs":6,"title":3},"1423":{"body":61,"breadcrumbs":5,"title":2},"1424":{"body":0,"breadcrumbs":5,"title":2},"1425":{"body":49,"breadcrumbs":6,"title":3},"1426":{"body":42,"breadcrumbs":5,"title":2},"1427":{"body":21,"breadcrumbs":6,"title":3},"1428":{"body":24,"breadcrumbs":5,"title":2},"1429":{"body":22,"breadcrumbs":5,"title":2},"143":{"body":18,"breadcrumbs":5,"title":3},"1430":{"body":18,"breadcrumbs":5,"title":2},"1431":{"body":0,"breadcrumbs":5,"title":2},"1432":{"body":27,"breadcrumbs":5,"title":2},"1433":{"body":14,"breadcrumbs":5,"title":2},"1434":{"body":0,"breadcrumbs":4,"title":2},"1435":{"body":0,"breadcrumbs":3,"title":1},"1436":{"body":52,"breadcrumbs":5,"title":3},"1437":{"body":77,"breadcrumbs":5,"title":3},"1438":{"body":15,"breadcrumbs":4,"title":2},"1439":{"body":91,"breadcrumbs":4,"title":2},"144":{"body":19,"breadcrumbs":4,"title":2},"1440":{"body":91,"breadcrumbs":4,"title":2},"1441":{"body":117,"breadcrumbs":4,"title":2},"1442":{"body":35,"breadcrumbs":4,"title":2},"1443":{"body":0,"breadcrumbs":4,"title":2},"1444":{"body":15,"breadcrumbs":4,"title":2},"1445":{"body":41,"breadcrumbs":4,"title":2},"1446":{"body":21,"breadcrumbs":5,"title":3},"1447":{"body":8,"breadcrumbs":5,"title":3},"1448":{"body":13,"breadcrumbs":5,"title":3},"1449":{"body":65,"breadcrumbs":5,"title":3},"145":{"body":15,"breadcrumbs":4,"title":2},"1450":{"body":15,"breadcrumbs":4,"title":2},"1451":{"body":53,"breadcrumbs":5,"title":3},"1452":{"body":103,"breadcrumbs":5,"title":3},"1453":{"body":30,"breadcrumbs":4,"title":2},"1454":{"body":39,"breadcrumbs":4,"title":2},"1455":{"body":33,"breadcrumbs":4,"title":2},"1456":{"body":36,"breadcrumbs":6,"title":4},"1457":{"body":8,"breadcrumbs":4,"title":2},"1458":{"body":40,"breadcrumbs":5,"title":3},"1459":{"body":0,"breadcrumbs":4,"title":2},"146":{"body":15,"breadcrumbs":4,"title":2},"1460":{"body":25,"breadcrumbs":4,"title":2},"1461":{"body":28,"breadcrumbs":4,"title":2},"1462":{"body":22,"breadcrumbs":5,"title":3},"1463":{"body":0,"breadcrumbs":4,"title":2},"1464":{"body":23,"breadcrumbs":5,"title":3},"1465":{"body":27,"breadcrumbs":5,"title":3},"1466":{"body":21,"breadcrumbs":5,"title":3},"1467":{"body":27,"breadcrumbs":4,"title":2},"1468":{"body":0,"breadcrumbs":4,"title":2},"1469":{"body":20,"breadcrumbs":4,"title":2},"147":{"body":20,"breadcrumbs":3,"title":1},"1470":{"body":20,"breadcrumbs":4,"title":2},"1471":{"body":20,"breadcrumbs":5,"title":3},"1472":{"body":22,"breadcrumbs":5,"title":3},"1473":{"body":0,"breadcrumbs":5,"title":3},"1474":{"body":35,"breadcrumbs":5,"title":3},"1475":{"body":37,"breadcrumbs":5,"title":3},"1476":{"body":30,"breadcrumbs":4,"title":2},"1477":{"body":22,"breadcrumbs":5,"title":3},"1478":{"body":0,"breadcrumbs":4,"title":2},"1479":{"body":24,"breadcrumbs":4,"title":2},"148":{"body":0,"breadcrumbs":5,"title":3},"1480":{"body":27,"breadcrumbs":5,"title":3},"1481":{"body":23,"breadcrumbs":4,"title":2},"1482":{"body":21,"breadcrumbs":4,"title":2},"1483":{"body":0,"breadcrumbs":4,"title":2},"1484":{"body":24,"breadcrumbs":4,"title":2},"1485":{"body":18,"breadcrumbs":4,"title":2},"1486":{"body":16,"breadcrumbs":3,"title":1},"1487":{"body":17,"breadcrumbs":4,"title":2},"1488":{"body":0,"breadcrumbs":4,"title":2},"1489":{"body":23,"breadcrumbs":5,"title":3},"149":{"body":16,"breadcrumbs":5,"title":3},"1490":{"body":23,"breadcrumbs":5,"title":3},"1491":{"body":22,"breadcrumbs":4,"title":2},"1492":{"body":0,"breadcrumbs":4,"title":2},"1493":{"body":24,"breadcrumbs":5,"title":3},"1494":{"body":19,"breadcrumbs":5,"title":3},"1495":{"body":18,"breadcrumbs":5,"title":3},"1496":{"body":0,"breadcrumbs":4,"title":2},"1497":{"body":13,"breadcrumbs":5,"title":3},"1498":{"body":6,"breadcrumbs":4,"title":2},"1499":{"body":8,"breadcrumbs":4,"title":2},"15":{"body":13,"breadcrumbs":4,"title":3},"150":{"body":17,"breadcrumbs":4,"title":2},"1500":{"body":13,"breadcrumbs":4,"title":2},"1501":{"body":13,"breadcrumbs":3,"title":1},"1502":{"body":9,"breadcrumbs":4,"title":2},"1503":{"body":22,"breadcrumbs":4,"title":2},"1504":{"body":0,"breadcrumbs":5,"title":3},"1505":{"body":32,"breadcrumbs":4,"title":2},"1506":{"body":9,"breadcrumbs":5,"title":3},"1507":{"body":32,"breadcrumbs":5,"title":3},"1508":{"body":0,"breadcrumbs":5,"title":3},"1509":{"body":23,"breadcrumbs":4,"title":2},"151":{"body":50,"breadcrumbs":5,"title":3},"1510":{"body":34,"breadcrumbs":4,"title":2},"1511":{"body":0,"breadcrumbs":5,"title":3},"1512":{"body":51,"breadcrumbs":5,"title":3},"1513":{"body":22,"breadcrumbs":5,"title":3},"1514":{"body":0,"breadcrumbs":5,"title":3},"1515":{"body":78,"breadcrumbs":5,"title":3},"1516":{"body":0,"breadcrumbs":5,"title":3},"1517":{"body":26,"breadcrumbs":4,"title":2},"1518":{"body":21,"breadcrumbs":6,"title":4},"1519":{"body":0,"breadcrumbs":5,"title":3},"152":{"body":28,"breadcrumbs":4,"title":2},"1520":{"body":38,"breadcrumbs":5,"title":3},"1521":{"body":0,"breadcrumbs":4,"title":2},"1522":{"body":98,"breadcrumbs":5,"title":3},"1523":{"body":0,"breadcrumbs":5,"title":3},"1524":{"body":51,"breadcrumbs":7,"title":5},"1525":{"body":0,"breadcrumbs":5,"title":3},"1526":{"body":49,"breadcrumbs":7,"title":5},"1527":{"body":0,"breadcrumbs":4,"title":2},"1528":{"body":46,"breadcrumbs":4,"title":2},"1529":{"body":36,"breadcrumbs":4,"title":2},"153":{"body":18,"breadcrumbs":5,"title":3},"1530":{"body":35,"breadcrumbs":4,"title":2},"1531":{"body":12,"breadcrumbs":3,"title":1},"154":{"body":24,"breadcrumbs":5,"title":3},"155":{"body":25,"breadcrumbs":4,"title":2},"156":{"body":29,"breadcrumbs":4,"title":2},"157":{"body":20,"breadcrumbs":4,"title":2},"158":{"body":0,"breadcrumbs":4,"title":2},"159":{"body":32,"breadcrumbs":4,"title":2},"16":{"body":12,"breadcrumbs":3,"title":2},"160":{"body":15,"breadcrumbs":5,"title":3},"161":{"body":16,"breadcrumbs":4,"title":2},"162":{"body":0,"breadcrumbs":4,"title":2},"163":{"body":3,"breadcrumbs":4,"title":2},"164":{"body":4,"breadcrumbs":6,"title":4},"165":{"body":17,"breadcrumbs":4,"title":2},"166":{"body":20,"breadcrumbs":4,"title":2},"167":{"body":95,"breadcrumbs":5,"title":3},"168":{"body":0,"breadcrumbs":4,"title":2},"169":{"body":26,"breadcrumbs":3,"title":1},"17":{"body":13,"breadcrumbs":3,"title":2},"170":{"body":22,"breadcrumbs":4,"title":2},"171":{"body":18,"breadcrumbs":3,"title":1},"172":{"body":14,"breadcrumbs":4,"title":2},"173":{"body":16,"breadcrumbs":4,"title":2},"174":{"body":22,"breadcrumbs":4,"title":2},"175":{"body":0,"breadcrumbs":4,"title":2},"176":{"body":32,"breadcrumbs":4,"title":2},"177":{"body":9,"breadcrumbs":3,"title":1},"178":{"body":12,"breadcrumbs":4,"title":2},"179":{"body":29,"breadcrumbs":4,"title":2},"18":{"body":21,"breadcrumbs":3,"title":2},"180":{"body":72,"breadcrumbs":4,"title":2},"181":{"body":46,"breadcrumbs":5,"title":3},"182":{"body":32,"breadcrumbs":4,"title":2},"183":{"body":0,"breadcrumbs":4,"title":2},"184":{"body":20,"breadcrumbs":4,"title":2},"185":{"body":33,"breadcrumbs":5,"title":3},"186":{"body":17,"breadcrumbs":4,"title":2},"187":{"body":0,"breadcrumbs":4,"title":2},"188":{"body":22,"breadcrumbs":4,"title":2},"189":{"body":7,"breadcrumbs":4,"title":2},"19":{"body":21,"breadcrumbs":3,"title":2},"190":{"body":5,"breadcrumbs":4,"title":2},"191":{"body":6,"breadcrumbs":4,"title":2},"192":{"body":34,"breadcrumbs":4,"title":2},"193":{"body":10,"breadcrumbs":4,"title":2},"194":{"body":17,"breadcrumbs":5,"title":3},"195":{"body":0,"breadcrumbs":4,"title":2},"196":{"body":19,"breadcrumbs":4,"title":2},"197":{"body":16,"breadcrumbs":4,"title":2},"198":{"body":17,"breadcrumbs":4,"title":2},"199":{"body":28,"breadcrumbs":4,"title":2},"2":{"body":51,"breadcrumbs":3,"title":2},"20":{"body":19,"breadcrumbs":2,"title":1},"200":{"body":0,"breadcrumbs":5,"title":3},"201":{"body":10,"breadcrumbs":6,"title":4},"202":{"body":12,"breadcrumbs":6,"title":4},"203":{"body":0,"breadcrumbs":4,"title":2},"204":{"body":23,"breadcrumbs":4,"title":2},"205":{"body":19,"breadcrumbs":3,"title":1},"206":{"body":18,"breadcrumbs":3,"title":1},"207":{"body":0,"breadcrumbs":4,"title":2},"208":{"body":23,"breadcrumbs":5,"title":3},"209":{"body":35,"breadcrumbs":5,"title":3},"21":{"body":60,"breadcrumbs":4,"title":3},"210":{"body":17,"breadcrumbs":5,"title":3},"211":{"body":13,"breadcrumbs":4,"title":2},"212":{"body":17,"breadcrumbs":6,"title":3},"213":{"body":18,"breadcrumbs":4,"title":1},"214":{"body":34,"breadcrumbs":5,"title":2},"215":{"body":0,"breadcrumbs":5,"title":2},"216":{"body":15,"breadcrumbs":5,"title":2},"217":{"body":19,"breadcrumbs":4,"title":1},"218":{"body":0,"breadcrumbs":5,"title":2},"219":{"body":7,"breadcrumbs":6,"title":3},"22":{"body":0,"breadcrumbs":4,"title":3},"220":{"body":10,"breadcrumbs":6,"title":3},"221":{"body":39,"breadcrumbs":5,"title":2},"222":{"body":0,"breadcrumbs":6,"title":3},"223":{"body":16,"breadcrumbs":5,"title":2},"224":{"body":63,"breadcrumbs":5,"title":2},"225":{"body":31,"breadcrumbs":5,"title":2},"226":{"body":64,"breadcrumbs":7,"title":4},"227":{"body":25,"breadcrumbs":5,"title":2},"228":{"body":27,"breadcrumbs":5,"title":2},"229":{"body":14,"breadcrumbs":5,"title":2},"23":{"body":27,"breadcrumbs":4,"title":3},"230":{"body":22,"breadcrumbs":7,"title":4},"231":{"body":33,"breadcrumbs":4,"title":1},"232":{"body":27,"breadcrumbs":5,"title":2},"233":{"body":0,"breadcrumbs":6,"title":3},"234":{"body":51,"breadcrumbs":6,"title":3},"235":{"body":48,"breadcrumbs":6,"title":3},"236":{"body":23,"breadcrumbs":6,"title":3},"237":{"body":51,"breadcrumbs":8,"title":5},"238":{"body":26,"breadcrumbs":6,"title":3},"239":{"body":18,"breadcrumbs":7,"title":4},"24":{"body":19,"breadcrumbs":4,"title":3},"240":{"body":0,"breadcrumbs":6,"title":3},"241":{"body":25,"breadcrumbs":7,"title":4},"242":{"body":58,"breadcrumbs":6,"title":3},"243":{"body":46,"breadcrumbs":6,"title":3},"244":{"body":23,"breadcrumbs":6,"title":3},"245":{"body":26,"breadcrumbs":5,"title":2},"246":{"body":20,"breadcrumbs":6,"title":3},"247":{"body":0,"breadcrumbs":5,"title":2},"248":{"body":22,"breadcrumbs":5,"title":2},"249":{"body":32,"breadcrumbs":5,"title":2},"25":{"body":22,"breadcrumbs":3,"title":2},"250":{"body":21,"breadcrumbs":4,"title":1},"251":{"body":0,"breadcrumbs":4,"title":1},"252":{"body":20,"breadcrumbs":6,"title":3},"253":{"body":20,"breadcrumbs":6,"title":3},"254":{"body":20,"breadcrumbs":5,"title":2},"255":{"body":51,"breadcrumbs":5,"title":2},"256":{"body":19,"breadcrumbs":5,"title":2},"257":{"body":15,"breadcrumbs":6,"title":3},"258":{"body":6,"breadcrumbs":6,"title":3},"259":{"body":25,"breadcrumbs":5,"title":2},"26":{"body":0,"breadcrumbs":3,"title":2},"260":{"body":0,"breadcrumbs":5,"title":2},"261":{"body":36,"breadcrumbs":4,"title":1},"262":{"body":41,"breadcrumbs":4,"title":1},"263":{"body":0,"breadcrumbs":5,"title":2},"264":{"body":41,"breadcrumbs":5,"title":2},"265":{"body":21,"breadcrumbs":5,"title":2},"266":{"body":19,"breadcrumbs":6,"title":3},"267":{"body":0,"breadcrumbs":5,"title":2},"268":{"body":35,"breadcrumbs":5,"title":2},"269":{"body":16,"breadcrumbs":6,"title":3},"27":{"body":16,"breadcrumbs":2,"title":1},"270":{"body":20,"breadcrumbs":5,"title":2},"271":{"body":23,"breadcrumbs":5,"title":2},"272":{"body":37,"breadcrumbs":5,"title":2},"273":{"body":18,"breadcrumbs":5,"title":2},"274":{"body":28,"breadcrumbs":5,"title":2},"275":{"body":0,"breadcrumbs":5,"title":2},"276":{"body":25,"breadcrumbs":5,"title":2},"277":{"body":35,"breadcrumbs":4,"title":1},"278":{"body":14,"breadcrumbs":6,"title":3},"279":{"body":0,"breadcrumbs":4,"title":1},"28":{"body":21,"breadcrumbs":2,"title":1},"280":{"body":47,"breadcrumbs":5,"title":2},"281":{"body":13,"breadcrumbs":5,"title":2},"282":{"body":0,"breadcrumbs":4,"title":1},"283":{"body":16,"breadcrumbs":6,"title":3},"284":{"body":47,"breadcrumbs":6,"title":3},"285":{"body":20,"breadcrumbs":5,"title":2},"286":{"body":21,"breadcrumbs":5,"title":2},"287":{"body":34,"breadcrumbs":5,"title":2},"288":{"body":70,"breadcrumbs":5,"title":2},"289":{"body":15,"breadcrumbs":5,"title":2},"29":{"body":14,"breadcrumbs":2,"title":1},"290":{"body":16,"breadcrumbs":2,"title":1},"291":{"body":21,"breadcrumbs":2,"title":1},"292":{"body":40,"breadcrumbs":3,"title":2},"293":{"body":0,"breadcrumbs":3,"title":2},"294":{"body":29,"breadcrumbs":3,"title":2},"295":{"body":43,"breadcrumbs":3,"title":2},"296":{"body":0,"breadcrumbs":2,"title":1},"297":{"body":9,"breadcrumbs":3,"title":2},"298":{"body":44,"breadcrumbs":3,"title":2},"299":{"body":22,"breadcrumbs":3,"title":2},"3":{"body":6,"breadcrumbs":3,"title":2},"30":{"body":20,"breadcrumbs":2,"title":1},"300":{"body":0,"breadcrumbs":2,"title":1},"301":{"body":13,"breadcrumbs":3,"title":2},"302":{"body":45,"breadcrumbs":3,"title":2},"303":{"body":41,"breadcrumbs":3,"title":2},"304":{"body":19,"breadcrumbs":3,"title":2},"305":{"body":0,"breadcrumbs":3,"title":2},"306":{"body":43,"breadcrumbs":3,"title":2},"307":{"body":12,"breadcrumbs":3,"title":2},"308":{"body":23,"breadcrumbs":3,"title":2},"309":{"body":27,"breadcrumbs":4,"title":3},"31":{"body":64,"breadcrumbs":3,"title":2},"310":{"body":52,"breadcrumbs":3,"title":2},"311":{"body":51,"breadcrumbs":4,"title":3},"312":{"body":19,"breadcrumbs":3,"title":2},"313":{"body":0,"breadcrumbs":3,"title":2},"314":{"body":24,"breadcrumbs":2,"title":1},"315":{"body":62,"breadcrumbs":2,"title":1},"316":{"body":0,"breadcrumbs":2,"title":1},"317":{"body":16,"breadcrumbs":3,"title":2},"318":{"body":13,"breadcrumbs":3,"title":2},"319":{"body":15,"breadcrumbs":3,"title":2},"32":{"body":0,"breadcrumbs":4,"title":3},"320":{"body":15,"breadcrumbs":3,"title":2},"321":{"body":19,"breadcrumbs":3,"title":2},"322":{"body":14,"breadcrumbs":2,"title":1},"323":{"body":0,"breadcrumbs":2,"title":1},"324":{"body":3,"breadcrumbs":3,"title":2},"325":{"body":3,"breadcrumbs":3,"title":2},"326":{"body":3,"breadcrumbs":3,"title":2},"327":{"body":37,"breadcrumbs":3,"title":2},"328":{"body":5,"breadcrumbs":3,"title":2},"329":{"body":6,"breadcrumbs":4,"title":3},"33":{"body":17,"breadcrumbs":4,"title":3},"330":{"body":4,"breadcrumbs":4,"title":3},"331":{"body":4,"breadcrumbs":4,"title":3},"332":{"body":56,"breadcrumbs":3,"title":2},"333":{"body":0,"breadcrumbs":2,"title":1},"334":{"body":32,"breadcrumbs":3,"title":2},"335":{"body":24,"breadcrumbs":3,"title":2},"336":{"body":17,"breadcrumbs":3,"title":2},"337":{"body":3,"breadcrumbs":3,"title":2},"338":{"body":6,"breadcrumbs":4,"title":3},"339":{"body":9,"breadcrumbs":3,"title":2},"34":{"body":17,"breadcrumbs":4,"title":3},"340":{"body":2,"breadcrumbs":4,"title":3},"341":{"body":0,"breadcrumbs":3,"title":2},"342":{"body":13,"breadcrumbs":4,"title":3},"343":{"body":12,"breadcrumbs":3,"title":2},"344":{"body":10,"breadcrumbs":5,"title":4},"345":{"body":14,"breadcrumbs":5,"title":4},"346":{"body":0,"breadcrumbs":3,"title":2},"347":{"body":15,"breadcrumbs":3,"title":2},"348":{"body":22,"breadcrumbs":3,"title":2},"349":{"body":40,"breadcrumbs":3,"title":2},"35":{"body":17,"breadcrumbs":4,"title":3},"350":{"body":0,"breadcrumbs":3,"title":2},"351":{"body":19,"breadcrumbs":3,"title":2},"352":{"body":20,"breadcrumbs":3,"title":2},"353":{"body":15,"breadcrumbs":3,"title":2},"354":{"body":12,"breadcrumbs":3,"title":2},"355":{"body":31,"breadcrumbs":3,"title":2},"356":{"body":17,"breadcrumbs":2,"title":1},"357":{"body":18,"breadcrumbs":4,"title":2},"358":{"body":26,"breadcrumbs":4,"title":2},"359":{"body":29,"breadcrumbs":5,"title":3},"36":{"body":56,"breadcrumbs":4,"title":3},"360":{"body":0,"breadcrumbs":4,"title":2},"361":{"body":26,"breadcrumbs":3,"title":1},"362":{"body":8,"breadcrumbs":3,"title":1},"363":{"body":15,"breadcrumbs":3,"title":1},"364":{"body":21,"breadcrumbs":3,"title":1},"365":{"body":41,"breadcrumbs":3,"title":1},"366":{"body":45,"breadcrumbs":4,"title":2},"367":{"body":30,"breadcrumbs":3,"title":1},"368":{"body":42,"breadcrumbs":4,"title":2},"369":{"body":45,"breadcrumbs":3,"title":1},"37":{"body":41,"breadcrumbs":3,"title":2},"370":{"body":85,"breadcrumbs":3,"title":1},"371":{"body":86,"breadcrumbs":6,"title":4},"372":{"body":27,"breadcrumbs":3,"title":1},"373":{"body":24,"breadcrumbs":3,"title":1},"374":{"body":25,"breadcrumbs":4,"title":2},"375":{"body":18,"breadcrumbs":3,"title":1},"376":{"body":28,"breadcrumbs":3,"title":1},"377":{"body":0,"breadcrumbs":4,"title":2},"378":{"body":22,"breadcrumbs":3,"title":1},"379":{"body":23,"breadcrumbs":3,"title":1},"38":{"body":19,"breadcrumbs":3,"title":2},"380":{"body":27,"breadcrumbs":3,"title":1},"381":{"body":25,"breadcrumbs":3,"title":1},"382":{"body":107,"breadcrumbs":4,"title":2},"383":{"body":46,"breadcrumbs":4,"title":2},"384":{"body":43,"breadcrumbs":4,"title":2},"385":{"body":15,"breadcrumbs":3,"title":1},"386":{"body":13,"breadcrumbs":4,"title":2},"387":{"body":0,"breadcrumbs":4,"title":2},"388":{"body":15,"breadcrumbs":5,"title":3},"389":{"body":17,"breadcrumbs":4,"title":2},"39":{"body":16,"breadcrumbs":4,"title":2},"390":{"body":0,"breadcrumbs":4,"title":2},"391":{"body":28,"breadcrumbs":5,"title":3},"392":{"body":13,"breadcrumbs":4,"title":2},"393":{"body":10,"breadcrumbs":4,"title":2},"394":{"body":13,"breadcrumbs":4,"title":2},"395":{"body":19,"breadcrumbs":3,"title":1},"396":{"body":0,"breadcrumbs":4,"title":2},"397":{"body":10,"breadcrumbs":5,"title":3},"398":{"body":12,"breadcrumbs":6,"title":4},"399":{"body":0,"breadcrumbs":4,"title":2},"4":{"body":27,"breadcrumbs":5,"title":4},"40":{"body":10,"breadcrumbs":3,"title":1},"400":{"body":38,"breadcrumbs":5,"title":3},"401":{"body":12,"breadcrumbs":5,"title":3},"402":{"body":0,"breadcrumbs":4,"title":2},"403":{"body":10,"breadcrumbs":5,"title":3},"404":{"body":22,"breadcrumbs":5,"title":3},"405":{"body":0,"breadcrumbs":4,"title":2},"406":{"body":27,"breadcrumbs":4,"title":2},"407":{"body":12,"breadcrumbs":4,"title":2},"408":{"body":11,"breadcrumbs":5,"title":3},"409":{"body":0,"breadcrumbs":4,"title":2},"41":{"body":50,"breadcrumbs":4,"title":2},"410":{"body":18,"breadcrumbs":4,"title":2},"411":{"body":19,"breadcrumbs":4,"title":2},"412":{"body":13,"breadcrumbs":5,"title":3},"413":{"body":0,"breadcrumbs":4,"title":2},"414":{"body":17,"breadcrumbs":4,"title":2},"415":{"body":19,"breadcrumbs":4,"title":2},"416":{"body":0,"breadcrumbs":4,"title":2},"417":{"body":13,"breadcrumbs":4,"title":2},"418":{"body":42,"breadcrumbs":4,"title":2},"419":{"body":38,"breadcrumbs":4,"title":2},"42":{"body":24,"breadcrumbs":4,"title":2},"420":{"body":85,"breadcrumbs":4,"title":2},"421":{"body":20,"breadcrumbs":4,"title":2},"422":{"body":26,"breadcrumbs":7,"title":5},"423":{"body":32,"breadcrumbs":3,"title":1},"424":{"body":43,"breadcrumbs":5,"title":3},"425":{"body":0,"breadcrumbs":4,"title":2},"426":{"body":76,"breadcrumbs":6,"title":4},"427":{"body":87,"breadcrumbs":5,"title":3},"428":{"body":0,"breadcrumbs":4,"title":2},"429":{"body":26,"breadcrumbs":3,"title":1},"43":{"body":73,"breadcrumbs":6,"title":4},"430":{"body":21,"breadcrumbs":3,"title":1},"431":{"body":18,"breadcrumbs":3,"title":1},"432":{"body":0,"breadcrumbs":4,"title":2},"433":{"body":35,"breadcrumbs":4,"title":2},"434":{"body":50,"breadcrumbs":5,"title":3},"435":{"body":0,"breadcrumbs":3,"title":1},"436":{"body":19,"breadcrumbs":5,"title":3},"437":{"body":7,"breadcrumbs":4,"title":2},"438":{"body":0,"breadcrumbs":4,"title":2},"439":{"body":42,"breadcrumbs":4,"title":2},"44":{"body":10,"breadcrumbs":3,"title":1},"440":{"body":28,"breadcrumbs":4,"title":2},"441":{"body":0,"breadcrumbs":4,"title":2},"442":{"body":114,"breadcrumbs":4,"title":2},"443":{"body":97,"breadcrumbs":4,"title":2},"444":{"body":0,"breadcrumbs":4,"title":2},"445":{"body":18,"breadcrumbs":4,"title":2},"446":{"body":28,"breadcrumbs":4,"title":2},"447":{"body":15,"breadcrumbs":4,"title":2},"448":{"body":0,"breadcrumbs":3,"title":1},"449":{"body":8,"breadcrumbs":5,"title":3},"45":{"body":58,"breadcrumbs":4,"title":2},"450":{"body":12,"breadcrumbs":5,"title":3},"451":{"body":34,"breadcrumbs":4,"title":2},"452":{"body":15,"breadcrumbs":4,"title":2},"453":{"body":18,"breadcrumbs":4,"title":2},"454":{"body":41,"breadcrumbs":3,"title":1},"455":{"body":0,"breadcrumbs":4,"title":2},"456":{"body":24,"breadcrumbs":4,"title":2},"457":{"body":0,"breadcrumbs":4,"title":2},"458":{"body":105,"breadcrumbs":5,"title":3},"459":{"body":56,"breadcrumbs":4,"title":2},"46":{"body":75,"breadcrumbs":5,"title":3},"460":{"body":0,"breadcrumbs":4,"title":2},"461":{"body":96,"breadcrumbs":5,"title":3},"462":{"body":7,"breadcrumbs":4,"title":2},"463":{"body":66,"breadcrumbs":5,"title":3},"464":{"body":0,"breadcrumbs":4,"title":2},"465":{"body":86,"breadcrumbs":5,"title":3},"466":{"body":0,"breadcrumbs":4,"title":2},"467":{"body":18,"breadcrumbs":3,"title":1},"468":{"body":16,"breadcrumbs":3,"title":1},"469":{"body":18,"breadcrumbs":3,"title":1},"47":{"body":51,"breadcrumbs":4,"title":2},"470":{"body":40,"breadcrumbs":3,"title":1},"471":{"body":36,"breadcrumbs":3,"title":1},"472":{"body":0,"breadcrumbs":4,"title":2},"473":{"body":81,"breadcrumbs":4,"title":2},"474":{"body":67,"breadcrumbs":4,"title":2},"475":{"body":0,"breadcrumbs":4,"title":2},"476":{"body":11,"breadcrumbs":4,"title":2},"477":{"body":21,"breadcrumbs":4,"title":2},"478":{"body":16,"breadcrumbs":4,"title":2},"479":{"body":27,"breadcrumbs":4,"title":2},"48":{"body":8,"breadcrumbs":3,"title":1},"480":{"body":17,"breadcrumbs":4,"title":2},"481":{"body":12,"breadcrumbs":4,"title":2},"482":{"body":22,"breadcrumbs":3,"title":1},"483":{"body":44,"breadcrumbs":4,"title":2},"484":{"body":0,"breadcrumbs":4,"title":2},"485":{"body":7,"breadcrumbs":4,"title":2},"486":{"body":46,"breadcrumbs":5,"title":3},"487":{"body":28,"breadcrumbs":5,"title":3},"488":{"body":0,"breadcrumbs":4,"title":2},"489":{"body":28,"breadcrumbs":5,"title":3},"49":{"body":40,"breadcrumbs":4,"title":2},"490":{"body":21,"breadcrumbs":5,"title":3},"491":{"body":34,"breadcrumbs":4,"title":2},"492":{"body":0,"breadcrumbs":4,"title":2},"493":{"body":22,"breadcrumbs":4,"title":2},"494":{"body":15,"breadcrumbs":5,"title":3},"495":{"body":23,"breadcrumbs":5,"title":3},"496":{"body":0,"breadcrumbs":4,"title":2},"497":{"body":51,"breadcrumbs":5,"title":3},"498":{"body":51,"breadcrumbs":4,"title":2},"499":{"body":0,"breadcrumbs":4,"title":2},"5":{"body":25,"breadcrumbs":3,"title":2},"50":{"body":32,"breadcrumbs":4,"title":2},"500":{"body":39,"breadcrumbs":5,"title":3},"501":{"body":48,"breadcrumbs":4,"title":2},"502":{"body":33,"breadcrumbs":4,"title":2},"503":{"body":48,"breadcrumbs":4,"title":2},"504":{"body":0,"breadcrumbs":3,"title":1},"505":{"body":62,"breadcrumbs":5,"title":3},"506":{"body":48,"breadcrumbs":5,"title":3},"507":{"body":119,"breadcrumbs":5,"title":3},"508":{"body":0,"breadcrumbs":3,"title":1},"509":{"body":25,"breadcrumbs":5,"title":3},"51":{"body":37,"breadcrumbs":4,"title":2},"510":{"body":25,"breadcrumbs":6,"title":4},"511":{"body":20,"breadcrumbs":4,"title":2},"512":{"body":17,"breadcrumbs":4,"title":2},"513":{"body":6,"breadcrumbs":4,"title":2},"514":{"body":3,"breadcrumbs":3,"title":1},"515":{"body":5,"breadcrumbs":4,"title":2},"516":{"body":17,"breadcrumbs":4,"title":2},"517":{"body":17,"breadcrumbs":3,"title":1},"518":{"body":28,"breadcrumbs":3,"title":1},"519":{"body":105,"breadcrumbs":8,"title":6},"52":{"body":8,"breadcrumbs":3,"title":1},"520":{"body":28,"breadcrumbs":3,"title":1},"521":{"body":43,"breadcrumbs":4,"title":2},"522":{"body":63,"breadcrumbs":6,"title":4},"523":{"body":66,"breadcrumbs":7,"title":5},"524":{"body":31,"breadcrumbs":4,"title":2},"525":{"body":41,"breadcrumbs":4,"title":2},"526":{"body":24,"breadcrumbs":3,"title":1},"527":{"body":42,"breadcrumbs":6,"title":4},"528":{"body":31,"breadcrumbs":3,"title":1},"529":{"body":28,"breadcrumbs":3,"title":1},"53":{"body":67,"breadcrumbs":4,"title":2},"530":{"body":29,"breadcrumbs":3,"title":1},"531":{"body":36,"breadcrumbs":3,"title":1},"532":{"body":29,"breadcrumbs":3,"title":1},"533":{"body":34,"breadcrumbs":5,"title":3},"534":{"body":0,"breadcrumbs":4,"title":2},"535":{"body":26,"breadcrumbs":3,"title":1},"536":{"body":103,"breadcrumbs":3,"title":1},"537":{"body":4,"breadcrumbs":4,"title":2},"538":{"body":37,"breadcrumbs":3,"title":1},"539":{"body":32,"breadcrumbs":3,"title":1},"54":{"body":33,"breadcrumbs":4,"title":2},"540":{"body":5,"breadcrumbs":4,"title":2},"541":{"body":28,"breadcrumbs":3,"title":1},"542":{"body":40,"breadcrumbs":5,"title":3},"543":{"body":19,"breadcrumbs":5,"title":3},"544":{"body":29,"breadcrumbs":4,"title":2},"545":{"body":88,"breadcrumbs":4,"title":2},"546":{"body":23,"breadcrumbs":4,"title":2},"547":{"body":21,"breadcrumbs":3,"title":1},"548":{"body":21,"breadcrumbs":3,"title":2},"549":{"body":16,"breadcrumbs":2,"title":1},"55":{"body":26,"breadcrumbs":4,"title":2},"550":{"body":0,"breadcrumbs":2,"title":1},"551":{"body":3,"breadcrumbs":3,"title":2},"552":{"body":6,"breadcrumbs":3,"title":2},"553":{"body":3,"breadcrumbs":3,"title":2},"554":{"body":24,"breadcrumbs":3,"title":2},"555":{"body":35,"breadcrumbs":3,"title":2},"556":{"body":8,"breadcrumbs":3,"title":2},"557":{"body":19,"breadcrumbs":3,"title":2},"558":{"body":20,"breadcrumbs":3,"title":2},"559":{"body":0,"breadcrumbs":2,"title":1},"56":{"body":7,"breadcrumbs":4,"title":2},"560":{"body":18,"breadcrumbs":3,"title":2},"561":{"body":9,"breadcrumbs":4,"title":3},"562":{"body":14,"breadcrumbs":3,"title":2},"563":{"body":17,"breadcrumbs":3,"title":2},"564":{"body":3,"breadcrumbs":3,"title":2},"565":{"body":6,"breadcrumbs":4,"title":3},"566":{"body":9,"breadcrumbs":3,"title":2},"567":{"body":2,"breadcrumbs":4,"title":3},"568":{"body":0,"breadcrumbs":3,"title":2},"569":{"body":13,"breadcrumbs":4,"title":3},"57":{"body":28,"breadcrumbs":4,"title":2},"570":{"body":12,"breadcrumbs":3,"title":2},"571":{"body":10,"breadcrumbs":5,"title":4},"572":{"body":14,"breadcrumbs":5,"title":4},"573":{"body":0,"breadcrumbs":3,"title":2},"574":{"body":17,"breadcrumbs":3,"title":2},"575":{"body":10,"breadcrumbs":3,"title":2},"576":{"body":42,"breadcrumbs":3,"title":2},"577":{"body":0,"breadcrumbs":4,"title":3},"578":{"body":22,"breadcrumbs":3,"title":2},"579":{"body":20,"breadcrumbs":3,"title":2},"58":{"body":27,"breadcrumbs":4,"title":2},"580":{"body":19,"breadcrumbs":3,"title":2},"581":{"body":42,"breadcrumbs":4,"title":3},"582":{"body":0,"breadcrumbs":3,"title":2},"583":{"body":25,"breadcrumbs":3,"title":2},"584":{"body":20,"breadcrumbs":3,"title":2},"585":{"body":18,"breadcrumbs":3,"title":2},"586":{"body":20,"breadcrumbs":3,"title":2},"587":{"body":28,"breadcrumbs":5,"title":4},"588":{"body":62,"breadcrumbs":3,"title":2},"589":{"body":27,"breadcrumbs":3,"title":2},"59":{"body":30,"breadcrumbs":4,"title":2},"590":{"body":20,"breadcrumbs":2,"title":1},"591":{"body":18,"breadcrumbs":4,"title":2},"592":{"body":22,"breadcrumbs":4,"title":2},"593":{"body":29,"breadcrumbs":5,"title":3},"594":{"body":0,"breadcrumbs":4,"title":2},"595":{"body":30,"breadcrumbs":3,"title":1},"596":{"body":8,"breadcrumbs":3,"title":1},"597":{"body":14,"breadcrumbs":3,"title":1},"598":{"body":20,"breadcrumbs":3,"title":1},"599":{"body":40,"breadcrumbs":3,"title":1},"6":{"body":26,"breadcrumbs":3,"title":2},"60":{"body":7,"breadcrumbs":5,"title":3},"600":{"body":43,"breadcrumbs":4,"title":2},"601":{"body":27,"breadcrumbs":3,"title":1},"602":{"body":25,"breadcrumbs":6,"title":4},"603":{"body":31,"breadcrumbs":4,"title":2},"604":{"body":85,"breadcrumbs":3,"title":1},"605":{"body":82,"breadcrumbs":6,"title":4},"606":{"body":25,"breadcrumbs":3,"title":1},"607":{"body":17,"breadcrumbs":4,"title":2},"608":{"body":18,"breadcrumbs":3,"title":1},"609":{"body":27,"breadcrumbs":3,"title":1},"61":{"body":22,"breadcrumbs":4,"title":2},"610":{"body":5,"breadcrumbs":4,"title":2},"611":{"body":19,"breadcrumbs":3,"title":1},"612":{"body":24,"breadcrumbs":3,"title":1},"613":{"body":24,"breadcrumbs":3,"title":1},"614":{"body":27,"breadcrumbs":3,"title":1},"615":{"body":15,"breadcrumbs":3,"title":1},"616":{"body":105,"breadcrumbs":4,"title":2},"617":{"body":58,"breadcrumbs":4,"title":2},"618":{"body":48,"breadcrumbs":4,"title":2},"619":{"body":15,"breadcrumbs":3,"title":1},"62":{"body":20,"breadcrumbs":5,"title":3},"620":{"body":13,"breadcrumbs":4,"title":2},"621":{"body":0,"breadcrumbs":4,"title":2},"622":{"body":12,"breadcrumbs":5,"title":3},"623":{"body":17,"breadcrumbs":4,"title":2},"624":{"body":0,"breadcrumbs":4,"title":2},"625":{"body":25,"breadcrumbs":5,"title":3},"626":{"body":12,"breadcrumbs":4,"title":2},"627":{"body":9,"breadcrumbs":4,"title":2},"628":{"body":12,"breadcrumbs":4,"title":2},"629":{"body":18,"breadcrumbs":3,"title":1},"63":{"body":6,"breadcrumbs":4,"title":2},"630":{"body":0,"breadcrumbs":4,"title":2},"631":{"body":9,"breadcrumbs":5,"title":3},"632":{"body":11,"breadcrumbs":6,"title":4},"633":{"body":0,"breadcrumbs":4,"title":2},"634":{"body":38,"breadcrumbs":5,"title":3},"635":{"body":11,"breadcrumbs":5,"title":3},"636":{"body":0,"breadcrumbs":4,"title":2},"637":{"body":9,"breadcrumbs":5,"title":3},"638":{"body":21,"breadcrumbs":5,"title":3},"639":{"body":0,"breadcrumbs":4,"title":2},"64":{"body":23,"breadcrumbs":4,"title":2},"640":{"body":26,"breadcrumbs":4,"title":2},"641":{"body":11,"breadcrumbs":4,"title":2},"642":{"body":10,"breadcrumbs":5,"title":3},"643":{"body":0,"breadcrumbs":4,"title":2},"644":{"body":16,"breadcrumbs":4,"title":2},"645":{"body":18,"breadcrumbs":4,"title":2},"646":{"body":12,"breadcrumbs":5,"title":3},"647":{"body":0,"breadcrumbs":4,"title":2},"648":{"body":15,"breadcrumbs":4,"title":2},"649":{"body":17,"breadcrumbs":4,"title":2},"65":{"body":19,"breadcrumbs":4,"title":2},"650":{"body":0,"breadcrumbs":4,"title":2},"651":{"body":11,"breadcrumbs":4,"title":2},"652":{"body":16,"breadcrumbs":4,"title":2},"653":{"body":35,"breadcrumbs":4,"title":2},"654":{"body":78,"breadcrumbs":4,"title":2},"655":{"body":0,"breadcrumbs":5,"title":3},"656":{"body":29,"breadcrumbs":5,"title":3},"657":{"body":21,"breadcrumbs":5,"title":3},"658":{"body":0,"breadcrumbs":4,"title":2},"659":{"body":5,"breadcrumbs":4,"title":2},"66":{"body":19,"breadcrumbs":4,"title":2},"660":{"body":17,"breadcrumbs":4,"title":2},"661":{"body":26,"breadcrumbs":4,"title":2},"662":{"body":17,"breadcrumbs":4,"title":2},"663":{"body":29,"breadcrumbs":4,"title":2},"664":{"body":32,"breadcrumbs":3,"title":1},"665":{"body":0,"breadcrumbs":4,"title":2},"666":{"body":82,"breadcrumbs":6,"title":4},"667":{"body":65,"breadcrumbs":6,"title":4},"668":{"body":0,"breadcrumbs":3,"title":1},"669":{"body":58,"breadcrumbs":3,"title":1},"67":{"body":28,"breadcrumbs":4,"title":2},"670":{"body":30,"breadcrumbs":3,"title":1},"671":{"body":0,"breadcrumbs":3,"title":1},"672":{"body":23,"breadcrumbs":5,"title":3},"673":{"body":20,"breadcrumbs":4,"title":2},"674":{"body":0,"breadcrumbs":4,"title":2},"675":{"body":45,"breadcrumbs":5,"title":3},"676":{"body":33,"breadcrumbs":5,"title":3},"677":{"body":0,"breadcrumbs":4,"title":2},"678":{"body":43,"breadcrumbs":4,"title":2},"679":{"body":14,"breadcrumbs":3,"title":1},"68":{"body":17,"breadcrumbs":5,"title":3},"680":{"body":0,"breadcrumbs":4,"title":2},"681":{"body":37,"breadcrumbs":5,"title":3},"682":{"body":38,"breadcrumbs":4,"title":2},"683":{"body":0,"breadcrumbs":3,"title":1},"684":{"body":51,"breadcrumbs":6,"title":4},"685":{"body":0,"breadcrumbs":4,"title":2},"686":{"body":30,"breadcrumbs":3,"title":1},"687":{"body":37,"breadcrumbs":4,"title":2},"688":{"body":21,"breadcrumbs":4,"title":2},"689":{"body":14,"breadcrumbs":4,"title":2},"69":{"body":7,"breadcrumbs":4,"title":2},"690":{"body":6,"breadcrumbs":4,"title":2},"691":{"body":3,"breadcrumbs":3,"title":1},"692":{"body":5,"breadcrumbs":4,"title":2},"693":{"body":17,"breadcrumbs":4,"title":2},"694":{"body":14,"breadcrumbs":3,"title":1},"695":{"body":25,"breadcrumbs":3,"title":1},"696":{"body":89,"breadcrumbs":8,"title":6},"697":{"body":27,"breadcrumbs":3,"title":1},"698":{"body":41,"breadcrumbs":4,"title":2},"699":{"body":60,"breadcrumbs":6,"title":4},"7":{"body":4,"breadcrumbs":3,"title":2},"70":{"body":31,"breadcrumbs":5,"title":3},"700":{"body":66,"breadcrumbs":7,"title":5},"701":{"body":30,"breadcrumbs":4,"title":2},"702":{"body":39,"breadcrumbs":4,"title":2},"703":{"body":23,"breadcrumbs":3,"title":1},"704":{"body":41,"breadcrumbs":6,"title":4},"705":{"body":30,"breadcrumbs":3,"title":1},"706":{"body":26,"breadcrumbs":3,"title":1},"707":{"body":28,"breadcrumbs":3,"title":1},"708":{"body":34,"breadcrumbs":3,"title":1},"709":{"body":27,"breadcrumbs":3,"title":1},"71":{"body":15,"breadcrumbs":4,"title":2},"710":{"body":33,"breadcrumbs":5,"title":3},"711":{"body":14,"breadcrumbs":5,"title":3},"712":{"body":8,"breadcrumbs":3,"title":1},"713":{"body":9,"breadcrumbs":3,"title":1},"714":{"body":8,"breadcrumbs":3,"title":1},"715":{"body":8,"breadcrumbs":3,"title":1},"716":{"body":10,"breadcrumbs":3,"title":1},"717":{"body":4,"breadcrumbs":4,"title":2},"718":{"body":30,"breadcrumbs":3,"title":1},"719":{"body":37,"breadcrumbs":4,"title":2},"72":{"body":40,"breadcrumbs":5,"title":3},"720":{"body":0,"breadcrumbs":3,"title":1},"721":{"body":21,"breadcrumbs":5,"title":3},"722":{"body":48,"breadcrumbs":4,"title":2},"723":{"body":33,"breadcrumbs":4,"title":2},"724":{"body":19,"breadcrumbs":4,"title":2},"725":{"body":43,"breadcrumbs":4,"title":2},"726":{"body":42,"breadcrumbs":4,"title":2},"727":{"body":17,"breadcrumbs":3,"title":1},"728":{"body":22,"breadcrumbs":4,"title":2},"729":{"body":27,"breadcrumbs":4,"title":2},"73":{"body":24,"breadcrumbs":5,"title":3},"730":{"body":0,"breadcrumbs":4,"title":2},"731":{"body":7,"breadcrumbs":4,"title":2},"732":{"body":55,"breadcrumbs":4,"title":2},"733":{"body":36,"breadcrumbs":4,"title":2},"734":{"body":15,"breadcrumbs":4,"title":2},"735":{"body":0,"breadcrumbs":4,"title":2},"736":{"body":21,"breadcrumbs":3,"title":1},"737":{"body":11,"breadcrumbs":4,"title":2},"738":{"body":46,"breadcrumbs":5,"title":3},"739":{"body":36,"breadcrumbs":4,"title":2},"74":{"body":3,"breadcrumbs":5,"title":3},"740":{"body":28,"breadcrumbs":3,"title":1},"741":{"body":35,"breadcrumbs":4,"title":2},"742":{"body":71,"breadcrumbs":5,"title":3},"743":{"body":0,"breadcrumbs":4,"title":2},"744":{"body":43,"breadcrumbs":4,"title":2},"745":{"body":21,"breadcrumbs":4,"title":2},"746":{"body":27,"breadcrumbs":4,"title":2},"747":{"body":49,"breadcrumbs":4,"title":2},"748":{"body":16,"breadcrumbs":3,"title":1},"749":{"body":17,"breadcrumbs":4,"title":2},"75":{"body":38,"breadcrumbs":4,"title":2},"750":{"body":1,"breadcrumbs":4,"title":2},"751":{"body":27,"breadcrumbs":3,"title":1},"752":{"body":30,"breadcrumbs":4,"title":2},"753":{"body":35,"breadcrumbs":4,"title":2},"754":{"body":15,"breadcrumbs":4,"title":2},"755":{"body":0,"breadcrumbs":4,"title":2},"756":{"body":61,"breadcrumbs":5,"title":3},"757":{"body":27,"breadcrumbs":5,"title":3},"758":{"body":45,"breadcrumbs":3,"title":1},"759":{"body":70,"breadcrumbs":5,"title":3},"76":{"body":50,"breadcrumbs":5,"title":3},"760":{"body":62,"breadcrumbs":4,"title":2},"761":{"body":28,"breadcrumbs":3,"title":1},"762":{"body":52,"breadcrumbs":5,"title":3},"763":{"body":24,"breadcrumbs":4,"title":2},"764":{"body":0,"breadcrumbs":4,"title":2},"765":{"body":93,"breadcrumbs":4,"title":2},"766":{"body":62,"breadcrumbs":4,"title":2},"767":{"body":81,"breadcrumbs":4,"title":2},"768":{"body":0,"breadcrumbs":4,"title":2},"769":{"body":26,"breadcrumbs":3,"title":1},"77":{"body":66,"breadcrumbs":4,"title":2},"770":{"body":19,"breadcrumbs":3,"title":1},"771":{"body":12,"breadcrumbs":3,"title":1},"772":{"body":26,"breadcrumbs":4,"title":2},"773":{"body":21,"breadcrumbs":3,"title":1},"774":{"body":18,"breadcrumbs":4,"title":2},"775":{"body":1,"breadcrumbs":4,"title":2},"776":{"body":39,"breadcrumbs":3,"title":1},"777":{"body":0,"breadcrumbs":4,"title":2},"778":{"body":35,"breadcrumbs":3,"title":1},"779":{"body":73,"breadcrumbs":3,"title":1},"78":{"body":3,"breadcrumbs":5,"title":3},"780":{"body":24,"breadcrumbs":4,"title":2},"781":{"body":0,"breadcrumbs":4,"title":2},"782":{"body":108,"breadcrumbs":3,"title":1},"783":{"body":31,"breadcrumbs":3,"title":1},"784":{"body":12,"breadcrumbs":3,"title":1},"785":{"body":43,"breadcrumbs":3,"title":1},"786":{"body":21,"breadcrumbs":5,"title":3},"787":{"body":32,"breadcrumbs":4,"title":2},"788":{"body":34,"breadcrumbs":5,"title":3},"789":{"body":17,"breadcrumbs":4,"title":2},"79":{"body":43,"breadcrumbs":4,"title":2},"790":{"body":15,"breadcrumbs":5,"title":3},"791":{"body":81,"breadcrumbs":4,"title":2},"792":{"body":35,"breadcrumbs":5,"title":3},"793":{"body":0,"breadcrumbs":4,"title":2},"794":{"body":35,"breadcrumbs":4,"title":2},"795":{"body":5,"breadcrumbs":4,"title":2},"796":{"body":25,"breadcrumbs":4,"title":2},"797":{"body":22,"breadcrumbs":4,"title":2},"798":{"body":26,"breadcrumbs":4,"title":2},"799":{"body":19,"breadcrumbs":3,"title":1},"8":{"body":30,"breadcrumbs":3,"title":2},"80":{"body":46,"breadcrumbs":5,"title":3},"800":{"body":17,"breadcrumbs":4,"title":2},"801":{"body":1,"breadcrumbs":4,"title":2},"802":{"body":30,"breadcrumbs":3,"title":1},"803":{"body":25,"breadcrumbs":4,"title":2},"804":{"body":37,"breadcrumbs":4,"title":2},"805":{"body":11,"breadcrumbs":4,"title":2},"806":{"body":0,"breadcrumbs":4,"title":2},"807":{"body":9,"breadcrumbs":5,"title":3},"808":{"body":59,"breadcrumbs":5,"title":3},"809":{"body":19,"breadcrumbs":4,"title":2},"81":{"body":61,"breadcrumbs":4,"title":2},"810":{"body":28,"breadcrumbs":3,"title":1},"811":{"body":30,"breadcrumbs":5,"title":3},"812":{"body":15,"breadcrumbs":4,"title":2},"813":{"body":5,"breadcrumbs":3,"title":1},"814":{"body":21,"breadcrumbs":4,"title":2},"815":{"body":20,"breadcrumbs":4,"title":2},"816":{"body":211,"breadcrumbs":4,"title":2},"817":{"body":0,"breadcrumbs":4,"title":2},"818":{"body":9,"breadcrumbs":4,"title":2},"819":{"body":7,"breadcrumbs":5,"title":3},"82":{"body":92,"breadcrumbs":7,"title":5},"820":{"body":10,"breadcrumbs":4,"title":2},"821":{"body":0,"breadcrumbs":4,"title":2},"822":{"body":28,"breadcrumbs":5,"title":3},"823":{"body":9,"breadcrumbs":5,"title":3},"824":{"body":8,"breadcrumbs":6,"title":4},"825":{"body":8,"breadcrumbs":5,"title":3},"826":{"body":7,"breadcrumbs":5,"title":3},"827":{"body":23,"breadcrumbs":5,"title":3},"828":{"body":17,"breadcrumbs":3,"title":1},"829":{"body":28,"breadcrumbs":6,"title":3},"83":{"body":7,"breadcrumbs":4,"title":2},"830":{"body":1,"breadcrumbs":5,"title":2},"831":{"body":62,"breadcrumbs":4,"title":1},"832":{"body":35,"breadcrumbs":5,"title":2},"833":{"body":50,"breadcrumbs":5,"title":2},"834":{"body":0,"breadcrumbs":4,"title":1},"835":{"body":21,"breadcrumbs":5,"title":2},"836":{"body":53,"breadcrumbs":5,"title":2},"837":{"body":25,"breadcrumbs":5,"title":2},"838":{"body":41,"breadcrumbs":5,"title":2},"839":{"body":0,"breadcrumbs":4,"title":1},"84":{"body":19,"breadcrumbs":5,"title":3},"840":{"body":11,"breadcrumbs":6,"title":3},"841":{"body":39,"breadcrumbs":6,"title":3},"842":{"body":19,"breadcrumbs":5,"title":2},"843":{"body":27,"breadcrumbs":7,"title":4},"844":{"body":0,"breadcrumbs":5,"title":2},"845":{"body":62,"breadcrumbs":7,"title":4},"846":{"body":14,"breadcrumbs":5,"title":2},"847":{"body":48,"breadcrumbs":5,"title":2},"848":{"body":21,"breadcrumbs":8,"title":5},"849":{"body":14,"breadcrumbs":7,"title":4},"85":{"body":10,"breadcrumbs":5,"title":3},"850":{"body":39,"breadcrumbs":5,"title":2},"851":{"body":19,"breadcrumbs":4,"title":1},"852":{"body":30,"breadcrumbs":4,"title":2},"853":{"body":14,"breadcrumbs":3,"title":1},"854":{"body":13,"breadcrumbs":4,"title":2},"855":{"body":34,"breadcrumbs":4,"title":2},"856":{"body":79,"breadcrumbs":4,"title":2},"857":{"body":28,"breadcrumbs":4,"title":2},"858":{"body":16,"breadcrumbs":5,"title":3},"859":{"body":32,"breadcrumbs":3,"title":1},"86":{"body":20,"breadcrumbs":5,"title":3},"860":{"body":38,"breadcrumbs":4,"title":2},"861":{"body":21,"breadcrumbs":3,"title":1},"862":{"body":15,"breadcrumbs":3,"title":1},"863":{"body":18,"breadcrumbs":6,"title":3},"864":{"body":18,"breadcrumbs":4,"title":1},"865":{"body":14,"breadcrumbs":5,"title":2},"866":{"body":9,"breadcrumbs":5,"title":2},"867":{"body":7,"breadcrumbs":5,"title":2},"868":{"body":29,"breadcrumbs":6,"title":3},"869":{"body":41,"breadcrumbs":6,"title":3},"87":{"body":102,"breadcrumbs":5,"title":3},"870":{"body":32,"breadcrumbs":5,"title":2},"871":{"body":29,"breadcrumbs":5,"title":2},"872":{"body":57,"breadcrumbs":4,"title":1},"873":{"body":55,"breadcrumbs":5,"title":2},"874":{"body":25,"breadcrumbs":4,"title":1},"875":{"body":13,"breadcrumbs":4,"title":1},"876":{"body":20,"breadcrumbs":4,"title":2},"877":{"body":15,"breadcrumbs":3,"title":1},"878":{"body":0,"breadcrumbs":4,"title":2},"879":{"body":18,"breadcrumbs":3,"title":1},"88":{"body":231,"breadcrumbs":7,"title":5},"880":{"body":18,"breadcrumbs":3,"title":1},"881":{"body":43,"breadcrumbs":4,"title":2},"882":{"body":20,"breadcrumbs":3,"title":1},"883":{"body":32,"breadcrumbs":3,"title":1},"884":{"body":44,"breadcrumbs":4,"title":2},"885":{"body":23,"breadcrumbs":4,"title":2},"886":{"body":16,"breadcrumbs":3,"title":1},"887":{"body":13,"breadcrumbs":2,"title":1},"888":{"body":1,"breadcrumbs":3,"title":2},"889":{"body":19,"breadcrumbs":3,"title":2},"89":{"body":27,"breadcrumbs":4,"title":2},"890":{"body":33,"breadcrumbs":3,"title":2},"891":{"body":0,"breadcrumbs":3,"title":2},"892":{"body":69,"breadcrumbs":3,"title":2},"893":{"body":26,"breadcrumbs":3,"title":2},"894":{"body":16,"breadcrumbs":3,"title":2},"895":{"body":10,"breadcrumbs":3,"title":2},"896":{"body":35,"breadcrumbs":3,"title":2},"897":{"body":12,"breadcrumbs":2,"title":1},"898":{"body":8,"breadcrumbs":3,"title":2},"899":{"body":54,"breadcrumbs":3,"title":2},"9":{"body":11,"breadcrumbs":2,"title":1},"90":{"body":29,"breadcrumbs":4,"title":2},"900":{"body":35,"breadcrumbs":3,"title":2},"901":{"body":47,"breadcrumbs":3,"title":2},"902":{"body":64,"breadcrumbs":4,"title":3},"903":{"body":16,"breadcrumbs":3,"title":2},"904":{"body":0,"breadcrumbs":3,"title":2},"905":{"body":5,"breadcrumbs":2,"title":1},"906":{"body":8,"breadcrumbs":2,"title":1},"907":{"body":5,"breadcrumbs":2,"title":1},"908":{"body":45,"breadcrumbs":4,"title":3},"909":{"body":18,"breadcrumbs":2,"title":1},"91":{"body":33,"breadcrumbs":4,"title":2},"910":{"body":14,"breadcrumbs":4,"title":2},"911":{"body":155,"breadcrumbs":5,"title":3},"912":{"body":0,"breadcrumbs":5,"title":3},"913":{"body":42,"breadcrumbs":5,"title":3},"914":{"body":21,"breadcrumbs":5,"title":3},"915":{"body":17,"breadcrumbs":5,"title":3},"916":{"body":112,"breadcrumbs":5,"title":3},"917":{"body":0,"breadcrumbs":4,"title":2},"918":{"body":53,"breadcrumbs":4,"title":2},"919":{"body":11,"breadcrumbs":4,"title":2},"92":{"body":42,"breadcrumbs":3,"title":1},"920":{"body":0,"breadcrumbs":4,"title":2},"921":{"body":45,"breadcrumbs":4,"title":2},"922":{"body":23,"breadcrumbs":4,"title":2},"923":{"body":0,"breadcrumbs":4,"title":2},"924":{"body":23,"breadcrumbs":4,"title":2},"925":{"body":130,"breadcrumbs":4,"title":2},"926":{"body":23,"breadcrumbs":4,"title":2},"927":{"body":9,"breadcrumbs":5,"title":3},"928":{"body":21,"breadcrumbs":5,"title":3},"929":{"body":35,"breadcrumbs":4,"title":2},"93":{"body":45,"breadcrumbs":4,"title":2},"930":{"body":33,"breadcrumbs":4,"title":2},"931":{"body":10,"breadcrumbs":5,"title":3},"932":{"body":37,"breadcrumbs":3,"title":1},"933":{"body":24,"breadcrumbs":5,"title":3},"934":{"body":41,"breadcrumbs":6,"title":4},"935":{"body":24,"breadcrumbs":4,"title":2},"936":{"body":11,"breadcrumbs":4,"title":2},"937":{"body":32,"breadcrumbs":4,"title":2},"938":{"body":12,"breadcrumbs":5,"title":3},"939":{"body":63,"breadcrumbs":4,"title":2},"94":{"body":50,"breadcrumbs":8,"title":6},"940":{"body":19,"breadcrumbs":4,"title":2},"941":{"body":38,"breadcrumbs":4,"title":2},"942":{"body":32,"breadcrumbs":4,"title":2},"943":{"body":6,"breadcrumbs":5,"title":3},"944":{"body":22,"breadcrumbs":3,"title":1},"945":{"body":6,"breadcrumbs":3,"title":1},"946":{"body":23,"breadcrumbs":4,"title":2},"947":{"body":8,"breadcrumbs":5,"title":3},"948":{"body":17,"breadcrumbs":4,"title":2},"949":{"body":20,"breadcrumbs":4,"title":2},"95":{"body":43,"breadcrumbs":7,"title":5},"950":{"body":119,"breadcrumbs":5,"title":3},"951":{"body":31,"breadcrumbs":4,"title":2},"952":{"body":6,"breadcrumbs":4,"title":2},"953":{"body":23,"breadcrumbs":4,"title":2},"954":{"body":26,"breadcrumbs":4,"title":2},"955":{"body":3,"breadcrumbs":4,"title":2},"956":{"body":22,"breadcrumbs":4,"title":2},"957":{"body":8,"breadcrumbs":4,"title":2},"958":{"body":0,"breadcrumbs":4,"title":2},"959":{"body":23,"breadcrumbs":4,"title":2},"96":{"body":43,"breadcrumbs":7,"title":5},"960":{"body":28,"breadcrumbs":4,"title":2},"961":{"body":0,"breadcrumbs":5,"title":3},"962":{"body":17,"breadcrumbs":5,"title":3},"963":{"body":8,"breadcrumbs":5,"title":3},"964":{"body":15,"breadcrumbs":5,"title":3},"965":{"body":6,"breadcrumbs":5,"title":3},"966":{"body":10,"breadcrumbs":5,"title":3},"967":{"body":0,"breadcrumbs":4,"title":2},"968":{"body":14,"breadcrumbs":3,"title":1},"969":{"body":74,"breadcrumbs":3,"title":1},"97":{"body":47,"breadcrumbs":10,"title":8},"970":{"body":15,"breadcrumbs":3,"title":1},"971":{"body":0,"breadcrumbs":4,"title":2},"972":{"body":11,"breadcrumbs":4,"title":2},"973":{"body":13,"breadcrumbs":4,"title":2},"974":{"body":12,"breadcrumbs":3,"title":1},"975":{"body":0,"breadcrumbs":5,"title":3},"976":{"body":160,"breadcrumbs":5,"title":3},"977":{"body":25,"breadcrumbs":5,"title":3},"978":{"body":20,"breadcrumbs":6,"title":4},"979":{"body":22,"breadcrumbs":5,"title":3},"98":{"body":31,"breadcrumbs":9,"title":7},"980":{"body":16,"breadcrumbs":3,"title":1},"981":{"body":25,"breadcrumbs":4,"title":2},"982":{"body":0,"breadcrumbs":5,"title":3},"983":{"body":19,"breadcrumbs":5,"title":3},"984":{"body":22,"breadcrumbs":4,"title":2},"985":{"body":24,"breadcrumbs":4,"title":2},"986":{"body":12,"breadcrumbs":4,"title":2},"987":{"body":52,"breadcrumbs":4,"title":2},"988":{"body":27,"breadcrumbs":4,"title":2},"989":{"body":12,"breadcrumbs":5,"title":3},"99":{"body":7,"breadcrumbs":2,"title":1},"990":{"body":28,"breadcrumbs":4,"title":2},"991":{"body":42,"breadcrumbs":5,"title":3},"992":{"body":35,"breadcrumbs":5,"title":3},"993":{"body":0,"breadcrumbs":5,"title":3},"994":{"body":33,"breadcrumbs":5,"title":3},"995":{"body":24,"breadcrumbs":4,"title":2},"996":{"body":56,"breadcrumbs":5,"title":3},"997":{"body":80,"breadcrumbs":5,"title":3},"998":{"body":9,"breadcrumbs":6,"title":4},"999":{"body":70,"breadcrumbs":4,"title":2}},"docs":{"0":{"body":"Welcome to the JSON Agent Communication Standard (JACS) documentation! JACS is a comprehensive framework for creating, signing, and verifying JSON documents with cryptographic integrity, designed specifically for AI agent communication and task management.","breadcrumbs":"Introduction » JACS: JSON Agent Communication Standard","id":"0","title":"JACS: JSON Agent Communication Standard"},"1":{"body":"JACS provides a standard way for AI agents to: Create and sign JSON documents with cryptographic signatures Verify authenticity and integrity of documents Manage tasks and agreements between multiple agents Maintain audit trails of modifications and versioning Ensure trust in multi-agent systems As a developer, JACS gives you the tools to build trustworthy AI systems where agents can securely exchange tasks, agreements, and data with verifiable integrity.","breadcrumbs":"Introduction » What is JACS?","id":"1","title":"What is JACS?"},"10":{"body":"pip install jacs import jacs agent = jacs.JacsAgent()\nagent.load(\"./config.json\")","breadcrumbs":"Introduction » Python","id":"10","title":"Python"},"100":{"body":"Rust : Version 1.93 or later (Edition 2024) Cargo : Included with Rust installation","breadcrumbs":"Installation » Requirements","id":"100","title":"Requirements"},"1000":{"body":"Status Description active Currently in use for signing rotated Superseded by newer key, still valid for old signatures revoked Compromised, signatures should not be trusted expired Past validity period","breadcrumbs":"Key Rotation » Key Status Values","id":"1000","title":"Key Status Values"},"1001":{"body":"impl TrustedAgent { /// Get the public key that was active for a specific agent version fn get_key_for_version(&self, version: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|entry| { match (&entry.first_version, &entry.last_version) { (Some(first), Some(last)) => { version >= first && version <= last } (Some(first), None) => { version >= first // Current key } _ => false } }) } /// Get the public key by its hash fn get_key_by_hash(&self, hash: &str) -> Option<&KeyEntry> { self.key_history.iter().find(|e| e.public_key_hash == hash) }\n}","breadcrumbs":"Key Rotation » Looking Up Keys","id":"1001","title":"Looking Up Keys"},"1002":{"body":"DNS records can advertise multiple key versions for an agent.","breadcrumbs":"Key Rotation » DNS Support for Key Versions","id":"1002","title":"DNS Support for Key Versions"},"1003":{"body":"Each key version gets its own TXT record: ; Current key\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=current; alg=SHA-256; hash={hash1}\" ; Previous key (still valid for old signatures)\n_v1.agent.jacs.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id={id}; ver=rotated; valid_until=2025-01-15; hash={hash2}\"","breadcrumbs":"Key Rotation » Multi-Version DNS Records","id":"1003","title":"Multi-Version DNS Records"},"1004":{"body":"# Generate DNS records for all active keys\njacs agent dns --all-keys","breadcrumbs":"Key Rotation » DNS Record Generation","id":"1004","title":"DNS Record Generation"},"1005":{"body":"","breadcrumbs":"Key Rotation » Security Considerations","id":"1005","title":"Security Considerations"},"1006":{"body":"When a key is compromised: Mark as revoked in the agent's key history Update DNS to include revocation status Signatures fail verification when made with revoked keys Notify trusted peers if possible","breadcrumbs":"Key Rotation » Key Revocation","id":"1006","title":"Key Revocation"},"1007":{"body":"During rotation, both old and new keys may be valid: New documents should be signed with the new key Old documents remain verifiable with the old key DNS may advertise both keys during transition","breadcrumbs":"Key Rotation » Overlap Period","id":"1007","title":"Overlap Period"},"1008":{"body":"After rotation: Old private keys should be securely deleted Only public keys are retained for verification Key metadata must be protected from modification","breadcrumbs":"Key Rotation » Secure Deletion","id":"1008","title":"Secure Deletion"},"1009":{"body":"","breadcrumbs":"Key Rotation » Best Practices","id":"1009","title":"Best Practices"},"101":{"body":"rustc --version\n# Should show rustc 1.93.0 or later If you need to update Rust: rustup update stable","breadcrumbs":"Installation » Verify Rust Version","id":"101","title":"Verify Rust Version"},"1010":{"body":"Regular rotation : Quarterly or annually for compliance Algorithm upgrade : When transitioning to stronger cryptography Incident response : Immediately after suspected compromise","breadcrumbs":"Key Rotation » Rotation Schedule","id":"1010","title":"Rotation Schedule"},"1011":{"body":"Backup current agent state Verify all systems can handle new key format Plan DNS propagation time Notify dependent systems of upcoming change","breadcrumbs":"Key Rotation » Pre-Rotation Checklist","id":"1011","title":"Pre-Rotation Checklist"},"1012":{"body":"Verify new key is active Confirm old documents still verify Update DNS records Securely delete old private key Test signing with new key","breadcrumbs":"Key Rotation » Post-Rotation Checklist","id":"1012","title":"Post-Rotation Checklist"},"1013":{"body":"Security Model - Overall security architecture Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity verification","breadcrumbs":"Key Rotation » See Also","id":"1013","title":"See Also"},"1014":{"body":"JACS supports multiple cryptographic algorithms for digital signatures, providing flexibility for different security requirements and future-proofing against quantum computing threats.","breadcrumbs":"Cryptographic Algorithms » Cryptographic Algorithms","id":"1014","title":"Cryptographic Algorithms"},"1015":{"body":"Algorithm Config Value Type Key Size Signature Size Recommended Use Ed25519 ring-Ed25519 Elliptic Curve 32 bytes 64 bytes General purpose (default) RSA-PSS RSA-PSS RSA 2048-4096 bits 256-512 bytes Legacy systems Dilithium pq-dilithium Lattice-based ~1.3 KB ~2.4 KB Post-quantum PQ2025 pq2025 Hybrid ~1.3 KB ~2.5 KB Transitional","breadcrumbs":"Cryptographic Algorithms » Supported Algorithms","id":"1015","title":"Supported Algorithms"},"1016":{"body":"The recommended algorithm for most use cases.","breadcrumbs":"Cryptographic Algorithms » Ed25519 (ring-Ed25519)","id":"1016","title":"Ed25519 (ring-Ed25519)"},"1017":{"body":"Ed25519 is an elliptic curve signature scheme using Curve25519. JACS uses the ring cryptographic library implementation.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1017","title":"Overview"},"1018":{"body":"Speed : Extremely fast signing and verification Key Size : 32-byte private key, 32-byte public key Signature Size : 64 bytes Security Level : ~128 bits (classical)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1018","title":"Characteristics"},"1019":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1019","title":"Configuration"},"102":{"body":"","breadcrumbs":"Installation » Installing the CLI","id":"102","title":"Installing the CLI"},"1020":{"body":"General agent communication MCP message signing HTTP request/response signing Document signing","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1020","title":"Use Cases"},"1021":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using ring-Ed25519 # Sign a message\nsignature = agent.sign_string(\"Hello, World!\")\nprint(f\"Signature (64 bytes): {len(signature)} characters base64\")","breadcrumbs":"Cryptographic Algorithms » Example","id":"1021","title":"Example"},"1022":{"body":"Industry-standard RSA with Probabilistic Signature Scheme padding.","breadcrumbs":"Cryptographic Algorithms » RSA-PSS","id":"1022","title":"RSA-PSS"},"1023":{"body":"RSA-PSS provides compatibility with systems that require RSA signatures. JACS uses 2048-bit or larger keys.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1023","title":"Overview"},"1024":{"body":"Speed : Slower than Ed25519 Key Size : 2048-4096 bits Signature Size : Same as key size (256-512 bytes) Security Level : ~112-128 bits (2048-bit key)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1024","title":"Characteristics"},"1025":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1025","title":"Configuration"},"1026":{"body":"Integration with legacy systems Compliance requirements mandating RSA Interoperability with enterprise PKI","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1026","title":"Use Cases"},"1027":{"body":"Larger signatures increase document size Slower than Ed25519 Larger keys needed for equivalent security","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1027","title":"Considerations"},"1028":{"body":"NIST-standardized post-quantum digital signature algorithm.","breadcrumbs":"Cryptographic Algorithms » Dilithium (pq-dilithium)","id":"1028","title":"Dilithium (pq-dilithium)"},"1029":{"body":"Dilithium is a lattice-based signature scheme selected by NIST for post-quantum cryptography standardization. It provides security against both classical and quantum computers.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1029","title":"Overview"},"103":{"body":"cargo install jacs --features cli","breadcrumbs":"Installation » From crates.io (Recommended)","id":"103","title":"From crates.io (Recommended)"},"1030":{"body":"Speed : Moderate (faster than RSA, slower than Ed25519) Key Size : ~1.3 KB public key, ~2.5 KB private key Signature Size : ~2.4 KB Security Level : NIST Level 3 (quantum-resistant)","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1030","title":"Characteristics"},"1031":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1031","title":"Configuration"},"1032":{"body":"Long-term document security Protection against future quantum attacks High-security applications Government/defense requirements","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1032","title":"Use Cases"},"1033":{"body":"Larger signatures and keys than classical algorithms Newer algorithm (less battle-tested) May be required for future compliance","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1033","title":"Considerations"},"1034":{"body":"Transitional hybrid scheme combining classical and post-quantum algorithms.","breadcrumbs":"Cryptographic Algorithms » PQ2025 (Hybrid)","id":"1034","title":"PQ2025 (Hybrid)"},"1035":{"body":"PQ2025 combines Ed25519 with Dilithium, providing security even if one algorithm is broken. This approach is recommended by security researchers during the quantum transition period.","breadcrumbs":"Cryptographic Algorithms » Overview","id":"1035","title":"Overview"},"1036":{"body":"Speed : Slower (two signatures computed) Key Size : Combined Ed25519 + Dilithium Signature Size : ~2.5 KB (combined) Security Level : Max of both algorithms","breadcrumbs":"Cryptographic Algorithms » Characteristics","id":"1036","title":"Characteristics"},"1037":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n}","breadcrumbs":"Cryptographic Algorithms » Configuration","id":"1037","title":"Configuration"},"1038":{"body":"Transitioning to post-quantum Maximum security requirements Uncertainty about algorithm security Long-lived documents","breadcrumbs":"Cryptographic Algorithms » Use Cases","id":"1038","title":"Use Cases"},"1039":{"body":"Largest signatures Slowest signing/verification Best for paranoid security requirements","breadcrumbs":"Cryptographic Algorithms » Considerations","id":"1039","title":"Considerations"},"104":{"body":"git clone https://github.com/HumanAssisted/JACS\ncd JACS/jacs\ncargo install --path . --features cli","breadcrumbs":"Installation » From Source","id":"104","title":"From Source"},"1040":{"body":"","breadcrumbs":"Cryptographic Algorithms » Algorithm Selection Guide","id":"1040","title":"Algorithm Selection Guide"},"1041":{"body":"Requirement Recommended Algorithm Best performance ring-Ed25519 Smallest signatures ring-Ed25519 Legacy compatibility RSA-PSS Quantum resistance pq-dilithium Maximum security pq2025 General purpose ring-Ed25519","breadcrumbs":"Cryptographic Algorithms » Decision Matrix","id":"1041","title":"Decision Matrix"},"1042":{"body":"Web APIs and MCP : { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Fast signing is critical for real-time communication. Legal/Financial Documents : { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Long-term validity requires quantum resistance. Enterprise Integration : { \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Compatibility with existing PKI infrastructure. High-Security : { \"jacs_agent_key_algorithm\": \"pq2025\"\n} Belt-and-suspenders approach for maximum protection.","breadcrumbs":"Cryptographic Algorithms » By Use Case","id":"1042","title":"By Use Case"},"1043":{"body":"Keys are generated automatically when creating an agent: # Directory structure after agent creation\njacs_keys/\n├── private.pem # Algorithm-specific private key\n└── public.pem # Algorithm-specific public key","breadcrumbs":"Cryptographic Algorithms » Key Generation","id":"1043","title":"Key Generation"},"1044":{"body":"Algorithm Private Key Format Public Key Format ring-Ed25519 PEM (PKCS#8) PEM (SPKI) RSA-PSS PEM (PKCS#8) PEM (SPKI) pq-dilithium PEM (custom) PEM (custom) pq2025 PEM (combined) PEM (combined)","breadcrumbs":"Cryptographic Algorithms » Key Formats","id":"1044","title":"Key Formats"},"1045":{"body":"Signatures in JACS documents include algorithm metadata: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"content\"] }\n} The signingAlgorithm field enables verifiers to use the correct verification method.","breadcrumbs":"Cryptographic Algorithms » Signature Structure","id":"1045","title":"Signature Structure"},"1046":{"body":"JACS uses SHA-256 for all hash operations: Document content hashing (jacsSha256) Public key fingerprints (publicKeyHash) Agreement content locking (jacsAgreementHash) { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Cryptographic Algorithms » Hashing","id":"1046","title":"Hashing"},"1047":{"body":"To migrate to a new algorithm: Generate New Keys { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Create New Agent Version # Load with old algorithm\nagent.load('./old-config.json') # Update to new algorithm and generate new version\nnew_agent = agent.update_agent(json.dumps({ # ... agent data with new keys\n})) Update Configuration { \"jacs_agent_id_and_version\": \"agent-id:new-version\", \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Maintain Backward Compatibility Keep old agent versions for verifying old documents Old signatures remain valid with old public keys","breadcrumbs":"Cryptographic Algorithms » Algorithm Migration","id":"1047","title":"Algorithm Migration"},"1048":{"body":"Approximate performance (varies by hardware): Algorithm Sign (ops/sec) Verify (ops/sec) Key Gen (ms) ring-Ed25519 ~50,000 ~20,000 <1 RSA-PSS (2048) ~1,000 ~30,000 ~100 pq-dilithium ~5,000 ~10,000 ~1 pq2025 ~4,000 ~8,000 ~2","breadcrumbs":"Cryptographic Algorithms » Performance Comparison","id":"1048","title":"Performance Comparison"},"1049":{"body":"","breadcrumbs":"Cryptographic Algorithms » Security Considerations","id":"1049","title":"Security Considerations"},"105":{"body":"jacs --help","breadcrumbs":"Installation » Verify Installation","id":"105","title":"Verify Installation"},"1050":{"body":"JACS documents include the signing algorithm, enabling: Verification with correct algorithm Graceful algorithm transitions Multi-algorithm environments","breadcrumbs":"Cryptographic Algorithms » Algorithm Agility","id":"1050","title":"Algorithm Agility"},"1051":{"body":"Signatures don't provide forward secrecy. For confidentiality: Use TLS for transport Consider additional encryption layers","breadcrumbs":"Cryptographic Algorithms » Forward Secrecy","id":"1051","title":"Forward Secrecy"},"1052":{"body":"If a private key is compromised: Generate new key pair Create new agent version Revoke trust in compromised version Re-sign critical documents","breadcrumbs":"Cryptographic Algorithms » Key Compromise","id":"1052","title":"Key Compromise"},"1053":{"body":"Security Model - Overall security architecture Configuration - Algorithm configuration DNS Verification - Public key fingerprint verification","breadcrumbs":"Cryptographic Algorithms » See Also","id":"1053","title":"See Also"},"1054":{"body":"JACS supports multiple storage backends for persisting documents and agents. This flexibility allows deployment in various environments from local development to cloud infrastructure.","breadcrumbs":"Storage Backends » Storage Backends","id":"1054","title":"Storage Backends"},"1055":{"body":"Backend Config Value Description Filesystem fs Local file storage (default) AWS S3 aws Amazon S3 object storage HAI Cloud hai HAI managed storage PostgreSQL database PostgreSQL with JSONB queries (requires database feature)","breadcrumbs":"Storage Backends » Available Backends","id":"1055","title":"Available Backends"},"1056":{"body":"Set the storage backend in your configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1056","title":"Configuration"},"1057":{"body":"The default storage backend, storing documents as JSON files on the local filesystem.","breadcrumbs":"Storage Backends » Filesystem Storage (fs)","id":"1057","title":"Filesystem Storage (fs)"},"1058":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1058","title":"Configuration"},"1059":{"body":"jacs_data/\n├── agents/\n│ └── {agent-id}/\n│ └── {version-id}.json\n├── documents/\n│ └── {document-id}/\n│ └── {version-id}.json\n└── files/ └── {attachment-hash}","breadcrumbs":"Storage Backends » Directory Structure","id":"1059","title":"Directory Structure"},"106":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Installation » Using as a Library","id":"106","title":"Using as a Library"},"1060":{"body":"Local development Single-server deployments Testing and prototyping Air-gapped environments","breadcrumbs":"Storage Backends » Use Cases","id":"1060","title":"Use Cases"},"1061":{"body":"Simple setup No network dependencies Fast local access Easy backup and migration","breadcrumbs":"Storage Backends » Advantages","id":"1061","title":"Advantages"},"1062":{"body":"Not suitable for distributed systems Limited by local disk space Single point of failure","breadcrumbs":"Storage Backends » Considerations","id":"1062","title":"Considerations"},"1063":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Using filesystem storage # Documents are saved to jacs_data/documents/\ndoc = agent.create_document(json.dumps({ 'title': 'My Document'\n}))\n# Saved to: jacs_data/documents/{doc-id}/{version-id}.json","breadcrumbs":"Storage Backends » Example","id":"1063","title":"Example"},"1064":{"body":"Cloud object storage using Amazon S3.","breadcrumbs":"Storage Backends » AWS S3 Storage (aws)","id":"1064","title":"AWS S3 Storage (aws)"},"1065":{"body":"{ \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1065","title":"Configuration"},"1066":{"body":"export AWS_ACCESS_KEY_ID=\"your-access-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret-key\"\nexport AWS_REGION=\"us-east-1\"","breadcrumbs":"Storage Backends » Environment Variables","id":"1066","title":"Environment Variables"},"1067":{"body":"my-jacs-bucket/\n├── data/\n│ ├── agents/\n│ │ └── {agent-id}/\n│ │ └── {version-id}.json\n│ ├── documents/\n│ │ └── {document-id}/\n│ │ └── {version-id}.json\n│ └── files/\n│ └── {attachment-hash}","breadcrumbs":"Storage Backends » Bucket Structure","id":"1067","title":"Bucket Structure"},"1068":{"body":"Production deployments Distributed systems High availability requirements Large document volumes","breadcrumbs":"Storage Backends » Use Cases","id":"1068","title":"Use Cases"},"1069":{"body":"Scalable storage High durability (99.999999999%) Geographic redundancy Built-in versioning support","breadcrumbs":"Storage Backends » Advantages","id":"1069","title":"Advantages"},"107":{"body":"JACS supports several optional features for observability and integrations: [dependencies]\n# Basic library usage\njacs = \"0.3\" # With OpenTelemetry logging\njacs = { version = \"0.3\", features = [\"otlp-logs\"] } # With OpenTelemetry metrics\njacs = { version = \"0.3\", features = [\"otlp-metrics\"] } # With OpenTelemetry tracing\njacs = { version = \"0.3\", features = [\"otlp-tracing\"] } # With all observability features\njacs = { version = \"0.3\", features = [\"otlp-logs\", \"otlp-metrics\", \"otlp-tracing\"] }","breadcrumbs":"Installation » With Optional Features","id":"107","title":"With Optional Features"},"1070":{"body":"Requires AWS account Network latency Storage costs IAM configuration needed","breadcrumbs":"Storage Backends » Considerations","id":"1070","title":"Considerations"},"1071":{"body":"Minimum required permissions: { \"Version\": \"2012-10-17\", \"Statement\": [ { \"Effect\": \"Allow\", \"Action\": [ \"s3:GetObject\", \"s3:PutObject\", \"s3:DeleteObject\", \"s3:ListBucket\" ], \"Resource\": [ \"arn:aws:s3:::my-jacs-bucket\", \"arn:aws:s3:::my-jacs-bucket/*\" ] } ]\n}","breadcrumbs":"Storage Backends » IAM Policy","id":"1071","title":"IAM Policy"},"1072":{"body":"import jacs\nimport json\nimport os # Set AWS credentials\nos.environ['AWS_ACCESS_KEY_ID'] = 'your-key'\nos.environ['AWS_SECRET_ACCESS_KEY'] = 'your-secret'\nos.environ['AWS_REGION'] = 'us-east-1' agent = jacs.JacsAgent()\nagent.load('./jacs.s3.config.json') # Documents are saved to S3\ndoc = agent.create_document(json.dumps({ 'title': 'Cloud Document'\n}))","breadcrumbs":"Storage Backends » Example","id":"1072","title":"Example"},"1073":{"body":"Managed storage provided by HAI.","breadcrumbs":"Storage Backends » HAI Cloud Storage (hai)","id":"1073","title":"HAI Cloud Storage (hai)"},"1074":{"body":"{ \"jacs_default_storage\": \"hai\"\n}","breadcrumbs":"Storage Backends » Configuration","id":"1074","title":"Configuration"},"1075":{"body":"Managed infrastructure Built-in agent registry Cross-organization document sharing Integrated DNS verification","breadcrumbs":"Storage Backends » Features","id":"1075","title":"Features"},"1076":{"body":"Multi-agent ecosystems Cross-organization collaboration Managed deployments Integration with HAI services","breadcrumbs":"Storage Backends » Use Cases","id":"1076","title":"Use Cases"},"1077":{"body":"The database storage backend stores JACS documents in PostgreSQL, enabling JSONB queries, pagination, and agent-based lookups while preserving cryptographic signatures. This backend is behind a compile-time feature flag and requires the database Cargo feature to be enabled.","breadcrumbs":"Storage Backends » PostgreSQL Database Storage (database)","id":"1077","title":"PostgreSQL Database Storage (database)"},"1078":{"body":"# Build with database support\ncargo build --features database # Run tests with database support (requires Docker for testcontainers)\ncargo test --features database-tests","breadcrumbs":"Storage Backends » Compile-Time Setup","id":"1078","title":"Compile-Time Setup"},"1079":{"body":"{ \"jacs_default_storage\": \"database\"\n} Environment variables (12-Factor compliant): export JACS_DATABASE_URL=\"postgres://user:password@localhost:5432/jacs\"\nexport JACS_DATABASE_MAX_CONNECTIONS=10 # optional, default 10\nexport JACS_DATABASE_MIN_CONNECTIONS=1 # optional, default 1\nexport JACS_DATABASE_CONNECT_TIMEOUT_SECS=30 # optional, default 30","breadcrumbs":"Storage Backends » Configuration","id":"1079","title":"Configuration"},"108":{"body":"Feature Description cli Enables CLI binary build with clap and ratatui otlp-logs OpenTelemetry Protocol logging backend otlp-metrics OpenTelemetry Protocol metrics backend otlp-tracing OpenTelemetry Protocol distributed tracing observability-convenience Helper wrappers for metrics and logging mcp-server Model Context Protocol server integration surface","breadcrumbs":"Installation » Available Features","id":"108","title":"Available Features"},"1080":{"body":"JACS uses a TEXT + JSONB dual-column strategy: raw_contents (TEXT) : Stores the exact JSON bytes as-is. This is used when retrieving documents to preserve cryptographic signatures (PostgreSQL JSONB normalizes key ordering, which would break signatures). file_contents (JSONB) : Stores the same document as JSONB for efficient queries, field extraction, and indexing.","breadcrumbs":"Storage Backends » How It Works","id":"1080","title":"How It Works"},"1081":{"body":"CREATE TABLE jacs_document ( jacs_id TEXT NOT NULL, jacs_version TEXT NOT NULL, agent_id TEXT, jacs_type TEXT NOT NULL, raw_contents TEXT NOT NULL, file_contents JSONB NOT NULL, created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(), PRIMARY KEY (jacs_id, jacs_version)\n);","breadcrumbs":"Storage Backends » Table Schema","id":"1081","title":"Table Schema"},"1082":{"body":"Documents are immutable once stored . New versions create new rows keyed by (jacs_id, jacs_version). There are no UPDATE operations on existing rows. Inserting a duplicate (jacs_id, jacs_version) is silently ignored (ON CONFLICT DO NOTHING).","breadcrumbs":"Storage Backends » Append-Only Model","id":"1082","title":"Append-Only Model"},"1083":{"body":"The database backend provides additional query methods beyond basic CRUD: Method Description query_by_type(type, limit, offset) Paginated queries by document type query_by_field(field, value, type, limit, offset) JSONB field queries count_by_type(type) Count documents by type get_versions(id) All versions of a document get_latest(id) Most recent version query_by_agent(agent_id, type, limit, offset) Documents by signing agent","breadcrumbs":"Storage Backends » Query Capabilities","id":"1083","title":"Query Capabilities"},"1084":{"body":"use jacs::storage::{DatabaseStorage, DatabaseDocumentTraits, StorageDocumentTraits}; // Create storage (requires tokio runtime)\nlet storage = DatabaseStorage::new( \"postgres://localhost/jacs\", Some(10), // max connections Some(1), // min connections Some(30), // timeout seconds\n)?; // Run migrations (creates table + indexes)\nstorage.run_migrations()?; // Store a document\nstorage.store_document(&doc)?; // Query by type with pagination\nlet commitments = storage.query_by_type(\"commitment\", 10, 0)?; // Query by JSONB field\nlet active = storage.query_by_field( \"jacsCommitmentStatus\", \"active\", Some(\"commitment\"), 10, 0\n)?; // Get latest version\nlet latest = storage.get_latest(\"some-document-id\")?;","breadcrumbs":"Storage Backends » Rust API Example","id":"1084","title":"Rust API Example"},"1085":{"body":"Even when using database storage, keys are always loaded from the filesystem or keyservers -- never from the database or configuration providers. The database stores only signed documents.","breadcrumbs":"Storage Backends » Security Note","id":"1085","title":"Security Note"},"1086":{"body":"Production deployments requiring complex queries Multi-agent systems with shared document visibility Applications needing pagination and aggregation Environments where JSONB indexing provides significant query performance","breadcrumbs":"Storage Backends » Use Cases","id":"1086","title":"Use Cases"},"1087":{"body":"Requires PostgreSQL 14+ Requires tokio runtime (not available in WASM) Compile-time feature flag (database) Network dependency on PostgreSQL server","breadcrumbs":"Storage Backends » Considerations","id":"1087","title":"Considerations"},"1088":{"body":"For testing and temporary operations, documents can be created without saving: # Create document without saving\ndoc = agent.create_document( json.dumps({'temp': 'data'}), no_save=True # Don't persist\n) const doc = agent.createDocument( JSON.stringify({ temp: 'data' }), null, // custom_schema null, // output_filename true // no_save = true\n);","breadcrumbs":"Storage Backends » In-Memory Storage","id":"1088","title":"In-Memory Storage"},"1089":{"body":"Scenario Recommended Backend Development fs Single server fs Complex queries needed database Multi-agent with shared queries database Cloud deployment aws High availability aws Multi-organization hai Testing In-memory (no_save)","breadcrumbs":"Storage Backends » Storage Selection Guide","id":"1089","title":"Storage Selection Guide"},"109":{"body":"JACS supports the following platforms: Platform Architecture Support Linux x86_64, aarch64 Full support macOS x86_64, aarch64 Full support Windows x86_64 Full support WebAssembly wasm32 Partial (no post-quantum crypto, limited storage)","breadcrumbs":"Installation » Platform Support","id":"109","title":"Platform Support"},"1090":{"body":"","breadcrumbs":"Storage Backends » File Storage","id":"1090","title":"File Storage"},"1091":{"body":"Files can be embedded directly in documents: doc = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n) The file contents are base64-encoded and stored in jacsFiles.","breadcrumbs":"Storage Backends » Embedded Files","id":"1091","title":"Embedded Files"},"1092":{"body":"Or reference files without embedding: doc = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=False\n) Only the file path and hash are stored. The file must be available when the document is accessed.","breadcrumbs":"Storage Backends » External Files","id":"1092","title":"External Files"},"1093":{"body":"","breadcrumbs":"Storage Backends » Data Migration","id":"1093","title":"Data Migration"},"1094":{"body":"import jacs\nimport json\nimport os # Load from filesystem\nfs_agent = jacs.JacsAgent()\nfs_agent.load('./jacs.fs.config.json') # Read all documents\n# (implementation depends on your document tracking) # Configure S3\ns3_agent = jacs.JacsAgent()\ns3_agent.load('./jacs.s3.config.json') # Re-create documents in S3\nfor doc_json in documents: doc = json.loads(doc_json) # Remove existing signatures for re-signing del doc['jacsSignature'] del doc['jacsSha256'] s3_agent.create_document(json.dumps(doc))","breadcrumbs":"Storage Backends » Filesystem to S3","id":"1094","title":"Filesystem to S3"},"1095":{"body":"For manual migration: # Export from filesystem\ntar -czf jacs_backup.tar.gz ./jacs_data # Import to new location\ntar -xzf jacs_backup.tar.gz -C /new/location","breadcrumbs":"Storage Backends » Export/Import","id":"1095","title":"Export/Import"},"1096":{"body":"","breadcrumbs":"Storage Backends » Backup and Recovery","id":"1096","title":"Backup and Recovery"},"1097":{"body":"# Regular backups\nrsync -av ./jacs_data/ /backup/jacs_data/ # Or with timestamp\ntar -czf jacs_backup_$(date +%Y%m%d).tar.gz ./jacs_data","breadcrumbs":"Storage Backends » Filesystem Backup","id":"1097","title":"Filesystem Backup"},"1098":{"body":"Enable S3 versioning for automatic backups: aws s3api put-bucket-versioning \\ --bucket my-jacs-bucket \\ --versioning-configuration Status=Enabled","breadcrumbs":"Storage Backends » S3 Backup","id":"1098","title":"S3 Backup"},"1099":{"body":"For disaster recovery with S3: aws s3api put-bucket-replication \\ --bucket my-jacs-bucket \\ --replication-configuration file://replication.json","breadcrumbs":"Storage Backends » Cross-Region Replication","id":"1099","title":"Cross-Region Replication"},"11":{"body":"JACS is ideal for scenarios where you need: Multi-agent systems where agents need to trust each other Task delegation with verifiable completion and approval Audit trails for AI decision-making processes Secure data exchange between AI systems Compliance requirements for AI system interactions Version control for AI-generated content and decisions","breadcrumbs":"Introduction » When to Use JACS","id":"11","title":"When to Use JACS"},"110":{"body":"When targeting WebAssembly, some features are unavailable: Post-quantum cryptographic algorithms (pq-dilithium) File system storage backend HTTP-based remote operations","breadcrumbs":"Installation » WebAssembly Notes","id":"110","title":"WebAssembly Notes"},"1100":{"body":"","breadcrumbs":"Storage Backends » Performance Optimization","id":"1100","title":"Performance Optimization"},"1101":{"body":"Use SSD storage Consider separate disk for jacs_data Enable filesystem caching","breadcrumbs":"Storage Backends » Filesystem","id":"1101","title":"Filesystem"},"1102":{"body":"Use regional endpoints Enable transfer acceleration for global access Consider S3 Intelligent-Tiering for cost optimization","breadcrumbs":"Storage Backends » S3","id":"1102","title":"S3"},"1103":{"body":"Implement application-level caching for frequently accessed documents: import functools @functools.lru_cache(maxsize=100)\ndef get_document(doc_id, version_id): return agent.get_document(f\"{doc_id}:{version_id}\")","breadcrumbs":"Storage Backends » Caching","id":"1103","title":"Caching"},"1104":{"body":"","breadcrumbs":"Storage Backends » Security Considerations","id":"1104","title":"Security Considerations"},"1105":{"body":"# Restrict permissions\nchmod 700 ./jacs_data\nchmod 600 ./jacs_data/**/*.json","breadcrumbs":"Storage Backends » Filesystem","id":"1105","title":"Filesystem"},"1106":{"body":"Enable encryption at rest (SSE-S3 or SSE-KMS) Use VPC endpoints for private access Enable access logging Configure bucket policies carefully { \"jacs_data_directory\": \"s3://my-jacs-bucket/data\", \"aws_s3_encryption\": \"AES256\"\n}","breadcrumbs":"Storage Backends » S3","id":"1106","title":"S3"},"1107":{"body":"Configuration - Storage configuration options Security Model - Storage security Quick Start - Initial setup","breadcrumbs":"Storage Backends » See Also","id":"1107","title":"See Also"},"1108":{"body":"JACS allows you to define custom document schemas that extend the base header schema, enabling type-safe, validated documents for your specific use cases.","breadcrumbs":"Custom Schemas » Custom Schemas","id":"1108","title":"Custom Schemas"},"1109":{"body":"Custom schemas: Inherit all JACS header fields (jacsId, jacsVersion, jacsSignature, etc.) Add domain-specific fields with validation Enable IDE autocompletion and type checking Ensure document consistency across your application","breadcrumbs":"Custom Schemas » Overview","id":"1109","title":"Overview"},"111":{"body":"After installation, initialize JACS: # Create configuration and agent in one step\njacs init This creates: ~/.jacs/jacs.config.json - Configuration file Cryptographic keys for your agent Initial agent document","breadcrumbs":"Installation » Configuration","id":"111","title":"Configuration"},"1110":{"body":"","breadcrumbs":"Custom Schemas » Creating a Custom Schema","id":"1110","title":"Creating a Custom Schema"},"1111":{"body":"Custom schemas extend the JACS header using allOf: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"description\": \"Invoice document with JACS signing\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0 }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"] } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"Custom Schemas » Basic Structure","id":"1111","title":"Basic Structure"},"1112":{"body":"Create the schema file // schemas/order.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://mycompany.com/schemas/order.schema.json\", \"title\": \"Order\", \"description\": \"E-commerce order document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"orderId\": { \"type\": \"string\", \"pattern\": \"^ORD-[0-9]{6}$\" }, \"customer\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"email\": { \"type\": \"string\", \"format\": \"email\" } }, \"required\": [\"name\", \"email\"] }, \"items\": { \"type\": \"array\", \"minItems\": 1, \"items\": { \"type\": \"object\", \"properties\": { \"sku\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"price\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"sku\", \"quantity\", \"price\"] } }, \"total\": { \"type\": \"number\", \"minimum\": 0 }, \"status\": { \"type\": \"string\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }, \"required\": [\"orderId\", \"customer\", \"items\", \"total\", \"status\"] } ]\n} Use the schema when creating documents import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') order = agent.create_document( json.dumps({ 'orderId': 'ORD-123456', 'customer': { 'name': 'Jane Smith', 'email': 'jane@example.com' }, 'items': [ {'sku': 'WIDGET-001', 'quantity': 2, 'price': 29.99} ], 'total': 59.98, 'status': 'pending' }), custom_schema='./schemas/order.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const order = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane Smith', email: 'jane@example.com' }, items: [ { sku: 'WIDGET-001', quantity: 2, price: 29.99 } ], total: 59.98, status: 'pending' }), './schemas/order.schema.json'\n);","breadcrumbs":"Custom Schemas » Step-by-Step Guide","id":"1112","title":"Step-by-Step Guide"},"1113":{"body":"","breadcrumbs":"Custom Schemas » Schema Best Practices","id":"1113","title":"Schema Best Practices"},"1114":{"body":"{ \"$id\": \"https://mycompany.com/schemas/v1/order.schema.json\"\n} Include version in the path for schema evolution.","breadcrumbs":"Custom Schemas » Use Meaningful IDs","id":"1114","title":"Use Meaningful IDs"},"1115":{"body":"{ \"properties\": { \"status\": { \"type\": \"string\", \"description\": \"Current order status in the fulfillment workflow\", \"enum\": [\"pending\", \"processing\", \"shipped\", \"delivered\", \"cancelled\"] } }\n}","breadcrumbs":"Custom Schemas » Document Everything","id":"1115","title":"Document Everything"},"1116":{"body":"{ \"properties\": { \"email\": { \"type\": \"string\", \"format\": \"email\" }, \"phone\": { \"type\": \"string\", \"pattern\": \"^\\\\+?[1-9]\\\\d{1,14}$\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1, \"maximum\": 1000 } }\n}","breadcrumbs":"Custom Schemas » Use Appropriate Validation","id":"1116","title":"Use Appropriate Validation"},"1117":{"body":"{ \"properties\": { \"shipping\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } }, \"billing\": { \"type\": \"object\", \"properties\": { \"address\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } } } }\n}","breadcrumbs":"Custom Schemas » Group Related Fields","id":"1117","title":"Group Related Fields"},"1118":{"body":"","breadcrumbs":"Custom Schemas » Advanced Schema Features","id":"1118","title":"Advanced Schema Features"},"1119":{"body":"Different requirements based on field values: { \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\", \"enum\": [\"credit_card\", \"bank_transfer\", \"crypto\"] } } } ], \"if\": { \"properties\": { \"paymentMethod\": { \"const\": \"credit_card\" } } }, \"then\": { \"properties\": { \"cardLastFour\": { \"type\": \"string\", \"pattern\": \"^[0-9]{4}$\" } }, \"required\": [\"cardLastFour\"] }\n}","breadcrumbs":"Custom Schemas » Conditional Validation","id":"1119","title":"Conditional Validation"},"112":{"body":"Alternatively, create configuration and agent separately: # Create configuration only\njacs config create # Create agent with keys\njacs agent create --create-keys true","breadcrumbs":"Installation » Manual Configuration","id":"112","title":"Manual Configuration"},"1120":{"body":"{ \"$defs\": { \"address\": { \"type\": \"object\", \"properties\": { \"street\": { \"type\": \"string\" }, \"city\": { \"type\": \"string\" }, \"country\": { \"type\": \"string\" }, \"postalCode\": { \"type\": \"string\" } }, \"required\": [\"street\", \"city\", \"country\"] } }, \"properties\": { \"shippingAddress\": { \"$ref\": \"#/$defs/address\" }, \"billingAddress\": { \"$ref\": \"#/$defs/address\" } }\n}","breadcrumbs":"Custom Schemas » Reusable Definitions","id":"1120","title":"Reusable Definitions"},"1121":{"body":"{ \"properties\": { \"tags\": { \"type\": \"array\", \"items\": { \"type\": \"string\" }, \"minItems\": 1, \"maxItems\": 10, \"uniqueItems\": true } }\n}","breadcrumbs":"Custom Schemas » Array Constraints","id":"1121","title":"Array Constraints"},"1122":{"body":"For dynamic field names: { \"properties\": { \"metadata\": { \"type\": \"object\", \"patternProperties\": { \"^x-\": { \"type\": \"string\" } }, \"additionalProperties\": false } }\n}","breadcrumbs":"Custom Schemas » Pattern Properties","id":"1122","title":"Pattern Properties"},"1123":{"body":"","breadcrumbs":"Custom Schemas » Schema Inheritance","id":"1123","title":"Schema Inheritance"},"1124":{"body":"Create schema hierarchies: // schemas/base-transaction.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/base-transaction.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"transactionId\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"amount\": { \"type\": \"number\" } }, \"required\": [\"transactionId\", \"timestamp\", \"amount\"] } ]\n} // schemas/payment.schema.json\n{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/payment.schema.json\", \"allOf\": [ { \"$ref\": \"https://example.com/schemas/base-transaction.schema.json\" }, { \"type\": \"object\", \"properties\": { \"paymentMethod\": { \"type\": \"string\" }, \"processorId\": { \"type\": \"string\" } }, \"required\": [\"paymentMethod\"] } ]\n}","breadcrumbs":"Custom Schemas » Extending Custom Schemas","id":"1124","title":"Extending Custom Schemas"},"1125":{"body":"","breadcrumbs":"Custom Schemas » Validation","id":"1125","title":"Validation"},"1126":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') try: # This will fail validation - missing required field doc = agent.create_document( json.dumps({ 'orderId': 'ORD-123456' # Missing: customer, items, total, status }), custom_schema='./schemas/order.schema.json' )\nexcept Exception as e: print(f\"Validation failed: {e}\")","breadcrumbs":"Custom Schemas » Python Validation","id":"1126","title":"Python Validation"},"1127":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); try { // This will fail - invalid enum value const doc = agent.createDocument( JSON.stringify({ orderId: 'ORD-123456', customer: { name: 'Jane', email: 'jane@example.com' }, items: [{ sku: 'A', quantity: 1, price: 10 }], total: 10, status: 'invalid_status' // Not in enum }), './schemas/order.schema.json' );\n} catch (error) { console.error('Validation failed:', error.message);\n}","breadcrumbs":"Custom Schemas » Node.js Validation","id":"1127","title":"Node.js Validation"},"1128":{"body":"","breadcrumbs":"Custom Schemas » Example Schemas","id":"1128","title":"Example Schemas"},"1129":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://healthcare.example.com/schemas/medical-record.schema.json\", \"title\": \"Medical Record\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"patientId\": { \"type\": \"string\" }, \"recordType\": { \"type\": \"string\", \"enum\": [\"visit\", \"lab_result\", \"prescription\", \"diagnosis\"] }, \"provider\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"npi\": { \"type\": \"string\", \"pattern\": \"^[0-9]{10}$\" } } }, \"date\": { \"type\": \"string\", \"format\": \"date\" }, \"notes\": { \"type\": \"string\" }, \"confidential\": { \"type\": \"boolean\", \"default\": true } }, \"required\": [\"patientId\", \"recordType\", \"provider\", \"date\"] } ]\n}","breadcrumbs":"Custom Schemas » Medical Record","id":"1129","title":"Medical Record"},"113":{"body":"JACS respects the following environment variables: Variable Description Default JACS_CONFIG_PATH Path to configuration file ./jacs.config.json JACS_USE_SECURITY Enable/disable security features true JACS_DATA_DIRECTORY Directory for document storage ./jacs_data JACS_KEY_DIRECTORY Directory for cryptographic keys ./jacs_keys JACS_DEFAULT_STORAGE Storage backend (fs, memory) fs JACS_AGENT_KEY_ALGORITHM Key algorithm (ring-Ed25519, RSA-PSS, pq-dilithium) ring-Ed25519","breadcrumbs":"Installation » Environment Variables","id":"113","title":"Environment Variables"},"1130":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://legal.example.com/schemas/contract.schema.json\", \"title\": \"Legal Contract\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"contractNumber\": { \"type\": \"string\" }, \"parties\": { \"type\": \"array\", \"minItems\": 2, \"items\": { \"type\": \"object\", \"properties\": { \"name\": { \"type\": \"string\" }, \"role\": { \"type\": \"string\" }, \"agentId\": { \"type\": \"string\", \"format\": \"uuid\" } } } }, \"effectiveDate\": { \"type\": \"string\", \"format\": \"date\" }, \"expirationDate\": { \"type\": \"string\", \"format\": \"date\" }, \"terms\": { \"type\": \"string\" }, \"jurisdiction\": { \"type\": \"string\" } }, \"required\": [\"contractNumber\", \"parties\", \"effectiveDate\", \"terms\"] } ]\n}","breadcrumbs":"Custom Schemas » Legal Contract","id":"1130","title":"Legal Contract"},"1131":{"body":"{ \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://iot.example.com/schemas/sensor-reading.schema.json\", \"title\": \"Sensor Reading\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"deviceId\": { \"type\": \"string\" }, \"sensorType\": { \"type\": \"string\", \"enum\": [\"temperature\", \"humidity\", \"pressure\", \"motion\"] }, \"value\": { \"type\": \"number\" }, \"unit\": { \"type\": \"string\" }, \"timestamp\": { \"type\": \"string\", \"format\": \"date-time\" }, \"location\": { \"type\": \"object\", \"properties\": { \"latitude\": { \"type\": \"number\" }, \"longitude\": { \"type\": \"number\" } } } }, \"required\": [\"deviceId\", \"sensorType\", \"value\", \"timestamp\"] } ]\n}","breadcrumbs":"Custom Schemas » IoT Sensor Reading","id":"1131","title":"IoT Sensor Reading"},"1132":{"body":"","breadcrumbs":"Custom Schemas » Schema Versioning","id":"1132","title":"Schema Versioning"},"1133":{"body":"{ \"$id\": \"https://example.com/schemas/v1/order.schema.json\"\n}","breadcrumbs":"Custom Schemas » Version in Path","id":"1133","title":"Version in Path"},"1134":{"body":"{ \"properties\": { \"schemaVersion\": { \"type\": \"string\", \"const\": \"1.0.0\" } }\n}","breadcrumbs":"Custom Schemas » Version Field","id":"1134","title":"Version Field"},"1135":{"body":"Create new schema version Update application to support both versions Migrate existing documents Deprecate old version","breadcrumbs":"Custom Schemas » Migration Strategy","id":"1135","title":"Migration Strategy"},"1136":{"body":"JSON Schemas Overview - Built-in schemas Document Schema - Header fields Configuration - Schema configuration","breadcrumbs":"Custom Schemas » See Also","id":"1136","title":"See Also"},"1137":{"body":"This chapter covers testing strategies for applications that use JACS, including unit testing, integration testing, and mocking approaches.","breadcrumbs":"Testing » Testing","id":"1137","title":"Testing"},"1138":{"body":"","breadcrumbs":"Testing » Testing Fundamentals","id":"1138","title":"Testing Fundamentals"},"1139":{"body":"Create dedicated test configurations to isolate tests from production: // jacs.test.config.json\n{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./test_data\", \"jacs_key_directory\": \"./test_keys\", \"jacs_agent_private_key_filename\": \"test_private.pem\", \"jacs_agent_public_key_filename\": \"test_public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Testing » Test Agent Setup","id":"1139","title":"Test Agent Setup"},"114":{"body":"","breadcrumbs":"Installation » Troubleshooting","id":"114","title":"Troubleshooting"},"1140":{"body":"Set up test fixtures before running tests: Python (pytest) : import pytest\nimport jacs\nimport tempfile\nimport shutil @pytest.fixture\ndef test_agent(): \"\"\"Create a test agent with temporary directories.\"\"\" temp_dir = tempfile.mkdtemp() data_dir = f\"{temp_dir}/data\" key_dir = f\"{temp_dir}/keys\" # Initialize directories import os os.makedirs(data_dir) os.makedirs(key_dir) # Create test config config = { \"jacs_data_directory\": data_dir, \"jacs_key_directory\": key_dir, \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = f\"{temp_dir}/jacs.config.json\" with open(config_path, 'w') as f: import json json.dump(config, f) agent = jacs.JacsAgent() agent.load(config_path) yield agent # Cleanup shutil.rmtree(temp_dir) def test_create_document(test_agent): \"\"\"Test document creation.\"\"\" import json doc = test_agent.create_document(json.dumps({ 'title': 'Test Document' })) assert doc is not None parsed = json.loads(doc) assert 'jacsId' in parsed assert 'jacsSignature' in parsed Node.js (Jest) : import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Tests', () => { let agent; let tempDir; beforeAll(() => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; const configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); agent = new JacsAgent(); agent.load(configPath); }); afterAll(() => { // Cleanup fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', () => { const doc = agent.createDocument(JSON.stringify({ title: 'Test Document' })); const parsed = JSON.parse(doc); expect(parsed.jacsId).toBeDefined(); expect(parsed.jacsSignature).toBeDefined(); });\n});","breadcrumbs":"Testing » Test Fixtures","id":"1140","title":"Test Fixtures"},"1141":{"body":"","breadcrumbs":"Testing » Unit Testing","id":"1141","title":"Unit Testing"},"1142":{"body":"import pytest\nimport jacs\nimport json def test_document_verification(test_agent): \"\"\"Test that created documents verify correctly.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Test content' })) is_valid = test_agent.verify_document(doc) assert is_valid is True def test_document_tampering_detected(test_agent): \"\"\"Test that tampered documents fail verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'content': 'Original content' })) # Tamper with the document parsed = json.loads(doc) parsed['content'] = 'Tampered content' tampered = json.dumps(parsed) is_valid = test_agent.verify_document(tampered) assert is_valid is False def test_signature_verification(test_agent): \"\"\"Test signature verification.\"\"\" doc = test_agent.create_document(json.dumps({ 'data': 'test' })) is_valid = test_agent.verify_signature(doc) assert is_valid is True","breadcrumbs":"Testing » Testing Document Operations","id":"1142","title":"Testing Document Operations"},"1143":{"body":"def test_agreement_creation(test_agent): \"\"\"Test creating a document with agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Service Agreement' })) # Add agreement doc_with_agreement = test_agent.create_agreement( doc, ['agent-1-id', 'agent-2-id'], question='Do you agree to these terms?', context='Test agreement' ) parsed = json.loads(doc_with_agreement) assert 'jacsAgreement' in parsed assert len(parsed['jacsAgreement']['agentIDs']) == 2 def test_agreement_signing(test_agent): \"\"\"Test signing an agreement.\"\"\" doc = test_agent.create_document(json.dumps({ 'contract': 'Test' })) agent_json = test_agent.load('./jacs.test.config.json') agent_data = json.loads(agent_json) agent_id = agent_data['jacsId'] doc_with_agreement = test_agent.create_agreement( doc, [agent_id], question='Agree?' ) signed = test_agent.sign_agreement(doc_with_agreement) status_json = test_agent.check_agreement(signed) status = json.loads(status_json) assert status['complete'] is True","breadcrumbs":"Testing » Testing Agreements","id":"1143","title":"Testing Agreements"},"1144":{"body":"check_agreement() is intentionally strict: it should fail until all required signers have signed. Add explicit tests for each state: Unsigned agreement: must fail. Partially signed agreement: must still fail. Fully signed agreement: must pass with complete == true. This prevents accidental \"partial approval\" workflows in production.","breadcrumbs":"Testing » Agreement Completion Semantics (Strict)","id":"1144","title":"Agreement Completion Semantics (Strict)"},"1145":{"body":"For realistic interoperability tests, use two separate agents with: Separate key directories (agent1/keys, agent2/keys) Shared data directory (shared-data) so both public keys are locally resolvable Relative paths from a temporary test working directory Python (pytest) : def test_two_party_agreement_requires_both_signatures(tmp_path): import os import pytest import jacs.simple as simple (tmp_path / \"shared-data\").mkdir() (tmp_path / \"agent1\").mkdir() (tmp_path / \"agent2\").mkdir() original_cwd = os.getcwd() try: os.chdir(tmp_path) a1 = simple.create( name=\"agent-1\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent1/keys\", config_path=\"agent1/jacs.config.json\", ) a2 = simple.create( name=\"agent-2\", password=\"TestP@ss123!#\", algorithm=\"ring-Ed25519\", data_directory=\"shared-data\", key_directory=\"agent2/keys\", config_path=\"agent2/jacs.config.json\", ) simple.load(\"agent1/jacs.config.json\") agreement = simple.create_agreement( {\"proposal\": \"two-party-approval\"}, [a1.agent_id, a2.agent_id], question=\"Approve?\", ) with pytest.raises(Exception): simple.check_agreement(agreement) signed_by_a1 = simple.sign_agreement(agreement) with pytest.raises(Exception): simple.check_agreement(signed_by_a1) simple.load(\"agent2/jacs.config.json\") signed_by_both = simple.sign_agreement(signed_by_a1) status = simple.check_agreement(signed_by_both) assert status.complete is True finally: os.chdir(original_cwd) Node.js (Mocha/Jest style) : const root = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-two-agent-'));\nconst originalCwd = process.cwd();\ntry { process.chdir(root); fs.mkdirSync('agent1', { recursive: true }); fs.mkdirSync('agent2', { recursive: true }); simpleA.create({ name: 'agent-a', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent1/keys', configPath: 'agent1/jacs.config.json' }); simpleB.create({ name: 'agent-b', password: 'TestP@ss123!#', algorithm: 'ring-Ed25519', dataDirectory: 'shared-data', keyDirectory: 'agent2/keys', configPath: 'agent2/jacs.config.json' }); simpleA.load('agent1/jacs.config.json'); simpleB.load('agent2/jacs.config.json'); const infoA = simpleA.getAgentInfo(); const infoB = simpleB.getAgentInfo(); const agreement = simpleA.createAgreement( { proposal: 'two-party-approval' }, [infoA.agentId, infoB.agentId] ); expect(() => simpleA.checkAgreement(agreement)).to.throw(); const signedByA = simpleA.signAgreement(agreement); expect(() => simpleA.checkAgreement(signedByA)).to.throw(); const signedByBoth = simpleB.signAgreement(signedByA); const status = simpleB.checkAgreement(signedByBoth); expect(status.complete).to.equal(true);\n} finally { process.chdir(originalCwd); fs.rmSync(root, { recursive: true, force: true });\n}","breadcrumbs":"Testing » Two-Agent Agreement Harness (Separate Agents)","id":"1145","title":"Two-Agent Agreement Harness (Separate Agents)"},"1146":{"body":"def test_request_signing(test_agent): \"\"\"Test signing a request payload.\"\"\" payload = { 'method': 'tools/call', 'params': {'name': 'test_tool'} } signed = test_agent.sign_request(payload) assert signed is not None # Verify the signed request result = test_agent.verify_response(signed) assert result is not None assert 'payload' in result","breadcrumbs":"Testing » Testing Request/Response Signing","id":"1146","title":"Testing Request/Response Signing"},"1147":{"body":"","breadcrumbs":"Testing » Integration Testing","id":"1147","title":"Integration Testing"},"1148":{"body":"Python : import pytest\nimport asyncio\nfrom jacs.mcp import JACSMCPServer, JACSMCPClient\nfrom fastmcp import FastMCP @pytest.fixture\ndef mcp_server(test_agent): \"\"\"Create a test MCP server.\"\"\" mcp = FastMCP(\"Test Server\") @mcp.tool() def echo(text: str) -> str: return f\"Echo: {text}\" return JACSMCPServer(mcp) @pytest.mark.asyncio\nasync def test_mcp_tool_call(mcp_server, test_agent): \"\"\"Test calling an MCP tool with JACS authentication.\"\"\" # This would require setting up actual server/client connection # For unit testing, test the signing/verification separately pass Node.js : import { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport express from 'express';\nimport request from 'supertest'; describe('JACS Express Middleware', () => { let app; let agent; beforeAll(() => { app = express(); app.use('/api', express.text({ type: '*/*' })); app.use('/api', JACSExpressMiddleware({ configPath: './jacs.test.config.json' })); app.post('/api/echo', (req, res) => { res.send({ echo: req.jacsPayload }); }); agent = new JacsAgent(); agent.load('./jacs.test.config.json'); }); test('accepts valid JACS requests', async () => { const signedRequest = agent.signRequest({ message: 'Hello' }); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); }); test('rejects invalid requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Testing » Testing MCP Integration","id":"1148","title":"Testing MCP Integration"},"1149":{"body":"import pytest\nfrom fastapi import FastAPI\nfrom fastapi.testclient import TestClient\nimport jacs\nimport json app = FastAPI() @app.post(\"/api/document\")\nasync def create_doc(request_body: str): agent = jacs.JacsAgent() agent.load('./jacs.test.config.json') result = agent.verify_response(request_body) if result: # Process the verified payload return {\"status\": \"success\", \"payload\": result.get(\"payload\")} return {\"status\": \"error\"} @pytest.fixture\ndef client(): return TestClient(app) def test_endpoint_accepts_signed_request(client, test_agent): \"\"\"Test that endpoint accepts properly signed requests.\"\"\" signed = test_agent.sign_request({ 'action': 'create', 'data': {'title': 'Test'} }) response = client.post(\"/api/document\", content=signed) assert response.status_code == 200","breadcrumbs":"Testing » Testing HTTP Endpoints","id":"1149","title":"Testing HTTP Endpoints"},"115":{"body":"\"edition 2024 is required\" Update Rust to version 1.93 or later: rustup update stable Missing dependencies on Linux Install build essentials: # Debian/Ubuntu\nsudo apt-get install build-essential pkg-config libssl-dev # Fedora\nsudo dnf install gcc openssl-devel","breadcrumbs":"Installation » Build Errors","id":"115","title":"Build Errors"},"1150":{"body":"","breadcrumbs":"Testing » Mocking","id":"1150","title":"Mocking"},"1151":{"body":"Python : from unittest.mock import Mock, patch\nimport json def test_with_mocked_agent(): \"\"\"Test with a mocked JACS agent.\"\"\" mock_agent = Mock() # Mock create_document to return a fake signed document mock_agent.create_document.return_value = json.dumps({ 'jacsId': 'mock-id', 'jacsVersion': 'mock-version', 'content': 'test', 'jacsSignature': {'signature': 'mock-sig'} }) # Mock verify_document to always return True mock_agent.verify_document.return_value = True # Use the mock in your tests doc = mock_agent.create_document(json.dumps({'content': 'test'})) assert mock_agent.verify_document(doc) is True Node.js : // Mock for testing\nconst mockAgent = { createDocument: jest.fn().mockReturnValue(JSON.stringify({ jacsId: 'mock-id', jacsVersion: 'mock-version', content: 'test', jacsSignature: { signature: 'mock-sig' } })), verifyDocument: jest.fn().mockReturnValue(true), signRequest: jest.fn().mockImplementation((payload) => JSON.stringify({ payload, jacsSignature: { signature: 'mock' } }) ), verifyResponse: jest.fn().mockImplementation((response) => ({ payload: JSON.parse(response).payload }) )\n}; test('uses mocked agent', () => { const doc = mockAgent.createDocument(JSON.stringify({ test: true })); expect(mockAgent.createDocument).toHaveBeenCalled(); expect(mockAgent.verifyDocument(doc)).toBe(true);\n});","breadcrumbs":"Testing » Mocking JACS Agent","id":"1151","title":"Mocking JACS Agent"},"1152":{"body":"// Mock transport for MCP testing\nclass MockTransport { constructor() { this.messages = []; } send(message) { this.messages.push(message); } async receive() { return this.messages.shift(); }\n} test('MCP client with mock transport', async () => { const mockTransport = new MockTransport(); // Use mock transport in tests\n});","breadcrumbs":"Testing » Mocking MCP Transport","id":"1152","title":"Mocking MCP Transport"},"1153":{"body":"","breadcrumbs":"Testing » Test Coverage","id":"1153","title":"Test Coverage"},"1154":{"body":"For Rust coverage, we recommend cargo-llvm-cov for its cross-platform support and accuracy with cryptographic code. Installation: cargo install cargo-llvm-cov Running coverage: # Print coverage summary to stdout\ncargo llvm-cov # Generate and open HTML report in browser\ncargo llvm-cov --open # With specific features enabled\ncargo llvm-cov --features cli # Export LCOV format for CI integration\ncargo llvm-cov --lcov --output-path lcov.info Why cargo-llvm-cov? Factor cargo-llvm-cov tarpaulin Platform support Linux, macOS, Windows Linux primarily Accuracy LLVM source-based (highly accurate) Ptrace-based (some inaccuracies) Coverage types Line, region, branch Line primarily For CI integration, export to LCOV format and upload to Codecov or similar services.","breadcrumbs":"Testing » Rust Coverage","id":"1154","title":"Rust Coverage"},"1155":{"body":"# Run tests with coverage\npytest --cov=myapp --cov-report=html tests/ # View coverage report\nopen htmlcov/index.html","breadcrumbs":"Testing » Python Coverage","id":"1155","title":"Python Coverage"},"1156":{"body":"# Run tests with coverage\nnpm test -- --coverage # Or with Jest directly\njest --coverage","breadcrumbs":"Testing » Node.js Coverage","id":"1156","title":"Node.js Coverage"},"1157":{"body":"","breadcrumbs":"Testing » CI/CD Integration","id":"1157","title":"CI/CD Integration"},"1158":{"body":"# .github/workflows/test.yml\nname: Tests on: [push, pull_request] jobs: test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - name: Setup Node.js uses: actions/setup-node@v3 with: node-version: '18' - name: Install dependencies run: npm install - name: Generate test keys run: | mkdir -p test_keys test_data # Generate test keys (implementation depends on your setup) - name: Run tests run: npm test - name: Upload coverage uses: codecov/codecov-action@v3","breadcrumbs":"Testing » GitHub Actions","id":"1158","title":"GitHub Actions"},"1159":{"body":"# Set test environment\nexport JACS_TEST_MODE=1\nexport JACS_TEST_CONFIG=./jacs.test.config.json","breadcrumbs":"Testing » Test Environment Variables","id":"1159","title":"Test Environment Variables"},"116":{"body":"\"Configuration file not found\" Run jacs init or set JACS_CONFIG_PATH environment variable. \"Key directory does not exist\" Create the key directory or run jacs init: mkdir -p ./jacs_keys \"Permission denied\" Ensure you have write permissions to the data and key directories.","breadcrumbs":"Installation » Runtime Errors","id":"116","title":"Runtime Errors"},"1160":{"body":"For Rust tests that modify global state (environment variables, file system, etc.), use RAII guards to ensure cleanup even on panic. This pattern is essential for test isolation and reliability.","breadcrumbs":"Testing » RAII Test Fixtures (Rust)","id":"1160","title":"RAII Test Fixtures (Rust)"},"1161":{"body":"The JACS codebase uses a TrustTestGuard pattern for tests that modify the HOME environment variable: use std::env;\nuse tempfile::TempDir; /// RAII guard for test isolation that ensures HOME is restored even on panic.\nstruct TrustTestGuard { _temp_dir: TempDir, original_home: Option,\n} impl TrustTestGuard { fn new() -> Self { // Save original HOME before modifying let original_home = env::var(\"HOME\").ok(); let temp_dir = TempDir::new().expect(\"Failed to create temp directory\"); // SAFETY: Only used in #[serial] tests - no concurrent access unsafe { env::set_var(\"HOME\", temp_dir.path().to_str().unwrap()); } Self { _temp_dir: temp_dir, original_home, } }\n} impl Drop for TrustTestGuard { fn drop(&mut self) { // Restore original HOME even during panic unwinding unsafe { match &self.original_home { Some(home) => env::set_var(\"HOME\", home), None => env::remove_var(\"HOME\"), } } }\n} // Usage in tests:\n#[test]\n#[serial] // Use serial_test crate to prevent parallel execution\nfn test_with_isolated_home() { let _guard = TrustTestGuard::new(); // Setup // Test code here - HOME points to temp directory // Guard automatically restores HOME on drop, even if test panics\n} Key benefits: Panic safety : Cleanup runs even if the test panics No manual cleanup : Drop trait handles restoration automatically Environment isolation : Each test gets a fresh temporary directory Composable : Multiple guards can be combined for complex setups","breadcrumbs":"Testing » TrustTestGuard Pattern","id":"1161","title":"TrustTestGuard Pattern"},"1162":{"body":"For cryptographic code, property-based testing helps verify invariants that hold across many random inputs. We recommend proptest for Rust.","breadcrumbs":"Testing » Property-Based Testing","id":"1162","title":"Property-Based Testing"},"1163":{"body":"Round-trip : Sign then verify should always succeed Tamper detection : Modified content should fail verification Key independence : Different keys produce different signatures use proptest::prelude::*; proptest! { #[test] fn signature_roundtrip(content in \".*\") { let signed = sign_content(&content)?; prop_assert!(verify_signature(&signed).is_ok()); } #[test] fn tamper_detection(content in \".*\", tamper_pos in 0usize..1000) { let signed = sign_content(&content)?; let tampered = tamper_at_position(&signed, tamper_pos); prop_assert!(verify_signature(&tampered).is_err()); }\n}","breadcrumbs":"Testing » Key Properties to Test","id":"1163","title":"Key Properties to Test"},"1164":{"body":"Fuzz testing is recommended for parsing and decoding functions to discover edge cases and potential security issues.","breadcrumbs":"Testing » Fuzzing","id":"1164","title":"Fuzzing"},"1165":{"body":"# Install\ncargo install cargo-fuzz # Create a fuzz target\ncargo fuzz init\ncargo fuzz add base64_decode # Run fuzzing\ncargo +nightly fuzz run base64_decode","breadcrumbs":"Testing » Recommended Tool: cargo-fuzz","id":"1165","title":"Recommended Tool: cargo-fuzz"},"1166":{"body":"Base64 decoding - Handles untrusted input from signatures Agent JSON parsing - Complex nested structures Document validation - Schema compliance checking Timestamp parsing - Date/time format handling Fuzzing documentation will be expanded as fuzz targets are added to the JACS test suite.","breadcrumbs":"Testing » Priority Fuzz Targets for JACS","id":"1166","title":"Priority Fuzz Targets for JACS"},"1167":{"body":"","breadcrumbs":"Testing » Best Practices","id":"1167","title":"Best Practices"},"1168":{"body":"Use separate test configurations Create temporary directories for each test run Clean up after tests (use RAII guards in Rust)","breadcrumbs":"Testing » 1. Isolate Tests","id":"1168","title":"1. Isolate Tests"},"1169":{"body":"def test_empty_document(): \"\"\"Test handling of empty documents.\"\"\" with pytest.raises(Exception): test_agent.create_document('') def test_invalid_json(): \"\"\"Test handling of invalid JSON.\"\"\" with pytest.raises(Exception): test_agent.create_document('not json') def test_large_document(): \"\"\"Test handling of large documents.\"\"\" large_content = 'x' * 1000000 doc = test_agent.create_document(json.dumps({ 'content': large_content })) assert doc is not None","breadcrumbs":"Testing » 2. Test Edge Cases","id":"1169","title":"2. Test Edge Cases"},"117":{"body":"CLI Usage - Learn CLI commands Creating an Agent - Create your first agent Rust Library API - Use JACS as a library","breadcrumbs":"Installation » Next Steps","id":"117","title":"Next Steps"},"1170":{"body":"def test_signature_changes_with_content(): \"\"\"Verify different content produces different signatures.\"\"\" doc1 = test_agent.create_document(json.dumps({'a': 1})) doc2 = test_agent.create_document(json.dumps({'a': 2})) sig1 = json.loads(doc1)['jacsSignature']['signature'] sig2 = json.loads(doc2)['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Testing » 3. Test Security Properties","id":"1170","title":"3. Test Security Properties"},"1171":{"body":"def test_verify_invalid_signature(): \"\"\"Test that invalid signatures are rejected.\"\"\" doc = test_agent.create_document(json.dumps({'data': 'test'})) parsed = json.loads(doc) # Corrupt the signature parsed['jacsSignature']['signature'] = 'invalid' corrupted = json.dumps(parsed) assert test_agent.verify_document(corrupted) is False","breadcrumbs":"Testing » 4. Test Error Handling","id":"1171","title":"4. Test Error Handling"},"1172":{"body":"Python API Reference - API documentation Node.js API Reference - API documentation Security Model - Security testing considerations","breadcrumbs":"Testing » See Also","id":"1172","title":"See Also"},"1173":{"body":"JACS provides comprehensive integration with the Model Context Protocol (MCP) , enabling cryptographically signed and verified communication between AI agents and MCP servers.","breadcrumbs":"Model Context Protocol (MCP) » Model Context Protocol (MCP)","id":"1173","title":"Model Context Protocol (MCP)"},"1174":{"body":"Model Context Protocol is an open standard created by Anthropic for AI models to securely access external tools, data, and services. MCP defines: Tools : Functions that AI models can call Resources : Data sources that models can read Prompts : Pre-defined prompt templates Transports : Communication channels (STDIO, SSE, WebSocket)","breadcrumbs":"Model Context Protocol (MCP) » What is MCP?","id":"1174","title":"What is MCP?"},"1175":{"body":"JACS enhances MCP by adding a security layer that standard MCP lacks: Feature Standard MCP JACS MCP Message Signing No Yes Identity Verification No Yes Tamper Detection No Yes Audit Trail No Yes Non-Repudiation No Yes This makes JACS MCP suitable for: Multi-agent systems requiring trust Financial and legal AI applications Healthcare AI systems Enterprise deployments Any scenario where message authenticity matters","breadcrumbs":"Model Context Protocol (MCP) » Why JACS + MCP?","id":"1175","title":"Why JACS + MCP?"},"1176":{"body":"JACS uses a transport proxy pattern that wraps any MCP transport with cryptographic signing and verification: ┌─────────────────────────────────────────────────────────────┐\n│ MCP Application │\n├─────────────────────────────────────────────────────────────┤\n│ MCP SDK │\n├─────────────────────────────────────────────────────────────┤\n│ JACS Transport Proxy │\n│ ┌─────────────┐ ┌──────────────┐ │\n│ │ Outgoing: │ │ Incoming: │ │\n│ │ signRequest │ │ verifyResp │ │\n│ └─────────────┘ └──────────────┘ │\n├─────────────────────────────────────────────────────────────┤\n│ Underlying Transport │\n│ (STDIO / SSE / WebSocket) │\n└─────────────────────────────────────────────────────────────┘","breadcrumbs":"Model Context Protocol (MCP) » Architecture","id":"1176","title":"Architecture"},"1177":{"body":"Outgoing Messages : The proxy intercepts JSON-RPC messages and signs them with the agent's private key Incoming Messages : The proxy verifies signatures before passing messages to the application Graceful Fallback : If verification fails, messages can be passed through as plain JSON for interoperability","breadcrumbs":"Model Context Protocol (MCP) » How It Works","id":"1177","title":"How It Works"},"1178":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Quick Start","id":"1178","title":"Quick Start"},"1179":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; // Create transport with JACS encryption\nconst baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); // Create MCP server\nconst server = new McpServer({ name: \"my-secure-server\", version: \"1.0.0\"\n}); // Register tools (standard MCP API)\nserver.tool(\"add\", { a: z.number(), b: z.number()\n}, async ({ a, b }) => { return { content: [{ type: \"text\", text: `${a + b}` }] };\n}); // Connect with JACS encryption\nawait server.connect(secureTransport);","breadcrumbs":"Model Context Protocol (MCP) » Node.js","id":"1179","title":"Node.js"},"118":{"body":"The JACS CLI provides a command-line interface for managing agents, documents, tasks, and agreements.","breadcrumbs":"CLI Usage » CLI Usage","id":"118","title":"CLI Usage"},"1180":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Create FastMCP server with JACS authentication\nmcp = JACSMCPServer(FastMCP(\"Secure Server\")) @mcp.tool()\ndef add(a: int, b: int) -> str: \"\"\"Add two numbers\"\"\" return str(a + b) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Model Context Protocol (MCP) » Python","id":"1180","title":"Python"},"1181":{"body":"JACS provides native MCP integration for both major platforms:","breadcrumbs":"Model Context Protocol (MCP) » Language Support","id":"1181","title":"Language Support"},"1182":{"body":"The Node.js integration uses a transport proxy pattern that works with any MCP transport: STDIO : For CLI tools and subprocess communication SSE : For web-based servers WebSocket : For bidirectional streaming Key classes: JACSTransportProxy - Wraps any transport with signing/verification createJACSTransportProxy() - Factory function See Node.js MCP Integration for complete documentation.","breadcrumbs":"Model Context Protocol (MCP) » Node.js (@hai.ai/jacs)","id":"1182","title":"Node.js (@hai.ai/jacs)"},"1183":{"body":"The Python integration uses middleware wrappers for FastMCP: JACSMCPServer - Wraps FastMCP servers with authentication JACSMCPClient - Wraps FastMCP clients with signing Key classes: JACSMCPServer - Server wrapper with JACS middleware JACSMCPClient - Client wrapper with interceptors See Python MCP Integration for complete documentation.","breadcrumbs":"Model Context Protocol (MCP) » Python (jacspy)","id":"1183","title":"Python (jacspy)"},"1184":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Message Flow","id":"1184","title":"Message Flow"},"1185":{"body":"When a client calls a tool on a JACS-enabled MCP server: Client Server │ │ │ 1. Create JSON-RPC request │ │ 2. Sign with signRequest() │ │ ──────────────────────────> │ │ │ 3. Verify with verifyRequest() │ │ 4. Execute tool │ │ 5. Sign response with signResponse() │ <────────────────────────── │ │ 6. Verify with verifyResponse() │ │ 7. Extract payload │","breadcrumbs":"Model Context Protocol (MCP) » Tool Call Example","id":"1185","title":"Tool Call Example"},"1186":{"body":"A JACS-signed MCP message contains: { \"jacsId\": \"unique-document-id\", \"jacsVersion\": \"version-uuid\", \"jacsSignature\": { \"agentID\": \"signing-agent-id\", \"agentVersion\": \"agent-version\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\" }, \"jacsSha256\": \"content-hash\", \"payload\": { \"jsonrpc\": \"2.0\", \"method\": \"tools/call\", \"params\": { \"name\": \"add\", \"arguments\": { \"a\": 5, \"b\": 3 } }, \"id\": 1 }\n}","breadcrumbs":"Model Context Protocol (MCP) » Signed Message Structure","id":"1186","title":"Signed Message Structure"},"1187":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Configuration","id":"1187","title":"Configuration"},"1188":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"server-agent-id:version\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Model Context Protocol (MCP) » Server Configuration","id":"1188","title":"Server Configuration"},"1189":{"body":"Each MCP client needs its own JACS agent identity: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"client-agent-id:version\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Model Context Protocol (MCP) » Client Configuration","id":"1189","title":"Client Configuration"},"119":{"body":"# General help\njacs --help # Command-specific help\njacs agent --help\njacs document --help\njacs task --help","breadcrumbs":"CLI Usage » Getting Help","id":"119","title":"Getting Help"},"1190":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Transports","id":"1190","title":"Transports"},"1191":{"body":"Best for CLI tools and subprocess communication: // Node.js\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\"; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); Important : Debug logging goes to stderr to keep stdout clean for JSON-RPC.","breadcrumbs":"Model Context Protocol (MCP) » STDIO","id":"1191","title":"STDIO"},"1192":{"body":"For web-based MCP servers: # Python with FastMCP\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP mcp = JACSMCPServer(FastMCP(\"Web Server\"))\napp = mcp.sse_app() # Returns ASGI app with JACS middleware // Node.js with Express\nimport { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport express from 'express'; const app = express();\napp.get('/sse', (req, res) => { const baseTransport = new SSEServerTransport('/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\" ); server.connect(secureTransport);\n});","breadcrumbs":"Model Context Protocol (MCP) » Server-Sent Events (SSE)","id":"1192","title":"Server-Sent Events (SSE)"},"1193":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Security Model","id":"1193","title":"Security Model"},"1194":{"body":"CRITICAL GUIDANCE FOR AI AGENTS AND DEVELOPERS Signing a document or message with JACS is a sacred, irreversible act . When an agent signs: Permanent Commitment : The signature creates permanent cryptographic proof that the signer attested to the content. This proof exists forever and can be verified by anyone. Non-Repudiation : The signer cannot later deny having signed. The signature is mathematically bound to their private key. Accountability : The signer is accountable for the content they signed. In multi-agent systems, signatures establish trust chains and responsibility. Irreversibility : There is no \"unsign\" operation. Once signed, the commitment exists permanently. Before signing any document, message, or agreement: Read and understand the complete content Verify the content represents your actual intent Confirm you have authority to make this commitment Understand the implications of your signature For AI agents : Do not sign automatically or without verification. Signing carelessly can: Create binding commitments you didn't intend Establish false audit trails Damage trust relationships with other agents Create legal or ethical liability For MCP tool implementations : When exposing signing capabilities as tools, include appropriate warnings and consider requiring explicit confirmation.","breadcrumbs":"Model Context Protocol (MCP) » Signing is Sacred","id":"1194","title":"Signing is Sacred"},"1195":{"body":"All JSON-RPC requests and responses Tool calls and results Resource requests and data Prompt requests and templates","breadcrumbs":"Model Context Protocol (MCP) » What Gets Signed","id":"1195","title":"What Gets Signed"},"1196":{"body":"Agent identity (agentID) Message integrity (jacsSha256) Signature validity (jacsSignature) Optional: DNS-based identity verification","breadcrumbs":"Model Context Protocol (MCP) » What Gets Verified","id":"1196","title":"What Gets Verified"},"1197":{"body":"For interoperability with non-JACS MCP systems, the proxy can fall back to plain JSON: Try to verify as JACS artifact If verification fails, parse as plain JSON Pass clean message to application To enforce JACS-only communication, implement custom validation in your tools.","breadcrumbs":"Model Context Protocol (MCP) » Passthrough Mode","id":"1197","title":"Passthrough Mode"},"1198":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Debugging","id":"1198","title":"Debugging"},"1199":{"body":"# Node.js\nexport JACS_MCP_DEBUG=true # Python\nimport logging\nlogging.basicConfig(level=logging.DEBUG)","breadcrumbs":"Model Context Protocol (MCP) » Enable Debug Logging","id":"1199","title":"Enable Debug Logging"},"12":{"body":"","breadcrumbs":"Introduction » Why JACS?","id":"12","title":"Why JACS?"},"120":{"body":"Command Description jacs init Initialize JACS (create config and agent with keys) jacs version Print version information jacs config Manage configuration jacs agent Manage agents jacs document Manage documents jacs task Manage tasks","breadcrumbs":"CLI Usage » Commands Overview","id":"120","title":"Commands Overview"},"1200":{"body":"Issue Cause Solution \"JACS not operational\" Config path incorrect Verify config file path Verification failures Incompatible keys Ensure matching key algorithms Empty responses Null value handling Check message serialization Connection timeouts Network issues Verify server is running","breadcrumbs":"Model Context Protocol (MCP) » Common Issues","id":"1200","title":"Common Issues"},"1201":{"body":"","breadcrumbs":"Model Context Protocol (MCP) » Best Practices","id":"1201","title":"Best Practices"},"1202":{"body":"project/\n├── server/\n│ ├── jacs.config.json\n│ └── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── client/ ├── jacs.config.json └── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Model Context Protocol (MCP) » 1. Separate Keys for Server and Client","id":"1202","title":"1. Separate Keys for Server and Client"},"1203":{"body":"# Use HTTPS for SSE\nclient = JACSMCPClient(\"https://server.example.com/sse\")","breadcrumbs":"Model Context Protocol (MCP) » 2. Use TLS for Network Transports","id":"1203","title":"2. Use TLS for Network Transports"},"1204":{"body":"Update agent versions when rotating keys: { \"jacs_agent_id_and_version\": \"my-agent:v2\"\n}","breadcrumbs":"Model Context Protocol (MCP) » 3. Implement Key Rotation","id":"1204","title":"3. Implement Key Rotation"},"1205":{"body":"# Production logging setup\nimport logging logging.getLogger(\"jacs\").setLevel(logging.INFO)\nlogging.getLogger(\"jacs.security\").setLevel(logging.WARNING)","breadcrumbs":"Model Context Protocol (MCP) » 4. Log Security Events","id":"1205","title":"4. Log Security Events"},"1206":{"body":"A complete example with multiple JACS-authenticated agents: ┌──────────────────┐ ┌──────────────────┐ ┌──────────────────┐\n│ Agent A │ │ MCP Server │ │ Agent B │\n│ (Data Analyst) │────>│ (Tool Provider) │<────│ (Report Writer) │\n│ │ │ │ │ │\n│ Signs requests │ │ Verifies both │ │ Signs requests │\n│ Verifies resps │ │ Signs responses │ │ Verifies resps │\n└──────────────────┘ └──────────────────┘ └──────────────────┘ Each agent has its own: JACS agent ID and version Private/public key pair Configuration file The MCP server verifies requests from both agents and signs all responses.","breadcrumbs":"Model Context Protocol (MCP) » Example: Multi-Agent System","id":"1206","title":"Example: Multi-Agent System"},"1207":{"body":"The jacs-mcp server provides built-in tools for agent operations:","breadcrumbs":"Model Context Protocol (MCP) » HAI MCP Server Tools","id":"1207","title":"HAI MCP Server Tools"},"1208":{"body":"Tool Description fetch_agent_key Fetch a public key from HAI's key distribution service register_agent Register the local agent with HAI (requires JACS_MCP_ALLOW_REGISTRATION=true) verify_agent Verify another agent's attestation level check_agent_status Check registration status with HAI unregister_agent Unregister an agent from HAI","breadcrumbs":"Model Context Protocol (MCP) » Identity & Registration Tools","id":"1208","title":"Identity & Registration Tools"},"1209":{"body":"These tools allow agents to sign, verify, and manage state documents (memory files, skills, plans, configs, hooks, or any document): Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document's signature jacs_load_state Load an agent state document by key jacs_update_state Update and re-sign an agent state document jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state All documents are stored within the JACS data directory for security. Use state_type: \"other\" for general-purpose signing of any document. See Agent State Schema for full documentation.","breadcrumbs":"Model Context Protocol (MCP) » Agent State Tools","id":"1209","title":"Agent State Tools"},"121":{"body":"","breadcrumbs":"CLI Usage » Initialization","id":"121","title":"Initialization"},"1210":{"body":"Node.js MCP Integration - Node.js specific details Python MCP Integration - Python specific details Security Model - JACS security architecture Cryptographic Algorithms - Signing algorithms Testing - Testing MCP integrations","breadcrumbs":"Model Context Protocol (MCP) » See Also","id":"1210","title":"See Also"},"1211":{"body":"This guide describes how JACS interoperates with Agent-to-Agent (A2A) systems in real deployments.","breadcrumbs":"A2A Interoperability » A2A Interoperability","id":"1211","title":"A2A Interoperability"},"1212":{"body":"JACS adds cryptographic provenance to A2A artifacts: Signed artifact envelopes (a2a-task, a2a-message, etc.) Verifiable signer identity via public key resolution Chain-of-custody support through parent signatures Well-known discovery documents for external verifiers","breadcrumbs":"A2A Interoperability » What JACS Adds","id":"1212","title":"What JACS Adds"},"1213":{"body":"JACS A2A integration currently targets the v0.4.0 Agent Card shape used in this repository's Rust, Python, and Node bindings. Required well-known documents: /.well-known/agent-card.json /.well-known/jwks.json /.well-known/jacs-agent.json /.well-known/jacs-pubkey.json","breadcrumbs":"A2A Interoperability » Interoperability Contract","id":"1213","title":"Interoperability Contract"},"1214":{"body":"When verifying foreign-agent A2A artifacts, JACS resolves keys using JACS_KEY_RESOLUTION order: local: trusted local key cache dns: identity validation only (does not return key bytes) hai: remote key retrieval from HAI key service If a key is found, JACS performs full signature verification and returns a verified status. If no key is found, verification is explicitly marked unverified (not silently accepted).","breadcrumbs":"A2A Interoperability » Verification Model","id":"1214","title":"Verification Model"},"1215":{"body":"Use environment variables for deploy-time behavior: export JACS_PRIVATE_KEY_PASSWORD=\"your-strong-password\"\nexport JACS_KEY_RESOLUTION=\"local,hai\"\nexport HAI_KEYS_BASE_URL=\"https://keys.hai.ai\" For offline/air-gapped operation: export JACS_KEY_RESOLUTION=\"local\"","breadcrumbs":"A2A Interoperability » 12-Factor Runtime Configuration","id":"1215","title":"12-Factor Runtime Configuration"},"1216":{"body":"use jacs::a2a::provenance::{wrap_artifact_with_provenance, verify_wrapped_artifact};\nuse serde_json::json; let wrapped = wrap_artifact_with_provenance( &mut agent, json!({\"taskId\": \"task-123\", \"operation\": \"classify\"}), \"task\", None,\n)?; let result = verify_wrapped_artifact(&agent, &wrapped)?;\nassert!(result.valid);","breadcrumbs":"A2A Interoperability » Rust Example","id":"1216","title":"Rust Example"},"1217":{"body":"from jacs.a2a import JACSA2AIntegration a2a = JACSA2AIntegration(\"jacs.config.json\")\nagent_card = a2a.export_agent_card(agent_data)\ndocs = a2a.generate_well_known_documents( agent_card=agent_card, jws_signature=\"...\", public_key_b64=\"...\", agent_data={\"jacsId\": \"...\", \"jacsVersion\": \"...\", \"keyAlgorithm\": \"RSA-PSS\"},\n) assert \"/.well-known/jwks.json\" in docs","breadcrumbs":"A2A Interoperability » Python Example","id":"1217","title":"Python Example"},"1218":{"body":"const { JACSA2AIntegration } = require('@hai.ai/jacs/a2a'); const a2a = new JACSA2AIntegration('./jacs.config.json');\nconst wrapped = a2a.wrapArtifactWithProvenance( { taskId: 'task-123', operation: 'classify' }, 'task'\n); const result = a2a.verifyWrappedArtifact(wrapped);\nconsole.log(result.valid, result.parentSignaturesValid);","breadcrumbs":"A2A Interoperability » Node.js Example","id":"1218","title":"Node.js Example"},"1219":{"body":"Before merging A2A changes, ensure: Rust, Python, and Node A2A tests all pass. Foreign-signature verification is covered by tests (resolved and unresolved key paths). Documentation snippets match package names and executable APIs. Well-known docs include jwks.json and match output from all bindings.","breadcrumbs":"A2A Interoperability » DevEx Expectations","id":"1219","title":"DevEx Expectations"},"122":{"body":"# Initialize everything in one step\njacs init This command: Creates a configuration file (jacs.config.json) Generates cryptographic keys Creates an initial agent document","breadcrumbs":"CLI Usage » Quick Start","id":"122","title":"Quick Start"},"1220":{"body":"Unverified foreign signatures: no signer key available from configured resolution order. Invalid signatures: signature bytes, signer key, or signed payload fields do not match. Missing jwks.json: ensure you are using current A2A helper APIs in your binding.","breadcrumbs":"A2A Interoperability » Troubleshooting","id":"1220","title":"Troubleshooting"},"1221":{"body":"OpenClaw is a personal AI assistant platform. This chapter covers integrating JACS with OpenClaw to enable cryptographically signed agent-to-agent communication.","breadcrumbs":"OpenClaw » OpenClaw Integration","id":"1221","title":"OpenClaw Integration"},"1222":{"body":"The JACS OpenClaw plugin enables: Bootstrap JACS identity via openclaw plugin setup jacs Securely store cryptographic keys using OpenClaw's configuration system Sign and verify all agent communications with post-quantum cryptographic provenance Publish agent identity via .well-known endpoints P2P agent verification without requiring a central registry","breadcrumbs":"OpenClaw » Overview","id":"1222","title":"Overview"},"1223":{"body":"# Install the JACS plugin for OpenClaw\nopenclaw plugins install @openclaw/jacs","breadcrumbs":"OpenClaw » Installation","id":"1223","title":"Installation"},"1224":{"body":"","breadcrumbs":"OpenClaw » Setup","id":"1224","title":"Setup"},"1225":{"body":"# Interactive setup wizard\nopenclaw jacs init This will: Select a key algorithm (pq2025/dilithium/rsa/ecdsa) Generate a cryptographic key pair Create an agent identity Store keys in ~/.openclaw/jacs_keys/","breadcrumbs":"OpenClaw » Initialize JACS Identity","id":"1225","title":"Initialize JACS Identity"},"1226":{"body":"The plugin configuration is stored in ~/.openclaw/openclaw.json: { \"plugins\": { \"entries\": { \"jacs\": { \"enabled\": true, \"config\": { \"keyAlgorithm\": \"pq2025\", \"autoSign\": false, \"autoVerify\": false, \"agentId\": \"89fb9d88-6990-420f-8df9-252ccdfdfd3d\", \"agentName\": \"My OpenClaw Agent\", \"agentDescription\": \"Personal AI assistant with JACS identity\" } } } }\n}","breadcrumbs":"OpenClaw » Configuration","id":"1226","title":"Configuration"},"1227":{"body":"Option Type Default Description keyAlgorithm string pq2025 Signing algorithm (pq2025, pq-dilithium, rsa, ecdsa) autoSign boolean false Automatically sign outbound messages autoVerify boolean false Automatically verify inbound JACS-signed messages agentName string - Human-readable agent name agentDescription string - Agent description for A2A discovery agentDomain string - Domain for agent identity (DNSSEC validated)","breadcrumbs":"OpenClaw » Configuration Options","id":"1227","title":"Configuration Options"},"1228":{"body":"~/.openclaw/\n├── openclaw.json # Plugin config (non-sensitive)\n├── jacs/ # JACS data directory\n│ ├── jacs.config.json # JACS configuration\n│ └── agent/ # Agent documents\n└── jacs_keys/ # Key directory (encrypted) ├── agent.private.pem.enc # AES-256-GCM encrypted └── agent.public.pem # Public key (shareable)","breadcrumbs":"OpenClaw » Directory Structure","id":"1228","title":"Directory Structure"},"1229":{"body":"","breadcrumbs":"OpenClaw » CLI Commands","id":"1229","title":"CLI Commands"},"123":{"body":"","breadcrumbs":"CLI Usage » Configuration Commands","id":"123","title":"Configuration Commands"},"1230":{"body":"openclaw jacs status Shows JACS status, agent ID, algorithm, and registration state.","breadcrumbs":"OpenClaw » Status","id":"1230","title":"Status"},"1231":{"body":"openclaw jacs sign  Sign a JSON document with your JACS identity.","breadcrumbs":"OpenClaw » Sign Document","id":"1231","title":"Sign Document"},"1232":{"body":"openclaw jacs verify  Verify a JACS-signed document.","breadcrumbs":"OpenClaw » Verify Document","id":"1232","title":"Verify Document"},"1233":{"body":"openclaw jacs lookup  Look up another agent's public key from their domain.","breadcrumbs":"OpenClaw » Lookup Agent","id":"1233","title":"Lookup Agent"},"1234":{"body":"openclaw jacs export-card Export your agent as an A2A Agent Card.","breadcrumbs":"OpenClaw » Export Agent Card","id":"1234","title":"Export Agent Card"},"1235":{"body":"openclaw jacs dns-record  Generate DNS TXT record commands for publishing your agent fingerprint.","breadcrumbs":"OpenClaw » Generate DNS Record","id":"1235","title":"Generate DNS Record"},"1236":{"body":"The plugin provides tools for use in agent conversations:","breadcrumbs":"OpenClaw » Agent Tools","id":"1236","title":"Agent Tools"},"1237":{"body":"Sign a document with JACS cryptographic provenance. { \"name\": \"jacs_sign\", \"parameters\": { \"document\": { \"message\": \"hello\" }, \"artifactType\": \"message\" }\n}","breadcrumbs":"OpenClaw » jacs_sign","id":"1237","title":"jacs_sign"},"1238":{"body":"Verify a JACS-signed document. { \"name\": \"jacs_verify\", \"parameters\": { \"document\": { \"...signed document...\" } }\n}","breadcrumbs":"OpenClaw » jacs_verify","id":"1238","title":"jacs_verify"},"1239":{"body":"Fetch another agent's public key from their domain. { \"name\": \"jacs_fetch_pubkey\", \"parameters\": { \"domain\": \"other-agent.example.com\" }\n}","breadcrumbs":"OpenClaw » jacs_fetch_pubkey","id":"1239","title":"jacs_fetch_pubkey"},"124":{"body":"jacs config create Creates a new jacs.config.json file in the current directory with default settings.","breadcrumbs":"CLI Usage » Create Configuration","id":"124","title":"Create Configuration"},"1240":{"body":"Verify a document using a fetched public key. { \"name\": \"jacs_verify_with_key\", \"parameters\": { \"document\": { \"...signed document...\" }, \"publicKey\": \"-----BEGIN PUBLIC KEY-----...\" }\n}","breadcrumbs":"OpenClaw » jacs_verify_with_key","id":"1240","title":"jacs_verify_with_key"},"1241":{"body":"Lookup a JACS agent by domain or ID. { \"name\": \"jacs_lookup_agent\", \"parameters\": { \"domain\": \"agent.example.com\" }\n}","breadcrumbs":"OpenClaw » jacs_lookup_agent","id":"1241","title":"jacs_lookup_agent"},"1242":{"body":"Create a multi-party agreement requiring signatures from multiple agents. { \"name\": \"jacs_create_agreement\", \"parameters\": { \"document\": { \"terms\": \"...\" }, \"agentIds\": [\"agent-1-uuid\", \"agent-2-uuid\"], \"question\": \"Do you agree to these terms?\" }\n}","breadcrumbs":"OpenClaw » jacs_create_agreement","id":"1242","title":"jacs_create_agreement"},"1243":{"body":"When OpenClaw's gateway is running, the plugin serves:","breadcrumbs":"OpenClaw » Well-Known Endpoints","id":"1243","title":"Well-Known Endpoints"},"1244":{"body":"A2A v0.4.0 Agent Card with JACS extension.","breadcrumbs":"OpenClaw » /.well-known/agent-card.json","id":"1244","title":"/.well-known/agent-card.json"},"1245":{"body":"Your agent's public key for verification: { \"publicKey\": \"-----BEGIN PUBLIC KEY-----...\", \"publicKeyHash\": \"sha256-hash\", \"algorithm\": \"pq2025\", \"agentId\": \"agent-uuid\", \"timestamp\": \"2024-01-15T10:30:00Z\"\n}","breadcrumbs":"OpenClaw » /.well-known/jacs-pubkey.json","id":"1245","title":"/.well-known/jacs-pubkey.json"},"1246":{"body":"Agents can verify each other without a central registry:","breadcrumbs":"OpenClaw » P2P Agent Verification","id":"1246","title":"P2P Agent Verification"},"1247":{"body":"Agent A publishes their public key at /.well-known/jacs-pubkey.json Agent A optionally sets DNS TXT record at _v1.agent.jacs.. Agent A signs a document with jacs_sign Agent B receives the signed document Agent B fetches Agent A's key with jacs_fetch_pubkey Agent B verifies with jacs_verify_with_key","breadcrumbs":"OpenClaw » Flow","id":"1247","title":"Flow"},"1248":{"body":"Agent A (agent-a.example.com) Agent B (agent-b.example.com)\n================================ ================================ 1. Initialize JACS openclaw jacs init 2. Publish public key (served at /.well-known/jacs-pubkey.json) 3. Sign a message jacs_sign({ message: \"hello\" }) → signed_doc 4. Send signed_doc to Agent B 5. Receive signed_doc 6. Fetch Agent A's public key jacs_fetch_pubkey(\"agent-a.example.com\") → pubkey_a 7. Verify signature jacs_verify_with_key(signed_doc, pubkey_a) → { valid: true, signer: \"agent-a-uuid\" }","breadcrumbs":"OpenClaw » Example Workflow","id":"1248","title":"Example Workflow"},"1249":{"body":"For additional verification, agents can publish their public key fingerprint in DNS:","breadcrumbs":"OpenClaw » DNS-Based Discovery","id":"1249","title":"DNS-Based Discovery"},"125":{"body":"jacs config read Displays the current configuration, including values from both the config file and environment variables.","breadcrumbs":"CLI Usage » Read Configuration","id":"125","title":"Read Configuration"},"1250":{"body":"openclaw jacs dns-record agent.example.com This outputs commands for your DNS provider: _v1.agent.jacs.agent.example.com. 3600 IN TXT \"v=hai.ai; jacs_agent_id=; alg=SHA-256; enc=base64; jac_public_key_hash=<44-char-b64>\"","breadcrumbs":"OpenClaw » Generate DNS Record","id":"1250","title":"Generate DNS Record"},"1251":{"body":"openclaw jacs lookup agent.example.com The plugin will: Query DNS TXT record at _v1.agent.jacs.agent.example.com Fetch full public key from /.well-known/jacs-pubkey.json Verify the DNS hash matches the fetched key","breadcrumbs":"OpenClaw » DNS Lookup","id":"1251","title":"DNS Lookup"},"1252":{"body":"","breadcrumbs":"OpenClaw » Security","id":"1252","title":"Security"},"1253":{"body":"Private keys are encrypted with AES-256-GCM Password-derived key using PBKDF2 (100k iterations) Keys stored with restricted file permissions","breadcrumbs":"OpenClaw » Key Protection","id":"1253","title":"Key Protection"},"1254":{"body":"The default algorithm (pq2025 / ML-DSA-87) is quantum-resistant, providing protection against future quantum computing attacks.","breadcrumbs":"OpenClaw » Post-Quantum Cryptography","id":"1254","title":"Post-Quantum Cryptography"},"1255":{"body":"Signatures include: Document hash (prevents modification) Signer's agent ID and version Timestamp List of signed fields","breadcrumbs":"OpenClaw » Signature Binding","id":"1255","title":"Signature Binding"},"1256":{"body":"The plugin provides a skill for agent conversations: /jacs sign {\"task\": \"analyze data\", \"result\": \"completed\"}\n/jacs verify \n/jacs lookup agent.example.com","breadcrumbs":"OpenClaw » Skill Usage","id":"1256","title":"Skill Usage"},"1257":{"body":"","breadcrumbs":"OpenClaw » Troubleshooting","id":"1257","title":"Troubleshooting"},"1258":{"body":"Run openclaw jacs init to set up your JACS identity.","breadcrumbs":"OpenClaw » \"JACS not initialized\"","id":"1258","title":"\"JACS not initialized\""},"1259":{"body":"Verify the domain is correct and serving /.well-known/jacs-pubkey.json.","breadcrumbs":"OpenClaw » \"Failed to fetch public key\"","id":"1259","title":"\"Failed to fetch public key\""},"126":{"body":"","breadcrumbs":"CLI Usage » Agent Commands","id":"126","title":"Agent Commands"},"1260":{"body":"Check that the document hasn't been modified Verify you have the correct public key for the signer Ensure the signing algorithm matches","breadcrumbs":"OpenClaw » \"Signature verification failed\"","id":"1260","title":"\"Signature verification failed\""},"1261":{"body":"DNS-Based Verification - Detailed DNS setup Agreements - Multi-agent coordination MCP Integration - Model Context Protocol","breadcrumbs":"OpenClaw » Next Steps","id":"1261","title":"Next Steps"},"1262":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing across multiple frameworks and languages.","breadcrumbs":"Web Servers » Web Servers","id":"1262","title":"Web Servers"},"1263":{"body":"Web server integration with JACS enables: Request Authentication : Verify incoming requests were signed by valid agents Response Signing : Automatically sign outgoing responses Tamper Detection : Ensure message integrity end-to-end Audit Trail : Track all authenticated interactions","breadcrumbs":"Web Servers » Overview","id":"1263","title":"Overview"},"1264":{"body":"Framework Language Module Express.js Node.js @hai.ai/jacs/http Koa Node.js @hai.ai/jacs/http FastAPI Python jacs.http Flask Python jacs.http","breadcrumbs":"Web Servers » Supported Frameworks","id":"1264","title":"Supported Frameworks"},"1265":{"body":"All JACS web integrations follow the same flow: Client Server │ │ │── signRequest(payload) ────> │ │ │── verifyRequest() │ │── process request │ │── signResponse(result) │<── verifyResponse(result) ── │ │","breadcrumbs":"Web Servers » Request/Response Flow","id":"1265","title":"Request/Response Flow"},"1266":{"body":"","breadcrumbs":"Web Servers » Node.js Integration","id":"1266","title":"Node.js Integration"},"1267":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // IMPORTANT: Parse body as text BEFORE JACS middleware\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Route handlers receive verified payload in req.jacsPayload\napp.post('/api/data', (req, res) => { const payload = req.jacsPayload; if (!payload) { return res.status(400).send({ error: 'Invalid JACS request' }); } // Response objects are automatically signed res.send({ received: payload, status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Web Servers » Express.js","id":"1267","title":"Express.js"},"1268":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa(); // Apply JACS middleware (handles body parsing internally)\napp.use(JACSKoaMiddleware({ configPath: './jacs.config.json'\n})); app.use(async (ctx) => { if (ctx.path === '/api/data' && ctx.method === 'POST') { const payload = ctx.state.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = { error: 'Invalid JACS request' }; return; } // Response objects are automatically signed ctx.body = { received: payload, status: 'ok' }; }\n}); app.listen(3000); See Node.js HTTP Server and Express Middleware for complete documentation.","breadcrumbs":"Web Servers » Koa","id":"1268","title":"Koa"},"1269":{"body":"","breadcrumbs":"Web Servers » Python Integration","id":"1269","title":"Python Integration"},"127":{"body":"jacs agent create --create-keys true # With a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Without creating new keys (use existing)\njacs agent create --create-keys false -f my-agent.json Options: Option Short Required Description --create-keys Yes Whether to create new cryptographic keys -f No Path to JSON file with agent definition","breadcrumbs":"CLI Usage » Create Agent","id":"127","title":"Create Agent"},"1270":{"body":"from fastapi import FastAPI, Request\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI() # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") @app.post(\"/api/data\")\nasync def handle_data(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: return PlainTextResponse( content=json.dumps({\"error\": \"Invalid JACS request\"}), status_code=400 ) # Process request result = {\"received\": payload, \"status\": \"ok\"} # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Web Servers » FastAPI","id":"1270","title":"FastAPI"},"1271":{"body":"from flask import Flask, request\nimport jacs\nimport json app = Flask(__name__) # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") @app.route(\"/api/data\", methods=[\"POST\"])\ndef handle_data(): # Read raw body body_str = request.get_data(as_text=True) # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: return json.dumps({\"error\": \"Invalid JACS request\"}), 400 # Process request result = {\"received\": payload, \"status\": \"ok\"} # Sign response signed_response = jacs.sign_response(result) return signed_response, 200, {\"Content-Type\": \"text/plain\"} if __name__ == \"__main__\": app.run(port=8000)","breadcrumbs":"Web Servers » Flask","id":"1271","title":"Flask"},"1272":{"body":"","breadcrumbs":"Web Servers » HTTP Client","id":"1272","title":"HTTP Client"},"1273":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { // Load JACS agent await jacs.load('./jacs.client.config.json'); // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"Web Servers » Node.js Client","id":"1273","title":"Node.js Client"},"1274":{"body":"import jacs\nimport requests\nimport json def send_jacs_request(url, payload): # Initialize JACS agent agent = jacs.JacsAgent() agent.load(\"./jacs.client.config.json\") # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) # Verify response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') # Usage\nresult = send_jacs_request(\"http://localhost:8000/api/data\", { \"action\": \"fetch\", \"query\": {\"id\": 42}\n})","breadcrumbs":"Web Servers » Python Client","id":"1274","title":"Python Client"},"1275":{"body":"","breadcrumbs":"Web Servers » Middleware Patterns","id":"1275","title":"Middleware Patterns"},"1276":{"body":"Protect specific routes while leaving others public: // Node.js Express\nconst app = express(); // Public routes (no JACS)\napp.get('/health', (req, res) => res.send({ status: 'ok' }));\napp.get('/public/info', (req, res) => res.send({ name: 'My API' })); // Protected routes (JACS required)\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/secure', (req, res) => { // Only JACS-signed requests reach here res.send({ data: 'secure response' });\n});","breadcrumbs":"Web Servers » Route-Level Protection","id":"1276","title":"Route-Level Protection"},"1277":{"body":"Use different JACS agents for different route groups: // Admin routes with admin agent\napp.use('/admin', express.text({ type: '*/*' }));\napp.use('/admin', JACSExpressMiddleware({ configPath: './jacs.admin.config.json'\n})); // User routes with user agent\napp.use('/user', express.text({ type: '*/*' }));\napp.use('/user', JACSExpressMiddleware({ configPath: './jacs.user.config.json'\n}));","breadcrumbs":"Web Servers » Multiple Agent Configurations","id":"1277","title":"Multiple Agent Configurations"},"1278":{"body":"Create reusable validation helpers: function requireJacsPayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'JACS verification failed', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Apply to routes\napp.post('/api/secure', requireJacsPayload, (req, res) => { // Guaranteed to have valid req.jacsPayload res.send({ data: req.jacsPayload });\n});","breadcrumbs":"Web Servers » Validation Middleware","id":"1278","title":"Validation Middleware"},"1279":{"body":"JACS requests should use text/plain content type since they are signed JSON strings: // Client side\nconst response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, // Not application/json body: signedRequest\n}); // Server side (Express)\napp.use('/api', express.text({ type: '*/*' })); // Parse as text, not JSON","breadcrumbs":"Web Servers » Content-Type Considerations","id":"1279","title":"Content-Type Considerations"},"128":{"body":"# Verify agent from config\njacs agent verify # Verify specific agent file\njacs agent verify -a ./path/to/agent.json # With DNS validation options\njacs agent verify --require-dns\njacs agent verify --require-strict-dns\njacs agent verify --no-dns\njacs agent verify --ignore-dns Options: Option Short Description -a --agent-file Path to agent file (optional) --no-dns Disable DNS validation --require-dns Require DNS validation (not strict) --require-strict-dns Require DNSSEC validation --ignore-dns Ignore DNS validation entirely","breadcrumbs":"CLI Usage » Verify Agent","id":"128","title":"Verify Agent"},"1280":{"body":"","breadcrumbs":"Web Servers » Error Handling","id":"1280","title":"Error Handling"},"1281":{"body":"app.post('/api/process', (req, res, next) => { try { if (!req.jacsPayload) { throw new Error('Missing JACS payload'); } const result = processData(req.jacsPayload); res.send({ result }); } catch (error) { next(error); }\n}); // Global error handler\napp.use((error, req, res, next) => { console.error('Error:', error.message); res.status(500).send({ error: 'Internal server error', message: error.message });\n});","breadcrumbs":"Web Servers » Server-Side Errors","id":"1281","title":"Server-Side Errors"},"1282":{"body":"try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"Web Servers » Client-Side Errors","id":"1282","title":"Client-Side Errors"},"1283":{"body":"","breadcrumbs":"Web Servers » Security Best Practices","id":"1283","title":"Security Best Practices"},"1284":{"body":"Always use HTTPS for production deployments: // Client\nawait sendJacsRequest('https://api.example.com/data', payload);","breadcrumbs":"Web Servers » 1. Use TLS in Production","id":"1284","title":"1. Use TLS in Production"},"1285":{"body":"Each endpoint needs its own JACS identity: project/\n├── server/\n│ ├── jacs.config.json\n│ └── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── client/ ├── jacs.config.json └── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Web Servers » 2. Separate Server and Client Keys","id":"1285","title":"2. Separate Server and Client Keys"},"1286":{"body":"For Express, ensure correct middleware order: // Correct order\napp.use('/api', express.text({ type: '*/*' })); // 1. Parse body\napp.use('/api', JACSExpressMiddleware({ ... })); // 2. JACS verification // Wrong order - JACS won't receive string body\napp.use('/api', JACSExpressMiddleware({ ... }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"Web Servers » 3. Middleware Order Matters","id":"1286","title":"3. Middleware Order Matters"},"1287":{"body":"Don't mix express.json() with JACS routes: // JSON for non-JACS routes\napp.use('/public', express.json()); // Text for JACS routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ ... }));","breadcrumbs":"Web Servers » 4. Avoid JSON Body Parser Conflicts","id":"1287","title":"4. Avoid JSON Body Parser Conflicts"},"1288":{"body":"Log JACS requests for security auditing: function jacsLogger(req, res, next) { if (req.jacsPayload) { console.log(JSON.stringify({ timestamp: new Date().toISOString(), method: req.method, path: req.path, jacsPayload: req.jacsPayload, ip: req.ip })); } next();\n} app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' }));\napp.use('/api', jacsLogger); // After JACS middleware","breadcrumbs":"Web Servers » Logging and Auditing","id":"1288","title":"Logging and Auditing"},"1289":{"body":"","breadcrumbs":"Web Servers » Testing","id":"1289","title":"Testing"},"129":{"body":"# Generate DNS TXT record commands for agent publishing\njacs agent dns --domain example.com --agent-id [uuid] # With different output formats\njacs agent dns --domain example.com --encoding hex\njacs agent dns --domain example.com --provider aws # With custom TTL\njacs agent dns --domain example.com --ttl 7200 Options: Option Default Description --domain Domain for DNS record --agent-id Agent UUID (optional, uses config if not provided) --ttl 3600 Time-to-live in seconds --encoding base64 Encoding format (base64, hex) --provider plain Output format (plain, aws, azure, cloudflare)","breadcrumbs":"CLI Usage » DNS Commands","id":"129","title":"DNS Commands"},"1290":{"body":"import request from 'supertest';\nimport jacs from '@hai.ai/jacs'; describe('JACS API', () => { beforeAll(async () => { await jacs.load('./jacs.test.config.json'); }); it('should accept valid JACS requests', async () => { const payload = { action: 'test', data: 'hello' }; const signedRequest = await jacs.signRequest(payload); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); // Verify response is JACS-signed const verified = await jacs.verifyResponse(response.text); expect(verified.payload.echo).toEqual(payload); }); it('should reject unsigned requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Web Servers » Testing with Supertest","id":"1290","title":"Testing with Supertest"},"1291":{"body":"","breadcrumbs":"Web Servers » Troubleshooting","id":"1291","title":"Troubleshooting"},"1292":{"body":"Issue Cause Solution req.jacsPayload undefined Wrong middleware order Put express.text() before JACS middleware Response not signed Sending string instead of object Use res.send({ ... }) not res.send(JSON.stringify(...)) Verification failures Key mismatch Ensure compatible JACS configurations Connection refused Server not running Verify server is listening on correct port","breadcrumbs":"Web Servers » Common Issues","id":"1292","title":"Common Issues"},"1293":{"body":"// Node.js\nprocess.env.JACS_DEBUG = 'true'; # Python\nimport logging\nlogging.basicConfig(level=logging.DEBUG)","breadcrumbs":"Web Servers » Debug Logging","id":"1293","title":"Debug Logging"},"1294":{"body":"Node.js HTTP Server - Detailed Node.js documentation Express Middleware - Express-specific patterns MCP Integration - Model Context Protocol support Security Model - JACS security architecture","breadcrumbs":"Web Servers » See Also","id":"1294","title":"See Also"},"1295":{"body":"JACS includes a built-in PostgreSQL storage backend (behind the database feature flag) that handles document storage, JSONB queries, and signature preservation automatically. For most use cases, this is the recommended approach. For custom integrations with other databases, see the examples below.","breadcrumbs":"Databases » Databases","id":"1295","title":"Databases"},"1296":{"body":"JACS ships with native PostgreSQL support via the database Cargo feature. This uses a TEXT + JSONB dual-column strategy to preserve cryptographic signatures while enabling efficient queries. See Storage Backends for full documentation. # Enable at compile time\ncargo build --features database # Configure via environment\nexport JACS_DATABASE_URL=\"postgres://user:pass@localhost:5432/jacs\"","breadcrumbs":"Databases » Built-in PostgreSQL Backend","id":"1296","title":"Built-in PostgreSQL Backend"},"1297":{"body":"If you need to integrate JACS documents with other databases (MongoDB, SQLite, Redis) or need application-specific table structures, you can store JACS documents directly. JACS documents are JSON objects with cryptographic signatures. They can be stored in any database that supports JSON or text storage: Database Type Storage Method Best For PostgreSQL (built-in) TEXT + JSONB Complex queries, signature preservation PostgreSQL (custom) JSONB column Application-specific schemas MongoDB Native documents Document-centric apps SQLite TEXT column Local/embedded apps Redis Key-value Caching, high-speed access","breadcrumbs":"Databases » Custom Database Integrations","id":"1297","title":"Custom Database Integrations"},"1298":{"body":"The built-in PostgreSQL backend covers most query needs. Use a custom integration when you need: Different Database : MongoDB, SQLite, Redis, etc. Custom Schema : Application-specific table structures Relations : Link JACS documents to non-JACS data Existing Infrastructure : Integrate with current systems","breadcrumbs":"Databases » Why Use a Custom Database Integration?","id":"1298","title":"Why Use a Custom Database Integration?"},"1299":{"body":"","breadcrumbs":"Databases » PostgreSQL Integration","id":"1299","title":"PostgreSQL Integration"},"13":{"body":"Unlike general-purpose signing frameworks, JACS is specifically designed for AI agent communication patterns - tasks, agreements, and collaborative workflows.","breadcrumbs":"Introduction » 🎯 Agent-Focused Design","id":"13","title":"🎯 Agent-Focused Design"},"130":{"body":"# Look up another agent's public key from their domain\njacs agent lookup agent.example.com # With strict DNSSEC validation\njacs agent lookup agent.example.com --strict # Skip DNS lookup\njacs agent lookup agent.example.com --no-dns","breadcrumbs":"CLI Usage » Lookup Agent","id":"130","title":"Lookup Agent"},"1300":{"body":"-- JACS documents table\nCREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, signature_valid BOOLEAN DEFAULT TRUE, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), updated_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), -- Extracted fields for indexing agent_id UUID, document_type VARCHAR(100), UNIQUE(id, version_id)\n); -- Index on JACS fields\nCREATE INDEX idx_jacs_agent ON jacs_documents(agent_id);\nCREATE INDEX idx_jacs_type ON jacs_documents(document_type);\nCREATE INDEX idx_jacs_created ON jacs_documents(created_at); -- GIN index for JSONB queries\nCREATE INDEX idx_jacs_document ON jacs_documents USING GIN (document);","breadcrumbs":"Databases » Schema Design","id":"1300","title":"Schema Design"},"1301":{"body":"import { Pool } from 'pg';\nimport jacs from '@hai.ai/jacs'; const pool = new Pool({ connectionString: process.env.DATABASE_URL\n}); class JacsDocumentStore { constructor(configPath) { this.configPath = configPath; } async initialize() { await jacs.load(this.configPath); } async createAndStore(content, options = {}) { // Create JACS document const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); // Store in database const result = await pool.query(` INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES ($1, $2, $3, $4, $5) RETURNING * `, [ doc.jacsId, doc.jacsVersion, doc, doc.jacsSignature?.agentID, content.type || 'document' ]); return result.rows[0]; } async getDocument(id, versionId = null) { let query = 'SELECT * FROM jacs_documents WHERE id = $1'; const params = [id]; if (versionId) { query += ' AND version_id = $2'; params.push(versionId); } else { query += ' ORDER BY created_at DESC LIMIT 1'; } const result = await pool.query(query, params); return result.rows[0]; } async verifyDocument(id) { const row = await this.getDocument(id); if (!row) return null; const isValid = await jacs.verifyDocument(JSON.stringify(row.document)); // Update signature_valid flag await pool.query( 'UPDATE jacs_documents SET signature_valid = $1 WHERE id = $2 AND version_id = $3', [isValid, row.id, row.version_id] ); return { document: row.document, isValid }; } async searchDocuments(query) { const result = await pool.query(` SELECT * FROM jacs_documents WHERE document @> $1 ORDER BY created_at DESC `, [JSON.stringify(query)]); return result.rows; }\n} // Usage\nconst store = new JacsDocumentStore('./jacs.config.json');\nawait store.initialize(); // Create and store a document\nconst doc = await store.createAndStore({ type: 'invoice', amount: 1500, customer: 'Acme Corp'\n}); // Search documents\nconst invoices = await store.searchDocuments({ type: 'invoice' });","breadcrumbs":"Databases » Node.js Example","id":"1301","title":"Node.js Example"},"1302":{"body":"import json\nimport jacs\nimport psycopg2\nfrom psycopg2.extras import RealDictCursor class JacsDocumentStore: def __init__(self, config_path, database_url): self.config_path = config_path self.database_url = database_url self.conn = None def initialize(self): # Initialize JACS agent = jacs.JacsAgent() agent.load(self.config_path) # Connect to database self.conn = psycopg2.connect(self.database_url) def create_and_store(self, content, custom_schema=None): # Create JACS document doc_string = jacs.create_document( json.dumps(content), custom_schema=custom_schema ) doc = json.loads(doc_string) # Store in database with self.conn.cursor(cursor_factory=RealDictCursor) as cur: cur.execute(\"\"\" INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES (%s, %s, %s, %s, %s) RETURNING * \"\"\", ( doc['jacsId'], doc['jacsVersion'], json.dumps(doc), doc.get('jacsSignature', {}).get('agentID'), content.get('type', 'document') )) self.conn.commit() return cur.fetchone() def get_document(self, doc_id, version_id=None): with self.conn.cursor(cursor_factory=RealDictCursor) as cur: if version_id: cur.execute( \"SELECT * FROM jacs_documents WHERE id = %s AND version_id = %s\", (doc_id, version_id) ) else: cur.execute( \"SELECT * FROM jacs_documents WHERE id = %s ORDER BY created_at DESC LIMIT 1\", (doc_id,) ) return cur.fetchone() def verify_document(self, doc_id): row = self.get_document(doc_id) if not row: return None is_valid = jacs.verify_document(json.dumps(row['document'])) # Update verification status with self.conn.cursor() as cur: cur.execute( \"UPDATE jacs_documents SET signature_valid = %s WHERE id = %s AND version_id = %s\", (is_valid, row['id'], row['version_id']) ) self.conn.commit() return {'document': row['document'], 'is_valid': is_valid} def search_documents(self, query): with self.conn.cursor(cursor_factory=RealDictCursor) as cur: cur.execute( \"SELECT * FROM jacs_documents WHERE document @> %s ORDER BY created_at DESC\", (json.dumps(query),) ) return cur.fetchall() # Usage\nstore = JacsDocumentStore('./jacs.config.json', 'postgresql://localhost/mydb')\nstore.initialize() # Create and store a document\ndoc = store.create_and_store({ 'type': 'invoice', 'amount': 1500, 'customer': 'Acme Corp'\n}) # Search documents\ninvoices = store.search_documents({'type': 'invoice'})","breadcrumbs":"Databases » Python Example","id":"1302","title":"Python Example"},"1303":{"body":"","breadcrumbs":"Databases » MongoDB Integration","id":"1303","title":"MongoDB Integration"},"1304":{"body":"// MongoDB schema (using Mongoose)\nconst jacsDocumentSchema = new mongoose.Schema({ jacsId: { type: String, required: true, index: true }, jacsVersion: { type: String, required: true }, document: { type: mongoose.Schema.Types.Mixed, required: true }, signatureValid: { type: Boolean, default: true }, agentId: { type: String, index: true }, documentType: { type: String, index: true }, createdAt: { type: Date, default: Date.now, index: true }\n}); jacsDocumentSchema.index({ jacsId: 1, jacsVersion: 1 }, { unique: true });","breadcrumbs":"Databases » Collection Design","id":"1304","title":"Collection Design"},"1305":{"body":"import mongoose from 'mongoose';\nimport jacs from '@hai.ai/jacs'; const JacsDocument = mongoose.model('JacsDocument', jacsDocumentSchema); class MongoJacsStore { async initialize(configPath) { await jacs.load(configPath); await mongoose.connect(process.env.MONGODB_URI); } async createAndStore(content, options = {}) { const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); const stored = await JacsDocument.create({ jacsId: doc.jacsId, jacsVersion: doc.jacsVersion, document: doc, agentId: doc.jacsSignature?.agentID, documentType: content.type || 'document' }); return stored; } async getDocument(jacsId, versionId = null) { const query = { jacsId }; if (versionId) { query.jacsVersion = versionId; } return JacsDocument.findOne(query).sort({ createdAt: -1 }); } async searchDocuments(query) { // Build MongoDB query from content fields const mongoQuery = {}; for (const [key, value] of Object.entries(query)) { mongoQuery[`document.${key}`] = value; } return JacsDocument.find(mongoQuery).sort({ createdAt: -1 }); } async getDocumentsByAgent(agentId) { return JacsDocument.find({ agentId }).sort({ createdAt: -1 }); }\n} // Usage\nconst store = new MongoJacsStore();\nawait store.initialize('./jacs.config.json'); const doc = await store.createAndStore({ type: 'contract', parties: ['Alice', 'Bob'], value: 50000\n}); const contracts = await store.searchDocuments({ type: 'contract' });","breadcrumbs":"Databases » Example","id":"1305","title":"Example"},"1306":{"body":"For embedded or local applications: import Database from 'better-sqlite3';\nimport jacs from '@hai.ai/jacs'; class SqliteJacsStore { constructor(dbPath) { this.db = new Database(dbPath); this.initSchema(); } initSchema() { this.db.exec(` CREATE TABLE IF NOT EXISTS jacs_documents ( id TEXT NOT NULL, version_id TEXT NOT NULL, document TEXT NOT NULL, agent_id TEXT, document_type TEXT, signature_valid INTEGER DEFAULT 1, created_at TEXT DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id, version_id) ); CREATE INDEX IF NOT EXISTS idx_agent ON jacs_documents(agent_id); CREATE INDEX IF NOT EXISTS idx_type ON jacs_documents(document_type); `); } async initialize(configPath) { await jacs.load(configPath); } async createAndStore(content, options = {}) { const docString = await jacs.createDocument( JSON.stringify(content), options.customSchema ); const doc = JSON.parse(docString); const stmt = this.db.prepare(` INSERT INTO jacs_documents (id, version_id, document, agent_id, document_type) VALUES (?, ?, ?, ?, ?) `); stmt.run( doc.jacsId, doc.jacsVersion, docString, doc.jacsSignature?.agentID, content.type || 'document' ); return doc; } getDocument(id, versionId = null) { let query = 'SELECT * FROM jacs_documents WHERE id = ?'; const params = [id]; if (versionId) { query += ' AND version_id = ?'; params.push(versionId); } else { query += ' ORDER BY created_at DESC LIMIT 1'; } const stmt = this.db.prepare(query); const row = stmt.get(...params); if (row) { row.document = JSON.parse(row.document); } return row; } searchByType(documentType) { const stmt = this.db.prepare( 'SELECT * FROM jacs_documents WHERE document_type = ? ORDER BY created_at DESC' ); return stmt.all(documentType).map(row => ({ ...row, document: JSON.parse(row.document) })); }\n}","breadcrumbs":"Databases » SQLite Integration","id":"1306","title":"SQLite Integration"},"1307":{"body":"Use Redis for high-speed document access: import Redis from 'ioredis';\nimport jacs from '@hai.ai/jacs'; class JacsRedisCache { constructor(redisUrl) { this.redis = new Redis(redisUrl); this.ttl = 3600; // 1 hour default TTL } async initialize(configPath) { await jacs.load(configPath); } async cacheDocument(docString) { const doc = JSON.parse(docString); const key = `jacs:${doc.jacsId}:${doc.jacsVersion}`; await this.redis.setex(key, this.ttl, docString); // Also cache as latest version await this.redis.setex(`jacs:${doc.jacsId}:latest`, this.ttl, docString); return doc; } async getDocument(jacsId, versionId = 'latest') { const key = `jacs:${jacsId}:${versionId}`; const docString = await this.redis.get(key); if (!docString) return null; return JSON.parse(docString); } async invalidate(jacsId, versionId = null) { if (versionId) { await this.redis.del(`jacs:${jacsId}:${versionId}`); } else { // Invalidate all versions const keys = await this.redis.keys(`jacs:${jacsId}:*`); if (keys.length > 0) { await this.redis.del(...keys); } } }\n}","breadcrumbs":"Databases » Redis Caching","id":"1307","title":"Redis Caching"},"1308":{"body":"","breadcrumbs":"Databases » Indexing Strategies","id":"1308","title":"Indexing Strategies"},"1309":{"body":"Extract key fields during storage for efficient querying: async function extractIndexFields(jacsDocument) { return { jacsId: jacsDocument.jacsId, jacsVersion: jacsDocument.jacsVersion, agentId: jacsDocument.jacsSignature?.agentID, createdDate: jacsDocument.jacsSignature?.date, hasAgreement: !!jacsDocument.jacsAgreement, agreementComplete: jacsDocument.jacsAgreement?.signatures?.length === jacsDocument.jacsAgreement?.agentIDs?.length, // Application-specific fields documentType: jacsDocument.type, status: jacsDocument.status, tags: jacsDocument.tags || [] };\n}","breadcrumbs":"Databases » Extracting Searchable Fields","id":"1309","title":"Extracting Searchable Fields"},"131":{"body":"","breadcrumbs":"CLI Usage » Task Commands","id":"131","title":"Task Commands"},"1310":{"body":"PostgreSQL example with full-text search: -- Add text search column\nALTER TABLE jacs_documents ADD COLUMN search_vector tsvector; -- Create index\nCREATE INDEX idx_search ON jacs_documents USING GIN(search_vector); -- Update trigger\nCREATE OR REPLACE FUNCTION update_search_vector() RETURNS trigger AS $$\nBEGIN NEW.search_vector := to_tsvector('english', coalesce(NEW.document->>'title', '') || ' ' || coalesce(NEW.document->>'content', '') || ' ' || coalesce(NEW.document->>'description', '') ); RETURN NEW;\nEND;\n$$ LANGUAGE plpgsql; CREATE TRIGGER jacs_search_update BEFORE INSERT OR UPDATE ON jacs_documents FOR EACH ROW EXECUTE FUNCTION update_search_vector(); // Search example\nasync function fullTextSearch(searchQuery) { const result = await pool.query(` SELECT *, ts_rank(search_vector, plainto_tsquery($1)) as rank FROM jacs_documents WHERE search_vector @@ plainto_tsquery($1) ORDER BY rank DESC `, [searchQuery]); return result.rows;\n}","breadcrumbs":"Databases » Full-Text Search","id":"1310","title":"Full-Text Search"},"1311":{"body":"","breadcrumbs":"Databases » Best Practices","id":"1311","title":"Best Practices"},"1312":{"body":"Always store the complete JACS document to preserve signatures: // Good - stores complete document\nawait pool.query( 'INSERT INTO jacs_documents (id, document) VALUES ($1, $2)', [doc.jacsId, JSON.stringify(doc)] // Complete document\n); // Bad - loses signature data\nawait pool.query( 'INSERT INTO documents (id, content) VALUES ($1, $2)', [doc.jacsId, JSON.stringify(doc.content)] // Only content\n);","breadcrumbs":"Databases » 1. Store Complete Documents","id":"1312","title":"1. Store Complete Documents"},"1313":{"body":"Always verify signatures when retrieving documents for sensitive operations: async function getVerifiedDocument(id) { const row = await pool.query( 'SELECT document FROM jacs_documents WHERE id = $1', [id] ); if (!row.rows[0]) return null; const docString = JSON.stringify(row.rows[0].document); const isValid = await jacs.verifyDocument(docString); if (!isValid) { throw new Error('Document signature verification failed'); } return row.rows[0].document;\n}","breadcrumbs":"Databases » 2. Verify After Retrieval","id":"1313","title":"2. Verify After Retrieval"},"1314":{"body":"Maintain version history for audit trails: async function getDocumentHistory(jacsId) { const result = await pool.query(` SELECT * FROM jacs_documents WHERE id = $1 ORDER BY created_at ASC `, [jacsId]); return result.rows;\n}","breadcrumbs":"Databases » 3. Handle Version History","id":"1314","title":"3. Handle Version History"},"1315":{"body":"Periodically verify stored documents: async function verifyAllDocuments() { const docs = await pool.query('SELECT * FROM jacs_documents'); for (const row of docs.rows) { const docString = JSON.stringify(row.document); const isValid = await jacs.verifyDocument(docString); if (!isValid) { console.warn(`Document ${row.id} failed verification`); await pool.query( 'UPDATE jacs_documents SET signature_valid = false WHERE id = $1', [row.id] ); } }\n}","breadcrumbs":"Databases » 4. Batch Verification","id":"1315","title":"4. Batch Verification"},"1316":{"body":"Storage Backends - Built-in JACS storage Security Model - Document security Testing - Testing database integrations","breadcrumbs":"Databases » See Also","id":"1316","title":"See Also"},"1317":{"body":"This chapter provides practical examples of using the JACS CLI for common workflows.","breadcrumbs":"CLI Examples » CLI Examples","id":"1317","title":"CLI Examples"},"1318":{"body":"jacs init # Initialize JACS (config + agent + keys)\njacs agent create # Create a new agent\njacs document create # Create a signed document\njacs document verify # Verify a document signature\njacs document sign-agreement # Sign an agreement","breadcrumbs":"CLI Examples » Quick Reference","id":"1318","title":"Quick Reference"},"1319":{"body":"","breadcrumbs":"CLI Examples » Getting Started","id":"1319","title":"Getting Started"},"132":{"body":"jacs task create -n \"Task Name\" -d \"Task description\" # With optional agent file\njacs task create -n \"Task Name\" -d \"Description\" -a ./agent.json # With input file\njacs task create -n \"Task Name\" -d \"Description\" -f ./task-details.json Options: Option Short Required Description -n --name Yes Name of the task -d --description Yes Description of the task -a --agent-file No Path to agent file -f --filename No Path to JSON file with additional task data","breadcrumbs":"CLI Usage » Create Task","id":"132","title":"Create Task"},"1320":{"body":"Initialize JACS in a new project: # Create a new directory\nmkdir my-jacs-project\ncd my-jacs-project # Initialize JACS\njacs init # This creates:\n# - jacs.config.json (configuration)\n# - jacs_keys/ (private and public keys)\n# - jacs_data/ (document storage)\n# - An initial agent document","breadcrumbs":"CLI Examples » First-Time Setup","id":"1320","title":"First-Time Setup"},"1321":{"body":"# Check the configuration\njacs config read # Verify your agent\njacs agent verify # Expected output:\n# Agent verification successful\n# Agent ID: 550e8400-e29b-41d4-a716-446655440000\n# Agent Version: f47ac10b-58cc-4372-a567-0e02b2c3d479","breadcrumbs":"CLI Examples » Verify Your Setup","id":"1321","title":"Verify Your Setup"},"1322":{"body":"","breadcrumbs":"CLI Examples » Document Operations","id":"1322","title":"Document Operations"},"1323":{"body":"Create from a JSON file: # Create input file\ncat > invoice.json << 'EOF'\n{ \"type\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"customer\": \"Acme Corp\", \"amount\": 1500.00, \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ]\n}\nEOF # Create signed document\njacs document create -f invoice.json # Output shows the saved document path\n# Document saved to: jacs_data/documents/[uuid]/[version].json Create with custom output: # Specify output filename\njacs document create -f invoice.json -o signed-invoice.json # Print to stdout (don't save)\njacs document create -f invoice.json --no-save Create with file attachments: # Create document with PDF attachment\njacs document create -f contract.json --attach ./contract.pdf # Embed attachment content in document\njacs document create -f contract.json --attach ./contract.pdf --embed true # Attach entire directory\njacs document create -f report.json --attach ./attachments/ Create with custom schema: # Use a custom schema for validation\njacs document create -f order.json -s ./schemas/order.schema.json","breadcrumbs":"CLI Examples » Creating Documents","id":"1323","title":"Creating Documents"},"1324":{"body":"Basic verification: # Verify a document\njacs document verify -f ./signed-invoice.json # Expected output:\n# Document verified successfully\n# Document ID: 550e8400-e29b-41d4-a716-446655440000\n# Signer: Agent Name (agent-uuid) Verbose verification: # Get detailed verification info\njacs document verify -f ./signed-invoice.json -v # Output includes:\n# - Document ID and version\n# - Signature algorithm used\n# - Signing agent details\n# - Timestamp\n# - Schema validation results Batch verification: # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -d ./invoices/ -s ./schemas/invoice.schema.json","breadcrumbs":"CLI Examples » Verifying Documents","id":"1324","title":"Verifying Documents"},"1325":{"body":"Create a new version of an existing document: # Original document\ncat > original.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"draft\", \"content\": \"Initial version\"\n}\nEOF jacs document create -f original.json -o project-v1.json # Updated content\ncat > updated.json << 'EOF'\n{ \"title\": \"Project Plan\", \"status\": \"approved\", \"content\": \"Final version with updates\"\n}\nEOF # Create new version (maintains version history)\njacs document update -f project-v1.json -n updated.json -o project-v2.json # Verify the updated document\njacs document verify -f project-v2.json -v","breadcrumbs":"CLI Examples » Updating Documents","id":"1325","title":"Updating Documents"},"1326":{"body":"# Extract embedded files from a document\njacs document extract -f ./document-with-attachments.json # Extracts to: jacs_data/extracted/[document-id]/ # Extract from multiple documents\njacs document extract -d ./documents/","breadcrumbs":"CLI Examples » Extracting Embedded Content","id":"1326","title":"Extracting Embedded Content"},"1327":{"body":"","breadcrumbs":"CLI Examples » Agreement Workflows","id":"1327","title":"Agreement Workflows"},"1328":{"body":"An agreement requires multiple agents to sign a document: # First, create the document to be agreed upon\ncat > service-agreement.json << 'EOF'\n{ \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"...\", \"effectiveDate\": \"2024-02-01\"\n}\nEOF jacs document create -f service-agreement.json -o agreement.json # Create agreement requiring signatures from two agents\n# (Use actual agent UUIDs)\njacs document create-agreement \\ -f agreement.json \\ -i \"agent1-uuid-here,agent2-uuid-here\" \\ -o agreement-pending.json # Output:\n# Agreement created\n# Required signatures: 2\n# Current signatures: 0","breadcrumbs":"CLI Examples » Creating an Agreement","id":"1328","title":"Creating an Agreement"},"1329":{"body":"# First agent signs\njacs document sign-agreement -f agreement-pending.json -o agreement-signed-1.json # Check status\njacs document check-agreement -f agreement-signed-1.json\n# Output:\n# Agreement status: pending\n# Signatures: 1/2\n# Missing: agent2-uuid # Second agent signs (using their configuration)\nJACS_CONFIG_PATH=./agent2.config.json \\ jacs document sign-agreement -f agreement-signed-1.json -o agreement-complete.json # Verify completion\njacs document check-agreement -f agreement-complete.json\n# Output:\n# Agreement status: complete\n# Signatures: 2/2","breadcrumbs":"CLI Examples » Signing an Agreement","id":"1329","title":"Signing an Agreement"},"133":{"body":"","breadcrumbs":"CLI Usage » Document Commands","id":"133","title":"Document Commands"},"1330":{"body":"#!/bin/bash\n# agreement-workflow.sh # Step 1: Create the contract document\ncat > contract.json << 'EOF'\n{ \"type\": \"contract\", \"parties\": { \"seller\": \"Widget Corp\", \"buyer\": \"Acme Inc\" }, \"terms\": \"Sale of 1000 widgets at $10 each\", \"totalValue\": 10000\n}\nEOF echo \"Creating contract document...\"\njacs document create -f contract.json -o contract-signed.json # Step 2: Get agent IDs\nSELLER_AGENT=$(jacs config read | grep agent_id | cut -d: -f2 | tr -d ' ')\nBUYER_AGENT=\"buyer-agent-uuid-here\" # Replace with actual ID # Step 3: Create agreement\necho \"Creating agreement...\"\njacs document create-agreement \\ -f contract-signed.json \\ -i \"$SELLER_AGENT,$BUYER_AGENT\" \\ -o contract-agreement.json # Step 4: Seller signs\necho \"Seller signing...\"\njacs document sign-agreement \\ -f contract-agreement.json \\ -o contract-seller-signed.json # Step 5: Check intermediate status\necho \"Checking status...\"\njacs document check-agreement -f contract-seller-signed.json # Step 6: Buyer signs\necho \"Buyer signing...\"\nJACS_CONFIG_PATH=./buyer.config.json \\ jacs document sign-agreement \\ -f contract-seller-signed.json \\ -o contract-complete.json # Step 7: Verify complete agreement\necho \"Final verification...\"\njacs document verify -f contract-complete.json -v\njacs document check-agreement -f contract-complete.json echo \"Agreement workflow complete!\"","breadcrumbs":"CLI Examples » Complete Agreement Workflow","id":"1330","title":"Complete Agreement Workflow"},"1331":{"body":"","breadcrumbs":"CLI Examples » Agent Operations","id":"1331","title":"Agent Operations"},"1332":{"body":"# Create agent definition file\ncat > my-agent.json << 'EOF'\n{ \"jacsAgentType\": \"ai\", \"name\": \"My Custom Agent\", \"description\": \"An AI agent for document processing\", \"contact\": { \"email\": \"agent@example.com\" }, \"services\": [ { \"name\": \"document-processing\", \"description\": \"Process and sign documents\" } ]\n}\nEOF # Create agent with new keys\njacs agent create --create-keys true -f my-agent.json # Create agent using existing keys\njacs agent create --create-keys false -f my-agent.json","breadcrumbs":"CLI Examples » Creating a Custom Agent","id":"1332","title":"Creating a Custom Agent"},"1333":{"body":"Generate DNS record commands: # Generate TXT record for your domain\njacs agent dns --domain myagent.example.com # Output (example):\n# Add the following DNS TXT record:\n# _v1.agent.jacs.myagent.example.com TXT \"pk=\" # Different providers\njacs agent dns --domain myagent.example.com --provider aws\njacs agent dns --domain myagent.example.com --provider cloudflare\njacs agent dns --domain myagent.example.com --provider azure # Custom TTL\njacs agent dns --domain myagent.example.com --ttl 7200 Verify DNS-published agent: # Look up agent by domain\njacs agent lookup partner.example.com # Require strict DNSSEC validation\njacs agent lookup partner.example.com --strict # Verify local agent file against DNS\njacs agent verify -a ./partner-agent.json --require-strict-dns","breadcrumbs":"CLI Examples » DNS-Based Identity","id":"1333","title":"DNS-Based Identity"},"1334":{"body":"# Basic verification\njacs agent verify # Verify another agent's file\njacs agent verify -a ./other-agent.json # With DNS requirements\njacs agent verify --require-dns # Require DNS (not strict)\njacs agent verify --require-strict-dns # Require DNSSEC\njacs agent verify --no-dns # Skip DNS entirely\njacs agent verify --ignore-dns # Ignore DNS validation failures","breadcrumbs":"CLI Examples » Agent Verification","id":"1334","title":"Agent Verification"},"1335":{"body":"","breadcrumbs":"CLI Examples » Task Management","id":"1335","title":"Task Management"},"1336":{"body":"# Simple task\njacs task create \\ -n \"Review Contract\" \\ -d \"Review the service contract and provide feedback\" # Task with additional data from file\ncat > task-details.json << 'EOF'\n{ \"priority\": \"high\", \"dueDate\": \"2024-02-15\", \"assignee\": \"legal-team\"\n}\nEOF jacs task create \\ -n \"Contract Review\" \\ -d \"Detailed review required\" \\ -f task-details.json","breadcrumbs":"CLI Examples » Creating Tasks","id":"1336","title":"Creating Tasks"},"1337":{"body":"","breadcrumbs":"CLI Examples » Scripting Examples","id":"1337","title":"Scripting Examples"},"1338":{"body":"#!/bin/bash\n# batch-sign.sh - Sign all JSON files in a directory INPUT_DIR=$1\nOUTPUT_DIR=${2:-\"./signed\"} mkdir -p \"$OUTPUT_DIR\" for file in \"$INPUT_DIR\"/*.json; do filename=$(basename \"$file\") echo \"Signing: $filename\" jacs document create -f \"$file\" -o \"$OUTPUT_DIR/$filename\" if [ $? -eq 0 ]; then echo \" ✓ Signed successfully\" else echo \" ✗ Signing failed\" fi\ndone echo \"Batch signing complete. Output in $OUTPUT_DIR\"","breadcrumbs":"CLI Examples » Batch Document Processing","id":"1338","title":"Batch Document Processing"},"1339":{"body":"#!/bin/bash\n# verify-report.sh - Generate verification report DOC_DIR=$1\nREPORT=\"verification-report.txt\" echo \"JACS Document Verification Report\" > $REPORT\necho \"Generated: $(date)\" >> $REPORT\necho \"=================================\" >> $REPORT\necho \"\" >> $REPORT passed=0\nfailed=0 for file in \"$DOC_DIR\"/*.json; do filename=$(basename \"$file\") if jacs document verify -f \"$file\" > /dev/null 2>&1; then echo \"✓ PASS: $filename\" >> $REPORT ((passed++)) else echo \"✗ FAIL: $filename\" >> $REPORT ((failed++)) fi\ndone echo \"\" >> $REPORT\necho \"Summary: $passed passed, $failed failed\" >> $REPORT cat $REPORT","breadcrumbs":"CLI Examples » Verification Report","id":"1339","title":"Verification Report"},"134":{"body":"# Create from a JSON file\njacs document create -f ./document.json # Create from a directory of files\njacs document create -d ./documents/ # With custom schema\njacs document create -f ./document.json -s ./custom-schema.json # With file attachments\njacs document create -f ./document.json --attach ./attachment.pdf # Embed attachments in document\njacs document create -f ./document.json --attach ./files/ --embed true # Output to specific file\njacs document create -f ./document.json -o ./output.json # Print to stdout instead of saving\njacs document create -f ./document.json --no-save Options: Option Short Description -f --filename Path to input JSON file -d --directory Path to directory of JSON files -o --output Output filename -s --schema Path to custom JSON schema --attach Path to file/directory for attachments --embed -e Embed documents (true/false) --no-save -n Print to stdout instead of saving -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Usage » Create Document","id":"134","title":"Create Document"},"1340":{"body":"#!/bin/bash\n# watch-and-verify.sh - Monitor directory and verify new documents WATCH_DIR=${1:-\"./incoming\"} echo \"Watching $WATCH_DIR for new documents...\" inotifywait -m \"$WATCH_DIR\" -e create -e moved_to | while read dir action file; do if [[ \"$file\" == *.json ]]; then echo \"New document: $file\" if jacs document verify -f \"$WATCH_DIR/$file\"; then mv \"$WATCH_DIR/$file\" \"./verified/\" echo \" Moved to verified/\" else mv \"$WATCH_DIR/$file\" \"./rejected/\" echo \" Moved to rejected/\" fi fi done","breadcrumbs":"CLI Examples » Watch for New Documents","id":"1340","title":"Watch for New Documents"},"1341":{"body":"","breadcrumbs":"CLI Examples » Environment Configuration","id":"1341","title":"Environment Configuration"},"1342":{"body":"# Use a specific config file\nexport JACS_CONFIG_PATH=./production.config.json\njacs document create -f invoice.json # Override specific settings\nexport JACS_DATA_DIRECTORY=./custom-data\nexport JACS_KEY_DIRECTORY=./secure-keys\njacs agent create --create-keys true # One-time override\nJACS_CONFIG_PATH=./test.config.json jacs document verify -f test-doc.json","breadcrumbs":"CLI Examples » Using Environment Variables","id":"1342","title":"Using Environment Variables"},"1343":{"body":"# Development\nalias jacs-dev='JACS_CONFIG_PATH=./dev.config.json jacs'\njacs-dev document create -f test.json # Production\nalias jacs-prod='JACS_CONFIG_PATH=./prod.config.json jacs'\njacs-prod document verify -f important.json # Different agents\nalias jacs-alice='JACS_CONFIG_PATH=./alice.config.json jacs'\nalias jacs-bob='JACS_CONFIG_PATH=./bob.config.json jacs'","breadcrumbs":"CLI Examples » Multiple Configurations","id":"1343","title":"Multiple Configurations"},"1344":{"body":"","breadcrumbs":"CLI Examples » Error Handling","id":"1344","title":"Error Handling"},"1345":{"body":"jacs document verify -f document.json\nexit_code=$? case $exit_code in 0) echo \"Success\" ;; 1) echo \"General error\" ;; 2) echo \"Invalid arguments\" ;; 3) echo \"File not found\" ;; 4) echo \"Verification failed\" ;; 5) echo \"Signature invalid\" ;; *) echo \"Unknown error: $exit_code\" ;;\nesac","breadcrumbs":"CLI Examples » Understanding Exit Codes","id":"1345","title":"Understanding Exit Codes"},"1346":{"body":"#!/bin/bash\n# robust-signing.sh sign_document() { local input=$1 local output=$2 if ! jacs document create -f \"$input\" -o \"$output\" 2>/dev/null; then echo \"Error: Failed to sign $input\" >&2 return 1 fi if ! jacs document verify -f \"$output\" 2>/dev/null; then echo \"Error: Verification failed for $output\" >&2 rm -f \"$output\" return 1 fi echo \"Successfully signed: $output\" return 0\n} # Usage\nsign_document \"invoice.json\" \"signed-invoice.json\" || exit 1","breadcrumbs":"CLI Examples » Handling Failures","id":"1346","title":"Handling Failures"},"1347":{"body":"CLI Command Reference - Complete command reference Configuration Reference - Configuration options Rust CLI Usage - Detailed CLI documentation","breadcrumbs":"CLI Examples » See Also","id":"1347","title":"See Also"},"1348":{"body":"This chapter provides practical Node.js examples using the @hai.ai/jacs package.","breadcrumbs":"Node.js Examples » Node.js Examples","id":"1348","title":"Node.js Examples"},"1349":{"body":"# Install dependencies\nnpm install @hai.ai/jacs express @modelcontextprotocol/sdk zod // Initialize JACS (ES Modules)\nimport { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nawait agent.load('./jacs.config.json');","breadcrumbs":"Node.js Examples » Setup","id":"1349","title":"Setup"},"135":{"body":"# Update an existing document with new content\njacs document update -f ./original.json -n ./updated.json # With output file\njacs document update -f ./original.json -n ./updated.json -o ./result.json # With file attachments\njacs document update -f ./original.json -n ./updated.json --attach ./new-file.pdf Options: Option Short Required Description -f --filename Yes Path to original document -n --new Yes Path to new version -o --output No Output filename --attach No Path to file attachments --embed -e No Embed documents (true/false)","breadcrumbs":"CLI Usage » Update Document","id":"135","title":"Update Document"},"1350":{"body":"","breadcrumbs":"Node.js Examples » Basic Document Operations","id":"1350","title":"Basic Document Operations"},"1351":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function createSignedDocument() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create a simple document const content = { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', items: [ { description: 'Consulting', quantity: 10, price: 150 } ] }; // Create and sign the document const signedDoc = await agent.createDocument(JSON.stringify(content)); // Parse the result const doc = JSON.parse(signedDoc); console.log('Document ID:', doc.jacsId); console.log('Version:', doc.jacsVersion); console.log('Signature:', doc.jacsSignature ? 'Present' : 'Missing'); return doc;\n} createSignedDocument();","breadcrumbs":"Node.js Examples » Creating and Signing Documents","id":"1351","title":"Creating and Signing Documents"},"1352":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function verifyDocument(filePath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read the document const docString = fs.readFileSync(filePath, 'utf-8'); // Verify signature const isValid = await agent.verifyDocument(docString); if (isValid) { console.log('✓ Document signature is valid'); const doc = JSON.parse(docString); console.log(' Signed by:', doc.jacsSignature?.agentID); console.log(' Signed at:', doc.jacsSignature?.date); } else { console.log('✗ Document signature is INVALID'); } return isValid;\n} verifyDocument('./invoice.json');","breadcrumbs":"Node.js Examples » Verifying Documents","id":"1352","title":"Verifying Documents"},"1353":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function updateDocument(originalPath, newContent) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read original document const originalDoc = fs.readFileSync(originalPath, 'utf-8'); // Update with new content (preserves version chain) const updatedDoc = await agent.updateDocument( originalDoc, JSON.stringify(newContent) ); const doc = JSON.parse(updatedDoc); console.log('Updated Document ID:', doc.jacsId); console.log('New Version:', doc.jacsVersion); return doc;\n} // Usage\nconst updated = await updateDocument('./invoice-v1.json', { title: 'Invoice', invoiceNumber: 'INV-001', amount: 1500.00, customer: 'Acme Corp', status: 'paid' // New field\n});","breadcrumbs":"Node.js Examples » Updating Documents","id":"1353","title":"Updating Documents"},"1354":{"body":"","breadcrumbs":"Node.js Examples » HTTP Server with Express","id":"1354","title":"HTTP Server with Express"},"1355":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { JacsAgent } from '@hai.ai/jacs'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Health check (no JACS)\napp.get('/health', (req, res) => { res.json({ status: 'ok', timestamp: new Date().toISOString() });\n}); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Echo endpoint\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', requirePayload, (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : null; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); // Create document endpoint\napp.post('/api/documents', requirePayload, async (req, res) => { try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); app.listen(PORT, () => { console.log(`JACS Express server running on port ${PORT}`);\n});","breadcrumbs":"Node.js Examples » Complete Express Server","id":"1355","title":"Complete Express Server"},"1356":{"body":"import { JacsAgent } from '@hai.ai/jacs'; async function callJacsApi(url, payload) { const agent = new JacsAgent(); await agent.load('./jacs.client.config.json'); // Sign the request const signedRequest = await agent.signRequest(payload); // Send HTTP request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify and extract response const responseText = await response.text(); const verified = await agent.verifyResponse(responseText); return verified.payload;\n} // Usage\nasync function main() { // Call echo endpoint const echoResult = await callJacsApi( 'http://localhost:3000/api/echo', { message: 'Hello, server!' } ); console.log('Echo:', echoResult); // Call calculate endpoint const calcResult = await callJacsApi( 'http://localhost:3000/api/calculate', { operation: 'multiply', a: 7, b: 6 } ); console.log('Calculate:', calcResult);\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » HTTP Client","id":"1356","title":"HTTP Client"},"1357":{"body":"","breadcrumbs":"Node.js Examples » MCP Integration","id":"1357","title":"MCP Integration"},"1358":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; const JACS_CONFIG = \"./jacs.server.config.json\"; async function main() { console.error(\"JACS MCP Server starting...\"); // Create transport with JACS encryption const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG, \"server\" ); // Create MCP server const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"calculate\", { operation: z.enum([\"add\", \"subtract\", \"multiply\", \"divide\"]), a: z.number(), b: z.number() }, async ({ operation, a, b }) => { let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = b !== 0 ? a / b : 'undefined'; break; } return { content: [{ type: \"text\", text: `${a} ${operation} ${b} = ${result}` }] }; }); // Register resource server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: JSON.stringify({ name: \"JACS Demo Server\", version: \"1.0.0\", capabilities: [\"echo\", \"calculate\"] }), mimeType: \"application/json\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"Node.js Examples » MCP Server","id":"1358","title":"MCP Server"},"1359":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const JACS_CONFIG = \"./jacs.client.config.json\"; async function main() { console.log(\"JACS MCP Client starting...\"); // Connect to server const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp-server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG, \"client\" ); const client = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await client.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await client.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo const echoResult = await client.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo:\", echoResult.content[0].text); // Call calculate const calcResult = await client.callTool({ name: \"calculate\", arguments: { operation: \"multiply\", a: 6, b: 7 } }); console.log(\"Calculate:\", calcResult.content[0].text); await client.close(); console.log(\"Done!\");\n} main().catch(console.error);","breadcrumbs":"Node.js Examples » MCP Client","id":"1359","title":"MCP Client"},"136":{"body":"# Verify a document\njacs document verify -f ./document.json # Verify all documents in a directory\njacs document verify -d ./documents/ # With custom schema\njacs document verify -f ./document.json -s ./schema.json # Verbose output\njacs document verify -f ./document.json -v Options: Option Short Description -f --filename Path to document file -d --directory Path to directory of documents -s --schema Path to JSON schema for validation -v --verbose Enable verbose output -a --agent-file Path to agent file","breadcrumbs":"CLI Usage » Verify Document","id":"136","title":"Verify Document"},"1360":{"body":"","breadcrumbs":"Node.js Examples » Agreements","id":"1360","title":"Agreements"},"1361":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function createAgreement() { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Create the contract document const contract = { type: 'service_agreement', title: 'Professional Services Agreement', parties: ['Company A', 'Company B'], terms: 'Terms and conditions here...', value: 50000, effectiveDate: '2024-02-01' }; const signedContract = await agent.createDocument(JSON.stringify(contract)); // Get agent IDs (replace with actual UUIDs) const agentIds = [ 'agent1-uuid-here', 'agent2-uuid-here' ]; // Create agreement const agreementDoc = await agent.createAgreement( signedContract, agentIds, 'Do you agree to the terms of this service agreement?', 'This is a legally binding agreement' ); console.log('Agreement created'); const doc = JSON.parse(agreementDoc); console.log('Document ID:', doc.jacsId); console.log('Required signatures:', doc.jacsAgreement?.agentIDs?.length); // Save for signing fs.writeFileSync('agreement-pending.json', agreementDoc); return doc;\n} createAgreement();","breadcrumbs":"Node.js Examples » Creating Multi-Party Agreements","id":"1361","title":"Creating Multi-Party Agreements"},"1362":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function signAgreement(agreementPath, outputPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); // Read agreement const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); // Sign agreement const signedAgreement = await agent.signAgreement(agreementDoc); // Check status const statusJson = await agent.checkAgreement(signedAgreement); const status = JSON.parse(statusJson); console.log('Agreement signed'); console.log('Status:', status.complete ? 'Complete' : 'Pending'); console.log('Signatures:', status.signatures?.length || 0); // Save fs.writeFileSync(outputPath, signedAgreement); return status;\n} signAgreement('./agreement-pending.json', './agreement-signed.json');","breadcrumbs":"Node.js Examples » Signing Agreements","id":"1362","title":"Signing Agreements"},"1363":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; async function checkAgreementStatus(agreementPath) { const agent = new JacsAgent(); await agent.load('./jacs.config.json'); const agreementDoc = fs.readFileSync(agreementPath, 'utf-8'); const statusJson = await agent.checkAgreement(agreementDoc); const status = JSON.parse(statusJson); console.log('Agreement Status:'); console.log(' Complete:', status.complete); console.log(' Required agents:', status.requiredAgents); console.log(' Signed by:', status.signedBy || []); console.log(' Missing:', status.missing || []); return status;\n} checkAgreementStatus('./agreement.json');","breadcrumbs":"Node.js Examples » Checking Agreement Status","id":"1363","title":"Checking Agreement Status"},"1364":{"body":"","breadcrumbs":"Node.js Examples » Document Store","id":"1364","title":"Document Store"},"1365":{"body":"import { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class JacsDocumentStore { constructor(configPath, dataDir = './documents') { this.configPath = configPath; this.dataDir = dataDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.dataDir)) { fs.mkdirSync(this.dataDir, { recursive: true }); } } async create(content) { const signedDoc = await this.agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); const filename = `${doc.jacsId}.json`; const filepath = path.join(this.dataDir, filename); fs.writeFileSync(filepath, signedDoc); return { id: doc.jacsId, version: doc.jacsVersion, path: filepath }; } async get(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return null; } const docString = fs.readFileSync(filepath, 'utf-8'); return JSON.parse(docString); } async verify(documentId) { const filepath = path.join(this.dataDir, `${documentId}.json`); if (!fs.existsSync(filepath)) { return { valid: false, error: 'Document not found' }; } const docString = fs.readFileSync(filepath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); return { valid: isValid, document: JSON.parse(docString) }; } list() { const files = fs.readdirSync(this.dataDir); return files .filter(f => f.endsWith('.json')) .map(f => f.replace('.json', '')); }\n} // Usage\nasync function main() { const store = new JacsDocumentStore('./jacs.config.json'); await store.initialize(); // Create document const result = await store.create({ type: 'note', title: 'Meeting Notes', content: 'Discussed project timeline...' }); console.log('Created:', result.id); // Verify document const verification = await store.verify(result.id); console.log('Valid:', verification.valid); // List all documents const docs = store.list(); console.log('Documents:', docs);\n} main();","breadcrumbs":"Node.js Examples » Simple File-Based Store","id":"1365","title":"Simple File-Based Store"},"1366":{"body":"","breadcrumbs":"Node.js Examples » Error Handling","id":"1366","title":"Error Handling"},"1367":{"body":"import { JacsAgent } from '@hai.ai/jacs'; class JacsError extends Error { constructor(message, code, details = {}) { super(message); this.name = 'JacsError'; this.code = code; this.details = details; }\n} async function robustDocumentCreate(configPath, content) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const signedDoc = await agent.createDocument(JSON.stringify(content)); return JSON.parse(signedDoc); } catch (error) { throw new JacsError( 'Failed to create document', 'CREATE_ERROR', { originalError: error.message, content } ); }\n} async function robustDocumentVerify(configPath, docString) { let agent; try { agent = new JacsAgent(); await agent.load(configPath); } catch (error) { throw new JacsError( 'Failed to initialize JACS agent', 'INIT_ERROR', { originalError: error.message } ); } try { const isValid = await agent.verifyDocument(docString); return { valid: isValid }; } catch (error) { throw new JacsError( 'Verification error', 'VERIFY_ERROR', { originalError: error.message } ); }\n} // Usage with error handling\nasync function main() { try { const doc = await robustDocumentCreate('./jacs.config.json', { title: 'Test' }); console.log('Created:', doc.jacsId); } catch (error) { if (error instanceof JacsError) { console.error(`JACS Error [${error.code}]:`, error.message); console.error('Details:', error.details); } else { console.error('Unexpected error:', error); } }\n} main();","breadcrumbs":"Node.js Examples » Robust Error Handling Pattern","id":"1367","title":"Robust Error Handling Pattern"},"1368":{"body":"","breadcrumbs":"Node.js Examples » Testing","id":"1368","title":"Testing"},"1369":{"body":"// tests/jacs.test.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path';\nimport os from 'os'; describe('JACS Document Operations', () => { let agent; let tempDir; let configPath; beforeAll(async () => { // Create temp directory tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'jacs-test-')); const dataDir = path.join(tempDir, 'data'); const keyDir = path.join(tempDir, 'keys'); fs.mkdirSync(dataDir); fs.mkdirSync(keyDir); // Create test config const config = { jacs_data_directory: dataDir, jacs_key_directory: keyDir, jacs_agent_key_algorithm: 'ring-Ed25519', jacs_default_storage: 'fs' }; configPath = path.join(tempDir, 'jacs.config.json'); fs.writeFileSync(configPath, JSON.stringify(config)); // Initialize agent agent = new JacsAgent(); await agent.load(configPath); }); afterAll(() => { fs.rmSync(tempDir, { recursive: true }); }); test('creates a signed document', async () => { const content = { title: 'Test Document', value: 42 }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const doc = JSON.parse(signedDoc); expect(doc.jacsId).toBeDefined(); expect(doc.jacsVersion).toBeDefined(); expect(doc.jacsSignature).toBeDefined(); expect(doc.title).toBe('Test Document'); }); test('verifies a valid document', async () => { const content = { title: 'Verify Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); const isValid = await agent.verifyDocument(signedDoc); expect(isValid).toBe(true); }); test('detects tampered document', async () => { const content = { title: 'Tamper Test' }; const signedDoc = await agent.createDocument(JSON.stringify(content)); // Tamper with document const doc = JSON.parse(signedDoc); doc.title = 'Modified Title'; const tamperedDoc = JSON.stringify(doc); const isValid = await agent.verifyDocument(tamperedDoc); expect(isValid).toBe(false); });\n});","breadcrumbs":"Node.js Examples » Jest Test Setup","id":"1369","title":"Jest Test Setup"},"137":{"body":"# Extract embedded content from a document\njacs document extract -f ./document.json # Extract from all documents in directory\njacs document extract -d ./documents/","breadcrumbs":"CLI Usage » Extract Embedded Content","id":"137","title":"Extract Embedded Content"},"1370":{"body":"Node.js Installation - Setup guide Node.js API Reference - Complete API documentation MCP Integration - MCP details HTTP Server - HTTP integration","breadcrumbs":"Node.js Examples » See Also","id":"1370","title":"See Also"},"1371":{"body":"This chapter provides practical Python examples using the jacs (jacspy) package.","breadcrumbs":"Python Examples » Python Examples","id":"1371","title":"Python Examples"},"1372":{"body":"# Install dependencies\npip install jacs fastmcp fastapi uvicorn # Initialize JACS\nimport jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Python Examples » Setup","id":"1372","title":"Setup"},"1373":{"body":"","breadcrumbs":"Python Examples » Basic Document Operations","id":"1373","title":"Basic Document Operations"},"1374":{"body":"import jacs\nimport json def create_signed_document(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create document content content = { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"items\": [ {\"description\": \"Consulting\", \"quantity\": 10, \"price\": 150} ] } # Create and sign the document signed_doc = agent.create_document(json.dumps(content)) # Parse the result doc = json.loads(signed_doc) print(f\"Document ID: {doc['jacsId']}\") print(f\"Version: {doc['jacsVersion']}\") print(f\"Signature: {'Present' if 'jacsSignature' in doc else 'Missing'}\") return doc if __name__ == \"__main__\": create_signed_document()","breadcrumbs":"Python Examples » Creating and Signing Documents","id":"1374","title":"Creating and Signing Documents"},"1375":{"body":"import jacs\nimport json def verify_document(file_path: str) -> bool: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read the document with open(file_path, 'r') as f: doc_string = f.read() # Verify signature is_valid = agent.verify_document(doc_string) if is_valid: doc = json.loads(doc_string) print(\"✓ Document signature is valid\") print(f\" Signed by: {doc.get('jacsSignature', {}).get('agentID')}\") print(f\" Signed at: {doc.get('jacsSignature', {}).get('date')}\") else: print(\"✗ Document signature is INVALID\") return is_valid if __name__ == \"__main__\": verify_document('./invoice.json')","breadcrumbs":"Python Examples » Verifying Documents","id":"1375","title":"Verifying Documents"},"1376":{"body":"import jacs\nimport json def update_document(original_path: str, new_content: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read original document with open(original_path, 'r') as f: original_doc = f.read() # Update with new content (preserves version chain) updated_doc = agent.update_document( original_doc, json.dumps(new_content) ) doc = json.loads(updated_doc) print(f\"Updated Document ID: {doc['jacsId']}\") print(f\"New Version: {doc['jacsVersion']}\") return doc if __name__ == \"__main__\": updated = update_document('./invoice-v1.json', { \"title\": \"Invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1500.00, \"customer\": \"Acme Corp\", \"status\": \"paid\" # New field })","breadcrumbs":"Python Examples » Updating Documents","id":"1376","title":"Updating Documents"},"1377":{"body":"","breadcrumbs":"Python Examples » HTTP Server with FastAPI","id":"1377","title":"HTTP Server with FastAPI"},"1378":{"body":"from fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nimport json app = FastAPI(title=\"JACS API\") # Initialize JACS agent at startup\nagent = None @app.on_event(\"startup\")\nasync def startup(): global agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Health check (no JACS)\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"ok\"} # JACS-protected endpoint\n@app.post(\"/api/echo\")\nasync def echo(request: Request): # Read raw body body = await request.body() body_str = body.decode('utf-8') # Verify JACS request try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Process and respond result = { \"echo\": payload, \"serverTime\": str(datetime.now()) } # Sign response signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Create document endpoint\n@app.post(\"/api/documents\")\nasync def create_document(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") # Create signed document signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc['jacsId'], \"version\": doc['jacsVersion'] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Calculate endpoint\n@app.post(\"/api/calculate\")\nasync def calculate(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") operation = payload.get('operation') a = payload.get('a', 0) b = payload.get('b', 0) if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else None else: raise HTTPException(status_code=400, detail=\"Unknown operation\") response = {\"operation\": operation, \"a\": a, \"b\": b, \"result\": result} signed_response = jacs.sign_response(response) return PlainTextResponse(content=signed_response) if __name__ == \"__main__\": import uvicorn uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » Complete FastAPI Server","id":"1378","title":"Complete FastAPI Server"},"1379":{"body":"import jacs\nimport requests\nimport json def call_jacs_api(url: str, payload: dict) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Sign the request signed_request = jacs.sign_request(payload) # Send HTTP request response = requests.post( url, data=signed_request, headers={\"Content-Type\": \"text/plain\"} ) if response.status_code != 200: raise Exception(f\"HTTP {response.status_code}\") # Verify and extract response verified = jacs.verify_response(response.text) return json.loads(verified).get('payload') if __name__ == \"__main__\": # Call echo endpoint echo_result = call_jacs_api( 'http://localhost:8000/api/echo', {\"message\": \"Hello, server!\"} ) print(\"Echo:\", echo_result) # Call calculate endpoint calc_result = call_jacs_api( 'http://localhost:8000/api/calculate', {\"operation\": \"multiply\", \"a\": 7, \"b\": 6} ) print(\"Calculate:\", calc_result)","breadcrumbs":"Python Examples » HTTP Client","id":"1379","title":"HTTP Client"},"138":{"body":"# Create an agreement requiring signatures from specified agents\njacs document create-agreement -f ./document.json -i agent1-uuid,agent2-uuid # Check agreement status\njacs document check-agreement -f ./document.json # Sign an agreement\njacs document sign-agreement -f ./document.json Create Agreement Options: Option Short Required Description -f --filename Yes Path to document -i --agentids Yes Comma-separated list of agent UUIDs -o --output No Output filename --no-save -n No Print to stdout","breadcrumbs":"CLI Usage » Agreement Commands","id":"138","title":"Agreement Commands"},"1380":{"body":"","breadcrumbs":"Python Examples » MCP Integration","id":"1380","title":"MCP Integration"},"1381":{"body":"import jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create FastMCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"JACS Demo Server\")) @mcp.tool()\ndef echo(message: str) -> str: \"\"\"Echo the input message\"\"\" return f\"Echo: {message}\" @mcp.tool()\ndef calculate(operation: str, a: float, b: float) -> str: \"\"\"Perform basic arithmetic\"\"\" if operation == 'add': result = a + b elif operation == 'subtract': result = a - b elif operation == 'multiply': result = a * b elif operation == 'divide': result = a / b if b != 0 else \"undefined\" else: return f\"Unknown operation: {operation}\" return f\"{a} {operation} {b} = {result}\" @mcp.resource(\"info://server\")\ndef server_info() -> str: \"\"\"Get server information\"\"\" return json.dumps({ \"name\": \"JACS Demo Server\", \"version\": \"1.0.0\", \"tools\": [\"echo\", \"calculate\"] }) # Get ASGI app with JACS middleware\napp = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS MCP Server...\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Python Examples » FastMCP Server with JACS","id":"1381","title":"FastMCP Server with JACS"},"1382":{"body":"import asyncio\nimport jacs\nfrom jacs.mcp import JACSMCPClient async def main(): # Initialize JACS agent = jacs.JacsAgent() agent.load('./jacs.client.config.json') # Create authenticated client client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: # Call echo tool echo_result = await client.call_tool(\"echo\", { \"message\": \"Hello from JACS client!\" }) print(f\"Echo: {echo_result}\") # Call calculate tool calc_result = await client.call_tool(\"calculate\", { \"operation\": \"multiply\", \"a\": 6, \"b\": 7 }) print(f\"Calculate: {calc_result}\") # Read resource info = await client.read_resource(\"info://server\") print(f\"Server info: {info}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"Python Examples » MCP Client with JACS","id":"1382","title":"MCP Client with JACS"},"1383":{"body":"","breadcrumbs":"Python Examples » Agreements","id":"1383","title":"Agreements"},"1384":{"body":"import jacs\nimport json def create_agreement(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create contract document contract = { \"type\": \"service_agreement\", \"title\": \"Professional Services Agreement\", \"parties\": [\"Company A\", \"Company B\"], \"terms\": \"Terms and conditions here...\", \"value\": 50000, \"effectiveDate\": \"2024-02-01\" } signed_contract = agent.create_document(json.dumps(contract)) # Define required signers (replace with actual UUIDs) agent_ids = [ \"agent1-uuid-here\", \"agent2-uuid-here\" ] # Create agreement agreement_doc = agent.create_agreement( signed_contract, agent_ids, question=\"Do you agree to the terms of this service agreement?\", context=\"This is a legally binding agreement\" ) doc = json.loads(agreement_doc) print(\"Agreement created\") print(f\"Document ID: {doc['jacsId']}\") print(f\"Required signatures: {len(doc.get('jacsAgreement', {}).get('agentIDs', []))}\") # Save for signing with open('agreement-pending.json', 'w') as f: f.write(agreement_doc) return doc if __name__ == \"__main__\": create_agreement()","breadcrumbs":"Python Examples » Creating Multi-Party Agreements","id":"1384","title":"Creating Multi-Party Agreements"},"1385":{"body":"import jacs\nimport json def sign_agreement(agreement_path: str, output_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Read agreement with open(agreement_path, 'r') as f: agreement_doc = f.read() # Sign agreement signed_agreement = agent.sign_agreement(agreement_doc) # Check status status_json = agent.check_agreement(signed_agreement) status = json.loads(status_json) print(\"Agreement signed\") print(f\"Status: {'Complete' if status.get('complete') else 'Pending'}\") print(f\"Signatures: {len(status.get('signatures', []))}\") # Save with open(output_path, 'w') as f: f.write(signed_agreement) return status if __name__ == \"__main__\": sign_agreement('./agreement-pending.json', './agreement-signed.json')","breadcrumbs":"Python Examples » Signing Agreements","id":"1385","title":"Signing Agreements"},"1386":{"body":"import jacs\nimport json def check_agreement_status(agreement_path: str) -> dict: # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') with open(agreement_path, 'r') as f: agreement_doc = f.read() status_json = agent.check_agreement(agreement_doc) status = json.loads(status_json) print(\"Agreement Status:\") print(f\" Complete: {status.get('complete')}\") print(f\" Required agents: {status.get('requiredAgents', [])}\") print(f\" Signed by: {status.get('signedBy', [])}\") print(f\" Missing: {status.get('missing', [])}\") return status if __name__ == \"__main__\": check_agreement_status('./agreement.json')","breadcrumbs":"Python Examples » Checking Agreement Status","id":"1386","title":"Checking Agreement Status"},"1387":{"body":"","breadcrumbs":"Python Examples » Document Store","id":"1387","title":"Document Store"},"1388":{"body":"import jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Optional, Dict, List class JacsDocumentStore: def __init__(self, config_path: str, data_dir: str = './documents'): self.config_path = config_path self.data_dir = Path(data_dir) self.agent = None def initialize(self): self.agent = jacs.JacsAgent() self.agent.load(self.config_path) self.data_dir.mkdir(parents=True, exist_ok=True) def create(self, content: dict) -> dict: signed_doc = self.agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = self.data_dir / filename with open(filepath, 'w') as f: f.write(signed_doc) return { 'id': doc['jacsId'], 'version': doc['jacsVersion'], 'path': str(filepath) } def get(self, document_id: str) -> Optional[dict]: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return None with open(filepath, 'r') as f: return json.load(f) def verify(self, document_id: str) -> dict: filepath = self.data_dir / f\"{document_id}.json\" if not filepath.exists(): return {'valid': False, 'error': 'Document not found'} with open(filepath, 'r') as f: doc_string = f.read() is_valid = self.agent.verify_document(doc_string) return {'valid': is_valid, 'document': json.loads(doc_string)} def list(self) -> List[str]: return [ f.stem for f in self.data_dir.glob('*.json') ] if __name__ == \"__main__\": store = JacsDocumentStore('./jacs.config.json') store.initialize() # Create document result = store.create({ 'type': 'note', 'title': 'Meeting Notes', 'content': 'Discussed project timeline...' }) print(f\"Created: {result['id']}\") # Verify document verification = store.verify(result['id']) print(f\"Valid: {verification['valid']}\") # List all documents docs = store.list() print(f\"Documents: {docs}\")","breadcrumbs":"Python Examples » Simple File-Based Store","id":"1388","title":"Simple File-Based Store"},"1389":{"body":"","breadcrumbs":"Python Examples » Batch Processing","id":"1389","title":"Batch Processing"},"139":{"body":"The CLI respects the following environment variables: # Use a specific configuration file\nJACS_CONFIG_PATH=./custom-config.json jacs agent verify # Override settings\nJACS_DATA_DIRECTORY=./data jacs document create -f ./doc.json\nJACS_KEY_DIRECTORY=./keys jacs agent create --create-keys true","breadcrumbs":"CLI Usage » Environment Variables","id":"139","title":"Environment Variables"},"1390":{"body":"import jacs\nimport json\nfrom pathlib import Path\nfrom concurrent.futures import ThreadPoolExecutor class BatchDocumentProcessor: def __init__(self, config_path: str): self.config_path = config_path def create_documents(self, documents: list, output_dir: str) -> list: \"\"\"Create multiple signed documents\"\"\" output_path = Path(output_dir) output_path.mkdir(parents=True, exist_ok=True) results = [] # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) for i, content in enumerate(documents): try: signed_doc = agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) filename = f\"{doc['jacsId']}.json\" filepath = output_path / filename with open(filepath, 'w') as f: f.write(signed_doc) results.append({ 'success': True, 'index': i, 'id': doc['jacsId'], 'path': str(filepath) }) except Exception as e: results.append({ 'success': False, 'index': i, 'error': str(e) }) return results def verify_documents(self, input_dir: str) -> list: \"\"\"Verify all documents in a directory\"\"\" input_path = Path(input_dir) # Initialize agent agent = jacs.JacsAgent() agent.load(self.config_path) results = [] for filepath in input_path.glob('*.json'): try: with open(filepath, 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string) doc = json.loads(doc_string) results.append({ 'file': filepath.name, 'valid': is_valid, 'id': doc.get('jacsId') }) except Exception as e: results.append({ 'file': filepath.name, 'valid': False, 'error': str(e) }) return results if __name__ == \"__main__\": processor = BatchDocumentProcessor('./jacs.config.json') # Create batch of documents documents = [ {'type': 'invoice', 'number': f'INV-{i:03d}', 'amount': i * 100} for i in range(1, 11) ] results = processor.create_documents(documents, './batch-output') success_count = sum(1 for r in results if r['success']) print(f\"Created {success_count}/{len(documents)} documents\") # Verify all documents verification_results = processor.verify_documents('./batch-output') valid_count = sum(1 for r in verification_results if r['valid']) print(f\"Valid: {valid_count}/{len(verification_results)} documents\")","breadcrumbs":"Python Examples » Batch Document Creator","id":"1390","title":"Batch Document Creator"},"1391":{"body":"","breadcrumbs":"Python Examples » Testing","id":"1391","title":"Testing"},"1392":{"body":"# tests/test_jacs.py\nimport pytest\nimport jacs\nimport json\nimport tempfile\nimport shutil\nfrom pathlib import Path @pytest.fixture\ndef jacs_agent(): \"\"\"Create a test JACS agent with temporary directories\"\"\" temp_dir = tempfile.mkdtemp() data_dir = Path(temp_dir) / 'data' key_dir = Path(temp_dir) / 'keys' data_dir.mkdir() key_dir.mkdir() config = { 'jacs_data_directory': str(data_dir), 'jacs_key_directory': str(key_dir), 'jacs_agent_key_algorithm': 'ring-Ed25519', 'jacs_default_storage': 'fs' } config_path = Path(temp_dir) / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f) agent = jacs.JacsAgent() agent.load(str(config_path)) yield agent shutil.rmtree(temp_dir) class TestDocumentOperations: def test_create_document(self, jacs_agent): content = {'title': 'Test Document', 'value': 42} signed_doc = jacs_agent.create_document(json.dumps(content)) doc = json.loads(signed_doc) assert 'jacsId' in doc assert 'jacsVersion' in doc assert 'jacsSignature' in doc assert doc['title'] == 'Test Document' def test_verify_valid_document(self, jacs_agent): content = {'title': 'Verify Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) is_valid = jacs_agent.verify_document(signed_doc) assert is_valid is True def test_detect_tampered_document(self, jacs_agent): content = {'title': 'Tamper Test'} signed_doc = jacs_agent.create_document(json.dumps(content)) # Tamper with document doc = json.loads(signed_doc) doc['title'] = 'Modified Title' tampered_doc = json.dumps(doc) is_valid = jacs_agent.verify_document(tampered_doc) assert is_valid is False def test_different_content_different_signatures(self, jacs_agent): doc1 = jacs_agent.create_document(json.dumps({'a': 1})) doc2 = jacs_agent.create_document(json.dumps({'a': 2})) parsed1 = json.loads(doc1) parsed2 = json.loads(doc2) sig1 = parsed1['jacsSignature']['signature'] sig2 = parsed2['jacsSignature']['signature'] assert sig1 != sig2","breadcrumbs":"Python Examples » Pytest Setup","id":"1392","title":"Pytest Setup"},"1393":{"body":"","breadcrumbs":"Python Examples » Error Handling","id":"1393","title":"Error Handling"},"1394":{"body":"import jacs\nimport json\nfrom typing import Optional class JacsError(Exception): def __init__(self, message: str, code: str, details: dict = None): super().__init__(message) self.code = code self.details = details or {} def robust_create_document(config_path: str, content: dict) -> dict: \"\"\"Create a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except FileNotFoundError: raise JacsError( \"Configuration file not found\", \"CONFIG_NOT_FOUND\", {\"path\": config_path} ) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) except Exception as e: raise JacsError( \"Failed to create document\", \"CREATE_ERROR\", {\"original_error\": str(e), \"content\": content} ) def robust_verify_document(config_path: str, doc_string: str) -> dict: \"\"\"Verify a document with comprehensive error handling\"\"\" try: agent = jacs.JacsAgent() agent.load(config_path) except Exception as e: raise JacsError( \"Failed to initialize JACS agent\", \"INIT_ERROR\", {\"original_error\": str(e)} ) try: is_valid = agent.verify_document(doc_string) return {\"valid\": is_valid} except Exception as e: raise JacsError( \"Verification error\", \"VERIFY_ERROR\", {\"original_error\": str(e)} ) if __name__ == \"__main__\": try: doc = robust_create_document('./jacs.config.json', {'title': 'Test'}) print(f\"Created: {doc['jacsId']}\") except JacsError as e: print(f\"JACS Error [{e.code}]: {e}\") print(f\"Details: {e.details}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"Python Examples » Robust Error Handling Pattern","id":"1394","title":"Robust Error Handling Pattern"},"1395":{"body":"Python Installation - Setup guide Python API Reference - Complete API documentation Python MCP Integration - MCP details","breadcrumbs":"Python Examples » See Also","id":"1395","title":"See Also"},"1396":{"body":"This chapter provides complete, production-ready integration examples combining multiple JACS features.","breadcrumbs":"Integration Examples » Integration Examples","id":"1396","title":"Integration Examples"},"1397":{"body":"A complete example of a contract signing workflow with multiple agents.","breadcrumbs":"Integration Examples » Multi-Agent Contract Signing System","id":"1397","title":"Multi-Agent Contract Signing System"},"1398":{"body":"┌──────────────┐ ┌──────────────┐ ┌──────────────┐\n│ Seller │ │ Contract │ │ Buyer │\n│ Agent │────>│ Document │<────│ Agent │\n└──────────────┘ └──────────────┘ └──────────────┘ │ │ │ └────────────────────┼────────────────────┘ ↓ ┌──────────────┐ │ Signed │ │ Agreement │ └──────────────┘","breadcrumbs":"Integration Examples » Overview","id":"1398","title":"Overview"},"1399":{"body":"// contract-system.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs'; class ContractSigningSystem { constructor() { this.agents = new Map(); } async registerAgent(name, configPath) { const agent = new JacsAgent(); await agent.load(configPath); this.agents.set(name, { agent, configPath }); return agent; } async createContract(content, sellerName) { const seller = this.agents.get(sellerName); if (!seller) throw new Error(`Agent ${sellerName} not found`); // Create and sign the contract const signedContract = await seller.agent.createDocument( JSON.stringify(content) ); return JSON.parse(signedContract); } async createAgreement(contract, agentNames, question) { const firstAgent = this.agents.get(agentNames[0]); if (!firstAgent) throw new Error(`Agent ${agentNames[0]} not found`); // Get agent IDs const agentIds = []; for (const name of agentNames) { const agent = this.agents.get(name); if (!agent) throw new Error(`Agent ${name} not found`); // Get agent ID from config const config = JSON.parse(fs.readFileSync(agent.configPath, 'utf-8')); agentIds.push(config.jacs_agent_id_and_version.split(':')[0]); } const agreementDoc = await firstAgent.agent.createAgreement( JSON.stringify(contract), agentIds, question, 'Legal contract requiring signatures from all parties' ); return JSON.parse(agreementDoc); } async signAgreement(agreement, agentName) { const agent = this.agents.get(agentName); if (!agent) throw new Error(`Agent ${agentName} not found`); const signedDoc = await agent.agent.signAgreement( JSON.stringify(agreement) ); return JSON.parse(signedDoc); } async checkAgreementStatus(agreement, agentName) { const agent = this.agents.get(agentName); if (!agent) throw new Error(`Agent ${agentName} not found`); const statusJson = await agent.agent.checkAgreement( JSON.stringify(agreement) ); return JSON.parse(statusJson); }\n} // Usage\nasync function runContractWorkflow() { const system = new ContractSigningSystem(); // Register agents await system.registerAgent('seller', './seller.config.json'); await system.registerAgent('buyer', './buyer.config.json'); // Create contract const contract = await system.createContract({ type: 'purchase_agreement', parties: { seller: 'Widget Corp', buyer: 'Acme Inc' }, items: [ { name: 'Premium Widgets', quantity: 1000, unitPrice: 10.00 } ], totalValue: 10000, terms: 'Payment due within 30 days of delivery', effectiveDate: new Date().toISOString() }, 'seller'); console.log('Contract created:', contract.jacsId); // Create agreement const agreement = await system.createAgreement( contract, ['seller', 'buyer'], 'Do you agree to the terms of this purchase agreement?' ); console.log('Agreement created, awaiting signatures'); // Seller signs let signedAgreement = await system.signAgreement(agreement, 'seller'); console.log('Seller signed'); // Check status let status = await system.checkAgreementStatus(signedAgreement, 'seller'); console.log('Status after seller:', status.complete ? 'Complete' : 'Pending'); // Buyer signs signedAgreement = await system.signAgreement(signedAgreement, 'buyer'); console.log('Buyer signed'); // Final status status = await system.checkAgreementStatus(signedAgreement, 'buyer'); console.log('Final status:', status.complete ? 'Complete' : 'Pending'); // Save completed agreement fs.writeFileSync( './completed-agreement.json', JSON.stringify(signedAgreement, null, 2) ); return signedAgreement;\n} runContractWorkflow().catch(console.error);","breadcrumbs":"Integration Examples » Implementation","id":"1399","title":"Implementation"},"14":{"body":"With built-in observability, multiple storage backends, and comprehensive error handling, JACS is ready for production AI systems.","breadcrumbs":"Introduction » 🚀 Production Ready","id":"14","title":"🚀 Production Ready"},"140":{"body":"","breadcrumbs":"CLI Usage » Common Workflows","id":"140","title":"Common Workflows"},"1400":{"body":"A complete API gateway that authenticates requests and provides MCP tools.","breadcrumbs":"Integration Examples » Secure API Gateway with MCP Tools","id":"1400","title":"Secure API Gateway with MCP Tools"},"1401":{"body":"// api-gateway.js\nimport express from 'express';\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http';\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { JacsAgent } from '@hai.ai/jacs';\nimport { z } from 'zod'; // Initialize Express\nconst app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Create MCP server with tools\nconst mcpServer = new McpServer({ name: \"secure-api-gateway\", version: \"1.0.0\"\n}); // Document operations tool\nmcpServer.tool(\"create_document\", { content: z.object({}).passthrough().describe(\"Document content\"), type: z.string().optional().describe(\"Document type\")\n}, async ({ content, type }) => { const doc = await agent.createDocument(JSON.stringify({ ...content, documentType: type || 'generic' })); const parsed = JSON.parse(doc); return { content: [{ type: \"text\", text: JSON.stringify({ success: true, documentId: parsed.jacsId, version: parsed.jacsVersion }) }] };\n}); mcpServer.tool(\"verify_document\", { document: z.string().describe(\"JSON document string to verify\")\n}, async ({ document }) => { try { const isValid = await agent.verifyDocument(document); return { content: [{ type: \"text\", text: JSON.stringify({ valid: isValid }) }] }; } catch (error) { return { content: [{ type: \"text\", text: JSON.stringify({ valid: false, error: error.message }) }] }; }\n}); // Health check (unauthenticated)\napp.get('/health', (req, res) => { res.json({ status: 'healthy', timestamp: new Date().toISOString() });\n}); // REST API routes (JACS authenticated)\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Document REST endpoint\napp.post('/api/documents', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } try { const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); res.send({ success: true, documentId: doc.jacsId, version: doc.jacsVersion }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); app.post('/api/documents/verify', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } try { const isValid = await agent.verifyDocument( JSON.stringify(req.jacsPayload.document) ); res.send({ valid: isValid }); } catch (error) { res.status(500).send({ error: error.message }); }\n}); // MCP SSE endpoint (JACS authenticated)\nconst activeSessions = new Map(); app.get('/mcp/sse', async (req, res) => { const sessionId = Date.now().toString(); // Create SSE transport with JACS const baseTransport = new SSEServerTransport('/mcp/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server' ); activeSessions.set(sessionId, { transport: secureTransport, res }); // Connect MCP server await mcpServer.connect(secureTransport); res.on('close', () => { activeSessions.delete(sessionId); });\n}); app.post('/mcp/messages', express.text({ type: '*/*' }), async (req, res) => { // Find the active session and handle the message for (const [id, session] of activeSessions) { try { await session.transport.handlePostMessage(req, res, req.body); return; } catch (error) { // Try next session } } res.status(404).send({ error: 'No active session' });\n}); // Start server\napp.listen(PORT, () => { console.log(`Secure API Gateway running on port ${PORT}`); console.log(` REST API: http://localhost:${PORT}/api`); console.log(` MCP SSE: http://localhost:${PORT}/mcp/sse`);\n});","breadcrumbs":"Integration Examples » Node.js Implementation","id":"1401","title":"Node.js Implementation"},"1402":{"body":"# api_gateway.py\nfrom fastapi import FastAPI, Request, HTTPException\nfrom fastapi.responses import PlainTextResponse\nimport jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn\nimport json app = FastAPI(title=\"Secure API Gateway\") # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create MCP server with JACS\nmcp = JACSMCPServer(FastMCP(\"secure-api-gateway\")) @mcp.tool()\ndef create_document(content: dict, document_type: str = \"generic\") -> str: \"\"\"Create a signed JACS document\"\"\" doc_content = {**content, \"documentType\": document_type} signed_doc = agent.create_document(json.dumps(doc_content)) parsed = json.loads(signed_doc) return json.dumps({ \"success\": True, \"documentId\": parsed[\"jacsId\"], \"version\": parsed[\"jacsVersion\"] }) @mcp.tool()\ndef verify_document(document: str) -> str: \"\"\"Verify a JACS document signature\"\"\" try: is_valid = agent.verify_document(document) return json.dumps({\"valid\": is_valid}) except Exception as e: return json.dumps({\"valid\": False, \"error\": str(e)}) # Health check\n@app.get(\"/health\")\nasync def health(): return {\"status\": \"healthy\"} # REST API endpoints\n@app.post(\"/api/documents\")\nasync def create_doc(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") signed_doc = agent.create_document(json.dumps(payload)) doc = json.loads(signed_doc) result = { \"success\": True, \"documentId\": doc[\"jacsId\"], \"version\": doc[\"jacsVersion\"] } signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) @app.post(\"/api/documents/verify\")\nasync def verify_doc(request: Request): body = await request.body() body_str = body.decode('utf-8') try: verified = jacs.verify_request(body_str) payload = json.loads(verified).get('payload') except Exception as e: raise HTTPException(status_code=400, detail=\"Invalid JACS request\") document = payload.get(\"document\") is_valid = agent.verify_document(json.dumps(document)) result = {\"valid\": is_valid} signed_response = jacs.sign_response(result) return PlainTextResponse(content=signed_response) # Mount MCP SSE endpoint\napp.mount(\"/mcp\", mcp.sse_app()) if __name__ == \"__main__\": print(\"Secure API Gateway running\") print(\" REST API: http://localhost:8000/api\") print(\" MCP SSE: http://localhost:8000/mcp/sse\") uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"Integration Examples » Python Implementation","id":"1402","title":"Python Implementation"},"1403":{"body":"Track and verify document history with cryptographic proofs. // audit-trail.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport fs from 'fs';\nimport path from 'path'; class AuditTrailSystem { constructor(configPath, auditDir = './audit') { this.configPath = configPath; this.auditDir = auditDir; this.agent = null; } async initialize() { this.agent = new JacsAgent(); await this.agent.load(this.configPath); if (!fs.existsSync(this.auditDir)) { fs.mkdirSync(this.auditDir, { recursive: true }); } } async createDocument(content, metadata = {}) { const auditEntry = { action: 'create', timestamp: new Date().toISOString(), content, metadata }; const signedDoc = await this.agent.createDocument( JSON.stringify({ ...content, _audit: auditEntry }) ); const doc = JSON.parse(signedDoc); // Save to audit log await this.logAuditEntry(doc.jacsId, 'create', doc); return doc; } async updateDocument(originalDoc, newContent, metadata = {}) { const auditEntry = { action: 'update', timestamp: new Date().toISOString(), previousVersion: originalDoc.jacsVersion, changes: this.computeChanges(originalDoc, newContent), metadata }; const updatedDoc = await this.agent.updateDocument( JSON.stringify(originalDoc), JSON.stringify({ ...newContent, _audit: auditEntry }) ); const doc = JSON.parse(updatedDoc); // Save to audit log await this.logAuditEntry(doc.jacsId, 'update', doc); return doc; } computeChanges(original, updated) { const changes = []; for (const [key, value] of Object.entries(updated)) { if (key.startsWith('_')) continue; if (!(key in original)) { changes.push({ field: key, type: 'added', newValue: value }); } else if (JSON.stringify(original[key]) !== JSON.stringify(value)) { changes.push({ field: key, type: 'modified', oldValue: original[key], newValue: value }); } } for (const key of Object.keys(original)) { if (key.startsWith('_') || key.startsWith('jacs')) continue; if (!(key in updated)) { changes.push({ field: key, type: 'removed', oldValue: original[key] }); } } return changes; } async logAuditEntry(documentId, action, document) { const logFile = path.join(this.auditDir, `${documentId}.audit.jsonl`); const entry = { timestamp: new Date().toISOString(), action, documentId, version: document.jacsVersion, signature: document.jacsSignature, hash: document.jacsSha256 }; fs.appendFileSync(logFile, JSON.stringify(entry) + '\\n'); } async getAuditTrail(documentId) { const logFile = path.join(this.auditDir, `${documentId}.audit.jsonl`); if (!fs.existsSync(logFile)) { return []; } const lines = fs.readFileSync(logFile, 'utf-8').trim().split('\\n'); return lines.map(line => JSON.parse(line)); } async verifyAuditTrail(documentId) { const trail = await this.getAuditTrail(documentId); const results = []; for (const entry of trail) { // Load and verify each version const docPath = path.join( this.auditDir, 'documents', documentId, `${entry.version}.json` ); if (fs.existsSync(docPath)) { const docString = fs.readFileSync(docPath, 'utf-8'); const isValid = await this.agent.verifyDocument(docString); results.push({ version: entry.version, timestamp: entry.timestamp, action: entry.action, valid: isValid }); } else { results.push({ version: entry.version, timestamp: entry.timestamp, action: entry.action, valid: null, error: 'Document file not found' }); } } return results; }\n} // Usage\nasync function runAuditExample() { const audit = new AuditTrailSystem('./jacs.config.json'); await audit.initialize(); // Create a document const doc = await audit.createDocument({ type: 'financial_report', period: 'Q1 2024', revenue: 1000000, expenses: 750000 }, { author: 'Finance Team' }); console.log('Created document:', doc.jacsId); // Update the document const updated = await audit.updateDocument(doc, { type: 'financial_report', period: 'Q1 2024', revenue: 1000000, expenses: 750000, profit: 250000, // Added field status: 'approved' }, { author: 'CFO', reason: 'Added profit calculation' }); console.log('Updated to version:', updated.jacsVersion); // Get audit trail const trail = await audit.getAuditTrail(doc.jacsId); console.log('Audit trail:'); for (const entry of trail) { console.log(` ${entry.timestamp} - ${entry.action} (v${entry.version})`); }\n} runAuditExample().catch(console.error);","breadcrumbs":"Integration Examples » Document Audit Trail System","id":"1403","title":"Document Audit Trail System"},"1404":{"body":"A complete multi-tenant document service with isolated agents per tenant. # multi_tenant.py\nimport jacs\nimport json\nimport os\nfrom pathlib import Path\nfrom typing import Dict, Optional class TenantManager: def __init__(self, base_dir: str = './tenants'): self.base_dir = Path(base_dir) self.agents: Dict[str, jacs.JacsAgent] = {} def initialize_tenant(self, tenant_id: str) -> dict: \"\"\"Create a new tenant with its own JACS agent\"\"\" tenant_dir = self.base_dir / tenant_id data_dir = tenant_dir / 'data' key_dir = tenant_dir / 'keys' # Create directories data_dir.mkdir(parents=True, exist_ok=True) key_dir.mkdir(parents=True, exist_ok=True) # Create tenant config config = { \"jacs_data_directory\": str(data_dir), \"jacs_key_directory\": str(key_dir), \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\" } config_path = tenant_dir / 'jacs.config.json' with open(config_path, 'w') as f: json.dump(config, f, indent=2) # Initialize agent agent = jacs.JacsAgent() agent.load(str(config_path)) self.agents[tenant_id] = agent return { \"tenant_id\": tenant_id, \"config_path\": str(config_path), \"initialized\": True } def get_agent(self, tenant_id: str) -> Optional[jacs.JacsAgent]: \"\"\"Get the JACS agent for a tenant\"\"\" if tenant_id not in self.agents: # Try to load existing tenant config_path = self.base_dir / tenant_id / 'jacs.config.json' if config_path.exists(): agent = jacs.JacsAgent() agent.load(str(config_path)) self.agents[tenant_id] = agent return self.agents.get(tenant_id) def create_document(self, tenant_id: str, content: dict) -> dict: \"\"\"Create a document for a tenant\"\"\" agent = self.get_agent(tenant_id) if not agent: raise ValueError(f\"Tenant {tenant_id} not found\") signed_doc = agent.create_document(json.dumps(content)) return json.loads(signed_doc) def verify_document(self, tenant_id: str, doc_string: str) -> bool: \"\"\"Verify a document for a tenant\"\"\" agent = self.get_agent(tenant_id) if not agent: raise ValueError(f\"Tenant {tenant_id} not found\") return agent.verify_document(doc_string) def list_tenants(self) -> list: \"\"\"List all tenants\"\"\" if not self.base_dir.exists(): return [] return [ d.name for d in self.base_dir.iterdir() if d.is_dir() and (d / 'jacs.config.json').exists() ] class MultiTenantDocumentService: def __init__(self): self.tenant_manager = TenantManager() def create_tenant(self, tenant_id: str) -> dict: return self.tenant_manager.initialize_tenant(tenant_id) def create_document(self, tenant_id: str, content: dict) -> dict: doc = self.tenant_manager.create_document(tenant_id, content) # Save document tenant_dir = self.tenant_manager.base_dir / tenant_id / 'documents' tenant_dir.mkdir(parents=True, exist_ok=True) doc_path = tenant_dir / f\"{doc['jacsId']}.json\" with open(doc_path, 'w') as f: json.dump(doc, f, indent=2) return { \"tenant_id\": tenant_id, \"document_id\": doc['jacsId'], \"version\": doc['jacsVersion'], \"path\": str(doc_path) } def get_document(self, tenant_id: str, document_id: str) -> Optional[dict]: doc_path = ( self.tenant_manager.base_dir / tenant_id / 'documents' / f\"{document_id}.json\" ) if not doc_path.exists(): return None with open(doc_path, 'r') as f: return json.load(f) def verify_document(self, tenant_id: str, document_id: str) -> dict: doc = self.get_document(tenant_id, document_id) if not doc: return {\"valid\": False, \"error\": \"Document not found\"} is_valid = self.tenant_manager.verify_document( tenant_id, json.dumps(doc) ) return { \"tenant_id\": tenant_id, \"document_id\": document_id, \"valid\": is_valid } # Usage\nif __name__ == \"__main__\": service = MultiTenantDocumentService() # Create tenants tenant1 = service.create_tenant(\"acme-corp\") tenant2 = service.create_tenant(\"globex-inc\") print(f\"Created tenants: {tenant1['tenant_id']}, {tenant2['tenant_id']}\") # Create documents for each tenant doc1 = service.create_document(\"acme-corp\", { \"type\": \"invoice\", \"amount\": 5000, \"customer\": \"John Doe\" }) print(f\"Acme Corp document: {doc1['document_id']}\") doc2 = service.create_document(\"globex-inc\", { \"type\": \"contract\", \"value\": 100000, \"parties\": [\"Globex\", \"Initech\"] }) print(f\"Globex Inc document: {doc2['document_id']}\") # Verify documents verify1 = service.verify_document(\"acme-corp\", doc1['document_id']) verify2 = service.verify_document(\"globex-inc\", doc2['document_id']) print(f\"Acme Corp verification: {verify1['valid']}\") print(f\"Globex Inc verification: {verify2['valid']}\") # Cross-tenant verification should fail cross = service.verify_document(\"acme-corp\", doc2['document_id']) print(f\"Cross-tenant verification: {cross}\")","breadcrumbs":"Integration Examples » Multi-Tenant Document Service","id":"1404","title":"Multi-Tenant Document Service"},"1405":{"body":"Notify external systems when documents are signed. // webhook-notifier.js\nimport { JacsAgent } from '@hai.ai/jacs';\nimport express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // Initialize JACS\nconst agent = new JacsAgent();\nawait agent.load('./jacs.config.json'); // Webhook configuration\nconst webhooks = new Map(); // Register a webhook\napp.post('/webhooks', express.json(), (req, res) => { const { url, events, secret } = req.body; const webhookId = crypto.randomUUID(); webhooks.set(webhookId, { url, events, secret, active: true }); res.json({ webhookId, message: 'Webhook registered' });\n}); // JACS-protected document endpoints\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); app.post('/api/documents', async (req, res) => { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } // Create document const signedDoc = await agent.createDocument( JSON.stringify(req.jacsPayload) ); const doc = JSON.parse(signedDoc); // Notify webhooks await notifyWebhooks('document.created', { documentId: doc.jacsId, version: doc.jacsVersion, timestamp: new Date().toISOString() }); res.send({ success: true, documentId: doc.jacsId });\n}); async function notifyWebhooks(event, payload) { for (const [id, webhook] of webhooks) { if (!webhook.active) continue; if (!webhook.events.includes(event) && !webhook.events.includes('*')) continue; try { // Sign the webhook payload with JACS const signedPayload = await agent.signRequest({ event, payload, timestamp: new Date().toISOString(), webhookId: id }); // Send webhook const response = await fetch(webhook.url, { method: 'POST', headers: { 'Content-Type': 'text/plain', 'X-JACS-Signature': 'v1', 'X-Webhook-Secret': webhook.secret }, body: signedPayload }); if (!response.ok) { console.error(`Webhook ${id} failed: ${response.status}`); } } catch (error) { console.error(`Webhook ${id} error:`, error.message); } }\n} app.listen(PORT, () => { console.log(`Webhook notification server running on port ${PORT}`);\n});","breadcrumbs":"Integration Examples » Webhook Notification System","id":"1405","title":"Webhook Notification System"},"1406":{"body":"CLI Examples - Command-line examples Node.js Examples - Node.js code examples Python Examples - Python code examples MCP Integration - MCP details Web Servers - HTTP integration","breadcrumbs":"Integration Examples » See Also","id":"1406","title":"See Also"},"1407":{"body":"This page provides a comprehensive reference for all JACS command-line interface commands.","breadcrumbs":"CLI Command Reference » CLI Command Reference","id":"1407","title":"CLI Command Reference"},"1408":{"body":"","breadcrumbs":"CLI Command Reference » Global Commands","id":"1408","title":"Global Commands"},"1409":{"body":"Prints version and build information for the JACS installation. jacs version","breadcrumbs":"CLI Command Reference » jacs version","id":"1409","title":"jacs version"},"141":{"body":"# 1. Initialize (if not done)\njacs init # 2. Create document\njacs document create -f ./my-document.json # 3. Verify the signed document\njacs document verify -f ./jacs_data/[document-id].json","breadcrumbs":"CLI Usage » Create and Sign a Document","id":"141","title":"Create and Sign a Document"},"1410":{"body":"Initialize JACS by creating both configuration and agent (with cryptographic keys). This is typically the first command run when setting up JACS. jacs init","breadcrumbs":"CLI Command Reference » jacs init","id":"1410","title":"jacs init"},"1411":{"body":"Print help information for JACS commands. jacs help [COMMAND]","breadcrumbs":"CLI Command Reference » jacs help","id":"1411","title":"jacs help"},"1412":{"body":"","breadcrumbs":"CLI Command Reference » Configuration Commands","id":"1412","title":"Configuration Commands"},"1413":{"body":"Work with JACS configuration settings. jacs config [SUBCOMMAND] Note: Specific subcommands for config are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs config","id":"1413","title":"jacs config"},"1414":{"body":"","breadcrumbs":"CLI Command Reference » Agent Commands","id":"1414","title":"Agent Commands"},"1415":{"body":"Work with JACS agents - the cryptographic identities that sign and verify documents. jacs agent [SUBCOMMAND] Note: Specific subcommands for agent management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs agent","id":"1415","title":"jacs agent"},"1416":{"body":"","breadcrumbs":"CLI Command Reference » Task Commands","id":"1416","title":"Task Commands"},"1417":{"body":"Work with JACS agent tasks - structured workflows between agents. jacs task [SUBCOMMAND] Note: Specific subcommands for task management are not detailed in the current help output.","breadcrumbs":"CLI Command Reference » jacs task","id":"1417","title":"jacs task"},"1418":{"body":"The jacs document command provides comprehensive document management capabilities.","breadcrumbs":"CLI Command Reference » Document Commands","id":"1418","title":"Document Commands"},"1419":{"body":"Create a new JACS document, either by embedding or parsing a document with optional file attachments. Usage: jacs document create [OPTIONS] Options: -a  - Path to the agent file. If not specified, uses config jacs_agent_id_and_version -f  - Path to input file. Must be JSON format -o  - Output filename for the created document -d  - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -n, --no-save - Instead of saving files, print to stdout -s, --schema  - Path to JSON schema file to use for validation --attach  - Path to file or directory for file attachments -e, --embed  - Embed documents or keep them external [possible values: true, false] -h, --help - Print help information Examples: # Create document from JSON file\njacs document create -f my-document.json # Create document with embedded attachment\njacs document create -f document.json --attach ./image.jpg --embed true # Create document with referenced attachment\njacs document create -f document.json --attach ./data.csv --embed false # Create from directory of JSON files\njacs document create -d ./documents/ # Create with custom schema validation\njacs document create -f document.json -s custom-schema.json # Print to stdout instead of saving\njacs document create -f document.json --no-save","breadcrumbs":"CLI Command Reference » jacs document create","id":"1419","title":"jacs document create"},"142":{"body":"# 1. Create agreement on a document\njacs document create-agreement -f ./document.json -i agent1-id,agent2-id # 2. First agent signs\njacs document sign-agreement -f ./document.json # 3. Second agent signs (using their config)\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json # 4. Check agreement is complete\njacs document check-agreement -f ./document.json","breadcrumbs":"CLI Usage » Multi-Agent Agreement","id":"142","title":"Multi-Agent Agreement"},"1420":{"body":"Create a new version of an existing document. Requires both the original JACS file and the modified JACS metadata. Usage: jacs document update [OPTIONS] Options: -a  - Path to the agent file -f  - Path to original document file -n  - Path to new/modified document file -o  - Output filename for updated document -v, --verbose - Enable verbose output -n, --no-save - Print to stdout instead of saving -s, --schema  - Path to JSON schema file for validation --attach  - Path to file or directory for additional attachments -e, --embed  - Embed new attachments or keep them external -h, --help - Print help information Example: # Update document with new version\njacs document update -f original.json -n modified.json -o updated.json # Update and add new attachments\njacs document update -f original.json -n modified.json --attach ./new-file.pdf --embed false","breadcrumbs":"CLI Command Reference » jacs document update","id":"1420","title":"jacs document update"},"1421":{"body":"Verify a document's hash, signatures, and schema compliance. Usage: jacs document verify [OPTIONS] Options: -a  - Path to the agent file -f  - Path to input file. Must be JSON format -d  - Path to directory of files. Files should end with .json -v, --verbose - Enable verbose output -s, --schema  - Path to JSON schema file to use for validation -h, --help - Print help information Examples: # Verify single document\njacs document verify -f signed-document.json # Verify all documents in directory\njacs document verify -d ./documents/ # Verify with custom schema\njacs document verify -f document.json -s custom-schema.json Verification Process: Hash verification - Confirms document integrity Signature verification - Validates cryptographic signatures Schema validation - Ensures document structure compliance File integrity - Checks SHA256 checksums of attached files","breadcrumbs":"CLI Command Reference » jacs document verify","id":"1421","title":"jacs document verify"},"1422":{"body":"Extract embedded file contents from documents back to the filesystem. Usage: jacs document extract [OPTIONS] Options: -a  - Path to the agent file -f  - Path to input file containing embedded files -d  - Path to directory of files to process -s, --schema  - Path to JSON schema file for validation -h, --help - Print help information Examples: # Extract embedded files from single document\njacs document extract -f document-with-embedded-files.json # Extract from all documents in directory jacs document extract -d ./documents/ Extract Process: Reads embedded file contents from document Decodes base64-encoded data Writes files to their original paths Creates backup of existing files (with timestamp)","breadcrumbs":"CLI Command Reference » jacs document extract","id":"1422","title":"jacs document extract"},"1423":{"body":"JACS provides specialized commands for managing multi-agent agreements. jacs document check-agreement Given a document, provide a list of agents that should sign the document. Usage: jacs document check-agreement [OPTIONS] jacs document create-agreement Create an agreement structure for a document that requires multiple agent signatures. Usage: jacs document create-agreement [OPTIONS] jacs document sign-agreement Sign the agreement section of a document with the current agent's cryptographic signature. Usage: jacs document sign-agreement [OPTIONS]","breadcrumbs":"CLI Command Reference » Agreement Commands","id":"1423","title":"Agreement Commands"},"1424":{"body":"","breadcrumbs":"CLI Command Reference » Common Patterns","id":"1424","title":"Common Patterns"},"1425":{"body":"# 1. Initialize JACS\njacs init # 2. Create document with attachments\njacs document create -f document.json --attach ./files/ --embed true # 3. Verify document integrity\njacs document verify -f created-document.json # 4. Update document if needed\njacs document update -f original.json -n modified.json # 5. Extract embedded files when needed\njacs document extract -f document.json","breadcrumbs":"CLI Command Reference » Basic Document Lifecycle","id":"1425","title":"Basic Document Lifecycle"},"1426":{"body":"# Embed small files for portability\njacs document create -f doc.json --attach ./small-image.png --embed true # Reference large files to save space\njacs document create -f doc.json --attach ./large-video.mp4 --embed false # Attach multiple files from directory\njacs document create -f doc.json --attach ./attachments/ --embed false","breadcrumbs":"CLI Command Reference » Working with Attachments","id":"1426","title":"Working with Attachments"},"1427":{"body":"# Create with schema validation\njacs document create -f document.json -s schema.json # Verify against specific schema\njacs document verify -f document.json -s schema.json","breadcrumbs":"CLI Command Reference » Schema Validation Workflow","id":"1427","title":"Schema Validation Workflow"},"1428":{"body":"Most commands support these common options: -h, --help - Show help information -v, --verbose - Enable verbose output for debugging -a  - Specify custom agent file (overrides config default)","breadcrumbs":"CLI Command Reference » Global Options","id":"1428","title":"Global Options"},"1429":{"body":"0 - Success 1 - General error (invalid arguments, file not found, etc.) 2 - Verification failure (hash mismatch, invalid signature, etc.) 3 - Schema validation failure","breadcrumbs":"CLI Command Reference » Exit Codes","id":"1429","title":"Exit Codes"},"143":{"body":"# Look up agent by domain\njacs agent lookup other-agent.example.com # Verify with strict DNS\njacs agent verify -a ./other-agent.json --require-strict-dns","breadcrumbs":"CLI Usage » Verify Another Agent","id":"143","title":"Verify Another Agent"},"1430":{"body":"JACS_CONFIG_PATH - Override default configuration file location JACS_DATA_DIR - Override default data directory location JACS_AGENT_FILE - Default agent file to use (if not specified with -a)","breadcrumbs":"CLI Command Reference » Environment Variables","id":"1430","title":"Environment Variables"},"1431":{"body":"","breadcrumbs":"CLI Command Reference » File Formats","id":"1431","title":"File Formats"},"1432":{"body":"JSON documents - Must be valid JSON format Schema files - JSON Schema format (draft-07 compatible) Agent files - JACS agent format with cryptographic keys Attachments - Any file type (automatically detected MIME type)","breadcrumbs":"CLI Command Reference » Input Files","id":"1432","title":"Input Files"},"1433":{"body":"JACS documents - JSON format with JACS metadata, signatures, and checksums Extracted files - Original format of embedded attachments","breadcrumbs":"CLI Command Reference » Output Files","id":"1433","title":"Output Files"},"1434":{"body":"","breadcrumbs":"Configuration Reference » Configuration Reference","id":"1434","title":"Configuration Reference"},"1435":{"body":"","breadcrumbs":"Configuration Reference » Overview","id":"1435","title":"Overview"},"1436":{"body":"When verifying signed documents, JACS resolves the signer’s public key using a configurable order of sources. Set JACS_KEY_RESOLUTION (environment variable or in config) to a comma-separated list of sources: local (trust store), dns (DNS TXT record), hai (HAI key service). Example: JACS_KEY_RESOLUTION=local,hai or local,dns,hai. The first source that returns a key for the signer’s ID is used. Use verify_standalone() with explicit keyResolution for one-off verification without loading a full config.","breadcrumbs":"Configuration Reference » Key resolution for verifiers","id":"1436","title":"Key resolution for verifiers"},"1437":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_use_security\": \"false\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"jacs.private.pem.enc\", \"jacs_agent_public_key_filename\": \"jacs.public.pem\", \"jacs_agent_key_algorithm\": \"RSA-PSS\", \"jacs_default_storage\": \"fs\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"./logs\" }, \"headers\": { \"Authorization\": \"Bearer token\", \"X-API-Key\": \"secret\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" } }, \"export_interval_seconds\": 60, \"headers\": { \"X-Service\": \"jacs\" } }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"platform\", \"region\": \"us-west-2\" } } } }\n}","breadcrumbs":"Configuration Reference » Complete Example Configuration","id":"1437","title":"Complete Example Configuration"},"1438":{"body":"JACS supports comprehensive observability through configurable logging, metrics, and tracing. All observability features are optional and can be configured in the jacs.config.json file.","breadcrumbs":"Configuration Reference » Observability Configuration","id":"1438","title":"Observability Configuration"},"1439":{"body":"Controls how JACS generates and outputs log messages. Field Type Required Description enabled boolean Yes Whether logging is enabled level string Yes Minimum log level: trace, debug, info, warn, error destination object Yes Where logs are sent (see destinations below) headers object No Additional headers for remote destinations Log Destinations File Logging { \"type\": \"file\", \"path\": \"./logs\"\n} Writes logs to rotating files in the specified directory. Console Logging (stderr) { \"type\": \"stderr\"\n} Outputs logs to standard error stream. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Sends logs to an OTLP-compatible endpoint (like Jaeger, Grafana Cloud). Null (disabled) { \"type\": \"null\"\n} Discards all log output.","breadcrumbs":"Configuration Reference » Logs Configuration","id":"1439","title":"Logs Configuration"},"144":{"body":"Code Meaning 0 Success 1 General error 2 Invalid arguments 3 File not found 4 Verification failed 5 Signature invalid","breadcrumbs":"CLI Usage » Exit Codes","id":"144","title":"Exit Codes"},"1440":{"body":"Controls collection and export of application metrics. Field Type Required Description enabled boolean Yes Whether metrics collection is enabled destination object Yes Where metrics are exported (see destinations below) export_interval_seconds integer No How often to export metrics (default: 60) headers object No Additional headers for remote destinations Metrics Destinations Prometheus Remote Write { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\", \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\" }\n} Exports metrics in Prometheus format to a remote write endpoint. OpenTelemetry Protocol (OTLP) { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" }\n} Exports metrics to an OTLP-compatible endpoint. File Export { \"type\": \"file\", \"path\": \"./metrics.txt\"\n} Writes metrics to a local file. Console Output (stdout) { \"type\": \"stdout\"\n} Prints metrics to standard output.","breadcrumbs":"Configuration Reference » Metrics Configuration","id":"1440","title":"Metrics Configuration"},"1441":{"body":"Controls distributed tracing for request flows. Field Type Required Description enabled boolean Yes Whether tracing is enabled sampling object No Sampling configuration (see below) resource object No Service identification (see below) Sampling Configuration Controls which traces are collected to manage overhead. Field Type Default Description ratio number 1.0 Fraction of traces to sample (0.0-1.0) parent_based boolean true Whether to respect parent trace sampling decisions rate_limit integer none Maximum traces per second Examples: \"ratio\": 1.0 - Sample all traces (100%) \"ratio\": 0.1 - Sample 10% of traces \"ratio\": 0.01 - Sample 1% of traces \"rate_limit\": 10 - Maximum 10 traces per second Resource Configuration Identifies the service in distributed tracing systems. Field Type Required Description service_name string Yes Name of the service service_version string No Version of the service environment string No Environment (dev, staging, prod) attributes object No Custom key-value attributes","breadcrumbs":"Configuration Reference » Tracing Configuration","id":"1441","title":"Tracing Configuration"},"1442":{"body":"For remote destinations (OTLP, Prometheus), you can specify authentication headers: Bearer Token Authentication: \"headers\": { \"Authorization\": \"Bearer your-token-here\"\n} Basic Authentication: \"headers\": { \"Authorization\": \"Basic dXNlcjpwYXNz\"\n} API Key Authentication: \"headers\": { \"X-API-Key\": \"your-api-key\", \"X-Auth-Token\": \"your-auth-token\"\n}","breadcrumbs":"Configuration Reference » Authentication & Headers","id":"1442","title":"Authentication & Headers"},"1443":{"body":"","breadcrumbs":"Configuration Reference » Common Patterns","id":"1443","title":"Common Patterns"},"1444":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"debug\", \"destination\": { \"type\": \"stderr\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"stdout\" } }\n}","breadcrumbs":"Configuration Reference » Development Configuration","id":"1444","title":"Development Configuration"},"1445":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"otlp\", \"endpoint\": \"https://logs.example.com:4317\", \"headers\": { \"Authorization\": \"Bearer prod-token\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"https://metrics.example.com/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.05, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"jacs\", \"service_version\": \"0.4.0\", \"environment\": \"production\" } }\n}","breadcrumbs":"Configuration Reference » Production Configuration","id":"1445","title":"Production Configuration"},"1446":{"body":"\"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.txt\" }, \"export_interval_seconds\": 60 }\n}","breadcrumbs":"Configuration Reference » File-based Configuration","id":"1446","title":"File-based Configuration"},"1447":{"body":"The observability configuration works alongside JACS's core configuration system.","breadcrumbs":"Configuration Reference » Environment Variable Integration","id":"1447","title":"Environment Variable Integration"},"1448":{"body":"Only one environment variable is truly required: JACS_PRIVATE_KEY_PASSWORD - Password for encrypting/decrypting private keys (required for cryptographic operations)","breadcrumbs":"Configuration Reference » Required Environment Variable","id":"1448","title":"Required Environment Variable"},"1449":{"body":"All other JACS settings are configuration file fields that have sensible defaults: jacs_data_directory - Where agent/document data is stored (default: ./jacs_data) jacs_key_directory - Where cryptographic keys are stored (default: ./jacs_keys) jacs_agent_key_algorithm - Cryptographic algorithm to use (default: RSA-PSS) jacs_default_storage - Storage backend (default: fs) jacs_use_security / JACS_ENABLE_FILESYSTEM_QUARANTINE - Enable filesystem quarantine of executable files (default: false). The env var JACS_USE_SECURITY is deprecated; use JACS_ENABLE_FILESYSTEM_QUARANTINE instead. These can be overridden by environment variables if needed, but they are primarily configured through the jacs.config.json file. The observability configuration is completely optional - JACS will work without any observability configuration.","breadcrumbs":"Configuration Reference » Configuration-Based Settings","id":"1449","title":"Configuration-Based Settings"},"145":{"body":"Creating an Agent - Detailed agent creation guide Working with Documents - Document operations in depth Agreements - Multi-agent agreements","breadcrumbs":"CLI Usage » Next Steps","id":"145","title":"Next Steps"},"1450":{"body":"The jacs_default_storage field determines where JACS stores agent data, documents, and keys. This is a critical configuration that affects how your data is persisted and accessed.","breadcrumbs":"Configuration Reference » Storage Configuration","id":"1450","title":"Storage Configuration"},"1451":{"body":"Backend Value Description Use Case Filesystem \"fs\" Local file system storage Development, single-node deployments AWS S3 \"aws\" Amazon S3 object storage Production, cloud deployments HAI Remote \"hai\" HAI.ai remote storage service HAI.ai platform integration Memory \"memory\" In-memory storage (non-persistent) Testing, temporary data Web Local \"local\" Browser local storage (WASM only) Web applications","breadcrumbs":"Configuration Reference » Available Storage Backends","id":"1451","title":"Available Storage Backends"},"1452":{"body":"Filesystem Storage (\"fs\") { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n} Requirements: None - works out of the box Data location: Local directories as specified in config Best for: Development, local testing, single-machine deployments AWS S3 Storage (\"aws\") { \"jacs_default_storage\": \"aws\"\n} Required Environment Variables: JACS_ENABLE_AWS_BUCKET_NAME - S3 bucket name AWS_ACCESS_KEY_ID - AWS access key AWS_SECRET_ACCESS_KEY - AWS secret key AWS_REGION - AWS region (optional, defaults to us-east-1) Best for: Production deployments, distributed systems, cloud-native applications HAI Remote Storage (\"hai\") { \"jacs_default_storage\": \"hai\"\n} Required Environment Variables: HAI_STORAGE_URL - HAI.ai storage service endpoint Best for: Integration with HAI.ai platform services Memory Storage (\"memory\") { \"jacs_default_storage\": \"memory\"\n} Requirements: None Data persistence: None - data is lost when application stops Best for: Unit testing, temporary operations, development scenarios","breadcrumbs":"Configuration Reference » Backend-Specific Configuration","id":"1452","title":"Backend-Specific Configuration"},"1453":{"body":"Agent data (agent definitions, signatures) are stored using the configured backend Documents are stored using the configured backend Cryptographic keys are stored using the configured backend Observability data (logs, metrics) can use separate storage via observability configuration","breadcrumbs":"Configuration Reference » Storage Behavior","id":"1453","title":"Storage Behavior"},"1454":{"body":"Development Setup (Filesystem) { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./dev_data\", \"jacs_key_directory\": \"./dev_keys\"\n} Production Setup (AWS S3) { \"jacs_default_storage\": \"aws\"\n} With environment variables: export JACS_ENABLE_AWS_BUCKET_NAME=\"my-jacs-production-bucket\"\nexport AWS_ACCESS_KEY_ID=\"AKIA...\"\nexport AWS_SECRET_ACCESS_KEY=\"...\"\nexport AWS_REGION=\"us-west-2\" HAI Platform Integration { \"jacs_default_storage\": \"hai\"\n} With environment variable: export HAI_STORAGE_URL=\"https://storage.hai.ai/v1\"","breadcrumbs":"Configuration Reference » Configuration Examples","id":"1454","title":"Configuration Examples"},"1455":{"body":"AWS S3 : Ensure proper IAM permissions for bucket access HAI Remote : Secure the HAI_STORAGE_URL endpoint and any required authentication Filesystem : Ensure proper file system permissions for data and key directories Keys : Regardless of storage backend, always set JACS_PRIVATE_KEY_PASSWORD for key encryption","breadcrumbs":"Configuration Reference » Security Considerations","id":"1455","title":"Security Considerations"},"1456":{"body":"When changing storage backends, you'll need to: Export existing data from the current backend Update the jacs_default_storage configuration Set any required environment variables for the new backend Import data into the new backend JACS doesn't automatically migrate data between storage backends - this must be done manually or via custom scripts.","breadcrumbs":"Configuration Reference » Migration Between Storage Backends","id":"1456","title":"Migration Between Storage Backends"},"1457":{"body":"This reference documents error codes and messages you may encounter when using JACS.","breadcrumbs":"Error Codes » Error Codes","id":"1457","title":"Error Codes"},"1458":{"body":"Code Name Description 0 Success Operation completed successfully 1 General Error Unspecified error occurred 2 Invalid Arguments Command line arguments invalid 3 File Not Found Specified file does not exist 4 Verification Failed Document or signature verification failed 5 Signature Invalid Cryptographic signature is invalid","breadcrumbs":"Error Codes » CLI Exit Codes","id":"1458","title":"CLI Exit Codes"},"1459":{"body":"","breadcrumbs":"Error Codes » Configuration Errors","id":"1459","title":"Configuration Errors"},"146":{"body":"An agent is the fundamental identity in JACS - an autonomous entity that can create, sign, and verify documents. This guide covers creating and managing agents.","breadcrumbs":"Creating an Agent » Creating an Agent","id":"146","title":"Creating an Agent"},"1460":{"body":"Error: Configuration file not found: jacs.config.json Cause: JACS cannot find the configuration file. Solution: # Initialize JACS to create configuration\njacs init # Or specify a custom config path\nJACS_CONFIG_PATH=./custom.config.json jacs agent verify","breadcrumbs":"Error Codes » Missing Configuration","id":"1460","title":"Missing Configuration"},"1461":{"body":"Error: Invalid configuration: missing required field 'jacs_key_directory' Cause: Configuration file is missing required fields. Solution: Ensure your jacs.config.json contains all required fields: { \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Error Codes » Invalid Configuration","id":"1461","title":"Invalid Configuration"},"1462":{"body":"Error: Key directory not found: ./jacs_keys Cause: The specified key directory does not exist. Solution: # Create the directory\nmkdir -p ./jacs_keys # Or run init to create everything\njacs init","breadcrumbs":"Error Codes » Key Directory Not Found","id":"1462","title":"Key Directory Not Found"},"1463":{"body":"","breadcrumbs":"Error Codes » Cryptographic Errors","id":"1463","title":"Cryptographic Errors"},"1464":{"body":"Error: Private key file not found: private.pem Cause: The private key file is missing from the key directory. Solution: # Generate new keys\njacs agent create --create-keys true","breadcrumbs":"Error Codes » Private Key Not Found","id":"1464","title":"Private Key Not Found"},"1465":{"body":"Error: Failed to parse private key: invalid PEM format Cause: The key file is corrupted or in wrong format. Solution: Regenerate keys with jacs agent create --create-keys true Ensure the key file is not corrupted","breadcrumbs":"Error Codes » Invalid Key Format","id":"1465","title":"Invalid Key Format"},"1466":{"body":"Error: Private key is encrypted but no password provided Cause: Encrypted private key requires password. Solution: export JACS_PRIVATE_KEY_PASSWORD=\"your-password\"\njacs document create -f doc.json","breadcrumbs":"Error Codes » Key Password Required","id":"1466","title":"Key Password Required"},"1467":{"body":"Error: Key algorithm 'ring-Ed25519' does not match configured algorithm 'RSA-PSS' Cause: The key file was created with a different algorithm than configured. Solution: Update config to match key algorithm, or Regenerate keys with the correct algorithm","breadcrumbs":"Error Codes » Algorithm Mismatch","id":"1467","title":"Algorithm Mismatch"},"1468":{"body":"","breadcrumbs":"Error Codes » Signature Errors","id":"1468","title":"Signature Errors"},"1469":{"body":"Error: Document verification failed: signature does not match content Cause: Document content has been modified after signing. Solution: The document may have been tampered with Re-sign the document if you have the original content","breadcrumbs":"Error Codes » Verification Failed","id":"1469","title":"Verification Failed"},"147":{"body":"A JACS agent is: A unique identity with a UUID that never changes A holder of cryptographic keys for signing A provider of services defined in the agent document Self-signed to prove authenticity","breadcrumbs":"Creating an Agent » What is an Agent?","id":"147","title":"What is an Agent?"},"1470":{"body":"Error: Document missing jacsSignature field Cause: Document was not signed or signature was removed. Solution: # Create a signed document\njacs document create -f unsigned-doc.json","breadcrumbs":"Error Codes » Missing Signature","id":"1470","title":"Missing Signature"},"1471":{"body":"Error: Invalid signature format: expected base64 encoded string Cause: The signature field is malformed. Solution: Re-sign the document Verify the document hasn't been corrupted","breadcrumbs":"Error Codes » Invalid Signature Format","id":"1471","title":"Invalid Signature Format"},"1472":{"body":"Error: Unknown signing algorithm: unknown-algo Cause: Document was signed with an unsupported algorithm. Solution: Use a supported algorithm: ring-Ed25519, RSA-PSS, pq-dilithium, pq2025","breadcrumbs":"Error Codes » Unknown Signing Algorithm","id":"1472","title":"Unknown Signing Algorithm"},"1473":{"body":"","breadcrumbs":"Error Codes » DNS Verification Errors","id":"1473","title":"DNS Verification Errors"},"1474":{"body":"Error: strict DNSSEC validation failed for  (TXT not authenticated). Enable DNSSEC and publish DS at registrar Cause: DNSSEC mode was requested but the TXT response wasn't authenticated. Solution: Enable DNSSEC for your domain zone Publish the DS record at your registrar Wait for propagation (up to 48 hours)","breadcrumbs":"Error Codes » DNSSEC Validation Failed","id":"1474","title":"DNSSEC Validation Failed"},"1475":{"body":"Error: DNS TXT lookup failed for  (record missing or not yet propagated) Cause: The JACS TXT record doesn't exist or hasn't propagated. Solution: Verify the TXT record was created: dig _v1.agent.jacs.yourdomain.com TXT Wait for DNS propagation (can take up to 48 hours) Confirm record name and value are correct","breadcrumbs":"Error Codes » DNS Record Not Found","id":"1475","title":"DNS Record Not Found"},"1476":{"body":"Error: DNS TXT lookup required (domain configured) or provide embedded fingerprint Cause: Strict DNS mode is active because a domain is configured. Solution: Publish the TXT record, or Run with --no-dns during initial setup: jacs agent verify --no-dns","breadcrumbs":"Error Codes » DNS Required","id":"1476","title":"DNS Required"},"1477":{"body":"Error: DNS lookup timed out for  Cause: DNS server did not respond in time. Solution: Check network connectivity Try again later Verify DNS server is accessible","breadcrumbs":"Error Codes » DNS Lookup Timeout","id":"1477","title":"DNS Lookup Timeout"},"1478":{"body":"","breadcrumbs":"Error Codes » Document Errors","id":"1478","title":"Document Errors"},"1479":{"body":"Error: Failed to parse document: invalid JSON at line 5 Cause: Document file contains invalid JSON. Solution: Validate JSON with a linter Check for syntax errors (missing commas, quotes)","breadcrumbs":"Error Codes » Invalid JSON","id":"1479","title":"Invalid JSON"},"148":{"body":"","breadcrumbs":"Creating an Agent » Creating Your First Agent","id":"148","title":"Creating Your First Agent"},"1480":{"body":"Error: Schema validation failed: missing required field 'amount' Cause: Document doesn't conform to the specified schema. Solution: # Check which fields are required by the schema\ncat schema.json | jq '.required' # Add missing fields to your document","breadcrumbs":"Error Codes » Schema Validation Failed","id":"1480","title":"Schema Validation Failed"},"1481":{"body":"Error: Document not found: 550e8400-e29b-41d4-a716-446655440000 Cause: The specified document ID doesn't exist in storage. Solution: Verify the document ID is correct Check the storage directory","breadcrumbs":"Error Codes » Document Not Found","id":"1481","title":"Document Not Found"},"1482":{"body":"Error: Document version mismatch: expected v2, got v1 Cause: Attempting to update with incorrect base version. Solution: Get the latest version of the document Apply updates to the correct version","breadcrumbs":"Error Codes » Version Mismatch","id":"1482","title":"Version Mismatch"},"1483":{"body":"","breadcrumbs":"Error Codes » Agreement Errors","id":"1483","title":"Agreement Errors"},"1484":{"body":"Error: Document has no jacsAgreement field Cause: Attempting agreement operations on a document without an agreement. Solution: # Create an agreement first\njacs document create-agreement -f doc.json -i agent1-id,agent2-id","breadcrumbs":"Error Codes » Agreement Not Found","id":"1484","title":"Agreement Not Found"},"1485":{"body":"Error: Agent has already signed this agreement Cause: Attempting to sign an agreement that was already signed by this agent. Solution: No action needed, the signature is already present","breadcrumbs":"Error Codes » Already Signed","id":"1485","title":"Already Signed"},"1486":{"body":"Error: Agent is not in the agreement's agentIDs list Cause: Attempting to sign with an agent not listed in the agreement. Solution: Only agents listed in jacsAgreement.agentIDs can sign","breadcrumbs":"Error Codes » Not Authorized","id":"1486","title":"Not Authorized"},"1487":{"body":"Error: Cannot modify document: agreement is complete Cause: Attempting to modify a document with a completed agreement. Solution: Create a new version/agreement if changes are needed","breadcrumbs":"Error Codes » Agreement Locked","id":"1487","title":"Agreement Locked"},"1488":{"body":"","breadcrumbs":"Error Codes » Storage Errors","id":"1488","title":"Storage Errors"},"1489":{"body":"Error: Storage error: failed to write to filesystem Cause: Unable to write to the configured storage backend. Solution: Check filesystem permissions Verify storage directory exists Check disk space","breadcrumbs":"Error Codes » Storage Backend Error","id":"1489","title":"Storage Backend Error"},"149":{"body":"# Initialize JACS (creates config and agent)\njacs init This creates: Configuration file Cryptographic key pair Initial agent document","breadcrumbs":"Creating an Agent » Quick Method (Recommended)","id":"149","title":"Quick Method (Recommended)"},"1490":{"body":"Error: S3 error: AccessDenied Cause: AWS credentials don't have required permissions. Solution: Verify IAM permissions include s3:GetObject, s3:PutObject Check bucket policy Verify credentials are correct","breadcrumbs":"Error Codes » AWS S3 Error","id":"1490","title":"AWS S3 Error"},"1491":{"body":"Error: Failed to connect to storage: connection refused Cause: Cannot connect to remote storage backend. Solution: Check network connectivity Verify endpoint URL is correct Check firewall rules","breadcrumbs":"Error Codes » Connection Error","id":"1491","title":"Connection Error"},"1492":{"body":"","breadcrumbs":"Error Codes » HTTP/MCP Errors","id":"1492","title":"HTTP/MCP Errors"},"1493":{"body":"Error: JACS request verification failed Cause: Incoming HTTP request has invalid JACS signature. Solution: Ensure client is signing requests correctly Verify client and server are using compatible keys","breadcrumbs":"Error Codes » Request Verification Failed","id":"1493","title":"Request Verification Failed"},"1494":{"body":"Error: JACS response verification failed Cause: Server response has invalid signature. Solution: Check server JACS configuration Verify server is signing responses","breadcrumbs":"Error Codes » Response Verification Failed","id":"1494","title":"Response Verification Failed"},"1495":{"body":"Error: JACSExpressMiddleware: config file not found Cause: Middleware cannot find JACS configuration. Solution: app.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' // Verify path is correct\n}));","breadcrumbs":"Error Codes » Middleware Configuration Error","id":"1495","title":"Middleware Configuration Error"},"1496":{"body":"","breadcrumbs":"Error Codes » Debugging Tips","id":"1496","title":"Debugging Tips"},"1497":{"body":"# CLI verbose mode\njacs document verify -f doc.json -v # Environment variable\nexport JACS_DEBUG=true","breadcrumbs":"Error Codes » Enable Verbose Output","id":"1497","title":"Enable Verbose Output"},"1498":{"body":"# Display current configuration\njacs config read","breadcrumbs":"Error Codes » Check Configuration","id":"1498","title":"Check Configuration"},"1499":{"body":"# Verify agent is properly configured\njacs agent verify -v","breadcrumbs":"Error Codes » Verify Agent","id":"1499","title":"Verify Agent"},"15":{"body":"Support for both current (RSA, Ed25519) and post-quantum cryptographic algorithms ensures your system remains secure.","breadcrumbs":"Introduction » 🔒 Future-Proof Security","id":"15","title":"🔒 Future-Proof Security"},"150":{"body":"# 1. Create configuration\njacs config create # 2. Create agent with new keys\njacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Manual Method","id":"150","title":"Manual Method"},"1500":{"body":"# Create a test document\necho '{\"test\": true}' > test.json\njacs document create -f test.json -v","breadcrumbs":"Error Codes » Test Signing","id":"1500","title":"Test Signing"},"1501":{"body":"Configuration Reference - Configuration options CLI Command Reference - CLI usage Security Model - Security details","breadcrumbs":"Error Codes » See Also","id":"1501","title":"See Also"},"1502":{"body":"This guide covers migrating between JACS versions and common migration scenarios.","breadcrumbs":"Migration Guide » Migration Guide","id":"1502","title":"Migration Guide"},"1503":{"body":"JACS maintains backward compatibility for document verification: Documents signed with older versions can be verified with newer versions Older JACS versions cannot verify documents using newer cryptographic algorithms","breadcrumbs":"Migration Guide » Version Compatibility","id":"1503","title":"Version Compatibility"},"1504":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.5.1 to 0.5.2","id":"1504","title":"Migrating from 0.5.1 to 0.5.2"},"1505":{"body":"PBKDF2 Iteration Count : New key encryptions use 600,000 iterations (up from 100,000). Existing encrypted keys are decrypted automatically via fallback. To upgrade existing keys, re-encrypt them: # Re-generate keys to use the new iteration count\njacs keygen","breadcrumbs":"Migration Guide » Migration Notes","id":"1505","title":"Migration Notes"},"1506":{"body":"JACS_USE_SECURITY is now JACS_ENABLE_FILESYSTEM_QUARANTINE. The old name still works with a deprecation warning.","breadcrumbs":"Migration Guide » Deprecated Environment Variables","id":"1506","title":"Deprecated Environment Variables"},"1507":{"body":"Variable Default Description JACS_MAX_SIGNATURE_AGE_SECONDS 0 (no expiration) Maximum age of valid signatures. Set to a positive value to enable (e.g., 7776000 for 90 days). JACS_REQUIRE_EXPLICIT_ALGORITHM false When true, reject verification if signingAlgorithm is missing. JACS_ENABLE_FILESYSTEM_QUARANTINE false Enable filesystem quarantine (replaces JACS_USE_SECURITY).","breadcrumbs":"Migration Guide » New Environment Variables","id":"1507","title":"New Environment Variables"},"1508":{"body":"","breadcrumbs":"Migration Guide » Migrating from 0.2.x to 0.3.x","id":"1508","title":"Migrating from 0.2.x to 0.3.x"},"1509":{"body":"New Configuration Fields: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" }, \"metrics\": { \"enabled\": false }, \"tracing\": { \"enabled\": false } }\n} Deprecated Fields: jacs_log_level → Use observability.logs.level jacs_log_file → Use observability.logs.destination","breadcrumbs":"Migration Guide » Configuration Changes","id":"1509","title":"Configuration Changes"},"151":{"body":"Create an agent definition file (my-agent.json): { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent specialized in content creation\", \"jacsServices\": [ { \"jacsServiceName\": \"content-generation\", \"jacsServiceDescription\": \"Generate high-quality content\", \"jacsServiceSuccess\": \"Engaging, accurate content delivered\", \"jacsServiceFailure\": \"Unable to generate requested content\" } ]\n} Then create the agent: jacs agent create --create-keys true -f my-agent.json","breadcrumbs":"Creating an Agent » With Custom Agent Definition","id":"151","title":"With Custom Agent Definition"},"1510":{"body":"Update Configuration: # Backup current config\ncp jacs.config.json jacs.config.json.backup # Update to new format\n# Add observability section if needed Update Dependencies: # Node.js\nnpm install @hai.ai/jacs@latest # Python\npip install --upgrade jacs Verify Existing Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Migration Steps","id":"1510","title":"Migration Steps"},"1511":{"body":"","breadcrumbs":"Migration Guide » Migrating Storage Backends","id":"1511","title":"Migrating Storage Backends"},"1512":{"body":"Create S3 Bucket: aws s3 mb s3://my-jacs-bucket Update Configuration: { \"jacs_default_storage\": \"aws\", \"jacs_data_directory\": \"s3://my-jacs-bucket/data\"\n} Set Environment Variables: export AWS_ACCESS_KEY_ID=\"your-key\"\nexport AWS_SECRET_ACCESS_KEY=\"your-secret\"\nexport AWS_REGION=\"us-east-1\" Migrate Documents: # Upload existing documents\naws s3 sync ./jacs_data/ s3://my-jacs-bucket/data/ Verify Migration: jacs document verify -d s3://my-jacs-bucket/data/documents/","breadcrumbs":"Migration Guide » Filesystem to AWS S3","id":"1512","title":"Filesystem to AWS S3"},"1513":{"body":"Download Documents: aws s3 sync s3://my-jacs-bucket/data/ ./jacs_data/ Update Configuration: { \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\"\n} Verify Documents: jacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » AWS S3 to Filesystem","id":"1513","title":"AWS S3 to Filesystem"},"1514":{"body":"","breadcrumbs":"Migration Guide » Migrating Cryptographic Algorithms","id":"1514","title":"Migrating Cryptographic Algorithms"},"1515":{"body":"For increased security, you may want to migrate to post-quantum algorithms. Create New Agent with New Algorithm: { \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} jacs agent create --create-keys true -f new-agent.json Update Configuration: { \"jacs_agent_key_algorithm\": \"pq-dilithium\", \"jacs_agent_id_and_version\": \"new-agent-id:new-version\"\n} Re-sign Critical Documents (Optional): // Re-sign documents with new algorithm\nconst oldDoc = JSON.parse(fs.readFileSync('./old-doc.json')); // Remove old signature fields\ndelete oldDoc.jacsSignature;\ndelete oldDoc.jacsSha256; // Create new signed version\nconst newDoc = await agent.createDocument(JSON.stringify(oldDoc)); Note: Old documents remain valid with old signatures. Re-signing is only needed for documents that require the new algorithm.","breadcrumbs":"Migration Guide » Ed25519 to Post-Quantum","id":"1515","title":"Ed25519 to Post-Quantum"},"1516":{"body":"","breadcrumbs":"Migration Guide » Migrating Between Platforms","id":"1516","title":"Migrating Between Platforms"},"1517":{"body":"Both platforms use the same document format: // Node.js - create document\nconst signedDoc = await agent.createDocument(JSON.stringify(content));\nfs.writeFileSync('doc.json', signedDoc); # Python - verify the same document\nwith open('doc.json', 'r') as f: doc_string = f.read() is_valid = agent.verify_document(doc_string)","breadcrumbs":"Migration Guide » Node.js to Python","id":"1517","title":"Node.js to Python"},"1518":{"body":"Agents can be used across platforms by sharing configuration: Export Agent Files: jacs_keys/\n├── private.pem\n└── public.pem\njacs.config.json Use Same Config in Both: // Node.js\nawait agent.load('./jacs.config.json'); # Python\nagent.load('./jacs.config.json')","breadcrumbs":"Migration Guide » Sharing Agents Between Platforms","id":"1518","title":"Sharing Agents Between Platforms"},"1519":{"body":"","breadcrumbs":"Migration Guide » Migrating Key Formats","id":"1519","title":"Migrating Key Formats"},"152":{"body":"JACS supports four agent types: Type Description Contacts Required ai Fully artificial intelligence No human Individual person Yes human-org Group of people (organization) Yes hybrid Human-AI combination Yes","breadcrumbs":"Creating an Agent » Agent Types","id":"152","title":"Agent Types"},"1520":{"body":"Encrypt Existing Key: # Backup original\ncp jacs_keys/private.pem jacs_keys/private.pem.backup # Encrypt with password\nopenssl pkcs8 -topk8 -in jacs_keys/private.pem \\ -out jacs_keys/private.pem.enc -v2 aes-256-cbc # Remove unencrypted key\nrm jacs_keys/private.pem\nmv jacs_keys/private.pem.enc jacs_keys/private.pem Update Configuration: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} Set Password: export JACS_PRIVATE_KEY_PASSWORD=\"your-secure-password\"","breadcrumbs":"Migration Guide » Unencrypted to Encrypted Keys","id":"1520","title":"Unencrypted to Encrypted Keys"},"1521":{"body":"","breadcrumbs":"Migration Guide » Database Migration","id":"1521","title":"Database Migration"},"1522":{"body":"If migrating from filesystem to include database storage: Create Database Schema: CREATE TABLE jacs_documents ( id UUID PRIMARY KEY, version_id UUID NOT NULL, document JSONB NOT NULL, created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(), UNIQUE(id, version_id)\n); Import Existing Documents: const fs = require('fs');\nconst path = require('path');\nconst { Pool } = require('pg'); const pool = new Pool({ connectionString: process.env.DATABASE_URL });\nconst docsDir = './jacs_data/documents'; async function importDocuments() { const docDirs = fs.readdirSync(docsDir); for (const docId of docDirs) { const docPath = path.join(docsDir, docId); const versions = fs.readdirSync(docPath); for (const versionFile of versions) { const docString = fs.readFileSync( path.join(docPath, versionFile), 'utf-8' ); const doc = JSON.parse(docString); await pool.query(` INSERT INTO jacs_documents (id, version_id, document) VALUES ($1, $2, $3) ON CONFLICT (id, version_id) DO NOTHING `, [doc.jacsId, doc.jacsVersion, doc]); } }\n} importDocuments();","breadcrumbs":"Migration Guide » Adding Database Storage","id":"1522","title":"Adding Database Storage"},"1523":{"body":"","breadcrumbs":"Migration Guide » MCP Integration Migration","id":"1523","title":"MCP Integration Migration"},"1524":{"body":"Install JACS: npm install @hai.ai/jacs Wrap Existing Transport: // Before\nconst transport = new StdioServerTransport();\nawait server.connect(transport); // After\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);\nawait server.connect(secureTransport); Update Client: // Client also needs JACS\nconst baseTransport = new StdioClientTransport({ command: 'node', args: ['server.js'] });\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.client.config.json', 'client'\n);\nawait client.connect(secureTransport);","breadcrumbs":"Migration Guide » Adding JACS to Existing MCP Server","id":"1524","title":"Adding JACS to Existing MCP Server"},"1525":{"body":"","breadcrumbs":"Migration Guide » HTTP API Migration","id":"1525","title":"HTTP API Migration"},"1526":{"body":"Install Middleware: npm install @hai.ai/jacs Add Middleware to Routes: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Before\napp.use('/api', express.json()); // After - for JACS-protected routes\napp.use('/api/secure', express.text({ type: '*/*' }));\napp.use('/api/secure', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Keep non-JACS routes unchanged\napp.use('/api/public', express.json()); Update Route Handlers: // Before\napp.post('/api/data', (req, res) => { const payload = req.body; // ...\n}); // After\napp.post('/api/secure/data', (req, res) => { const payload = req.jacsPayload; // Verified payload // ...\n});","breadcrumbs":"Migration Guide » Adding JACS to Existing Express API","id":"1526","title":"Adding JACS to Existing Express API"},"1527":{"body":"","breadcrumbs":"Migration Guide » Troubleshooting Migration","id":"1527","title":"Troubleshooting Migration"},"1528":{"body":"Documents Not Verifying After Migration: Check algorithm compatibility Verify keys were copied correctly Ensure configuration paths are correct Key File Errors: Verify file permissions (600 for private key) Check key format matches algorithm Ensure password is set for encrypted keys Storage Errors After Migration: Verify storage backend is accessible Check credentials/permissions Ensure directory structure is correct","breadcrumbs":"Migration Guide » Common Issues","id":"1528","title":"Common Issues"},"1529":{"body":"After any migration: Verify Configuration: jacs config read Verify Agent: jacs agent verify Verify Sample Document: jacs document verify -f ./sample-doc.json Test Document Creation: echo '{\"test\": true}' > test.json\njacs document create -f test.json Verify Version: jacs version","breadcrumbs":"Migration Guide » Verification Checklist","id":"1529","title":"Verification Checklist"},"153":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"ai\", \"name\": \"DataBot\", \"description\": \"Data processing agent\", \"jacsServices\": [ { \"jacsServiceName\": \"data-processing\", \"jacsServiceDescription\": \"Process and transform data\" } ]\n}","breadcrumbs":"Creating an Agent » AI Agent Example","id":"153","title":"AI Agent Example"},"1530":{"body":"If migration fails: Restore Configuration: cp jacs.config.json.backup jacs.config.json Restore Keys: cp -r jacs_keys.backup/* jacs_keys/ Restore Dependencies: # Node.js\nnpm install @hai.ai/jacs@previous-version # Python\npip install jacs==previous-version Verify Rollback: jacs agent verify\njacs document verify -d ./jacs_data/documents/","breadcrumbs":"Migration Guide » Rollback Procedures","id":"1530","title":"Rollback Procedures"},"1531":{"body":"Configuration Reference - Configuration options Cryptographic Algorithms - Algorithm details Storage Backends - Storage options","breadcrumbs":"Migration Guide » See Also","id":"1531","title":"See Also"},"154":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsAgentType\": \"human\", \"name\": \"John Smith\", \"description\": \"Software engineer\", \"jacsContacts\": [ { \"jacsContactType\": \"email\", \"jacsContactValue\": \"john@example.com\" } ], \"jacsServices\": [ { \"jacsServiceName\": \"code-review\", \"jacsServiceDescription\": \"Review code for quality and security\" } ]\n}","breadcrumbs":"Creating an Agent » Human Agent Example","id":"154","title":"Human Agent Example"},"155":{"body":"Services define what an agent can do. Each service has: { \"jacsServiceName\": \"service-identifier\", \"jacsServiceDescription\": \"What the service does\", \"jacsServiceSuccess\": \"Definition of successful completion\", \"jacsServiceFailure\": \"What constitutes failure\", \"jacsServiceActions\": [ { \"jacsActionName\": \"action-1\", \"jacsActionDescription\": \"First action in this service\" } ]\n}","breadcrumbs":"Creating an Agent » Agent Services","id":"155","title":"Agent Services"},"156":{"body":"{ \"jacsServiceName\": \"document-processing\", \"jacsServiceDescription\": \"Process and analyze documents\", \"jacsServiceActions\": [ { \"jacsActionName\": \"extract-text\", \"jacsActionDescription\": \"Extract text from PDF documents\" }, { \"jacsActionName\": \"summarize\", \"jacsActionDescription\": \"Generate document summaries\" }, { \"jacsActionName\": \"translate\", \"jacsActionDescription\": \"Translate documents between languages\" } ]\n}","breadcrumbs":"Creating an Agent » Service with Actions","id":"156","title":"Service with Actions"},"157":{"body":"For human and hybrid agents, contacts are required: { \"jacsContacts\": [ { \"jacsContactType\": \"email\", \"jacsContactValue\": \"agent@example.com\" }, { \"jacsContactType\": \"website\", \"jacsContactValue\": \"https://example.com\" }, { \"jacsContactType\": \"phone\", \"jacsContactValue\": \"+1-555-0123\" } ]\n}","breadcrumbs":"Creating an Agent » Agent Contacts","id":"157","title":"Agent Contacts"},"158":{"body":"","breadcrumbs":"Creating an Agent » Cryptographic Keys","id":"158","title":"Cryptographic Keys"},"159":{"body":"JACS supports multiple cryptographic algorithms: Algorithm Description Recommended For ring-Ed25519 Fast elliptic curve signatures General use (default) RSA-PSS Traditional RSA signatures Legacy compatibility pq-dilithium Post-quantum signatures Future-proof security","breadcrumbs":"Creating an Agent » Key Algorithms","id":"159","title":"Key Algorithms"},"16":{"body":"JSON-based documents work everywhere - store them in any database, transmit over any protocol, integrate with any system.","breadcrumbs":"Introduction » 🌐 Universal Compatibility","id":"16","title":"🌐 Universal Compatibility"},"160":{"body":"In jacs.config.json: { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Or via environment variable: JACS_AGENT_KEY_ALGORITHM=ring-Ed25519 jacs agent create --create-keys true","breadcrumbs":"Creating an Agent » Configure Key Algorithm","id":"160","title":"Configure Key Algorithm"},"161":{"body":"Keys are stored in the key directory (default: ./jacs_keys): jacs_keys/\n├── private_key.pem # Private key (keep secure!)\n└── public_key.pem # Public key (can be shared)","breadcrumbs":"Creating an Agent » Key Storage","id":"161","title":"Key Storage"},"162":{"body":"","breadcrumbs":"Creating an Agent » Verifying Agents","id":"162","title":"Verifying Agents"},"163":{"body":"jacs agent verify","breadcrumbs":"Creating an Agent » Verify Your Own Agent","id":"163","title":"Verify Your Own Agent"},"164":{"body":"jacs agent verify -a ./path/to/agent.json","breadcrumbs":"Creating an Agent » Verify a Specific Agent File","id":"164","title":"Verify a Specific Agent File"},"165":{"body":"# Require DNS validation\njacs agent verify --require-dns # Require strict DNSSEC\njacs agent verify --require-strict-dns","breadcrumbs":"Creating an Agent » With DNS Verification","id":"165","title":"With DNS Verification"},"166":{"body":"Agent updates create a new version while maintaining the same jacsId: Modify the agent document Re-sign with the agent's keys The jacsVersion changes but jacsId remains constant.","breadcrumbs":"Creating an Agent » Updating Agents","id":"166","title":"Updating Agents"},"167":{"body":"A complete agent document looks like: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsLevel\": \"config\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"name\": \"Content Creation Agent\", \"description\": \"AI agent for content generation\", \"jacsServices\": [ { \"jacsServiceName\": \"content-generation\", \"jacsServiceDescription\": \"Generate high-quality content\" } ], \"jacsSha256\": \"hash-of-document\", \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"signature\": \"base64-encoded-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"name\", \"jacsServices\"] }\n}","breadcrumbs":"Creating an Agent » Agent Document Structure","id":"167","title":"Agent Document Structure"},"168":{"body":"","breadcrumbs":"Creating an Agent » Best Practices","id":"168","title":"Best Practices"},"169":{"body":"Protect private keys : Never share or commit private keys Use strong algorithms : Prefer Ed25519 or post-quantum Enable DNS verification : For production agents Regular key rotation : Update keys periodically","breadcrumbs":"Creating an Agent » Security","id":"169","title":"Security"},"17":{"body":"Whether you're building a simple CLI tool or a complex multi-agent system, JACS adapts to your architecture.","breadcrumbs":"Introduction » 🧩 Flexible Integration","id":"17","title":"🧩 Flexible Integration"},"170":{"body":"Clear service definitions : Be specific about capabilities Meaningful names : Use descriptive agent names Contact information : Include for human agents Version control : Track agent document changes","breadcrumbs":"Creating an Agent » Agent Design","id":"170","title":"Agent Design"},"171":{"body":"Backup keys : Keep secure backups of private keys Monitor signatures : Watch for unauthorized signing Document services : Keep service definitions current","breadcrumbs":"Creating an Agent » Operations","id":"171","title":"Operations"},"172":{"body":"Working with Documents - Create signed documents Agreements - Multi-agent coordination DNS Verification - Publish agent identity","breadcrumbs":"Creating an Agent » Next Steps","id":"172","title":"Next Steps"},"173":{"body":"Documents are the core data structure in JACS. Any JSON object can become a JACS document by adding the required header fields and a cryptographic signature.","breadcrumbs":"Working with Documents » Working with Documents","id":"173","title":"Working with Documents"},"174":{"body":"A JACS document is a JSON object that includes: Identity : Unique ID and version tracking Metadata : Type, timestamps, and origin information Signature : Cryptographic proof of authenticity Hash : Integrity verification","breadcrumbs":"Working with Documents » What is a JACS Document?","id":"174","title":"What is a JACS Document?"},"175":{"body":"","breadcrumbs":"Working with Documents » Creating Documents","id":"175","title":"Creating Documents"},"176":{"body":"Create a simple JSON document (my-document.json): { \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\"\n} Sign it with JACS: jacs document create -f my-document.json This adds JACS headers and signature, producing a signed document.","breadcrumbs":"Working with Documents » From a JSON File","id":"176","title":"From a JSON File"},"177":{"body":"Process multiple documents at once: jacs document create -d ./documents/","breadcrumbs":"Working with Documents » From a Directory","id":"177","title":"From a Directory"},"178":{"body":"Validate against a custom JSON schema: jacs document create -f my-document.json -s ./schemas/proposal.schema.json","breadcrumbs":"Working with Documents » With Custom Schema","id":"178","title":"With Custom Schema"},"179":{"body":"# Save to specific file\njacs document create -f my-document.json -o ./output/signed-doc.json # Print to stdout instead of saving\njacs document create -f my-document.json --no-save # Verbose output\njacs document create -f my-document.json -v","breadcrumbs":"Working with Documents » Output Options","id":"179","title":"Output Options"},"18":{"body":"Core Concepts - Understand agents, documents, and agreements Quick Start Guide - Get up and running in minutes Choose Your Implementation : Rust CLI & Library Node.js Package Python Package","breadcrumbs":"Introduction » Getting Started","id":"18","title":"Getting Started"},"180":{"body":"After signing, a document looks like: { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"version-uuid-here\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"document\", \"jacsLevel\": \"artifact\", \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000, \"deadline\": \"2024-03-31\", \"jacsSha256\": \"a1b2c3d4...\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\", \"budget\", \"deadline\"] }\n}","breadcrumbs":"Working with Documents » Document Structure","id":"180","title":"Document Structure"},"181":{"body":"Field Description Auto-generated $schema JSON Schema reference Yes jacsId Permanent document UUID Yes jacsVersion Version UUID (changes on update) Yes jacsVersionDate When this version was created Yes jacsOriginalVersion First version UUID Yes jacsOriginalDate Original creation timestamp Yes jacsType Document type Yes jacsLevel Data level (raw, config, artifact, derived) Yes","breadcrumbs":"Working with Documents » Required Header Fields","id":"181","title":"Required Header Fields"},"182":{"body":"The jacsLevel field indicates the document's purpose: Level Description Use Case raw Original data, should not change Source documents config Configuration, meant to be updated Agent definitions, settings artifact Generated output Reports, summaries derived Computed from other documents Analysis results","breadcrumbs":"Working with Documents » Document Levels","id":"182","title":"Document Levels"},"183":{"body":"","breadcrumbs":"Working with Documents » File Attachments","id":"183","title":"File Attachments"},"184":{"body":"# Attach a single file\njacs document create -f my-document.json --attach ./report.pdf # Attach a directory of files\njacs document create -f my-document.json --attach ./attachments/","breadcrumbs":"Working with Documents » Attach Files","id":"184","title":"Attach Files"},"185":{"body":"# Embed files directly in the document (larger document, self-contained)\njacs document create -f my-document.json --attach ./files/ --embed true # Reference files (smaller document, files stored separately)\njacs document create -f my-document.json --attach ./files/ --embed false","breadcrumbs":"Working with Documents » Embed vs. Reference","id":"185","title":"Embed vs. Reference"},"186":{"body":"Embedded attachments appear in the jacsFiles field: { \"jacsFiles\": [ { \"jacsFileName\": \"report.pdf\", \"jacsFileMimeType\": \"application/pdf\", \"jacsFileSha256\": \"file-hash\", \"jacsFileContent\": \"base64-encoded-content\" } ]\n}","breadcrumbs":"Working with Documents » Attachment Structure","id":"186","title":"Attachment Structure"},"187":{"body":"","breadcrumbs":"Working with Documents » Verifying Documents","id":"187","title":"Verifying Documents"},"188":{"body":"jacs document verify -f ./signed-document.json Verification checks: Hash integrity (document hasn't been modified) Signature validity (signature matches content) Schema compliance (if schema specified)","breadcrumbs":"Working with Documents » Basic Verification","id":"188","title":"Basic Verification"},"189":{"body":"jacs document verify -f ./document.json -s ./schema.json","breadcrumbs":"Working with Documents » Verify with Schema","id":"189","title":"Verify with Schema"},"19":{"body":"GitHub : HumanAssisted/JACS Issues : Report bugs and feature requests Examples : Complete examples for all implementations Documentation : This comprehensive guide Ready to build trustworthy AI systems? Let's get started!","breadcrumbs":"Introduction » Community and Support","id":"19","title":"Community and Support"},"190":{"body":"jacs document verify -d ./documents/","breadcrumbs":"Working with Documents » Verify Directory","id":"190","title":"Verify Directory"},"191":{"body":"jacs document verify -f ./document.json -v","breadcrumbs":"Working with Documents » Verbose Output","id":"191","title":"Verbose Output"},"192":{"body":"Updates create a new version while maintaining the same jacsId: jacs document update -f ./original.json -n ./modified.json The update process: Reads the original document Applies changes from the modified file Increments jacsVersion Links to previous version via jacsPreviousVersion Re-signs with agent's key","breadcrumbs":"Working with Documents » Updating Documents","id":"192","title":"Updating Documents"},"193":{"body":"jacs document update -f ./original.json -n ./modified.json --attach ./new-file.pdf","breadcrumbs":"Working with Documents » Update with Attachments","id":"193","title":"Update with Attachments"},"194":{"body":"Extract attachments from a document: jacs document extract -f ./document-with-attachments.json Extract from multiple documents: jacs document extract -d ./documents/","breadcrumbs":"Working with Documents » Extracting Embedded Content","id":"194","title":"Extracting Embedded Content"},"195":{"body":"","breadcrumbs":"Working with Documents » Document Types","id":"195","title":"Document Types"},"196":{"body":"Tasks are specialized documents for work tracking: jacs task create -n \"Code Review\" -d \"Review PR #123\" See Task Schema for details.","breadcrumbs":"Working with Documents » Task Documents","id":"196","title":"Task Documents"},"197":{"body":"Messages for agent communication: { \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"jacsType\": \"message\", \"jacsMessageContent\": \"Hello, I've completed the task.\", \"jacsMessageReplyTo\": \"previous-message-uuid\"\n}","breadcrumbs":"Working with Documents » Message Documents","id":"197","title":"Message Documents"},"198":{"body":"Any JSON can be a JACS document. Create custom schemas: { \"$schema\": \"https://example.com/schemas/invoice.schema.json\", \"jacsType\": \"invoice\", \"invoiceNumber\": \"INV-001\", \"amount\": 1000, \"currency\": \"USD\"\n}","breadcrumbs":"Working with Documents » Custom Documents","id":"198","title":"Custom Documents"},"199":{"body":"JACS tracks document history through version chains: Version 1 (jacsOriginalVersion) ↓\nVersion 2 (jacsPreviousVersion → Version 1) ↓\nVersion 3 (jacsPreviousVersion → Version 2) ↓\nCurrent Version Each version is a complete document that can be independently verified.","breadcrumbs":"Working with Documents » Version History","id":"199","title":"Version History"},"2":{"body":"🔐 Cryptographic Security : RSA, Ed25519, and post-quantum cryptographic algorithms 📋 JSON Schema Validation : Enforced document structure and validation 🤝 Multi-Agent Agreements : Built-in support for agent collaboration and task agreements 🔍 Full Audit Trail : Complete versioning and modification history 🌐 Multiple Language Support : Rust, Node.js, and Python implementations 🔌 MCP Integration : Native Model Context Protocol support 📊 Observability : Built-in logging and metrics for production systems","breadcrumbs":"Introduction » Key Features","id":"2","title":"Key Features"},"20":{"body":"JACS (JSON Agent Communication Standard) is a comprehensive framework designed to solve a critical problem in AI systems: How do agents communicate and collaborate securely with verifiable trust?","breadcrumbs":"What is JACS? » What is JACS?","id":"20","title":"What is JACS?"},"200":{"body":"","breadcrumbs":"Working with Documents » Working with Multiple Agents","id":"200","title":"Working with Multiple Agents"},"201":{"body":"# Use a specific agent's keys\njacs document create -f ./document.json -a ./other-agent.json","breadcrumbs":"Working with Documents » Different Agent Signs Document","id":"201","title":"Different Agent Signs Document"},"202":{"body":"# Verify with strict DNS requirement\njacs document verify -f ./document.json --require-strict-dns","breadcrumbs":"Working with Documents » Verify Document from Unknown Agent","id":"202","title":"Verify Document from Unknown Agent"},"203":{"body":"","breadcrumbs":"Working with Documents » Best Practices","id":"203","title":"Best Practices"},"204":{"body":"Use appropriate levels : Match jacsLevel to document purpose Include context : Add descriptive fields for human readability Version control : Keep source files in git alongside JACS documents","breadcrumbs":"Working with Documents » Document Design","id":"204","title":"Document Design"},"205":{"body":"Verify before trusting : Always verify signatures Check agent identity : Verify the signing agent Validate schemas : Use custom schemas for strict validation","breadcrumbs":"Working with Documents » Security","id":"205","title":"Security"},"206":{"body":"External attachments : Use --embed false for large files Batch processing : Use directory mode for multiple documents Selective verification : Verify only when needed","breadcrumbs":"Working with Documents » Performance","id":"206","title":"Performance"},"207":{"body":"","breadcrumbs":"Working with Documents » Common Workflows","id":"207","title":"Common Workflows"},"208":{"body":"# 1. Create document\njacs document create -f ./proposal.json -o ./signed-proposal.json # 2. Share the signed document\n# The recipient can verify it:\njacs document verify -f ./signed-proposal.json","breadcrumbs":"Working with Documents » Create and Share Document","id":"208","title":"Create and Share Document"},"209":{"body":"# 1. Create initial version\njacs document create -f ./contract-v1.json # 2. Make changes and update\njacs document update -f ./contract-v1.json -n ./contract-v2.json # 3. Continue updating\njacs document update -f ./contract-v2.json -n ./contract-v3.json","breadcrumbs":"Working with Documents » Track Document Changes","id":"209","title":"Track Document Changes"},"21":{"body":"As AI systems become more sophisticated, we're moving toward multi-agent architectures where different AI agents need to: Exchange tasks and delegate work to each other Create agreements and verify their completion Share data with guaranteed authenticity Maintain audit trails of decisions and actions Establish trust without centralized authorities Traditional approaches fall short because they lack: Cryptographic integrity for agent communications Standardized formats for agent interactions Built-in versioning and audit trails Support for multi-agent agreements and workflows","breadcrumbs":"What is JACS? » The Problem JACS Solves","id":"21","title":"The Problem JACS Solves"},"210":{"body":"# Create all documents in a directory\njacs document create -d ./input-docs/ # Verify all documents\njacs document verify -d ./signed-docs/","breadcrumbs":"Working with Documents » Process Multiple Documents","id":"210","title":"Process Multiple Documents"},"211":{"body":"Agreements - Multi-agent consent Task Schema - Task document structure Custom Schemas - Create your own schemas","breadcrumbs":"Working with Documents » Next Steps","id":"211","title":"Next Steps"},"212":{"body":"Agreements enable multi-party consent in JACS. They allow multiple agents to cryptographically sign a document, creating binding commitments between parties.","breadcrumbs":"Creating and Using Agreements » Creating and Using Agreements","id":"212","title":"Creating and Using Agreements"},"213":{"body":"An agreement is a mechanism for: Collecting signatures from multiple agents Tracking consent from required parties Enforcing completion before proceeding Creating audit trails of who agreed and when","breadcrumbs":"Creating and Using Agreements » What is an Agreement?","id":"213","title":"What is an Agreement?"},"214":{"body":"1. Create Agreement → 2. Distribute → 3. Agents Sign → 4. Verify Complete Create : Initial agent creates agreement with required participants Distribute : Agreement document shared with all parties Sign : Each agent reviews and adds their signature Verify : Check that all required parties have signed","breadcrumbs":"Creating and Using Agreements » Agreement Lifecycle","id":"214","title":"Agreement Lifecycle"},"215":{"body":"","breadcrumbs":"Creating and Using Agreements » Creating Agreements","id":"215","title":"Creating Agreements"},"216":{"body":"# Create agreement requiring signatures from two agents\njacs document create-agreement \\ -f ./document.json \\ -i agent1-uuid,agent2-uuid","breadcrumbs":"Creating and Using Agreements » Basic Agreement","id":"216","title":"Basic Agreement"},"217":{"body":"Include a question and context for clarity: { \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to the terms of this contract?\", \"jacsAgreementContext\": \"Service agreement for Q1 2024\", \"jacsAgreementAgents\": [\"agent1-uuid\", \"agent2-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » With Context","id":"217","title":"With Context"},"218":{"body":"","breadcrumbs":"Creating and Using Agreements » Signing Agreements","id":"218","title":"Signing Agreements"},"219":{"body":"jacs document sign-agreement -f ./document-with-agreement.json","breadcrumbs":"Creating and Using Agreements » Sign as Current Agent","id":"219","title":"Sign as Current Agent"},"22":{"body":"","breadcrumbs":"What is JACS? » JACS Core Philosophy","id":"22","title":"JACS Core Philosophy"},"220":{"body":"# Use a different configuration/agent\nJACS_CONFIG_PATH=./agent2.config.json jacs document sign-agreement -f ./document.json","breadcrumbs":"Creating and Using Agreements » Sign as Different Agent","id":"220","title":"Sign as Different Agent"},"221":{"body":"When signing, agents can include a response: { \"jacsAgreement\": { \"signatures\": { \"agent1-uuid\": { \"agentID\": \"agent1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\", \"response\": \"Agreed with minor reservation about timeline\", \"responseType\": \"agree\" } } }\n} Response types: agree - Agent consents disagree - Agent does not consent reject - Agent considers the question invalid or irrelevant","breadcrumbs":"Creating and Using Agreements » Sign with Response","id":"221","title":"Sign with Response"},"222":{"body":"","breadcrumbs":"Creating and Using Agreements » Checking Agreement Status","id":"222","title":"Checking Agreement Status"},"223":{"body":"jacs document check-agreement -f ./document.json This shows: Which agents have signed Which agents still need to sign Whether the agreement is complete","breadcrumbs":"Creating and Using Agreements » Check if Complete","id":"223","title":"Check if Complete"},"224":{"body":"A document with an agreement includes: { \"jacsId\": \"doc-uuid\", \"jacsType\": \"contract\", \"jacsAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to these terms?\", \"jacsAgreementContext\": \"Annual service contract\", \"jacsAgreementAgents\": [ \"550e8400-e29b-41d4-a716-446655440000\", \"123e4567-e89b-12d3-a456-426614174000\" ], \"signatures\": { \"550e8400-e29b-41d4-a716-446655440000\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash\", \"date\": \"2024-01-15T10:30:00Z\", \"responseType\": \"agree\", \"fields\": [\"jacsId\", \"jacsAgreement\"] } } }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Creating and Using Agreements » Agreement Structure","id":"224","title":"Agreement Structure"},"225":{"body":"Tasks have built-in support for start and end agreements: { \"jacsType\": \"task\", \"jacsTaskName\": \"Code Review\", \"jacsStartAgreement\": { \"jacsAgreementQuestion\": \"Do you agree to start this task?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }, \"jacsEndAgreement\": { \"jacsAgreementQuestion\": \"Do you agree the task is complete?\", \"jacsAgreementAgents\": [\"customer-uuid\", \"provider-uuid\"] }\n}","breadcrumbs":"Creating and Using Agreements » Task Agreements","id":"225","title":"Task Agreements"},"226":{"body":"# 1. Agent A creates a task\njacs task create -n \"Write Report\" -d \"Quarterly sales report\" # 2. Agent A adds agreement requiring both agents\njacs document create-agreement \\ -f ./task.json \\ -i agent-a-uuid,agent-b-uuid # 3. Agent A signs the agreement\njacs document sign-agreement -f ./task.json # 4. Agent B signs the agreement\nJACS_CONFIG_PATH=./agent-b.config.json \\ jacs document sign-agreement -f ./task.json # 5. Check agreement is complete\njacs document check-agreement -f ./task.json","breadcrumbs":"Creating and Using Agreements » Multi-Agent Workflow Example","id":"226","title":"Multi-Agent Workflow Example"},"227":{"body":"The jacsAgreementHash ensures all agents agree to the same content: Hash is computed from the agreement content Each signature includes the hash If content changes, hash changes, invalidating existing signatures This prevents modifications after some parties have signed.","breadcrumbs":"Creating and Using Agreements » Agreement Hash","id":"227","title":"Agreement Hash"},"228":{"body":"Verify before signing : Always review documents before signing Check agent identities : Verify who you're agreeing with (use DNS) Include context : Make the agreement purpose clear Handle disagreement : Have a process for when agents disagree","breadcrumbs":"Creating and Using Agreements » Best Practices","id":"228","title":"Best Practices"},"229":{"body":"DNS Verification - Verify agent identities Task Schema - Task-specific agreements Security Model - Agreement security","breadcrumbs":"Creating and Using Agreements » Next Steps","id":"229","title":"Next Steps"},"23":{"body":"JACS is built specifically for AI agent communication patterns, not as a general-purpose document signing system. It understands concepts like: Agents with identities and capabilities Tasks that can be delegated and tracked Agreements between multiple parties Versioning for iterative improvements","breadcrumbs":"What is JACS? » 🎯 Agent-First Design","id":"23","title":"🎯 Agent-First Design"},"230":{"body":"JACS supports DNS-based agent verification using DNS TXT records and DNSSEC. This allows agents to publish their identity in a decentralized, verifiable way that doesn't require a central authority.","breadcrumbs":"DNS-Based Verification » DNS-Based Agent Verification","id":"230","title":"DNS-Based Agent Verification"},"231":{"body":"DNS verification in JACS works by: Publishing an agent's public key fingerprint as a DNS TXT record Using DNSSEC to cryptographically verify the DNS response Comparing the fingerprint from DNS with the agent's actual public key This provides a secure, decentralized way to verify agent identity across the internet.","breadcrumbs":"DNS-Based Verification » Overview","id":"231","title":"Overview"},"232":{"body":"Decentralized : No central authority required Existing Infrastructure : Uses established DNS infrastructure DNSSEC Security : Cryptographic verification of DNS responses Human-Readable : Agents can be identified by domain names Widely Supported : Works with any DNS provider","breadcrumbs":"DNS-Based Verification » Why DNS Verification?","id":"232","title":"Why DNS Verification?"},"233":{"body":"","breadcrumbs":"DNS-Based Verification » Publishing Agent Identity","id":"233","title":"Publishing Agent Identity"},"234":{"body":"# Generate DNS TXT record commands for your agent\njacs agent dns --domain myagent.example.com # Specify agent ID explicitly\njacs agent dns --domain myagent.example.com --agent-id 550e8400-e29b-41d4-a716-446655440000 # Use hex encoding instead of base64\njacs agent dns --domain myagent.example.com --encoding hex # Set custom TTL (time-to-live)\njacs agent dns --domain myagent.example.com --ttl 7200","breadcrumbs":"DNS-Based Verification » Generate DNS Commands","id":"234","title":"Generate DNS Commands"},"235":{"body":"JACS can generate DNS commands for various providers: # Plain text format (default)\njacs agent dns --domain myagent.example.com --provider plain # AWS Route 53 format\njacs agent dns --domain myagent.example.com --provider aws # Azure DNS format\njacs agent dns --domain myagent.example.com --provider azure # Cloudflare DNS format\njacs agent dns --domain myagent.example.com --provider cloudflare","breadcrumbs":"DNS-Based Verification » Provider-Specific Formats","id":"235","title":"Provider-Specific Formats"},"236":{"body":"The DNS TXT record follows this format: _v1.agent.jacs.myagent.example.com. 3600 IN TXT \"jacs-agent-fingerprint=\" Where: _v1.agent.jacs. is the JACS-specific subdomain prefix  is the base64-encoded hash of the agent's public key","breadcrumbs":"DNS-Based Verification » DNS Record Structure","id":"236","title":"DNS Record Structure"},"237":{"body":"Generate the AWS-formatted command: jacs agent dns --domain myagent.example.com --provider aws The output will include an AWS CLI command like: aws route53 change-resource-record-sets \\ --hosted-zone-id YOUR_ZONE_ID \\ --change-batch '{ \"Changes\": [{ \"Action\": \"UPSERT\", \"ResourceRecordSet\": { \"Name\": \"_v1.agent.jacs.myagent.example.com\", \"Type\": \"TXT\", \"TTL\": 3600, \"ResourceRecords\": [{\"Value\": \"\\\"jacs-agent-fingerprint=...\\\"\"}] } }] }' Replace YOUR_ZONE_ID with your actual Route 53 hosted zone ID.","breadcrumbs":"DNS-Based Verification » Setting Up with Route 53 (AWS)","id":"237","title":"Setting Up with Route 53 (AWS)"},"238":{"body":"Generate the Cloudflare-formatted command: jacs agent dns --domain myagent.example.com --provider cloudflare Or add manually in the Cloudflare dashboard: Type: TXT Name: _v1.agent.jacs Content: jacs-agent-fingerprint= TTL: 3600","breadcrumbs":"DNS-Based Verification » Setting Up with Cloudflare","id":"238","title":"Setting Up with Cloudflare"},"239":{"body":"Generate the Azure-formatted command: jacs agent dns --domain myagent.example.com --provider azure The output will include an Azure CLI command that you can run directly.","breadcrumbs":"DNS-Based Verification » Setting Up with Azure DNS","id":"239","title":"Setting Up with Azure DNS"},"24":{"body":"Every JACS document includes: Digital signatures proving authenticity Hash verification ensuring integrity Public key cryptography for identity verification Timestamps for chronological ordering","breadcrumbs":"What is JACS? » 🔐 Trust Through Cryptography","id":"24","title":"🔐 Trust Through Cryptography"},"240":{"body":"","breadcrumbs":"DNS-Based Verification » Verifying Agents with DNS","id":"240","title":"Verifying Agents with DNS"},"241":{"body":"# Look up an agent by their domain\njacs agent lookup other-agent.example.com # With strict DNSSEC validation\njacs agent lookup other-agent.example.com --strict # Skip DNS verification (not recommended)\njacs agent lookup other-agent.example.com --no-dns","breadcrumbs":"DNS-Based Verification » Look Up Another Agent","id":"241","title":"Look Up Another Agent"},"242":{"body":"When verifying an agent, you can specify DNS requirements: # Default: Use DNS if available, but don't require it\njacs agent verify -a ./agent.json # Require DNS validation (non-strict)\njacs agent verify -a ./agent.json --require-dns # Require strict DNSSEC validation\njacs agent verify -a ./agent.json --require-strict-dns # Disable DNS validation entirely\njacs agent verify -a ./agent.json --no-dns # Ignore DNS (won't fail if DNS unavailable)\njacs agent verify -a ./agent.json --ignore-dns","breadcrumbs":"DNS-Based Verification » Verify Agent with DNS","id":"242","title":"Verify Agent with DNS"},"243":{"body":"Mode Flag Behavior Default (none) Use DNS if available, fall back to local verification Require DNS --require-dns Fail if DNS record not found (DNSSEC not required) Require Strict --require-strict-dns Fail if DNSSEC validation fails No DNS --no-dns Skip DNS validation entirely Ignore DNS --ignore-dns Don't fail on DNS errors, just warn","breadcrumbs":"DNS-Based Verification » DNS Validation Modes","id":"243","title":"DNS Validation Modes"},"244":{"body":"Agents can specify their domain in their agent document: { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsAgentType\": \"ai\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n} The jacsAgentDomain field is optional but enables DNS-based verification.","breadcrumbs":"DNS-Based Verification » Agent Domain Configuration","id":"244","title":"Agent Domain Configuration"},"245":{"body":"For maximum security, enable DNSSEC on your domain: Enable DNSSEC at your registrar : Most registrars support DNSSEC Configure your DNS provider : Ensure your DNS provider signs zones Use --require-strict-dns : Enforce DNSSEC validation","breadcrumbs":"DNS-Based Verification » DNSSEC Requirements","id":"245","title":"DNSSEC Requirements"},"246":{"body":"You can verify DNSSEC is working using standard tools: # Check if DNSSEC is enabled\ndig +dnssec _v1.agent.jacs.myagent.example.com TXT # Verify DNSSEC validation\ndelv @8.8.8.8 _v1.agent.jacs.myagent.example.com TXT","breadcrumbs":"DNS-Based Verification » Checking DNSSEC Status","id":"246","title":"Checking DNSSEC Status"},"247":{"body":"","breadcrumbs":"DNS-Based Verification » Security Considerations","id":"247","title":"Security Considerations"},"248":{"body":"With DNSSEC : Full cryptographic chain of trust from root DNS servers Without DNSSEC : Trust depends on DNS infrastructure security Local Only : Trust is limited to having the correct public key","breadcrumbs":"DNS-Based Verification » Trust Model","id":"248","title":"Trust Model"},"249":{"body":"Always enable DNSSEC for production agents Use strict validation when verifying unknown agents Rotate keys carefully - update DNS records before key changes Monitor DNS records for unauthorized changes Use short TTLs during transitions then increase for stability","breadcrumbs":"DNS-Based Verification » Best Practices","id":"249","title":"Best Practices"},"25":{"body":"JACS builds on proven standards: JSON for universal compatibility JSON Schema for structure validation RFC 3339 timestamps for consistency Standard cryptographic algorithms (RSA, Ed25519, post-quantum)","breadcrumbs":"What is JACS? » 📋 Standards-Based","id":"25","title":"📋 Standards-Based"},"250":{"body":"DNS responses are cached based on TTL. Consider: Short TTL (300-600s) : Better for development or key rotation Long TTL (3600-86400s) : Better for production stability","breadcrumbs":"DNS-Based Verification » Caching","id":"250","title":"Caching"},"251":{"body":"","breadcrumbs":"DNS-Based Verification » Troubleshooting","id":"251","title":"Troubleshooting"},"252":{"body":"Verify the record exists: dig _v1.agent.jacs.myagent.example.com TXT Check DNS propagation (may take up to 48 hours for new records) Verify the domain in the agent document matches","breadcrumbs":"DNS-Based Verification » \"DNS record not found\"","id":"252","title":"\"DNS record not found\""},"253":{"body":"Check DNSSEC is enabled: dig +dnssec myagent.example.com Verify DS records at registrar Use --require-dns instead of --require-strict-dns if DNSSEC isn't available","breadcrumbs":"DNS-Based Verification » \"DNSSEC validation failed\"","id":"253","title":"\"DNSSEC validation failed\""},"254":{"body":"The public key may have changed - regenerate DNS record: jacs agent dns --domain myagent.example.com Update the DNS TXT record with the new fingerprint Wait for DNS propagation","breadcrumbs":"DNS-Based Verification » \"Fingerprint mismatch\"","id":"254","title":"\"Fingerprint mismatch\""},"255":{"body":"Automate DNS updates in your deployment pipeline: #!/bin/bash\n# deploy-agent.sh # 1. Create new agent keys\njacs agent create --create-keys true # 2. Generate DNS update command\nDNS_CMD=$(jacs agent dns --domain $AGENT_DOMAIN --provider aws) # 3. Execute DNS update\neval $DNS_CMD # 4. Wait for propagation\nsleep 60 # 5. Verify DNS is working\njacs agent verify --require-dns","breadcrumbs":"DNS-Based Verification » Integration with CI/CD","id":"255","title":"Integration with CI/CD"},"256":{"body":"Creating an Agent - Set up agents with DNS domains Security Model - Deep dive into JACS security Agreements - Use DNS-verified agents in agreements","breadcrumbs":"DNS-Based Verification » Next Steps","id":"256","title":"Next Steps"},"257":{"body":"JACS provides a Rust library for programmatic agent and document management. This chapter covers how to use the JACS library in your Rust applications.","breadcrumbs":"Rust Library API » Rust Library API","id":"257","title":"Rust Library API"},"258":{"body":"Add JACS to your Cargo.toml: [dependencies]\njacs = \"0.3\"","breadcrumbs":"Rust Library API » Adding JACS as a Dependency","id":"258","title":"Adding JACS as a Dependency"},"259":{"body":"[dependencies]\njacs = { version = \"0.3\", features = [\"cli\", \"observability\"] } Feature Description cli CLI utilities and helpers observability OpenTelemetry logging and metrics observability-convenience Helper functions for observability full All features enabled","breadcrumbs":"Rust Library API » Feature Flags","id":"259","title":"Feature Flags"},"26":{"body":"","breadcrumbs":"What is JACS? » Key Concepts","id":"26","title":"Key Concepts"},"260":{"body":"","breadcrumbs":"Rust Library API » Core Types","id":"260","title":"Core Types"},"261":{"body":"The Agent struct is the central type in JACS. It holds: Schema validators Agent identity and keys Document storage Configuration use jacs::{get_empty_agent, load_agent};\nuse std::error::Error; fn main() -> Result<(), Box> { // Create a new empty agent let agent = get_empty_agent(); // Or load an existing agent let agent = load_agent(Some(\"path/to/agent.json\".to_string()))?; Ok(())\n}","breadcrumbs":"Rust Library API » Agent","id":"261","title":"Agent"},"262":{"body":"Documents in JACS are represented by the JACSDocument struct: pub struct JACSDocument { pub id: String, pub version: String, pub value: serde_json::Value, pub jacs_type: String,\n} Key methods: getkey() - Returns \"id:version\" identifier getvalue() - Returns reference to the JSON value getschema() - Returns the document's schema URL signing_agent() - Returns the ID of the signing agent","breadcrumbs":"Rust Library API » JACSDocument","id":"262","title":"JACSDocument"},"263":{"body":"","breadcrumbs":"Rust Library API » Creating an Agent","id":"263","title":"Creating an Agent"},"264":{"body":"use jacs::{get_empty_agent, create_minimal_blank_agent}; fn main() -> Result<(), Box> { // Create agent JSON let agent_json = create_minimal_blank_agent( \"ai\".to_string(), // agent type Some(\"My service\".to_string()), // service description Some(\"Task completed\".to_string()), // success description Some(\"Task failed\".to_string()), // failure description )?; // Initialize and load the agent let mut agent = get_empty_agent(); agent.create_agent_and_load(&agent_json, true, None)?; // Save the agent agent.save()?; Ok(())\n}","breadcrumbs":"Rust Library API » Minimal Agent","id":"264","title":"Minimal Agent"},"265":{"body":"use jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); // Load from config file agent.load_by_config(\"./jacs.config.json\".to_string())?; // Or load by agent ID agent.load_by_id(\"agent-id:version-id\".to_string())?; Ok(())\n}","breadcrumbs":"Rust Library API » Loading by Configuration","id":"265","title":"Loading by Configuration"},"266":{"body":"use jacs::load_agent_with_dns_strict; fn main() -> Result<(), Box> { // Load agent with strict DNS verification let agent = load_agent_with_dns_strict( \"path/to/agent.json\".to_string(), true // strict mode )?; Ok(())\n}","breadcrumbs":"Rust Library API » DNS Strict Mode","id":"266","title":"DNS Strict Mode"},"267":{"body":"","breadcrumbs":"Rust Library API » Working with Documents","id":"267","title":"Working with Documents"},"268":{"body":"The DocumentTraits trait provides document operations: use jacs::agent::document::DocumentTraits;\nuse jacs::get_empty_agent; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document from JSON let json = r#\"{\"title\": \"My Document\", \"content\": \"Hello, World!\"}\"#; let doc = agent.create_document_and_load(json, None, None)?; println!(\"Document created: {}\", doc.getkey()); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Documents","id":"268","title":"Creating Documents"},"269":{"body":"use jacs::agent::document::DocumentTraits; // With file attachments\nlet attachments = Some(vec![\"./report.pdf\".to_string()]);\nlet embed = Some(true); // Embed files in document let doc = agent.create_document_and_load( json, attachments, embed\n)?;","breadcrumbs":"Rust Library API » Creating Documents with Attachments","id":"269","title":"Creating Documents with Attachments"},"27":{"body":"An Agent is an autonomous entity with: A unique identity (UUID) Cryptographic keys for signing Capabilities defined in services The ability to create and verify documents","breadcrumbs":"What is JACS? » Agents","id":"27","title":"Agents"},"270":{"body":"use jacs::agent::document::DocumentTraits; // Load a document from JSON string\nlet doc = agent.load_document(&document_json_string)?; // Get a stored document by key\nlet doc = agent.get_document(\"doc-id:version-id\")?; // List all document keys\nlet keys = agent.get_document_keys();","breadcrumbs":"Rust Library API » Loading Documents","id":"270","title":"Loading Documents"},"271":{"body":"use jacs::agent::document::DocumentTraits; // Update creates a new version\nlet updated_doc = agent.update_document( \"doc-id:version-id\", // original document key &modified_json_string, // new content None, // optional attachments None, // embed flag\n)?;","breadcrumbs":"Rust Library API » Updating Documents","id":"271","title":"Updating Documents"},"272":{"body":"use jacs::agent::document::DocumentTraits; // Verify document signature with agent's public key\nagent.verify_document_signature( \"doc-id:version-id\", None, // signature key (uses default) None, // fields to verify None, // public key (uses agent's) None, // key encoding type\n)?; // Verify using external public key\nagent.verify_external_document_signature(\"doc-id:version-id\")?;","breadcrumbs":"Rust Library API » Verifying Documents","id":"272","title":"Verifying Documents"},"273":{"body":"use jacs::agent::document::DocumentTraits; // Save document to filesystem\nagent.save_document( \"doc-id:version-id\", Some(\"output.json\".to_string()), // output filename Some(true), // export embedded files None, // extract only\n)?;","breadcrumbs":"Rust Library API » Saving Documents","id":"273","title":"Saving Documents"},"274":{"body":"use jacs::{get_empty_agent, create_task}; fn main() -> Result<(), Box> { let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a task let task_json = create_task( &mut agent, \"Review Code\".to_string(), \"Review pull request #123\".to_string(), )?; println!(\"Task created: {}\", task_json); Ok(())\n}","breadcrumbs":"Rust Library API » Creating Tasks","id":"274","title":"Creating Tasks"},"275":{"body":"","breadcrumbs":"Rust Library API » Signing and Verification","id":"275","title":"Signing and Verification"},"276":{"body":"The agent's signing_procedure method creates cryptographic signatures: use serde_json::json; let document = json!({ \"title\": \"Contract\", \"terms\": \"...\"\n}); // Sign the document\nlet signature = agent.signing_procedure( &document, None, // fields to sign (None = all) \"jacsSignature\" // placement key\n)?;","breadcrumbs":"Rust Library API » Signing Documents","id":"276","title":"Signing Documents"},"277":{"body":"// Verify self-signature (agent document)\nagent.verify_self_signature()?; // Verify hash integrity\nagent.verify_hash(&document)?; // Full signature verification\nagent.signature_verification_procedure( &document, None, // fields \"jacsSignature\", // signature key public_key, // public key bytes Some(\"ring-Ed25519\".to_string()), // algorithm None, // original public key hash None, // signature override\n)?;","breadcrumbs":"Rust Library API » Verification","id":"277","title":"Verification"},"278":{"body":"// Load custom schemas\nagent.load_custom_schemas(&[ \"./schemas/invoice.schema.json\".to_string(), \"https://example.com/schemas/contract.schema.json\".to_string(),\n])?; // Validate document against custom schema\nagent.validate_document_with_custom_schema( \"./schemas/invoice.schema.json\", &document_value,\n)?;","breadcrumbs":"Rust Library API » Custom Schema Validation","id":"278","title":"Custom Schema Validation"},"279":{"body":"","breadcrumbs":"Rust Library API » Configuration","id":"279","title":"Configuration"},"28":{"body":"A Document is any JSON object that includes: JACS header fields (ID, version, creator, etc.) A cryptographic signature A hash for integrity verification Business logic specific to the document type","breadcrumbs":"What is JACS? » Documents","id":"28","title":"Documents"},"280":{"body":"use jacs::config::{load_config, find_config, Config}; // Load from specific path\nlet config = load_config(\"./jacs.config.json\")?; // Find config in directory\nlet config = find_config(\"./\".to_string())?; // Create programmatically\nlet config = Config::new( Some(\"false\".to_string()), // use_security Some(\"./jacs_data\".to_string()), // data_directory Some(\"./jacs_keys\".to_string()), // key_directory Some(\"private_key.pem\".to_string()), // private key filename Some(\"public_key.pem\".to_string()), // public key filename Some(\"ring-Ed25519\".to_string()), // key algorithm Some(\"password\".to_string()), // private key password None, // agent ID and version Some(\"fs\".to_string()), // storage type\n);","breadcrumbs":"Rust Library API » Loading Configuration","id":"280","title":"Loading Configuration"},"281":{"body":"// Get key algorithm\nlet algorithm = config.get_key_algorithm()?; // Access config fields\nlet data_dir = config.jacs_data_directory();\nlet key_dir = config.jacs_key_directory();\nlet storage_type = config.jacs_default_storage();","breadcrumbs":"Rust Library API » Accessing Configuration","id":"281","title":"Accessing Configuration"},"282":{"body":"","breadcrumbs":"Rust Library API » Observability","id":"282","title":"Observability"},"283":{"body":"use jacs::init_default_observability; fn main() -> Result<(), Box> { // Set up file-based logging init_default_observability()?; // Your application code... Ok(())\n}","breadcrumbs":"Rust Library API » Initialize Default Observability","id":"283","title":"Initialize Default Observability"},"284":{"body":"use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://localhost:4317\".to_string(), headers: None, }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Rust Library API » Custom Observability Configuration","id":"284","title":"Custom Observability Configuration"},"285":{"body":"JACS supports multiple storage backends: use jacs::storage::MultiStorage; // Filesystem storage (default)\nlet storage = MultiStorage::new(\"fs\".to_string())?; // In-memory storage\nlet storage = MultiStorage::new(\"memory\".to_string())?; // S3 storage\nlet storage = MultiStorage::new(\"s3\".to_string())?;","breadcrumbs":"Rust Library API » Storage Backends","id":"285","title":"Storage Backends"},"286":{"body":"JACS functions return Result>: use jacs::get_empty_agent; fn main() { match get_empty_agent().load_by_config(\"./jacs.config.json\".to_string()) { Ok(()) => println!(\"Agent loaded successfully\"), Err(e) => eprintln!(\"Failed to load agent: {}\", e), }\n}","breadcrumbs":"Rust Library API » Error Handling","id":"286","title":"Error Handling"},"287":{"body":"The Agent struct uses internal mutexes for thread-safe access to: Document schemas (Arc>>) Storage operations For concurrent usage: use std::sync::{Arc, Mutex};\nuse jacs::get_empty_agent; let agent = Arc::new(Mutex::new(get_empty_agent())); // Clone Arc for threads\nlet agent_clone = Arc::clone(&agent);\nstd::thread::spawn(move || { let mut agent = agent_clone.lock().unwrap(); // Use agent...\n});","breadcrumbs":"Rust Library API » Thread Safety","id":"287","title":"Thread Safety"},"288":{"body":"use jacs::{get_empty_agent, create_task};\nuse jacs::agent::document::DocumentTraits;\nuse serde_json::json; fn main() -> Result<(), Box> { // Initialize agent let mut agent = get_empty_agent(); agent.load_by_config(\"./jacs.config.json\".to_string())?; // Create a document let doc_json = json!({ \"title\": \"Project Proposal\", \"description\": \"Q1 development plan\", \"budget\": 50000 }); let doc = agent.create_document_and_load( &doc_json.to_string(), None, None )?; println!(\"Created document: {}\", doc.getkey()); // Verify the document agent.verify_document_signature(&doc.getkey(), None, None, None, None)?; println!(\"Document verified successfully\"); // Save to file agent.save_document(&doc.getkey(), Some(\"proposal.json\".to_string()), None, None)?; // Create a task let task = create_task( &mut agent, \"Review Proposal\".to_string(), \"Review and approve the project proposal\".to_string(), )?; println!(\"Task created\"); Ok(())\n}","breadcrumbs":"Rust Library API » Complete Example","id":"288","title":"Complete Example"},"289":{"body":"Observability - Logging and metrics setup Storage Backends - Configure different storage Custom Schemas - Define custom document types","breadcrumbs":"Rust Library API » Next Steps","id":"289","title":"Next Steps"},"29":{"body":"A Task is a special document type representing: Work to be performed Success/failure criteria Input/output specifications Delegation and completion tracking","breadcrumbs":"What is JACS? » Tasks","id":"29","title":"Tasks"},"290":{"body":"JACS provides comprehensive observability features including logging, metrics, and distributed tracing. This chapter covers configuring and using these features in your applications.","breadcrumbs":"Observability » Observability","id":"290","title":"Observability"},"291":{"body":"JACS observability is built on the OpenTelemetry standard, providing: Logging : Structured logging with multiple destinations Metrics : Counters, gauges, and histograms for monitoring Tracing : Distributed tracing for request flows","breadcrumbs":"Observability » Overview","id":"291","title":"Overview"},"292":{"body":"Enable observability features in your Cargo.toml: [dependencies]\njacs = { version = \"0.3\", features = [\"observability\"] } Feature Description observability Core observability support observability-convenience Helper functions for recording operations otlp-logs OTLP log export support otlp-metrics OTLP metrics export support otlp-tracing OTLP distributed tracing support","breadcrumbs":"Observability » Feature Flags","id":"292","title":"Feature Flags"},"293":{"body":"","breadcrumbs":"Observability » Quick Start","id":"293","title":"Quick Start"},"294":{"body":"The simplest way to enable observability: use jacs::init_default_observability; fn main() -> Result<(), Box> { init_default_observability()?; // Your application code... Ok(())\n} This sets up: File-based logging to ./logs/ with daily rotation Metrics disabled by default Tracing disabled by default","breadcrumbs":"Observability » Default Configuration","id":"294","title":"Default Configuration"},"295":{"body":"For more control, use init_custom_observability: use jacs::{ init_custom_observability, ObservabilityConfig, LogConfig, LogDestination, MetricsConfig, MetricsDestination,\n}; fn main() -> Result<(), Box> { let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None, }; init_custom_observability(config)?; Ok(())\n}","breadcrumbs":"Observability » Custom Configuration","id":"295","title":"Custom Configuration"},"296":{"body":"","breadcrumbs":"Observability » Logging","id":"296","title":"Logging"},"297":{"body":"Supported log levels (from most to least verbose): trace debug info warn error","breadcrumbs":"Observability » Log Levels","id":"297","title":"Log Levels"},"298":{"body":"Stderr (Default) LogDestination::Stderr Logs to standard error. Useful for development and containerized environments. File LogDestination::File { path: \"./logs\".to_string(),\n} Logs to rotating files with daily rotation. Creates files like app.log.2024-01-15. OTLP LogDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports logs via OpenTelemetry Protocol. Requires otlp-logs feature. Null LogDestination::Null Disables logging completely.","breadcrumbs":"Observability » Log Destinations","id":"298","title":"Log Destinations"},"299":{"body":"JACS uses the tracing crate for logging: use tracing::{info, debug, warn, error}; fn process_document() { info!(\"Processing document\"); debug!(\"Document details: {:?}\", doc); if let Err(e) = verify() { error!(\"Verification failed: {}\", e); }\n}","breadcrumbs":"Observability » Using Logs","id":"299","title":"Using Logs"},"3":{"body":"JACS is available in three languages, each with its own strengths:","breadcrumbs":"Introduction » Available Implementations","id":"3","title":"Available Implementations"},"30":{"body":"An Agreement is a mechanism for: Multiple agents to consent to terms Tracking signatures from all required parties Ensuring all participants have signed before proceeding Creating binding commitments between agents","breadcrumbs":"What is JACS? » Agreements","id":"30","title":"Agreements"},"300":{"body":"","breadcrumbs":"Observability » Metrics","id":"300","title":"Metrics"},"301":{"body":"MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }, export_interval_seconds: Some(30), headers: None,\n}","breadcrumbs":"Observability » Enabling Metrics","id":"301","title":"Enabling Metrics"},"302":{"body":"OTLP MetricsDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Exports to an OpenTelemetry collector. Requires otlp-metrics feature. Prometheus (via Collector) MetricsDestination::Prometheus { endpoint: \"http://localhost:9090\".to_string(), headers: None,\n} Note: Direct Prometheus export requires routing through an OTLP collector. File MetricsDestination::File { path: \"./metrics.txt\".to_string(),\n} Writes metrics to a file. Stdout MetricsDestination::Stdout Prints metrics to standard output. Useful for testing.","breadcrumbs":"Observability » Metrics Destinations","id":"302","title":"Metrics Destinations"},"303":{"body":"JACS provides convenience functions for common metrics: use jacs::observability::metrics::{increment_counter, set_gauge, record_histogram};\nuse std::collections::HashMap; // Increment a counter\nlet mut tags = HashMap::new();\ntags.insert(\"operation\".to_string(), \"sign\".to_string());\nincrement_counter(\"jacs_operations_total\", 1, Some(tags)); // Set a gauge value\nset_gauge(\"jacs_documents_active\", 42.0, None); // Record a histogram value (e.g., latency)\nlet mut tags = HashMap::new();\ntags.insert(\"method\".to_string(), \"verify\".to_string());\nrecord_histogram(\"jacs_operation_duration_ms\", 150.0, Some(tags));","breadcrumbs":"Observability » Recording Metrics","id":"303","title":"Recording Metrics"},"304":{"body":"When observability-convenience feature is enabled, JACS automatically records: jacs_agent_operations - Count of agent operations jacs_signature_verifications - Signature verification results jacs_document_operations - Document create/update/verify counts","breadcrumbs":"Observability » Built-in Metrics","id":"304","title":"Built-in Metrics"},"305":{"body":"","breadcrumbs":"Observability » Distributed Tracing","id":"305","title":"Distributed Tracing"},"306":{"body":"use jacs::{TracingConfig, TracingDestination, SamplingConfig, ResourceConfig};\nuse std::collections::HashMap; let config = ObservabilityConfig { // ... logs and metrics config ... tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 1.0, // Sample all traces parent_based: true, rate_limit: None, }, resource: Some(ResourceConfig { service_name: \"my-jacs-app\".to_string(), service_version: Some(\"1.0.0\".to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None, }), }),\n};","breadcrumbs":"Observability » Enabling Tracing","id":"306","title":"Enabling Tracing"},"307":{"body":"OTLP TracingDestination::Otlp { endpoint: \"http://localhost:4318\".to_string(), headers: None,\n} Jaeger TracingDestination::Jaeger { endpoint: \"http://localhost:14268/api/traces\".to_string(), headers: None,\n}","breadcrumbs":"Observability » Tracing Destinations","id":"307","title":"Tracing Destinations"},"308":{"body":"Control how many traces are captured: SamplingConfig { ratio: 0.1, // Sample 10% of traces parent_based: true, // Inherit parent sampling decision rate_limit: Some(100), // Max 100 samples per second\n}","breadcrumbs":"Observability » Sampling Configuration","id":"308","title":"Sampling Configuration"},"309":{"body":"use tracing::{instrument, info_span}; #[instrument]\nfn sign_document(doc: &Document) -> Result<(), Error> { // Automatically creates a span named \"sign_document\" // with doc as a field\n} fn manual_span() { let span = info_span!(\"verify_chain\", doc_count = 5); let _guard = span.enter(); // Operations within this span\n}","breadcrumbs":"Observability » Using Tracing Spans","id":"309","title":"Using Tracing Spans"},"31":{"body":"graph TD A[Agent A] -->|Creates Task| T[JACS Task Document] T -->|Contains| S[Digital Signature] T -->|Contains| H[SHA256 Hash] T -->|Contains| M[Metadata] A -->|Sends to| B[Agent B] B -->|Verifies| T B -->|Signs Agreement| AG[Agreement Document] AG -->|Returns to| A Agent A creates a task document with their requirements The document is signed with Agent A's private key A hash is calculated for integrity verification Agent B receives and verifies the signature and hash Agent B can create an agreement to accept the task Both agents have a verifiable record of the interaction","breadcrumbs":"What is JACS? » How JACS Works","id":"31","title":"How JACS Works"},"310":{"body":"You can configure observability via jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"file\": { \"path\": \"./logs\" } } }, \"metrics\": { \"enabled\": true, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 1.0, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-service\", \"service_version\": \"1.0.0\", \"environment\": \"production\" }, \"destination\": { \"otlp\": { \"endpoint\": \"http://localhost:4318\" } } } }\n}","breadcrumbs":"Observability » Configuration File","id":"310","title":"Configuration File"},"311":{"body":"For production use, route telemetry through an OpenTelemetry Collector: # otel-collector-config.yaml\nreceivers: otlp: protocols: http: endpoint: 0.0.0.0:4318 processors: batch: exporters: logging: loglevel: debug prometheus: endpoint: \"0.0.0.0:9090\" jaeger: endpoint: jaeger:14250 service: pipelines: logs: receivers: [otlp] processors: [batch] exporters: [logging] metrics: receivers: [otlp] processors: [batch] exporters: [prometheus] traces: receivers: [otlp] processors: [batch] exporters: [jaeger]","breadcrumbs":"Observability » OpenTelemetry Collector Setup","id":"311","title":"OpenTelemetry Collector Setup"},"312":{"body":"For testing or reinitialization: use jacs::observability::{reset_observability, flush_observability, force_reset_for_tests}; // Flush pending data\nflush_observability(); // Reset configuration\nreset_observability(); // Force reset for tests (clears all state)\nforce_reset_for_tests();","breadcrumbs":"Observability » Reset and Cleanup","id":"312","title":"Reset and Cleanup"},"313":{"body":"","breadcrumbs":"Observability » Best Practices","id":"313","title":"Best Practices"},"314":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"debug\".to_string(), destination: LogDestination::Stderr, headers: None, }, metrics: MetricsConfig { enabled: false, destination: MetricsDestination::Stdout, export_interval_seconds: None, headers: None, }, tracing: None,\n};","breadcrumbs":"Observability » Development","id":"314","title":"Development"},"315":{"body":"let config = ObservabilityConfig { logs: LogConfig { enabled: true, level: \"info\".to_string(), destination: LogDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, headers: None, }, metrics: MetricsConfig { enabled: true, destination: MetricsDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }, export_interval_seconds: Some(30), headers: None, }, tracing: Some(TracingConfig { enabled: true, sampling: SamplingConfig { ratio: 0.1, // Sample 10% in production parent_based: true, rate_limit: Some(1000), }, resource: Some(ResourceConfig { service_name: \"jacs-production\".to_string(), service_version: Some(env!(\"CARGO_PKG_VERSION\").to_string()), environment: Some(\"production\".to_string()), attributes: HashMap::new(), }), destination: Some(TracingDestination::Otlp { endpoint: \"http://collector:4318\".to_string(), headers: Some(auth_headers()), }), }),\n};","breadcrumbs":"Observability » Production","id":"315","title":"Production"},"316":{"body":"","breadcrumbs":"Observability » Troubleshooting","id":"316","title":"Troubleshooting"},"317":{"body":"Check that logging is enabled: logs.enabled: true Verify log level includes your log statements For file logging, ensure the directory is writable","breadcrumbs":"Observability » Logs Not Appearing","id":"317","title":"Logs Not Appearing"},"318":{"body":"Verify otlp-metrics feature is enabled Check endpoint connectivity Confirm metrics are enabled: metrics.enabled: true","breadcrumbs":"Observability » Metrics Not Exporting","id":"318","title":"Metrics Not Exporting"},"319":{"body":"Verify otlp-tracing feature is enabled Check sampling ratio isn't filtering all traces Ensure spans are properly instrumented","breadcrumbs":"Observability » Traces Missing","id":"319","title":"Traces Missing"},"32":{"body":"","breadcrumbs":"What is JACS? » Real-World Examples","id":"32","title":"Real-World Examples"},"320":{"body":"Rust Library API - Use observability in your code Configuration Reference - Full config options Advanced Topics - Security considerations","breadcrumbs":"Observability » Next Steps","id":"320","title":"Next Steps"},"321":{"body":"The JACS Node.js package (@hai.ai/jacs) provides JavaScript/TypeScript bindings to the JACS Rust library, making it easy to integrate JACS into web applications, servers, and Node.js projects.","breadcrumbs":"Installation » Node.js Installation","id":"321","title":"Node.js Installation"},"322":{"body":"Node.js : Version 16.0 or higher npm or yarn : For package management Operating System : macOS, Linux, or Windows with WSL","breadcrumbs":"Installation » Requirements","id":"322","title":"Requirements"},"323":{"body":"","breadcrumbs":"Installation » Installation","id":"323","title":"Installation"},"324":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Installation » Using npm","id":"324","title":"Using npm"},"325":{"body":"yarn add @hai.ai/jacs","breadcrumbs":"Installation » Using yarn","id":"325","title":"Using yarn"},"326":{"body":"pnpm add @hai.ai/jacs","breadcrumbs":"Installation » Using pnpm","id":"326","title":"Using pnpm"},"327":{"body":"Create a simple test to verify everything is working: // test.js\nimport { JacsAgent } from '@hai.ai/jacs'; console.log('JACS Node.js bindings loaded successfully!'); // Test basic functionality\ntry { const agent = new JacsAgent(); agent.load('./jacs.config.json'); console.log('Agent loaded successfully!');\n} catch (error) { console.error('Error loading agent:', error);\n} Run the test: node test.js","breadcrumbs":"Installation » Verify Installation","id":"327","title":"Verify Installation"},"328":{"body":"The @hai.ai/jacs package includes several modules:","breadcrumbs":"Installation » Package Structure","id":"328","title":"Package Structure"},"329":{"body":"import { JacsAgent, JacsConfig, JacsDocument, JacsError\n} from '@hai.ai/jacs';","breadcrumbs":"Installation » Core Module (@hai.ai/jacs)","id":"329","title":"Core Module (@hai.ai/jacs)"},"33":{"body":"Content Agent → Research Agent → Review Agent → Publishing Agent Each handoff includes signed task documents with clear requirements and deliverables.","breadcrumbs":"What is JACS? » 🤖 AI Content Pipeline","id":"33","title":"🤖 AI Content Pipeline"},"330":{"body":"import { JacsMcpServer, createJacsMiddleware } from '@hai.ai/jacs/mcp';","breadcrumbs":"Installation » MCP Integration (@hai.ai/jacs/mcp)","id":"330","title":"MCP Integration (@hai.ai/jacs/mcp)"},"331":{"body":"import { JacsHttpServer, createJacsRouter } from '@hai.ai/jacs/http';","breadcrumbs":"Installation » HTTP Server (@hai.ai/jacs/http)","id":"331","title":"HTTP Server (@hai.ai/jacs/http)"},"332":{"body":"The package includes full TypeScript definitions: import { JacsAgent, createConfig, hashString } from '@hai.ai/jacs'; // Create an agent instance\nconst agent: JacsAgent = new JacsAgent(); // Load configuration from file\nagent.load('./jacs.config.json'); // Use utility functions\nconst hash: string = hashString('some data'); // Create a configuration string\nconst configJson: string = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // jacs_agent_private_key_filename undefined, // jacs_agent_public_key_filename 'ring-Ed25519', // jacs_agent_key_algorithm undefined, // jacs_private_key_password undefined, // jacs_agent_id_and_version 'fs' // jacs_default_storage\n);","breadcrumbs":"Installation » TypeScript Support","id":"332","title":"TypeScript Support"},"333":{"body":"","breadcrumbs":"Installation » Configuration","id":"333","title":"Configuration"},"334":{"body":"const config = { // Required fields jacs_data_directory: \"./jacs_data\", // Where documents are stored jacs_key_directory: \"./jacs_keys\", // Where keys are stored jacs_default_storage: \"fs\", // Storage backend jacs_agent_key_algorithm: \"ring-Ed25519\", // Signing algorithm // Optional fields jacs_agent_id_and_version: null, // Existing agent to load jacs_agent_private_key_filename: \"private.pem\", jacs_agent_public_key_filename: \"public.pem\"\n};","breadcrumbs":"Installation » Basic Configuration","id":"334","title":"Basic Configuration"},"335":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Load the configuration: import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Installation » Configuration File","id":"335","title":"Configuration File"},"336":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"336","title":"Environment Variables"},"337":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"337","title":"Storage Backends"},"338":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"338","title":"File System (Default)"},"339":{"body":"{ \"jacs_default_storage\": \"s3\"\n} S3 credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » S3 Storage","id":"339","title":"S3 Storage"},"34":{"body":"Data Ingestion Agent → Processing Agent → Validation Agent → Storage Agent Each step is tracked with verifiable completion certificates and quality metrics.","breadcrumbs":"What is JACS? » 📊 Data Processing Workflow","id":"34","title":"📊 Data Processing Workflow"},"340":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"340","title":"Memory Storage (Testing)"},"341":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"341","title":"Cryptographic Algorithms"},"342":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"342","title":"ring-Ed25519 (Recommended)"},"343":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"343","title":"RSA-PSS"},"344":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"344","title":"pq-dilithium (Post-Quantum)"},"345":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"345","title":"pq2025 (Post-Quantum Hybrid)"},"346":{"body":"","breadcrumbs":"Installation » Development Setup","id":"346","title":"Development Setup"},"347":{"body":"my-jacs-project/\n├── package.json\n├── jacs.config.json\n├── src/\n│ ├── agent.js\n│ ├── tasks.js\n│ └── agreements.js\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n└── jacs_keys/ ├── private.pem └── public.pem","breadcrumbs":"Installation » Project Structure","id":"347","title":"Project Structure"},"348":{"body":"{ \"name\": \"my-jacs-app\", \"version\": \"1.0.0\", \"type\": \"module\", \"dependencies\": { \"@hai.ai/jacs\": \"^0.6.0\", \"express\": \"^4.18.0\" }, \"scripts\": { \"start\": \"node src/app.js\", \"test\": \"node test/test.js\", \"dev\": \"nodemon src/app.js\" }\n}","breadcrumbs":"Installation » Package.json Setup","id":"348","title":"Package.json Setup"},"349":{"body":"// src/app.js\nimport { JacsAgent } from '@hai.ai/jacs'; // Create and load agent\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create a document\nconst documentJson = JSON.stringify({ title: \"My First Document\", content: \"Hello from Node.js!\"\n}); const signedDoc = agent.createDocument(documentJson);\nconsole.log('Document created:', signedDoc); // Verify the document\nconst isValid = agent.verifyDocument(signedDoc);\nconsole.log('Document valid:', isValid); console.log('JACS agent ready!');","breadcrumbs":"Installation » Basic Application","id":"349","title":"Basic Application"},"35":{"body":"Query Agent → Research Agent → Analysis Agent → Reporting Agent Complex analysis tasks are broken down with clear accountability for each step.","breadcrumbs":"What is JACS? » 🔍 Multi-Agent Analysis","id":"35","title":"🔍 Multi-Agent Analysis"},"350":{"body":"","breadcrumbs":"Installation » Common Issues","id":"350","title":"Common Issues"},"351":{"body":"If you get Module not found errors: # Check Node.js version\nnode --version # Should be 16+ # Clear node_modules and reinstall\nrm -rf node_modules package-lock.json\nnpm install","breadcrumbs":"Installation » Module Not Found","id":"351","title":"Module Not Found"},"352":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"352","title":"Permission Errors"},"353":{"body":"If you get binary compatibility errors: # Rebuild native modules\nnpm rebuild # Or reinstall\nnpm uninstall @hai.ai/jacs\nnpm install @hai.ai/jacs","breadcrumbs":"Installation » Binary Compatibility","id":"353","title":"Binary Compatibility"},"354":{"body":"If TypeScript can't find definitions: // tsconfig.json\n{ \"compilerOptions\": { \"moduleResolution\": \"node\", \"esModuleInterop\": true, \"allowSyntheticDefaultImports\": true }\n}","breadcrumbs":"Installation » TypeScript Issues","id":"354","title":"TypeScript Issues"},"355":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support HTTP Server - Create JACS HTTP APIs Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"355","title":"Next Steps"},"356":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Express.js middleware integration MCP server implementation","breadcrumbs":"Installation » Examples","id":"356","title":"Examples"},"357":{"body":"The simplified API (@hai.ai/jacs/simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"357","title":"Simplified API"},"358":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load your agent\nconst agent = jacs.load('./jacs.config.json'); // Sign a message\nconst signed = jacs.signMessage({ action: 'approve', amount: 100 });\nconsole.log(`Document ID: ${signed.documentId}`); // Verify it\nconst result = jacs.verify(signed.raw);\nconsole.log(`Valid: ${result.valid}`);","breadcrumbs":"Simplified API » Quick Start","id":"358","title":"Quick Start"},"359":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"359","title":"When to Use the Simplified API"},"36":{"body":"Feature JACS Traditional APIs General Signing Agent Identity ✅ Built-in ❌ Custom implementation ❌ Not agent-focused Task Management ✅ Native support ❌ Application-specific ❌ Not applicable Multi-Party Agreements ✅ Core feature ❌ Complex to implement ⚠️ Possible but difficult Audit Trails ✅ Automatic ❌ Manual logging ⚠️ Basic signing only Schema Validation ✅ JSON Schema ❌ Custom validation ❌ No structure Versioning ✅ Built-in ❌ Manual versioning ❌ Not supported Cross-Platform ✅ JSON everywhere ⚠️ Protocol dependent ⚠️ Format dependent","breadcrumbs":"What is JACS? » Benefits Over Alternatives","id":"36","title":"Benefits Over Alternatives"},"360":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"360","title":"API Reference"},"361":{"body":"Load an agent from a configuration file. This must be called before any other operations. Parameters: configPath (string, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: AgentInfo object const info = jacs.load('./jacs.config.json');\nconsole.log(`Agent ID: ${info.agentId}`);\nconsole.log(`Config: ${info.configPath}`);","breadcrumbs":"Simplified API » load(configPath?)","id":"361","title":"load(configPath?)"},"362":{"body":"Check if an agent is currently loaded. Returns: boolean if (!jacs.isLoaded()) { jacs.load('./jacs.config.json');\n}","breadcrumbs":"Simplified API » isLoaded()","id":"362","title":"isLoaded()"},"363":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or null if no agent is loaded const info = jacs.getAgentInfo();\nif (info) { console.log(`Agent: ${info.agentId}`);\n}","breadcrumbs":"Simplified API » getAgentInfo()","id":"363","title":"getAgentInfo()"},"364":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Throws: Error if no agent is loaded const result = jacs.verifySelf();\nif (result.valid) { console.log('Agent integrity verified');\n} else { console.log('Errors:', result.errors);\n}","breadcrumbs":"Simplified API » verifySelf()","id":"364","title":"verifySelf()"},"365":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Object, array, string, or any JSON-serializable value Returns: SignedDocument Throws: Error if no agent is loaded // Sign an object\nconst signed = jacs.signMessage({ action: 'transfer', amount: 500, recipient: 'agent-123'\n}); console.log(`Document ID: ${signed.documentId}`);\nconsole.log(`Signed by: ${signed.agentId}`);\nconsole.log(`Timestamp: ${signed.timestamp}`);\nconsole.log(`Raw JSON: ${signed.raw}`);","breadcrumbs":"Simplified API » signMessage(data)","id":"365","title":"signMessage(data)"},"366":{"body":"Sign a file with optional content embedding. Parameters: filePath (string): Path to the file to sign embed (boolean, optional): If true, embed file content in the document (default: false) Returns: SignedDocument Throws: Error if file not found or no agent loaded // Reference only (stores hash)\nconst signed = jacs.signFile('contract.pdf', false); // Embed content (creates portable document)\nconst embedded = jacs.signFile('contract.pdf', true);","breadcrumbs":"Simplified API » signFile(filePath, embed?)","id":"366","title":"signFile(filePath, embed?)"},"367":{"body":"Verify a signed document and extract its content. Parameters: signedDocument (string): The JSON string of the signed document Returns: VerificationResult Throws: Error if no agent is loaded const result = jacs.verify(signedJson); if (result.valid) { console.log(`Signed by: ${result.signerId}`); console.log(`Timestamp: ${result.timestamp}`); console.log(`Data: ${JSON.stringify(result.data)}`);\n} else { console.log(`Invalid: ${result.errors.join(', ')}`);\n}","breadcrumbs":"Simplified API » verify(signedDocument)","id":"367","title":"verify(signedDocument)"},"368":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Does not use the global agent. Parameters: signedDocument (string): The signed JACS document JSON options (object, optional): { keyResolution?, dataDirectory?, keyDirectory? } Returns: VerificationResult (same shape as verify()) const result = jacs.verifyStandalone(signedJson, { keyResolution: 'local', keyDirectory: './keys' });\nconsole.log(result.valid, result.signerId);","breadcrumbs":"Simplified API » verifyStandalone(signedDocument, options?)","id":"368","title":"verifyStandalone(signedDocument, options?)"},"369":{"body":"Run a read-only security audit and health checks. Returns an object with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. Parameters: options (object, optional): { configPath?, recentN? } Returns: Object with risks, health_checks, summary, overall_status, etc. See Security Model — Security Audit for full details and options. const result = jacs.audit();\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`);","breadcrumbs":"Simplified API » audit(options?)","id":"369","title":"audit(options?)"},"37":{"body":"✅ Perfect for: Multi-agent AI systems Task delegation and tracking Audit trail requirements Cross-organization AI collaboration Compliance-critical AI applications Research environments with multiple AI models ⚠️ Consider alternatives for: Simple single-agent systems Real-time streaming data High-frequency micro-transactions Systems where trust is not a concern","breadcrumbs":"What is JACS? » When to Use JACS","id":"37","title":"When to Use JACS"},"370":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use exportAgent() to get the current document, modify it, then pass it here. Parameters: newAgentData (object|string): Complete agent document as JSON string or object Returns: string - The updated and re-signed agent document Throws: Error if no agent loaded or validation fails // Get current agent document\nconst agentDoc = JSON.parse(jacs.exportAgent()); // Modify fields\nagentDoc.jacsAgentType = 'hybrid';\nagentDoc.jacsContacts = [{ contactFirstName: 'Jane', contactLastName: 'Doe' }]; // Update (creates new version, re-signs, re-hashes)\nconst updated = jacs.updateAgent(agentDoc);\nconst newDoc = JSON.parse(updated); console.log(`New version: ${newDoc.jacsVersion}`);\nconsole.log(`Previous: ${newDoc.jacsPreviousVersion}`); Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » updateAgent(newAgentData)","id":"370","title":"updateAgent(newAgentData)"},"371":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without noSave: true). Parameters: documentId (string): The document ID (jacsId) to update newDocumentData (object|string): Updated document as JSON string or object attachments (string[], optional): Array of file paths to attach embed (boolean, optional): If true, embed attachment contents Returns: SignedDocument with the updated document Throws: Error if document not found, no agent loaded, or validation fails // Create a document (must be saved to disk)\nconst original = jacs.signMessage({ status: 'pending', amount: 100 }); // Later, update it\nconst doc = JSON.parse(original.raw);\ndoc.content.status = 'approved'; const updated = jacs.updateDocument(original.documentId, doc);\nconst newDoc = JSON.parse(updated.raw); console.log(`New version: ${newDoc.jacsVersion}`);\nconsole.log(`Previous: ${newDoc.jacsPreviousVersion}`);","breadcrumbs":"Simplified API » updateDocument(documentId, newDocumentData, attachments?, embed?)","id":"371","title":"updateDocument(documentId, newDocumentData, attachments?, embed?)"},"372":{"body":"Export the current agent document for sharing or inspection. Returns: string - The agent JSON document Throws: Error if no agent loaded const agentDoc = jacs.exportAgent();\nconsole.log(agentDoc); // Parse to inspect\nconst agent = JSON.parse(agentDoc);\nconsole.log(`Agent type: ${agent.jacsAgentType}`);","breadcrumbs":"Simplified API » exportAgent()","id":"372","title":"exportAgent()"},"373":{"body":"Register the loaded agent with HAI.ai. Requires a loaded agent and an API key (options.apiKey or HAI_API_KEY). Parameters: options (object, optional): { apiKey?, haiUrl?, preview? } Returns: Promise with agentId, jacsId, dnsVerified, signatures","breadcrumbs":"Simplified API » registerWithHai(options?)","id":"373","title":"registerWithHai(options?)"},"374":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Parameters: domain (string), ttl (number, optional, default 3600) Returns: string","breadcrumbs":"Simplified API » getDnsRecord(domain, ttl?)","id":"374","title":"getDnsRecord(domain, ttl?)"},"375":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: object","breadcrumbs":"Simplified API » getWellKnownJson()","id":"375","title":"getWellKnownJson()"},"376":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: string - PEM-encoded public key Throws: Error if no agent loaded const pem = jacs.getPublicKey();\nconsole.log(pem);\n// -----BEGIN PUBLIC KEY-----\n// ...\n// -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » getPublicKey()","id":"376","title":"getPublicKey()"},"377":{"body":"","breadcrumbs":"Simplified API » Type Definitions","id":"377","title":"Type Definitions"},"378":{"body":"interface AgentInfo { agentId: string; // Agent's UUID name: string; // Agent name from config publicKeyPath: string; // Path to public key file configPath: string; // Path to loaded config\n}","breadcrumbs":"Simplified API » AgentInfo","id":"378","title":"AgentInfo"},"379":{"body":"interface SignedDocument { raw: string; // Full JSON document with signature documentId: string; // Document's UUID (jacsId) agentId: string; // Signing agent's ID timestamp: string; // ISO 8601 timestamp\n}","breadcrumbs":"Simplified API » SignedDocument","id":"379","title":"SignedDocument"},"38":{"body":"Ready to dive deeper? Continue with: Core Concepts - Learn about agents, documents, and agreements Quick Start - Get hands-on experience Implementation guides for Rust , Node.js , or Python","breadcrumbs":"What is JACS? » Next Steps","id":"38","title":"Next Steps"},"380":{"body":"interface VerificationResult { valid: boolean; // True if signature verified data?: any; // Extracted document content signerId: string; // Agent who signed timestamp: string; // When it was signed attachments: Attachment[]; // File attachments errors: string[]; // Error messages if invalid\n}","breadcrumbs":"Simplified API » VerificationResult","id":"380","title":"VerificationResult"},"381":{"body":"interface Attachment { filename: string; // Original filename mimeType: string; // MIME type hash: string; // SHA-256 hash embedded: boolean; // True if content is embedded content?: Buffer; // Embedded content (if available)\n}","breadcrumbs":"Simplified API » Attachment","id":"381","title":"Attachment"},"382":{"body":"const jacs = require('@hai.ai/jacs/simple'); // Load agent\nconst agent = jacs.load('./jacs.config.json');\nconsole.log(`Loaded agent: ${agent.agentId}`); // Verify agent integrity\nconst selfCheck = jacs.verifySelf();\nif (!selfCheck.valid) { throw new Error('Agent integrity check failed');\n} // Sign a transaction\nconst transaction = { type: 'payment', from: agent.agentId, to: 'recipient-agent-uuid', amount: 250.00, currency: 'USD', memo: 'Q1 Service Payment'\n}; const signed = jacs.signMessage(transaction);\nconsole.log(`Transaction signed: ${signed.documentId}`); // Verify the transaction (simulating recipient)\nconst verification = jacs.verify(signed.raw); if (verification.valid) { console.log(`Payment verified from: ${verification.signerId}`); console.log(`Amount: ${verification.data.amount} ${verification.data.currency}`);\n} else { console.log(`Verification failed: ${verification.errors.join(', ')}`);\n} // Sign a file\nconst contractSigned = jacs.signFile('./contract.pdf', true);\nconsole.log(`Contract signed: ${contractSigned.documentId}`); // Update agent metadata\nconst agentDoc = JSON.parse(jacs.exportAgent());\nagentDoc.jacsAgentType = 'ai';\nif (!agentDoc.jacsContacts || agentDoc.jacsContacts.length === 0) { agentDoc.jacsContacts = [{ contactFirstName: 'AI', contactLastName: 'Agent' }];\n}\nconst updatedAgent = jacs.updateAgent(agentDoc);\nconsole.log('Agent metadata updated'); // Share public key\nconst publicKey = jacs.getPublicKey();\nconsole.log('Share this public key for verification:');\nconsole.log(publicKey);","breadcrumbs":"Simplified API » Complete Example","id":"382","title":"Complete Example"},"383":{"body":"The simplified API works well with MCP tool implementations: const { Server } = require('@modelcontextprotocol/sdk/server/index.js');\nconst jacs = require('@hai.ai/jacs/simple'); // Load agent once at startup\njacs.load('./jacs.config.json'); // Define a signed tool\nserver.setRequestHandler('tools/call', async (request) => { const { name, arguments: args } = request.params; if (name === 'approve_request') { const signed = jacs.signMessage({ action: 'approve', requestId: args.requestId, approvedBy: jacs.getAgentInfo().agentId }); return { content: [{ type: 'text', text: signed.raw }] }; }\n});","breadcrumbs":"Simplified API » MCP Integration","id":"383","title":"MCP Integration"},"384":{"body":"const jacs = require('@hai.ai/jacs/simple'); try { jacs.load('./missing-config.json');\n} catch (e) { console.error('Config not found:', e.message);\n} try { // Will fail if no agent loaded jacs.signMessage({ data: 'test' });\n} catch (e) { console.error('No agent:', e.message);\n} try { jacs.signFile('/nonexistent/file.pdf');\n} catch (e) { console.error('File not found:', e.message);\n} // Verification doesn't throw - check result.valid\nconst result = jacs.verify('invalid json');\nif (!result.valid) { console.error('Verification errors:', result.errors);\n}","breadcrumbs":"Simplified API » Error Handling","id":"384","title":"Error Handling"},"385":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"385","title":"See Also"},"386":{"body":"This chapter covers fundamental JACS operations in Node.js, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"386","title":"Basic Usage"},"387":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"387","title":"Initializing an Agent"},"388":{"body":"import { JacsAgent } from '@hai.ai/jacs'; // Create a new agent instance\nconst agent = new JacsAgent(); // Load configuration from file\nagent.load('./jacs.config.json');","breadcrumbs":"Basic Usage » Create and Load Agent","id":"388","title":"Create and Load Agent"},"389":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"389","title":"Configuration File"},"39":{"body":"Understanding JACS requires familiarity with several key concepts that work together to create a secure, verifiable communication framework for AI agents.","breadcrumbs":"Core Concepts » Core Concepts","id":"39","title":"Core Concepts"},"390":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"390","title":"Creating Documents"},"391":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create a document from JSON\nconst documentData = { title: \"Project Proposal\", content: \"Quarterly development plan\", budget: 50000\n}; const signedDocument = agent.createDocument(JSON.stringify(documentData));\nconsole.log('Signed document:', signedDocument);","breadcrumbs":"Basic Usage » Basic Document Creation","id":"391","title":"Basic Document Creation"},"392":{"body":"Validate against a custom JSON Schema: const signedDocument = agent.createDocument( JSON.stringify(documentData), './schemas/proposal.schema.json' // custom schema path\n);","breadcrumbs":"Basic Usage » With Custom Schema","id":"392","title":"With Custom Schema"},"393":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema './output/proposal.json' // output filename\n);","breadcrumbs":"Basic Usage » With Output File","id":"393","title":"With Output File"},"394":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename true // noSave = true\n);","breadcrumbs":"Basic Usage » Without Saving","id":"394","title":"Without Saving"},"395":{"body":"const signedDocument = agent.createDocument( JSON.stringify(documentData), null, // no custom schema null, // no output filename false, // save the document './attachments/report.pdf', // attachment path true // embed files\n);","breadcrumbs":"Basic Usage » With Attachments","id":"395","title":"With Attachments"},"396":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"396","title":"Verifying Documents"},"397":{"body":"// Verify a document's signature and hash\nconst isValid = agent.verifyDocument(signedDocumentJson);\nconsole.log('Document valid:', isValid);","breadcrumbs":"Basic Usage » Verify Document Signature","id":"397","title":"Verify Document Signature"},"398":{"body":"// Verify with a custom signature field\nconst isValid = agent.verifySignature( signedDocumentJson, 'jacsSignature' // signature field name\n);","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"398","title":"Verify Specific Signature Field"},"399":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"399","title":"Updating Documents"},"4":{"body":"Performance : Fastest implementation with native performance CLI Tool : Complete command-line interface for agent and document management Library : Full-featured Rust library for embedded applications Observability : Advanced logging and metrics with OpenTelemetry support","breadcrumbs":"Introduction » 🦀 Rust (Core Library + CLI)","id":"4","title":"🦀 Rust (Core Library + CLI)"},"40":{"body":"An Agent is the fundamental entity in JACS - an autonomous participant that can create, sign, and verify documents.","breadcrumbs":"Core Concepts » Agents","id":"40","title":"Agents"},"400":{"body":"// Original document key format: \"id:version\"\nconst documentKey = 'doc-uuid:version-uuid'; // Modified document content\nconst updatedData = { jacsId: 'doc-uuid', jacsVersion: 'version-uuid', title: \"Updated Proposal\", content: \"Revised quarterly plan\", budget: 75000\n}; const updatedDocument = agent.updateDocument( documentKey, JSON.stringify(updatedData)\n); console.log('Updated document:', updatedDocument);","breadcrumbs":"Basic Usage » Update Existing Document","id":"400","title":"Update Existing Document"},"401":{"body":"const updatedDocument = agent.updateDocument( documentKey, JSON.stringify(updatedData), ['./new-report.pdf'], // new attachments true // embed files\n);","breadcrumbs":"Basic Usage » Update with New Attachments","id":"401","title":"Update with New Attachments"},"402":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"402","title":"Signing and Verification"},"403":{"body":"// Sign any string data\nconst signature = agent.signString('Important message to sign');\nconsole.log('Signature:', signature);","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"403","title":"Sign Arbitrary Data"},"404":{"body":"// Verify a signature on string data\nconst isValid = agent.verifyString( 'Important message to sign', // original data signatureBase64, // base64 signature publicKeyBuffer, // public key as Buffer 'ring-Ed25519' // algorithm\n);","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"404","title":"Verify Arbitrary Data"},"405":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"405","title":"Working with Agreements"},"406":{"body":"// Add agreement requiring multiple agent signatures\nconst documentWithAgreement = agent.createAgreement( signedDocumentJson, ['agent1-uuid', 'agent2-uuid'], // required signers 'Do you agree to these terms?', // question 'Q1 2024 service contract', // context 'jacsAgreement' // field name\n);","breadcrumbs":"Basic Usage » Create an Agreement","id":"406","title":"Create an Agreement"},"407":{"body":"// Sign the agreement as the current agent\nconst signedAgreement = agent.signAgreement( documentWithAgreementJson, 'jacsAgreement' // agreement field name\n);","breadcrumbs":"Basic Usage » Sign an Agreement","id":"407","title":"Sign an Agreement"},"408":{"body":"// Check which agents have signed\nconst status = agent.checkAgreement( documentWithAgreementJson, 'jacsAgreement'\n); console.log('Agreement status:', JSON.parse(status));","breadcrumbs":"Basic Usage » Check Agreement Status","id":"408","title":"Check Agreement Status"},"409":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"409","title":"Agent Operations"},"41":{"body":"{ \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"123e4567-e89b-12d3-a456-426614174000\", \"jacsType\": \"agent\", \"name\": \"Content Creation Agent\", \"description\": \"Specialized in creating marketing content\"\n} Key Properties: jacsId : Permanent UUID identifying the agent jacsVersion : UUID that changes with each update Cryptographic Keys : Ed25519, RSA, or post-quantum key pairs Services : Capabilities the agent offers Contacts : How to reach the agent","breadcrumbs":"Core Concepts » Agent Identity","id":"41","title":"Agent Identity"},"410":{"body":"// Verify the loaded agent's signature\nconst isValid = agent.verifyAgent();\nconsole.log('Agent valid:', isValid); // Verify a specific agent file\nconst isValidOther = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Basic Usage » Verify Agent","id":"410","title":"Verify Agent"},"411":{"body":"// Update agent document\nconst updatedAgentJson = agent.updateAgent(JSON.stringify({ jacsId: 'agent-uuid', jacsVersion: 'version-uuid', name: 'Updated Agent Name', description: 'Updated description'\n}));","breadcrumbs":"Basic Usage » Update Agent","id":"411","title":"Update Agent"},"412":{"body":"// Sign another agent's document with registration signature\nconst signedAgentJson = agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"Basic Usage » Sign External Agent","id":"412","title":"Sign External Agent"},"413":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"413","title":"Request/Response Signing"},"414":{"body":"// Sign request parameters as a JACS document\nconst signedRequest = agent.signRequest({ method: 'GET', path: '/api/resource', timestamp: new Date().toISOString(), body: { query: 'data' }\n});","breadcrumbs":"Basic Usage » Sign a Request","id":"414","title":"Sign a Request"},"415":{"body":"// Verify a signed response\nconst result = agent.verifyResponse(signedResponseJson);\nconsole.log('Response valid:', result); // Verify and get signer's agent ID\nconst resultWithId = agent.verifyResponseWithAgentId(signedResponseJson);\nconsole.log('Signer ID:', resultWithId);","breadcrumbs":"Basic Usage » Verify a Response","id":"415","title":"Verify a Response"},"416":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"416","title":"Utility Functions"},"417":{"body":"import { hashString } from '@hai.ai/jacs'; // SHA-256 hash of a string\nconst hash = hashString('data to hash');\nconsole.log('Hash:', hash);","breadcrumbs":"Basic Usage » Hash String","id":"417","title":"Hash String"},"418":{"body":"import { createConfig } from '@hai.ai/jacs'; // Programmatically create a config JSON string\nconst configJson = createConfig( undefined, // jacs_use_security './jacs_data', // jacs_data_directory './jacs_keys', // jacs_key_directory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // key algorithm undefined, // private key password undefined, // agent id and version 'fs' // default storage\n); console.log('Config:', configJson);","breadcrumbs":"Basic Usage » Create Configuration","id":"418","title":"Create Configuration"},"419":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent(); try { agent.load('./jacs.config.json');\n} catch (error) { console.error('Failed to load agent:', error.message);\n} try { const doc = agent.createDocument(JSON.stringify({ data: 'test' })); console.log('Document created');\n} catch (error) { console.error('Failed to create document:', error.message);\n} try { const isValid = agent.verifyDocument(invalidJson);\n} catch (error) { console.error('Verification failed:', error.message);\n}","breadcrumbs":"Basic Usage » Error Handling","id":"419","title":"Error Handling"},"42":{"body":"Creation : Generate keys and initial agent document Registration : Store public keys for verification Operation : Create and sign documents Updates : Version changes while maintaining identity Verification : Other agents validate signatures","breadcrumbs":"Core Concepts » Agent Lifecycle","id":"42","title":"Agent Lifecycle"},"420":{"body":"import { JacsAgent, hashString } from '@hai.ai/jacs'; async function main() { // Initialize agent const agent = new JacsAgent(); agent.load('./jacs.config.json'); // Create a task document const task = { title: 'Code Review', description: 'Review pull request #123', assignee: 'developer-uuid', deadline: '2024-02-01' }; const signedTask = agent.createDocument(JSON.stringify(task)); console.log('Task created'); // Verify the task if (agent.verifyDocument(signedTask)) { console.log('Task signature valid'); } // Create agreement for task acceptance const taskWithAgreement = agent.createAgreement( signedTask, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ); // Sign the agreement const signedAgreement = agent.signAgreement(taskWithAgreement); console.log('Agreement signed'); // Check agreement status const status = agent.checkAgreement(signedAgreement); console.log('Status:', status); // Hash some data for reference const taskHash = hashString(signedTask); console.log('Task hash:', taskHash);\n} main().catch(console.error);","breadcrumbs":"Basic Usage » Complete Example","id":"420","title":"Complete Example"},"421":{"body":"MCP Integration - Model Context Protocol support HTTP Server - Create HTTP APIs Express Middleware - Express.js integration API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"421","title":"Next Steps"},"422":{"body":"JACS provides native integration with the Model Context Protocol (MCP) , enabling secure agent communication within AI systems. JACS uses a transport proxy pattern that wraps any MCP transport with cryptographic signing and verification.","breadcrumbs":"MCP Integration » Model Context Protocol (MCP) Integration","id":"422","title":"Model Context Protocol (MCP) Integration"},"423":{"body":"Model Context Protocol is a standard for AI models to securely access external tools, data, and services. JACS enhances MCP by adding: Cryptographic verification of all messages Agent identity for all operations Transparent encryption of MCP JSON-RPC traffic Audit trails of all MCP interactions","breadcrumbs":"MCP Integration » What is MCP?","id":"423","title":"What is MCP?"},"424":{"body":"JACS provides a transport proxy that sits between your MCP server/client and the underlying transport (STDIO, SSE, WebSocket). The proxy: Outgoing messages : Signs JSON-RPC messages with the JACS agent's key using signRequest() Incoming messages : Verifies signatures using verifyResponse() and extracts the payload Fallback : If verification fails, passes messages through as plain JSON (graceful degradation)","breadcrumbs":"MCP Integration » How JACS MCP Works","id":"424","title":"How JACS MCP Works"},"425":{"body":"","breadcrumbs":"MCP Integration » Quick Start","id":"425","title":"Quick Start"},"426":{"body":"import { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; const JACS_CONFIG_PATH = \"./jacs.config.json\"; async function main() { // Create the base STDIO transport const baseTransport = new StdioServerTransport(); // Wrap with JACS encryption const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG_PATH, \"server\" ); // Create MCP server const server = new McpServer({ name: \"my-jacs-server\", version: \"1.0.0\" }); // Register tools server.tool(\"add\", { a: z.number().describe(\"First number\"), b: z.number().describe(\"Second number\") }, async ({ a, b }) => { return { content: [{ type: \"text\", text: `${a} + ${b} = ${a + b}` }] }; }); // Connect with JACS encryption await server.connect(secureTransport); console.error(\"JACS MCP Server running with encryption enabled\");\n} main();","breadcrumbs":"MCP Integration » Basic MCP Server with JACS","id":"426","title":"Basic MCP Server with JACS"},"427":{"body":"import { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const JACS_CONFIG_PATH = \"./jacs.config.json\"; async function main() { // Create base transport to connect to MCP server const baseTransport = new StdioClientTransport({ command: 'node', args: ['my-jacs-server.js'] }); // Wrap with JACS encryption const secureTransport = createJACSTransportProxy( baseTransport, JACS_CONFIG_PATH, \"client\" ); // Create MCP client const client = new Client({ name: \"my-jacs-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); // Connect with JACS encryption await client.connect(secureTransport); // List available tools const tools = await client.listTools(); console.log('Available tools:', tools.tools.map(t => t.name)); // Call a tool (message will be JACS-signed) const result = await client.callTool({ name: \"add\", arguments: { a: 5, b: 3 } }); console.log('Result:', result.content);\n} main();","breadcrumbs":"MCP Integration » MCP Client with JACS","id":"427","title":"MCP Client with JACS"},"428":{"body":"","breadcrumbs":"MCP Integration » API Reference","id":"428","title":"API Reference"},"429":{"body":"The main class that wraps MCP transports with JACS encryption. import { JACSTransportProxy } from '@hai.ai/jacs/mcp'; const proxy = new JACSTransportProxy( transport, // Any MCP transport (Stdio, SSE, WebSocket) role, // \"server\" or \"client\" jacsConfigPath // Path to jacs.config.json\n);","breadcrumbs":"MCP Integration » JACSTransportProxy","id":"429","title":"JACSTransportProxy"},"43":{"body":"When consuming signed documents, you can verify in two ways: With a loaded agent (load(config) first): Call verify(signedDocument). The loaded agent uses its config (trust store, key resolution) to resolve the signer’s public key and verify the signature. Use this when your process already has a JACS config (e.g. it also signs) or when you want to use a specific key directory and resolution order. Without loading an agent (one-off verification): Call verify_standalone(signedDocument, options) (or the language equivalent: verifyStandalone, VerifyStandalone). This verifies the document using only the options you pass (e.g. keyResolution, keyDirectory). No config file or persistent agent state is required. Use this in lightweight services that only need to verify incoming documents.","breadcrumbs":"Core Concepts » Verification: load() vs verify_standalone()","id":"43","title":"Verification: load() vs verify_standalone()"},"430":{"body":"Factory function for creating a transport proxy. import { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const secureTransport = createJACSTransportProxy( baseTransport, // The underlying MCP transport configPath, // Path to jacs.config.json role // \"server\" or \"client\"\n);","breadcrumbs":"MCP Integration » createJACSTransportProxy","id":"430","title":"createJACSTransportProxy"},"431":{"body":"Async factory that waits for JACS to be fully loaded before returning. import { createJACSTransportProxyAsync } from '@hai.ai/jacs/mcp'; const secureTransport = await createJACSTransportProxyAsync( baseTransport, configPath, role\n);","breadcrumbs":"MCP Integration » createJACSTransportProxyAsync","id":"431","title":"createJACSTransportProxyAsync"},"432":{"body":"","breadcrumbs":"MCP Integration » Transport Options","id":"432","title":"Transport Options"},"433":{"body":"Best for CLI tools and subprocess communication: import { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\"\n); Important : When using STDIO transport, all debug logging goes to stderr to keep stdout clean for JSON-RPC messages.","breadcrumbs":"MCP Integration » STDIO Transport","id":"433","title":"STDIO Transport"},"434":{"body":"For web-based MCP servers: import { SSEServerTransport } from \"@modelcontextprotocol/sdk/server/sse.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport express from 'express'; const app = express(); app.get('/sse', (req, res) => { const baseTransport = new SSEServerTransport('/messages', res); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.config.json\", \"server\" ); // Connect your MCP server to secureTransport server.connect(secureTransport);\n}); // Handle POST messages with JACS decryption\napp.post('/messages', express.text(), async (req, res) => { await secureTransport.handlePostMessage(req, res, req.body);\n}); app.listen(3000);","breadcrumbs":"MCP Integration » SSE Transport (HTTP)","id":"434","title":"SSE Transport (HTTP)"},"435":{"body":"","breadcrumbs":"MCP Integration » Configuration","id":"435","title":"Configuration"},"436":{"body":"Create a jacs.config.json for your MCP server/client: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"MCP Integration » JACS Config File","id":"436","title":"JACS Config File"},"437":{"body":"Enable debug logging (not recommended for STDIO): export JACS_MCP_DEBUG=true","breadcrumbs":"MCP Integration » Environment Variables","id":"437","title":"Environment Variables"},"438":{"body":"","breadcrumbs":"MCP Integration » How Messages Are Signed","id":"438","title":"How Messages Are Signed"},"439":{"body":"When the MCP SDK sends a message, the proxy intercepts it and: Serializes the JSON-RPC message Calls jacs.signRequest(message) to create a JACS artifact Sends the signed artifact to the transport // Original MCP message\n{ \"jsonrpc\": \"2.0\", \"id\": 1, \"method\": \"tools/call\", \"params\": { \"name\": \"add\", \"arguments\": { \"a\": 5, \"b\": 3 } }\n} // Becomes a JACS-signed artifact with jacsId, jacsSignature, etc.","breadcrumbs":"MCP Integration » Outgoing Messages","id":"439","title":"Outgoing Messages"},"44":{"body":"A Document is any JSON object that follows JACS conventions for identity, versioning, and cryptographic integrity.","breadcrumbs":"Core Concepts » Documents","id":"44","title":"Documents"},"440":{"body":"When the transport receives a message, the proxy: Attempts to verify it as a JACS artifact using jacs.verifyResponse() If valid, extracts the original JSON-RPC payload If not valid JACS, parses as plain JSON (fallback mode) Passes the clean message to the MCP SDK","breadcrumbs":"MCP Integration » Incoming Messages","id":"440","title":"Incoming Messages"},"441":{"body":"","breadcrumbs":"MCP Integration » Complete Example","id":"441","title":"Complete Example"},"442":{"body":"#!/usr/bin/env node\nimport { McpServer } from \"@modelcontextprotocol/sdk/server/mcp.js\";\nimport { StdioServerTransport } from \"@modelcontextprotocol/sdk/server/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { z } from 'zod'; async function main() { console.error(\"JACS MCP Server starting...\"); // Create transport with JACS encryption const baseTransport = new StdioServerTransport(); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.server.config.json\", \"server\" ); // Create MCP server const server = new McpServer({ name: \"jacs-demo-server\", version: \"1.0.0\" }); // Register tools server.tool(\"echo\", { message: z.string().describe(\"Message to echo\") }, async ({ message }) => { console.error(`Echo called with: ${message}`); return { content: [{ type: \"text\", text: `Echo: ${message}` }] }; }); server.tool(\"add\", { a: z.number().describe(\"First number\"), b: z.number().describe(\"Second number\") }, async ({ a, b }) => { console.error(`Add called with: ${a}, ${b}`); return { content: [{ type: \"text\", text: `Result: ${a + b}` }] }; }); // Register resources server.resource( \"server-info\", \"info://server\", async (uri) => ({ contents: [{ uri: uri.href, text: \"JACS-secured MCP Server\", mimeType: \"text/plain\" }] }) ); // Connect await server.connect(secureTransport); console.error(\"Server running with JACS encryption\");\n} main().catch(err => { console.error(\"Fatal error:\", err); process.exit(1);\n});","breadcrumbs":"MCP Integration » Server (mcp.server.js)","id":"442","title":"Server (mcp.server.js)"},"443":{"body":"#!/usr/bin/env node\nimport { Client } from \"@modelcontextprotocol/sdk/client/index.js\";\nimport { StdioClientTransport } from \"@modelcontextprotocol/sdk/client/stdio.js\";\nimport { createJACSTransportProxy } from '@hai.ai/jacs/mcp'; async function main() { console.log(\"JACS MCP Client starting...\"); // Connect to the server const baseTransport = new StdioClientTransport({ command: 'node', args: ['mcp.server.js'] }); const secureTransport = createJACSTransportProxy( baseTransport, \"./jacs.client.config.json\", \"client\" ); const client = new Client({ name: \"jacs-demo-client\", version: \"1.0.0\" }, { capabilities: { tools: {} } }); await client.connect(secureTransport); console.log(\"Connected to JACS MCP Server\"); // List tools const tools = await client.listTools(); console.log(\"Available tools:\", tools.tools.map(t => t.name)); // Call echo tool const echoResult = await client.callTool({ name: \"echo\", arguments: { message: \"Hello, JACS!\" } }); console.log(\"Echo result:\", echoResult.content[0].text); // Call add tool const addResult = await client.callTool({ name: \"add\", arguments: { a: 10, b: 20 } }); console.log(\"Add result:\", addResult.content[0].text); await client.close();\n} main().catch(console.error);","breadcrumbs":"MCP Integration » Client (mcp.client.js)","id":"443","title":"Client (mcp.client.js)"},"444":{"body":"","breadcrumbs":"MCP Integration » Security Considerations","id":"444","title":"Security Considerations"},"445":{"body":"All JACS-signed messages include: jacsId - Unique document identifier jacsVersion - Version tracking jacsSignature - Cryptographic signature jacsHash - Content hash for integrity","breadcrumbs":"MCP Integration » Message Verification","id":"445","title":"Message Verification"},"446":{"body":"If JACS cannot verify an incoming message, it falls back to plain JSON parsing. This allows: Gradual migration to JACS-secured communication Interoperability with non-JACS MCP clients/servers To require JACS verification (no fallback), implement custom validation in your tools.","breadcrumbs":"MCP Integration » Passthrough Mode","id":"446","title":"Passthrough Mode"},"447":{"body":"Each MCP server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file","breadcrumbs":"MCP Integration » Key Management","id":"447","title":"Key Management"},"448":{"body":"","breadcrumbs":"MCP Integration » Debugging","id":"448","title":"Debugging"},"449":{"body":"export JACS_MCP_DEBUG=true This outputs detailed logs about message signing and verification.","breadcrumbs":"MCP Integration » Enable Debug Logging","id":"449","title":"Enable Debug Logging"},"45":{"body":"{ \"jacsId\": \"doc-uuid-here\", \"jacsVersion\": \"version-uuid-here\", \"jacsType\": \"task\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"previous-version-uuid\", \"title\": \"Analyze Q4 Sales Data\", \"description\": \"Generate insights from sales data\", \"jacsSha256\": \"hash-of-document-content\", \"jacsSignature\": { \"agentID\": \"agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"signature\": \"base64-signature\", \"signingAlgorithm\": \"ring-Ed25519\", \"publicKeyHash\": \"hash-of-public-key\", \"date\": \"2024-01-15T10:30:00Z\", \"fields\": [\"jacsId\", \"title\", \"description\"] }\n}","breadcrumbs":"Core Concepts » Document Structure","id":"45","title":"Document Structure"},"450":{"body":"For STDIO transports, debug logs go to stderr to prevent contaminating the JSON-RPC stream on stdout.","breadcrumbs":"MCP Integration » STDIO Debug Note","id":"450","title":"STDIO Debug Note"},"451":{"body":"\"JACS not operational\" : Check that your config file path is correct and the agent is properly initialized. Verification failures : Ensure both server and client are using compatible JACS versions and valid keys. Empty responses : The proxy removes null values from messages to prevent MCP schema validation issues.","breadcrumbs":"MCP Integration » Common Issues","id":"451","title":"Common Issues"},"452":{"body":"HTTP Server - Create HTTP APIs with JACS Express Middleware - Integrate with Express.js API Reference - Complete API documentation","breadcrumbs":"MCP Integration » Next Steps","id":"452","title":"Next Steps"},"453":{"body":"JACS provides middleware and utilities for building HTTP servers with cryptographic request/response signing. This enables secure communication between JACS agents over HTTP.","breadcrumbs":"HTTP Server » HTTP Server","id":"453","title":"HTTP Server"},"454":{"body":"JACS HTTP integration provides: Request signing : Sign outgoing HTTP requests with your agent's key Request verification : Verify incoming requests were signed by a valid agent Response signing : Automatically sign responses before sending Response verification : Verify server responses on the client side Framework middleware : Ready-to-use middleware for Express and Koa","breadcrumbs":"HTTP Server » Overview","id":"454","title":"Overview"},"455":{"body":"","breadcrumbs":"HTTP Server » Core Concepts","id":"455","title":"Core Concepts"},"456":{"body":"Client Server | | |-- signRequest(payload) -----> | | |-- verifyResponse() --> payload | |-- process payload | |-- signResponse(result) |<-- verifyResponse(result) ---| | All messages are cryptographically signed, ensuring: Message integrity (no tampering) Agent identity (verified sender) Non-repudiation (proof of origin)","breadcrumbs":"HTTP Server » Request/Response Flow","id":"456","title":"Request/Response Flow"},"457":{"body":"","breadcrumbs":"HTTP Server » HTTP Client","id":"457","title":"HTTP Client"},"458":{"body":"import jacs from '@hai.ai/jacs';\nimport http from 'http'; async function main() { // Load JACS agent await jacs.load('./jacs.config.json'); // Prepare payload const payload = { message: \"Hello, secure server!\", data: { id: 123, value: \"some data\" }, timestamp: new Date().toISOString() }; // Sign the request const signedRequest = await jacs.signRequest(payload); // Send HTTP request const response = await sendRequest(signedRequest, 'localhost', 3000, '/api/echo'); // Verify the response const verifiedResponse = await jacs.verifyResponse(response); console.log('Verified payload:', verifiedResponse.payload);\n} function sendRequest(body, host, port, path) { return new Promise((resolve, reject) => { const options = { hostname: host, port: port, path: path, method: 'POST', headers: { 'Content-Type': 'text/plain', 'Content-Length': Buffer.byteLength(body), }, }; const req = http.request(options, (res) => { let data = ''; res.on('data', chunk => data += chunk); res.on('end', () => { if (res.statusCode >= 200 && res.statusCode < 300) { resolve(data); } else { reject(new Error(`HTTP ${res.statusCode}: ${data}`)); } }); }); req.on('error', reject); req.write(body); req.end(); });\n} main();","breadcrumbs":"HTTP Server » Basic Client Usage","id":"458","title":"Basic Client Usage"},"459":{"body":"import jacs from '@hai.ai/jacs'; async function sendJacsRequest(url, payload) { await jacs.load('./jacs.config.json'); // Sign the payload const signedRequest = await jacs.signRequest(payload); // Send request const response = await fetch(url, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); if (!response.ok) { throw new Error(`HTTP ${response.status}`); } // Verify response const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} // Usage\nconst result = await sendJacsRequest('http://localhost:3000/api/data', { action: 'fetch', query: { id: 42 }\n});","breadcrumbs":"HTTP Server » Using Fetch","id":"459","title":"Using Fetch"},"46":{"body":"Field Purpose Example $schema JSON Schema reference URL to schema jacsId Permanent document identifier UUID v4 jacsVersion Version identifier (changes on update) UUID v4 jacsType Document type \"agent\", \"task\", \"message\" jacsVersionDate When this version was created RFC 3339 timestamp jacsOriginalVersion Original version UUID UUID v4 jacsOriginalDate Original creation timestamp RFC 3339 timestamp jacsLevel Data level/intent \"raw\", \"config\", \"artifact\", \"derived\" jacsPreviousVersion Previous version UUID (optional) UUID v4 or null jacsSha256 Hash of document content SHA-256 hex string jacsSignature Cryptographic signature Signature object","breadcrumbs":"Core Concepts » Required JACS Fields","id":"46","title":"Required JACS Fields"},"460":{"body":"","breadcrumbs":"HTTP Server » Express Server","id":"460","title":"Express Server"},"461":{"body":"JACS provides JACSExpressMiddleware that automatically: Verifies incoming JACS requests Attaches the verified payload to req.jacsPayload Signs outgoing responses when you call res.send() with an object import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express();\nconst PORT = 3000; // IMPORTANT: Use express.text() BEFORE JACS middleware\n// This ensures req.body is a string for JACS verification\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware to API routes\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.post('/api/echo', (req, res) => { // Access verified payload from req.jacsPayload const payload = req.jacsPayload; if (!payload) { return res.status(400).send('JACS payload missing'); } console.log('Received verified payload:', payload); // Send response object - middleware will sign it automatically res.send({ echo: \"Server says hello!\", received: payload, timestamp: new Date().toISOString() });\n}); app.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Express Middleware","id":"461","title":"Using Express Middleware"},"462":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"HTTP Server » Middleware Configuration","id":"462","title":"Middleware Configuration"},"463":{"body":"For more control, you can handle signing manually: import express from 'express';\nimport jacs from '@hai.ai/jacs'; const app = express(); // Initialize JACS once at startup\nawait jacs.load('./jacs.config.json'); app.use(express.text({ type: '*/*' })); app.post('/api/process', async (req, res) => { try { // Manually verify incoming request const verified = await jacs.verifyResponse(req.body); const payload = verified.payload; // Process the request const result = { success: true, data: processData(payload), timestamp: new Date().toISOString() }; // Manually sign the response const signedResponse = await jacs.signResponse(result); res.type('text/plain').send(signedResponse); } catch (error) { console.error('JACS verification failed:', error); res.status(400).send('Invalid JACS request'); }\n});","breadcrumbs":"HTTP Server » Manual Request/Response Handling","id":"463","title":"Manual Request/Response Handling"},"464":{"body":"","breadcrumbs":"HTTP Server » Koa Server","id":"464","title":"Koa Server"},"465":{"body":"import Koa from 'koa';\nimport { JACSKoaMiddleware } from '@hai.ai/jacs/http'; const app = new Koa();\nconst PORT = 3000; // Apply JACS Koa middleware\n// Handles raw body reading, verification, and response signing\napp.use(JACSKoaMiddleware({ configPath: './jacs.server.config.json'\n})); // Route handler\napp.use(async (ctx) => { if (ctx.path === '/api/echo' && ctx.method === 'POST') { // Access verified payload from ctx.state.jacsPayload or ctx.jacsPayload const payload = ctx.state.jacsPayload || ctx.jacsPayload; if (!payload) { ctx.status = 400; ctx.body = 'JACS payload missing'; return; } console.log('Received verified payload:', payload); // Set response object - middleware will sign it automatically ctx.body = { echo: \"Koa server says hello!\", received: payload, timestamp: new Date().toISOString() }; } else { ctx.status = 404; ctx.body = 'Not Found. Try POST to /api/echo'; }\n}); app.listen(PORT, () => { console.log(`JACS Koa server listening on port ${PORT}`);\n});","breadcrumbs":"HTTP Server » Using Koa Middleware","id":"465","title":"Using Koa Middleware"},"466":{"body":"","breadcrumbs":"HTTP Server » API Reference","id":"466","title":"API Reference"},"467":{"body":"Sign an object as a JACS request. const signedRequest = await jacs.signRequest({ method: 'getData', params: { id: 123 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signRequest(payload)","id":"467","title":"jacs.signRequest(payload)"},"468":{"body":"Verify a JACS-signed response and extract the payload. const result = await jacs.verifyResponse(jacsResponseString);\n// Returns: { payload: {...}, jacsId: '...', ... } const payload = result.payload;","breadcrumbs":"HTTP Server » jacs.verifyResponse(responseString)","id":"468","title":"jacs.verifyResponse(responseString)"},"469":{"body":"Sign an object as a JACS response. const signedResponse = await jacs.signResponse({ success: true, data: { result: 42 }\n});\n// Returns: JACS-signed JSON string","breadcrumbs":"HTTP Server » jacs.signResponse(payload)","id":"469","title":"jacs.signResponse(payload)"},"47":{"body":"Agent Documents Define agent identity and capabilities Contain service definitions and contact information Self-signed by the agent Task Documents Describe work to be performed Include success/failure criteria Can be delegated between agents Message Documents General communication between agents Can include attachments and metadata Support threaded conversations Agreement Documents Multi-party consent mechanisms Track required and actual signatures Enforce completion before proceeding","breadcrumbs":"Core Concepts » Document Types","id":"47","title":"Document Types"},"470":{"body":"Express middleware for JACS request/response handling. import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use(JACSExpressMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads req.body as a JACS string Verifies the signature Attaches payload to req.jacsPayload On failure, sends 400 response Response Processing: Intercepts res.send() calls If body is an object, signs it as JACS Sends signed string to client","breadcrumbs":"HTTP Server » JACSExpressMiddleware(options)","id":"470","title":"JACSExpressMiddleware(options)"},"471":{"body":"Koa middleware for JACS request/response handling. import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json' // Required\n})); Request Processing: Reads raw request body Verifies JACS signature Attaches payload to ctx.state.jacsPayload and ctx.jacsPayload Response Processing: Signs ctx.body if it's an object Converts to JACS string before sending","breadcrumbs":"HTTP Server » JACSKoaMiddleware(options)","id":"471","title":"JACSKoaMiddleware(options)"},"472":{"body":"","breadcrumbs":"HTTP Server » Complete Example","id":"472","title":"Complete Example"},"473":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // JACS middleware for /api routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.server.config.json'\n})); // Echo endpoint\napp.post('/api/echo', (req, res) => { const payload = req.jacsPayload; res.send({ echo: payload, serverTime: new Date().toISOString() });\n}); // Calculate endpoint\napp.post('/api/calculate', (req, res) => { const { operation, a, b } = req.jacsPayload; let result; switch (operation) { case 'add': result = a + b; break; case 'subtract': result = a - b; break; case 'multiply': result = a * b; break; case 'divide': result = a / b; break; default: return res.status(400).send({ error: 'Unknown operation' }); } res.send({ operation, a, b, result });\n}); app.listen(3000, () => console.log('Server running on port 3000'));","breadcrumbs":"HTTP Server » Server (server.js)","id":"473","title":"Server (server.js)"},"474":{"body":"import jacs from '@hai.ai/jacs'; async function main() { await jacs.load('./jacs.client.config.json'); // Call echo endpoint const echoResult = await callApi('/api/echo', { message: 'Hello, server!' }); console.log('Echo result:', echoResult); // Call calculate endpoint const calcResult = await callApi('/api/calculate', { operation: 'multiply', a: 7, b: 6 }); console.log('Calculate result:', calcResult);\n} async function callApi(path, payload) { const signedRequest = await jacs.signRequest(payload); const response = await fetch(`http://localhost:3000${path}`, { method: 'POST', headers: { 'Content-Type': 'text/plain' }, body: signedRequest }); const responseText = await response.text(); const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} main().catch(console.error);","breadcrumbs":"HTTP Server » Client (client.js)","id":"474","title":"Client (client.js)"},"475":{"body":"","breadcrumbs":"HTTP Server » Security Considerations","id":"475","title":"Security Considerations"},"476":{"body":"JACS requests should use text/plain content type since they are signed JSON strings, not raw JSON.","breadcrumbs":"HTTP Server » Content-Type","id":"476","title":"Content-Type"},"477":{"body":"Always handle verification failures gracefully: try { const verified = await jacs.verifyResponse(responseText); return verified.payload;\n} catch (error) { console.error('JACS verification failed:', error.message); // Handle invalid/tampered response\n}","breadcrumbs":"HTTP Server » Error Handling","id":"477","title":"Error Handling"},"478":{"body":"Each server and client needs its own JACS agent with: Unique agent ID Private/public key pair Configuration file pointing to the keys","breadcrumbs":"HTTP Server » Agent Keys","id":"478","title":"Agent Keys"},"479":{"body":"For Express, ensure express.text() comes before JACSExpressMiddleware: // Correct order\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong - JACS middleware won't receive string body\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"HTTP Server » Middleware Order","id":"479","title":"Middleware Order"},"48":{"body":"Tasks represent work that can be delegated, tracked, and verified between agents.","breadcrumbs":"Core Concepts » Tasks","id":"48","title":"Tasks"},"480":{"body":"Express Middleware - More Express integration patterns MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"HTTP Server » Next Steps","id":"480","title":"Next Steps"},"481":{"body":"This chapter covers advanced Express.js integration patterns with JACS, building on the basics covered in HTTP Server .","breadcrumbs":"Express Middleware » Express Middleware","id":"481","title":"Express Middleware"},"482":{"body":"JACS provides JACSExpressMiddleware for seamless integration with Express.js applications: Automatic request verification Automatic response signing Access to verified payloads via req.jacsPayload Error handling for invalid requests","breadcrumbs":"Express Middleware » Overview","id":"482","title":"Overview"},"483":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // Required: Parse body as text before JACS middleware\napp.use('/api', express.text({ type: '*/*' })); // Apply JACS middleware\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Routes automatically get verified payloads and signed responses\napp.post('/api/data', (req, res) => { const payload = req.jacsPayload; res.send({ received: payload, status: 'ok' });\n}); app.listen(3000);","breadcrumbs":"Express Middleware » Quick Start","id":"483","title":"Quick Start"},"484":{"body":"","breadcrumbs":"Express Middleware » Middleware Configuration","id":"484","title":"Middleware Configuration"},"485":{"body":"JACSExpressMiddleware({ configPath: './jacs.config.json' // Required: path to JACS config\n})","breadcrumbs":"Express Middleware » Basic Configuration","id":"485","title":"Basic Configuration"},"486":{"body":"Apply JACS to specific routes: const app = express(); // Non-JACS routes (public endpoints)\napp.get('/health', (req, res) => res.send({ status: 'ok' }));\napp.get('/public/info', (req, res) => res.send({ name: 'My API' })); // JACS-protected routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/secure', (req, res) => { // Only JACS-signed requests reach here res.send({ data: 'secure response' });\n});","breadcrumbs":"Express Middleware » Per-Route Configuration","id":"486","title":"Per-Route Configuration"},"487":{"body":"Use different JACS agents for different routes: // Admin routes with admin agent\napp.use('/admin', express.text({ type: '*/*' }));\napp.use('/admin', JACSExpressMiddleware({ configPath: './jacs.admin.config.json'\n})); // User routes with user agent\napp.use('/user', express.text({ type: '*/*' }));\napp.use('/user', JACSExpressMiddleware({ configPath: './jacs.user.config.json'\n}));","breadcrumbs":"Express Middleware » Multiple JACS Agents","id":"487","title":"Multiple JACS Agents"},"488":{"body":"","breadcrumbs":"Express Middleware » Request Handling","id":"488","title":"Request Handling"},"489":{"body":"The middleware attaches the verified payload to req.jacsPayload: app.post('/api/process', (req, res) => { // req.jacsPayload contains the verified, decrypted payload const { action, data, timestamp } = req.jacsPayload; console.log('Action:', action); console.log('Data:', data); console.log('Request timestamp:', timestamp); res.send({ processed: true });\n});","breadcrumbs":"Express Middleware » Accessing Verified Payload","id":"489","title":"Accessing Verified Payload"},"49":{"body":"{ \"jacsType\": \"task\", \"title\": \"Generate Marketing Copy\", \"description\": \"Create compelling copy for product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Research competitors\", \"description\": \"Analyze competitor messaging\", \"success\": \"Complete competitive analysis report\", \"failure\": \"Unable to access competitor data\" } ], \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"signature\": \"customer-signature\" }\n}","breadcrumbs":"Core Concepts » Task Structure","id":"49","title":"Task Structure"},"490":{"body":"If JACS verification fails, req.jacsPayload will be undefined: app.post('/api/secure', (req, res) => { if (!req.jacsPayload) { return res.status(400).json({ error: 'Invalid JACS request' }); } // Process verified payload res.send({ success: true });\n});","breadcrumbs":"Express Middleware » Handling Missing Payload","id":"490","title":"Handling Missing Payload"},"491":{"body":"Create a reusable validation middleware: function requireJacsPayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).json({ error: 'JACS verification failed', message: 'Request must be signed with valid JACS credentials' }); } next();\n} // Apply to routes\napp.post('/api/secure', requireJacsPayload, (req, res) => { // Guaranteed to have valid req.jacsPayload res.send({ data: req.jacsPayload });\n});","breadcrumbs":"Express Middleware » Validation Helper","id":"491","title":"Validation Helper"},"492":{"body":"","breadcrumbs":"Express Middleware » Response Handling","id":"492","title":"Response Handling"},"493":{"body":"When you call res.send() with an object, the middleware automatically signs it: app.post('/api/data', (req, res) => { // This object will be automatically JACS-signed res.send({ result: 'success', data: { value: 42 }, timestamp: new Date().toISOString() });\n});","breadcrumbs":"Express Middleware » Automatic Signing","id":"493","title":"Automatic Signing"},"494":{"body":"To bypass automatic signing, send a string directly: app.post('/api/raw', (req, res) => { // String responses are not signed res.type('text/plain').send('Raw text response');\n});","breadcrumbs":"Express Middleware » Sending Unsigned Responses","id":"494","title":"Sending Unsigned Responses"},"495":{"body":"app.post('/api/custom', (req, res) => { const response = { success: true, payload: { action: 'completed', result: processRequest(req.jacsPayload) }, metadata: { serverTime: new Date().toISOString(), requestId: generateRequestId() } }; // Automatically signed before sending res.send(response);\n});","breadcrumbs":"Express Middleware » Custom Response Format","id":"495","title":"Custom Response Format"},"496":{"body":"","breadcrumbs":"Express Middleware » Error Handling","id":"496","title":"Error Handling"},"497":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); app.post('/api/process', (req, res, next) => { try { if (!req.jacsPayload) { throw new Error('Missing JACS payload'); } const result = processData(req.jacsPayload); res.send({ result }); } catch (error) { next(error); }\n}); // Global error handler\napp.use((error, req, res, next) => { console.error('Error:', error.message); res.status(500).send({ error: 'Internal server error', message: error.message });\n});","breadcrumbs":"Express Middleware » Global Error Handler","id":"497","title":"Global Error Handler"},"498":{"body":"class JacsValidationError extends Error { constructor(message) { super(message); this.name = 'JacsValidationError'; this.statusCode = 400; }\n} app.post('/api/validate', (req, res, next) => { try { if (!req.jacsPayload) { throw new JacsValidationError('Invalid JACS request'); } const { requiredField } = req.jacsPayload; if (!requiredField) { throw new JacsValidationError('Missing required field'); } res.send({ valid: true }); } catch (error) { next(error); }\n}); // Error handler\napp.use((error, req, res, next) => { const statusCode = error.statusCode || 500; res.status(statusCode).send({ error: error.name, message: error.message });\n});","breadcrumbs":"Express Middleware » Typed Errors","id":"498","title":"Typed Errors"},"499":{"body":"","breadcrumbs":"Express Middleware » Advanced Patterns","id":"499","title":"Advanced Patterns"},"5":{"body":"Web Integration : Perfect for web servers and Express.js applications MCP Support : Native Model Context Protocol integration HTTP Server : Built-in HTTP server capabilities NPM Package : Easy installation and integration","breadcrumbs":"Introduction » 🟢 Node.js (@hai.ai/jacs)","id":"5","title":"🟢 Node.js (@hai.ai/jacs)"},"50":{"body":"Creation : Customer agent creates task with requirements Delegation : Task sent to service provider agent Agreement : Provider signs agreement to accept task Execution : Provider performs the work Completion : Provider creates completion document Verification : Customer verifies and accepts results","breadcrumbs":"Core Concepts » Task Lifecycle","id":"50","title":"Task Lifecycle"},"500":{"body":"import { Router } from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; // Create a JACS-enabled router\nfunction createJacsRouter(configPath) { const router = Router(); router.use(express.text({ type: '*/*' })); router.use(JACSExpressMiddleware({ configPath })); return router;\n} // Usage\nconst apiRouter = createJacsRouter('./jacs.config.json'); apiRouter.post('/users', (req, res) => { res.send({ users: getUserList() });\n}); apiRouter.post('/orders', (req, res) => { res.send({ orders: getOrders(req.jacsPayload.userId) });\n}); app.use('/api', apiRouter);","breadcrumbs":"Express Middleware » Router-Level Middleware","id":"500","title":"Router-Level Middleware"},"501":{"body":"Combine JACS with other middleware: import rateLimit from 'express-rate-limit';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const limiter = rateLimit({ windowMs: 15 * 60 * 1000, // 15 minutes max: 100 // limit each IP to 100 requests per windowMs\n}); // Apply multiple middleware in order\napp.use('/api', limiter, // Rate limiting first express.text({ type: '*/*' }), // Parse body as text JACSExpressMiddleware({ configPath: './jacs.config.json' }) // JACS verification\n);","breadcrumbs":"Express Middleware » Middleware Composition","id":"501","title":"Middleware Composition"},"502":{"body":"Log JACS requests for auditing: function jacsLogger(req, res, next) { if (req.jacsPayload) { console.log(JSON.stringify({ timestamp: new Date().toISOString(), method: req.method, path: req.path, jacsPayload: req.jacsPayload, ip: req.ip })); } next();\n} app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' }));\napp.use('/api', jacsLogger); // After JACS middleware","breadcrumbs":"Express Middleware » Logging Middleware","id":"502","title":"Logging Middleware"},"503":{"body":"Combine JACS with user authentication: // JACS middleware first\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json' })); // Then authentication check\nfunction requireAuth(req, res, next) { const payload = req.jacsPayload; if (!payload || !payload.userId) { return res.status(401).send({ error: 'Authentication required' }); } // Attach user to request req.user = { id: payload.userId }; next();\n} app.post('/api/protected', requireAuth, (req, res) => { res.send({ message: `Hello, user ${req.user.id}`, data: req.jacsPayload.data });\n});","breadcrumbs":"Express Middleware » Authentication Integration","id":"503","title":"Authentication Integration"},"504":{"body":"","breadcrumbs":"Express Middleware » Testing","id":"504","title":"Testing"},"505":{"body":"import request from 'supertest';\nimport jacs from '@hai.ai/jacs'; describe('JACS API', () => { beforeAll(async () => { await jacs.load('./jacs.test.config.json'); }); it('should accept valid JACS requests', async () => { const payload = { action: 'test', data: 'hello' }; const signedRequest = await jacs.signRequest(payload); const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send(signedRequest); expect(response.status).toBe(200); // Verify response is JACS-signed const verified = await jacs.verifyResponse(response.text); expect(verified.payload.echo).toEqual(payload); }); it('should reject unsigned requests', async () => { const response = await request(app) .post('/api/echo') .set('Content-Type', 'text/plain') .send('{\"invalid\": \"request\"}'); expect(response.status).toBe(400); });\n});","breadcrumbs":"Express Middleware » Unit Testing Routes","id":"505","title":"Unit Testing Routes"},"506":{"body":"// test/mocks/jacs.js\nexport const mockJacs = { payload: null, setPayload(p) { this.payload = p; }, reset() { this.payload = null; }\n}; // Mock middleware for testing\nexport function mockJacsMiddleware(req, res, next) { req.jacsPayload = mockJacs.payload; next();\n} // In tests\ndescribe('API without real JACS', () => { beforeEach(() => { mockJacs.setPayload({ userId: 'test-user', action: 'test' }); }); afterEach(() => { mockJacs.reset(); }); it('processes payload correctly', async () => { const response = await request(testApp) .post('/api/process') .send('test'); expect(response.status).toBe(200); });\n});","breadcrumbs":"Express Middleware » Mock JACS for Testing","id":"506","title":"Mock JACS for Testing"},"507":{"body":"import express from 'express';\nimport { JACSExpressMiddleware } from '@hai.ai/jacs/http'; const app = express(); // Health check (no JACS)\napp.get('/health', (req, res) => res.send({ status: 'healthy' })); // JACS-protected API routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); // Validation middleware\nfunction requirePayload(req, res, next) { if (!req.jacsPayload) { return res.status(400).send({ error: 'Invalid JACS request' }); } next();\n} // Routes\napp.post('/api/echo', requirePayload, (req, res) => { res.send({ echo: req.jacsPayload });\n}); app.post('/api/users', requirePayload, (req, res) => { const { name, email } = req.jacsPayload; if (!name || !email) { return res.status(400).send({ error: 'Name and email required' }); } const user = createUser({ name, email }); res.send({ user, created: true });\n}); app.post('/api/documents', requirePayload, async (req, res) => { const { title, content } = req.jacsPayload; const document = await createDocument({ title, content }); res.send({ document });\n}); // Error handler\napp.use((err, req, res, next) => { console.error('Error:', err); res.status(500).send({ error: 'Internal server error' });\n}); // Start server\nconst PORT = process.env.PORT || 3000;\napp.listen(PORT, () => { console.log(`JACS Express server listening on port ${PORT}`);\n});","breadcrumbs":"Express Middleware » Complete Application Example","id":"507","title":"Complete Application Example"},"508":{"body":"","breadcrumbs":"Express Middleware » Troubleshooting","id":"508","title":"Troubleshooting"},"509":{"body":"Problem : req.jacsPayload is always undefined Solution : Ensure express.text() comes before JACS middleware: // Correct\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' })); // Wrong\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));\napp.use('/api', express.text({ type: '*/*' }));","breadcrumbs":"Express Middleware » Body Parsing Issues","id":"509","title":"Body Parsing Issues"},"51":{"body":"Actions : Individual steps within a task id : Unique identifier within the task name : Human-readable action name description : Detailed requirements success : Definition of successful completion failure : What constitutes failure Services : Required capabilities type : Service category requirements : Specific needs constraints : Limitations or restrictions","breadcrumbs":"Core Concepts » Task Components","id":"51","title":"Task Components"},"510":{"body":"Problem : Using express.json() interferes with JACS Solution : Use route-specific middleware: // JSON for non-JACS routes\napp.use('/public', express.json()); // Text for JACS routes\napp.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: '...' }));","breadcrumbs":"Express Middleware » JSON Body Parser Conflict","id":"510","title":"JSON Body Parser Conflict"},"511":{"body":"Problem : Responses are plain JSON, not JACS-signed Solution : Ensure you're sending an object, not a string: // Will be signed\nres.send({ data: 'value' }); // Will NOT be signed\nres.send(JSON.stringify({ data: 'value' }));","breadcrumbs":"Express Middleware » Response Not Signed","id":"511","title":"Response Not Signed"},"512":{"body":"HTTP Server - Core HTTP integration concepts MCP Integration - Model Context Protocol support API Reference - Complete API documentation","breadcrumbs":"Express Middleware » Next Steps","id":"512","title":"Next Steps"},"513":{"body":"Complete API documentation for the @hai.ai/jacs Node.js package.","breadcrumbs":"API Reference » API Reference","id":"513","title":"API Reference"},"514":{"body":"npm install @hai.ai/jacs","breadcrumbs":"API Reference » Installation","id":"514","title":"Installation"},"515":{"body":"import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs';","breadcrumbs":"API Reference » Core Module","id":"515","title":"Core Module"},"516":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"516","title":"JacsAgent Class"},"517":{"body":"new JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"API Reference » Constructor","id":"517","title":"Constructor"},"518":{"body":"Load and initialize the agent from a configuration file. Parameters: configPath (string): Path to the JACS configuration file Returns: string - The loaded agent's JSON Example: const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconsole.log('Agent loaded:', JSON.parse(agentJson).jacsId);","breadcrumbs":"API Reference » agent.load(configPath)","id":"518","title":"agent.load(configPath)"},"519":{"body":"Create and sign a new JACS document. Parameters: documentString (string): JSON string of the document content customSchema (string, optional): Path to a custom JSON Schema for validation outputFilename (string, optional): Filename to save the document noSave (boolean, optional): If true, don't save to storage (default: false) attachments (string, optional): Path to file attachments embed (boolean, optional): If true, embed attachments in the document Returns: string - The signed document as a JSON string Example: // Basic document creation\nconst doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Hello, World!'\n})); // With custom schema\nconst validatedDoc = agent.createDocument( JSON.stringify({ title: 'Validated', amount: 100 }), './schemas/invoice.schema.json'\n); // Without saving\nconst tempDoc = agent.createDocument( JSON.stringify({ data: 'temporary' }), null, null, true // noSave = true\n); // With attachments\nconst docWithFile = agent.createDocument( JSON.stringify({ report: 'Monthly Report' }), null, null, false, './report.pdf', true // embed = true\n);","breadcrumbs":"API Reference » agent.createDocument(documentString, customSchema?, outputFilename?, noSave?, attachments?, embed?)","id":"519","title":"agent.createDocument(documentString, customSchema?, outputFilename?, noSave?, attachments?, embed?)"},"52":{"body":"Agreements enable multi-party consent and coordination between agents.","breadcrumbs":"Core Concepts » Agreements","id":"52","title":"Agreements"},"520":{"body":"Verify a document's signature and hash integrity. Parameters: documentString (string): The signed document JSON string Returns: boolean - True if the document is valid Example: const isValid = agent.verifyDocument(signedDocumentJson);\nif (isValid) { console.log('Document signature verified');\n} else { console.log('Document verification failed');\n}","breadcrumbs":"API Reference » agent.verifyDocument(documentString)","id":"520","title":"agent.verifyDocument(documentString)"},"521":{"body":"Verify a document's signature with an optional custom signature field. Parameters: documentString (string): The signed document JSON string signatureField (string, optional): Name of the signature field (default: 'jacsSignature') Returns: boolean - True if the signature is valid Example: // Verify default signature field\nconst isValid = agent.verifySignature(docJson); // Verify custom signature field\nconst isValidCustom = agent.verifySignature(docJson, 'customSignature');","breadcrumbs":"API Reference » agent.verifySignature(documentString, signatureField?)","id":"521","title":"agent.verifySignature(documentString, signatureField?)"},"522":{"body":"Update an existing document, creating a new version. Parameters: documentKey (string): The document key in format \"id:version\" newDocumentString (string): The modified document as JSON string attachments (Array, optional): Array of attachment file paths embed (boolean, optional): If true, embed attachments Returns: string - The updated document as a JSON string Example: // Parse existing document to get key\nconst doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; // Update the document\nconst updatedDoc = agent.updateDocument( documentKey, JSON.stringify({ ...doc, title: 'Updated Title', content: 'Modified content' })\n);","breadcrumbs":"API Reference » agent.updateDocument(documentKey, newDocumentString, attachments?, embed?)","id":"522","title":"agent.updateDocument(documentKey, newDocumentString, attachments?, embed?)"},"523":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: documentString (string): The document JSON string agentIds (Array): Array of agent IDs required to sign question (string, optional): The agreement question context (string, optional): Additional context for the agreement agreementFieldName (string, optional): Field name for the agreement (default: 'jacsAgreement') Returns: string - The document with agreement as a JSON string Example: const docWithAgreement = agent.createAgreement( signedDocumentJson, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], 'Do you agree to these terms?', 'Q1 2024 Service Agreement', 'jacsAgreement'\n);","breadcrumbs":"API Reference » agent.createAgreement(documentString, agentIds, question?, context?, agreementFieldName?)","id":"523","title":"agent.createAgreement(documentString, agentIds, question?, context?, agreementFieldName?)"},"524":{"body":"Sign an agreement as the current agent. Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name of the agreement (default: 'jacsAgreement') Returns: string - The document with this agent's signature added Example: const signedAgreement = agent.signAgreement( docWithAgreementJson, 'jacsAgreement'\n);","breadcrumbs":"API Reference » agent.signAgreement(documentString, agreementFieldName?)","id":"524","title":"agent.signAgreement(documentString, agreementFieldName?)"},"525":{"body":"Check the status of an agreement (which agents have signed). Parameters: documentString (string): The document with agreement JSON string agreementFieldName (string, optional): Field name of the agreement (default: 'jacsAgreement') Returns: string - JSON string with agreement status Example: const statusJson = agent.checkAgreement(signedAgreementJson);\nconst status = JSON.parse(statusJson); console.log('Required signers:', status.required);\nconsole.log('Signatures received:', status.signed);\nconsole.log('Complete:', status.complete);","breadcrumbs":"API Reference » agent.checkAgreement(documentString, agreementFieldName?)","id":"525","title":"agent.checkAgreement(documentString, agreementFieldName?)"},"526":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (string): The data to sign Returns: string - Base64-encoded signature Example: const signature = agent.signString('Important message');\nconsole.log('Signature:', signature);","breadcrumbs":"API Reference » agent.signString(data)","id":"526","title":"agent.signString(data)"},"527":{"body":"Verify a signature on arbitrary string data. Parameters: data (string): The original data signatureBase64 (string): The base64-encoded signature publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm (e.g., 'ring-Ed25519') Returns: boolean - True if the signature is valid Example: const isValid = agent.verifyString( 'Important message', signatureBase64, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"API Reference » agent.verifyString(data, signatureBase64, publicKey, publicKeyEncType)","id":"527","title":"agent.verifyString(data, signatureBase64, publicKey, publicKeyEncType)"},"528":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload object Returns: string - JACS-signed request as a JSON string Example: const signedRequest = agent.signRequest({ method: 'GET', path: '/api/data', timestamp: new Date().toISOString(), body: { query: 'value' }\n});","breadcrumbs":"API Reference » agent.signRequest(params)","id":"528","title":"agent.signRequest(params)"},"529":{"body":"Verify a JACS-signed response and extract the payload. Parameters: documentString (string): The JACS-signed response Returns: object - Object containing the verified payload Example: const result = agent.verifyResponse(jacsResponseString);\nconst payload = result.payload;\nconsole.log('Verified payload:', payload);","breadcrumbs":"API Reference » agent.verifyResponse(documentString)","id":"529","title":"agent.verifyResponse(documentString)"},"53":{"body":"{ \"jacsType\": \"agreement\", \"title\": \"Task Acceptance Agreement\", \"question\": \"Do you agree to complete the marketing copy task?\", \"context\": \"Task ID: abc123, Deadline: 2024-01-20\", \"agents\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"jacsAgreement\": { \"agent-1-uuid\": { \"agentID\": \"agent-1-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T10:30:00Z\" }, \"agent-2-uuid\": { \"agentID\": \"agent-2-uuid\", \"signature\": \"base64-signature\", \"date\": \"2024-01-15T11:15:00Z\" } // agent-3-uuid has not signed yet }, \"jacsAgreementHash\": \"hash-of-agreement-content\"\n}","breadcrumbs":"Core Concepts » Agreement Structure","id":"53","title":"Agreement Structure"},"530":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: documentString (string): The JACS-signed response Returns: object - Object with payload and agent ID Example: const result = agent.verifyResponseWithAgentId(jacsResponseString);\nconsole.log('Payload:', result.payload);\nconsole.log('Signed by agent:', result.agentId);","breadcrumbs":"API Reference » agent.verifyResponseWithAgentId(documentString)","id":"530","title":"agent.verifyResponseWithAgentId(documentString)"},"531":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agentFile (string, optional): Path to an agent file to verify Returns: boolean - True if the agent is valid Example: // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"API Reference » agent.verifyAgent(agentFile?)","id":"531","title":"agent.verifyAgent(agentFile?)"},"532":{"body":"Update the agent document with new data. Parameters: newAgentString (string): The modified agent document as JSON string Returns: string - The updated agent document Example: const currentAgent = JSON.parse(agent.load('./jacs.config.json'));\nconst updatedAgent = agent.updateAgent(JSON.stringify({ ...currentAgent, description: 'Updated description'\n}));","breadcrumbs":"API Reference » agent.updateAgent(newAgentString)","id":"532","title":"agent.updateAgent(newAgentString)"},"533":{"body":"Sign another agent's document with a registration signature. Parameters: agentString (string): The agent document to sign publicKey (Buffer): The public key as a Buffer publicKeyEncType (string): The key algorithm Returns: string - The signed agent document Example: const signedAgent = agent.signAgent( externalAgentJson, publicKeyBuffer, 'ring-Ed25519'\n);","breadcrumbs":"API Reference » agent.signAgent(agentString, publicKey, publicKeyEncType)","id":"533","title":"agent.signAgent(agentString, publicKey, publicKeyEncType)"},"534":{"body":"","breadcrumbs":"API Reference » Utility Functions","id":"534","title":"Utility Functions"},"535":{"body":"Hash a string using SHA-256. Parameters: data (string): The string to hash Returns: string - Hexadecimal hash string Example: import { hashString } from '@hai.ai/jacs'; const hash = hashString('data to hash');\nconsole.log('SHA-256:', hash);","breadcrumbs":"API Reference » hashString(data)","id":"535","title":"hashString(data)"},"536":{"body":"Create a JACS configuration JSON string programmatically. Parameters: jacsUseSecurity (string, optional): Enable security features jacsDataDirectory (string, optional): Directory for data storage jacsKeyDirectory (string, optional): Directory for key storage jacsAgentPrivateKeyFilename (string, optional): Private key filename jacsAgentPublicKeyFilename (string, optional): Public key filename jacsAgentKeyAlgorithm (string, optional): Signing algorithm jacsPrivateKeyPassword (string, optional): Password for private key jacsAgentIdAndVersion (string, optional): Agent ID and version to load jacsDefaultStorage (string, optional): Storage backend ('fs', 's3', 'memory') Returns: string - Configuration as JSON string Example: import { createConfig } from '@hai.ai/jacs'; const configJson = createConfig( undefined, // jacsUseSecurity './jacs_data', // jacsDataDirectory './jacs_keys', // jacsKeyDirectory undefined, // private key filename undefined, // public key filename 'ring-Ed25519', // algorithm undefined, // password undefined, // agent id 'fs' // storage\n); // Write to file\nfs.writeFileSync('jacs.config.json', configJson);","breadcrumbs":"API Reference » createConfig(options)","id":"536","title":"createConfig(options)"},"537":{"body":"import { JACSExpressMiddleware, JACSKoaMiddleware } from '@hai.ai/jacs/http';","breadcrumbs":"API Reference » HTTP Module","id":"537","title":"HTTP Module"},"538":{"body":"Express middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Express middleware function Example: import { JACSExpressMiddleware } from '@hai.ai/jacs/http'; app.use('/api', express.text({ type: '*/*' }));\napp.use('/api', JACSExpressMiddleware({ configPath: './jacs.config.json'\n})); app.post('/api/data', (req, res) => { // req.jacsPayload contains verified payload res.send({ received: req.jacsPayload });\n});","breadcrumbs":"API Reference » JACSExpressMiddleware(options)","id":"538","title":"JACSExpressMiddleware(options)"},"539":{"body":"Koa middleware for JACS request/response handling. Parameters: options.configPath (string): Path to JACS configuration file Returns: Koa middleware function Example: import { JACSKoaMiddleware } from '@hai.ai/jacs/http'; app.use(JACSKoaMiddleware({ configPath: './jacs.config.json'\n})); app.use(async (ctx) => { // ctx.state.jacsPayload contains verified payload ctx.body = { received: ctx.state.jacsPayload };\n});","breadcrumbs":"API Reference » JACSKoaMiddleware(options)","id":"539","title":"JACSKoaMiddleware(options)"},"54":{"body":"Creation : Initial agent creates agreement with required participants Distribution : Agreement sent to all required agents Review : Each agent reviews terms and conditions Signing : Agents add their signatures if they consent Completion : Agreement becomes binding when all parties have signed Verification : Any party can verify all signatures","breadcrumbs":"Core Concepts » Agreement Process","id":"54","title":"Agreement Process"},"540":{"body":"import { JACSTransportProxy, createJACSTransportProxy, createJACSTransportProxyAsync\n} from '@hai.ai/jacs/mcp';","breadcrumbs":"API Reference » MCP Module","id":"540","title":"MCP Module"},"541":{"body":"Class that wraps MCP transports with JACS encryption. Constructor: new JACSTransportProxy(transport, role, jacsConfigPath) Parameters: transport: Any MCP transport (Stdio, SSE, WebSocket) role (string): 'server' or 'client' jacsConfigPath (string): Path to JACS configuration file","breadcrumbs":"API Reference » JACSTransportProxy","id":"541","title":"JACSTransportProxy"},"542":{"body":"Factory function for creating a transport proxy. Parameters: transport: The underlying MCP transport configPath (string): Path to JACS configuration file role (string): 'server' or 'client' Returns: JACSTransportProxy instance Example: import { createJACSTransportProxy } from '@hai.ai/jacs/mcp';\nimport { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js'; const baseTransport = new StdioServerTransport();\nconst secureTransport = createJACSTransportProxy( baseTransport, './jacs.config.json', 'server'\n);","breadcrumbs":"API Reference » createJACSTransportProxy(transport, configPath, role)","id":"542","title":"createJACSTransportProxy(transport, configPath, role)"},"543":{"body":"Async factory that waits for JACS to be fully loaded. Parameters: Same as createJACSTransportProxy Returns: Promise Example: const secureTransport = await createJACSTransportProxyAsync( baseTransport, './jacs.config.json', 'server'\n);","breadcrumbs":"API Reference » createJACSTransportProxyAsync(transport, configPath, role)","id":"543","title":"createJACSTransportProxyAsync(transport, configPath, role)"},"544":{"body":"The package includes full TypeScript definitions. Import types as needed: import { JacsAgent, hashString, createConfig } from '@hai.ai/jacs'; const agent: JacsAgent = new JacsAgent();\nconst hash: string = hashString('data');\nconst config: string = createConfig( undefined, './data', './keys'\n);","breadcrumbs":"API Reference » TypeScript Support","id":"544","title":"TypeScript Support"},"545":{"body":"The following module-level functions are deprecated. Use new JacsAgent() and instance methods instead: load() - Use agent.load() signAgent() - Use agent.signAgent() verifyString() - Use agent.verifyString() signString() - Use agent.signString() verifyAgent() - Use agent.verifyAgent() updateAgent() - Use agent.updateAgent() verifyDocument() - Use agent.verifyDocument() updateDocument() - Use agent.updateDocument() verifySignature() - Use agent.verifySignature() createAgreement() - Use agent.createAgreement() signAgreement() - Use agent.signAgreement() createDocument() - Use agent.createDocument() checkAgreement() - Use agent.checkAgreement() signRequest() - Use agent.signRequest() verifyResponse() - Use agent.verifyResponse() verifyResponseWithAgentId() - Use agent.verifyResponseWithAgentId() Migration Example: // Old (deprecated)\nimport jacs from '@hai.ai/jacs';\nawait jacs.load('./jacs.config.json');\nconst doc = jacs.createDocument(JSON.stringify({ data: 'test' })); // New (recommended)\nimport { JacsAgent } from '@hai.ai/jacs';\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json');\nconst doc = agent.createDocument(JSON.stringify({ data: 'test' }));","breadcrumbs":"API Reference » Deprecated Functions","id":"545","title":"Deprecated Functions"},"546":{"body":"All methods may throw errors. Use try/catch for error handling: try { const agent = new JacsAgent(); agent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ data: 'test' }));\n} catch (error) { console.error('JACS error:', error.message);\n}","breadcrumbs":"API Reference » Error Handling","id":"546","title":"Error Handling"},"547":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol HTTP Server - HTTP integration Express Middleware - Express.js patterns","breadcrumbs":"API Reference » See Also","id":"547","title":"See Also"},"548":{"body":"The JACS Python package (jacs) provides Python bindings to the JACS Rust library, making it easy to integrate JACS into AI/ML workflows, data science projects, and Python applications.","breadcrumbs":"Installation » Python Installation","id":"548","title":"Python Installation"},"549":{"body":"Python : Version 3.10 or higher pip : For package management Operating System : Linux, macOS, or Windows with WSL Architecture : x86_64 or ARM64","breadcrumbs":"Installation » Requirements","id":"549","title":"Requirements"},"55":{"body":"Task Agreements : Consent to perform specific work Service Agreements : Long-term service provision contracts Data Sharing Agreements : Permission to access or use data Update Agreements : Consent to system or process changes","breadcrumbs":"Core Concepts » Agreement Types","id":"55","title":"Agreement Types"},"550":{"body":"","breadcrumbs":"Installation » Installation","id":"550","title":"Installation"},"551":{"body":"pip install jacs","breadcrumbs":"Installation » Using pip","id":"551","title":"Using pip"},"552":{"body":"conda install -c conda-forge jacs","breadcrumbs":"Installation » Using conda","id":"552","title":"Using conda"},"553":{"body":"poetry add jacs","breadcrumbs":"Installation » Using poetry","id":"553","title":"Using poetry"},"554":{"body":"# Clone the repository\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacspy # Create virtual environment\npython -m venv .venv\nsource .venv/bin/activate # On Windows: .venv\\Scripts\\activate # Install in development mode\npip install -e .","breadcrumbs":"Installation » Development Installation","id":"554","title":"Development Installation"},"555":{"body":"Create a simple test to verify everything is working: # test.py\nimport jacs print('JACS Python bindings loaded successfully!') # Test basic functionality\ntry: agent = jacs.JacsAgent() agent.load('./jacs.config.json') print('Agent loaded successfully!')\nexcept Exception as error: print(f'Error loading agent: {error}') Run the test: python test.py","breadcrumbs":"Installation » Verify Installation","id":"555","title":"Verify Installation"},"556":{"body":"The jacs package provides Python bindings to the JACS Rust library:","breadcrumbs":"Installation » Package Structure","id":"556","title":"Package Structure"},"557":{"body":"import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Utility functions\nhash_value = jacs.hash_string(\"data to hash\")\nconfig_json = jacs.create_config( jacs_data_directory=\"./data\", jacs_key_directory=\"./keys\", jacs_agent_key_algorithm=\"ring-Ed25519\"\n)","breadcrumbs":"Installation » Core Module","id":"557","title":"Core Module"},"558":{"body":"# Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration\nagent.load('./jacs.config.json') # Document operations\nsigned_doc = agent.create_document(json_string)\nis_valid = agent.verify_document(document_string) # Signing operations\nsignature = agent.sign_string(\"data to sign\")","breadcrumbs":"Installation » JacsAgent Methods","id":"558","title":"JacsAgent Methods"},"559":{"body":"","breadcrumbs":"Installation » Configuration","id":"559","title":"Configuration"},"56":{"body":"JACS uses industry-standard cryptographic primitives for security.","breadcrumbs":"Core Concepts » Cryptographic Security","id":"56","title":"Cryptographic Security"},"560":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Installation » Configuration File","id":"560","title":"Configuration File"},"561":{"body":"import jacs # Create agent and load configuration\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Installation » Load Configuration in Python","id":"561","title":"Load Configuration in Python"},"562":{"body":"import jacs # Create a configuration JSON string programmatically\nconfig_json = jacs.create_config( jacs_data_directory=\"./jacs_data\", jacs_key_directory=\"./jacs_keys\", jacs_agent_key_algorithm=\"ring-Ed25519\", jacs_default_storage=\"fs\"\n)","breadcrumbs":"Installation » Programmatic Configuration","id":"562","title":"Programmatic Configuration"},"563":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Installation » Environment Variables","id":"563","title":"Environment Variables"},"564":{"body":"Configure storage in jacs.config.json:","breadcrumbs":"Installation » Storage Backends","id":"564","title":"Storage Backends"},"565":{"body":"{ \"jacs_default_storage\": \"fs\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"Installation » File System (Default)","id":"565","title":"File System (Default)"},"566":{"body":"{ \"jacs_default_storage\": \"s3\"\n} S3 credentials are read from standard AWS environment variables.","breadcrumbs":"Installation » S3 Storage","id":"566","title":"S3 Storage"},"567":{"body":"{ \"jacs_default_storage\": \"memory\"\n}","breadcrumbs":"Installation » Memory Storage (Testing)","id":"567","title":"Memory Storage (Testing)"},"568":{"body":"","breadcrumbs":"Installation » Cryptographic Algorithms","id":"568","title":"Cryptographic Algorithms"},"569":{"body":"{ \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} Pros : Fast, secure, small signatures Cons : Requires elliptic curve support","breadcrumbs":"Installation » ring-Ed25519 (Recommended)","id":"569","title":"ring-Ed25519 (Recommended)"},"57":{"body":"Current Standards ring-Ed25519 : Fast elliptic curve signatures using the ring library (recommended) RSA-PSS : Traditional RSA with probabilistic signature scheme Post-Quantum pq-dilithium : NIST-standardized post-quantum signatures","breadcrumbs":"Core Concepts » Supported Algorithms","id":"57","title":"Supported Algorithms"},"570":{"body":"{ \"jacs_agent_key_algorithm\": \"RSA-PSS\"\n} Pros : Widely supported, proven security Cons : Larger signatures, slower","breadcrumbs":"Installation » RSA-PSS","id":"570","title":"RSA-PSS"},"571":{"body":"{ \"jacs_agent_key_algorithm\": \"pq-dilithium\"\n} Pros : Quantum-resistant Cons : Experimental, large signatures","breadcrumbs":"Installation » pq-dilithium (Post-Quantum)","id":"571","title":"pq-dilithium (Post-Quantum)"},"572":{"body":"{ \"jacs_agent_key_algorithm\": \"pq2025\"\n} Pros : Combines ML-DSA-87 with hybrid approach Cons : Newest algorithm, largest signatures","breadcrumbs":"Installation » pq2025 (Post-Quantum Hybrid)","id":"572","title":"pq2025 (Post-Quantum Hybrid)"},"573":{"body":"","breadcrumbs":"Installation » Development Setup","id":"573","title":"Development Setup"},"574":{"body":"my-jacs-project/\n├── requirements.txt\n├── jacs.config.json\n├── src/\n│ ├── agent.py\n│ ├── tasks.py\n│ └── agreements.py\n├── jacs_data/\n│ ├── agents/\n│ ├── tasks/\n│ └── documents/\n├── jacs_keys/\n│ ├── private.pem\n│ └── public.pem\n└── tests/ └── test_jacs.py","breadcrumbs":"Installation » Project Structure","id":"574","title":"Project Structure"},"575":{"body":"jacs>=0.1.0\nfastapi>=0.100.0 # For FastMCP integration\nuvicorn>=0.23.0 # For ASGI server\npydantic>=2.0.0 # For data validation","breadcrumbs":"Installation » Requirements.txt Setup","id":"575","title":"Requirements.txt Setup"},"576":{"body":"# src/app.py\nimport jacs\nimport json def main(): # Create and load agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a document document_data = { \"title\": \"My First Document\", \"content\": \"Hello from Python!\" } signed_doc = agent.create_document(json.dumps(document_data)) print('Document created') # Verify the document is_valid = agent.verify_document(signed_doc) print(f'Document valid: {is_valid}') print('JACS agent ready!') return agent if __name__ == \"__main__\": agent = main()","breadcrumbs":"Installation » Basic Application","id":"576","title":"Basic Application"},"577":{"body":"","breadcrumbs":"Installation » Virtual Environment Setup","id":"577","title":"Virtual Environment Setup"},"578":{"body":"# Create virtual environment\npython -m venv jacs-env # Activate (Linux/macOS)\nsource jacs-env/bin/activate # Activate (Windows)\njacs-env\\Scripts\\activate # Install JACS\npip install jacs","breadcrumbs":"Installation » Using venv","id":"578","title":"Using venv"},"579":{"body":"# Create conda environment\nconda create -n jacs-env python=3.11 # Activate environment\nconda activate jacs-env # Install JACS\npip install jacs","breadcrumbs":"Installation » Using conda","id":"579","title":"Using conda"},"58":{"body":"Content Extraction : Specific fields are extracted for signing Canonicalization : Fields are sorted and formatted consistently Hashing : SHA-256 hash of the canonical content Signing : Private key signs the hash Verification : Public key verifies the signature","breadcrumbs":"Core Concepts » Signature Process","id":"58","title":"Signature Process"},"580":{"body":"# Initialize poetry project\npoetry init # Add JACS dependency\npoetry add jacs # Install dependencies\npoetry install # Activate shell\npoetry shell","breadcrumbs":"Installation » Using poetry","id":"580","title":"Using poetry"},"581":{"body":"# Install Jupyter in your JACS environment\npip install jupyter # Start Jupyter\njupyter notebook # In your notebook\nimport jacs\nimport json # Create and load agent\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a simple document\ndoc = agent.create_document(json.dumps({ \"title\": \"Notebook Analysis\", \"data\": [1, 2, 3, 4, 5]\n})) print(\"Document created!\")\nprint(\"JACS ready for notebook use!\")","breadcrumbs":"Installation » Jupyter Notebook Setup","id":"581","title":"Jupyter Notebook Setup"},"582":{"body":"","breadcrumbs":"Installation » Common Issues","id":"582","title":"Common Issues"},"583":{"body":"If you get ModuleNotFoundError: No module named 'jacs': # Check Python version\npython --version # Should be 3.10+ # Check if jacs is installed\npip list | grep jacs # Reinstall if needed\npip uninstall jacs\npip install jacs","breadcrumbs":"Installation » Module Not Found","id":"583","title":"Module Not Found"},"584":{"body":"If you get permission errors accessing files: # Check directory permissions\nls -la jacs_data/ jacs_keys/ # Fix permissions\nchmod 755 jacs_data/ jacs_keys/\nchmod 600 jacs_keys/*.pem","breadcrumbs":"Installation » Permission Errors","id":"584","title":"Permission Errors"},"585":{"body":"If you get binary compatibility errors: # Update pip and reinstall\npip install --upgrade pip\npip uninstall jacs\npip install jacs --no-cache-dir","breadcrumbs":"Installation » Binary Compatibility","id":"585","title":"Binary Compatibility"},"586":{"body":"On Windows, you may need Visual C++ Build Tools: # Install Visual C++ Build Tools\n# Or use conda-forge\nconda install -c conda-forge jacs","breadcrumbs":"Installation » Windows Issues","id":"586","title":"Windows Issues"},"587":{"body":"JACS is built with Rust and PyO3, providing Python bindings: import jacs\nimport json # Create agent instance\nagent: jacs.JacsAgent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create and verify documents\nsigned_doc: str = agent.create_document(json.dumps({\"title\": \"Test\"}))\nis_valid: bool = agent.verify_document(signed_doc)","breadcrumbs":"Installation » Type Hints and IDE Support","id":"587","title":"Type Hints and IDE Support"},"588":{"body":"# tests/test_jacs.py\nimport unittest\nimport jacs\nimport json class TestJACS(unittest.TestCase): def setUp(self): # Requires a valid jacs.config.json file self.agent = jacs.JacsAgent() self.agent.load('./jacs.config.json') def test_document_creation(self): doc_data = {\"title\": \"Test Document\", \"content\": \"Test content\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) # Document should be a valid JSON string parsed = json.loads(signed_doc) self.assertIn(\"jacsId\", parsed) self.assertIn(\"jacsSignature\", parsed) def test_document_verification(self): doc_data = {\"title\": \"Verify Test\"} signed_doc = self.agent.create_document(json.dumps(doc_data)) is_valid = self.agent.verify_document(signed_doc) self.assertTrue(is_valid) def test_sign_string(self): signature = self.agent.sign_string(\"test data\") self.assertIsInstance(signature, str) self.assertTrue(len(signature) > 0) if __name__ == \"__main__\": unittest.main()","breadcrumbs":"Installation » Testing Setup","id":"588","title":"Testing Setup"},"589":{"body":"Now that you have JACS installed: Basic Usage - Learn core JACS operations MCP Integration - Add Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Installation » Next Steps","id":"589","title":"Next Steps"},"59":{"body":"Agent Keys : Each agent has a unique key pair Public Key Distribution : Public keys shared through secure channels Key Rotation : Agents can update keys while maintaining identity Key Verification : Public key hashes ensure integrity","breadcrumbs":"Core Concepts » Key Management","id":"59","title":"Key Management"},"590":{"body":"Check out the complete examples in the examples directory : Basic agent creation and task management Jupyter notebook workflows FastMCP server implementation AI/ML pipeline integration","breadcrumbs":"Installation » Examples","id":"590","title":"Examples"},"591":{"body":"The simplified API (jacs.simple) provides a streamlined, module-level interface for common JACS operations. It's designed to get you signing and verifying in under 2 minutes.","breadcrumbs":"Simplified API » Simplified API","id":"591","title":"Simplified API"},"592":{"body":"import jacs.simple as jacs # Load your agent\nagent = jacs.load(\"./jacs.config.json\") # Sign a message\nsigned = jacs.sign_message({\"action\": \"approve\", \"amount\": 100})\nprint(f\"Document ID: {signed.document_id}\") # Verify it\nresult = jacs.verify(signed.raw)\nprint(f\"Valid: {result.valid}\")","breadcrumbs":"Simplified API » Quick Start","id":"592","title":"Quick Start"},"593":{"body":"Simplified API JacsAgent Class Quick prototyping Multiple agents in one process Scripts and CLI tools Complex multi-document workflows MCP tool implementations Fine-grained control Single-agent applications Custom error handling","breadcrumbs":"Simplified API » When to Use the Simplified API","id":"593","title":"When to Use the Simplified API"},"594":{"body":"","breadcrumbs":"Simplified API » API Reference","id":"594","title":"API Reference"},"595":{"body":"Load an agent from a configuration file. This must be called before any other operations. Parameters: config_path (str, optional): Path to jacs.config.json (default: \"./jacs.config.json\") Returns: AgentInfo dataclass Raises: JacsError if config not found or invalid info = jacs.load(\"./jacs.config.json\")\nprint(f\"Agent ID: {info.agent_id}\")\nprint(f\"Config: {info.config_path}\")","breadcrumbs":"Simplified API » load(config_path=None)","id":"595","title":"load(config_path=None)"},"596":{"body":"Check if an agent is currently loaded. Returns: bool if not jacs.is_loaded(): jacs.load(\"./jacs.config.json\")","breadcrumbs":"Simplified API » is_loaded()","id":"596","title":"is_loaded()"},"597":{"body":"Get information about the currently loaded agent. Returns: AgentInfo or None if no agent is loaded info = jacs.get_agent_info()\nif info: print(f\"Agent: {info.agent_id}\")","breadcrumbs":"Simplified API » get_agent_info()","id":"597","title":"get_agent_info()"},"598":{"body":"Verify the loaded agent's own integrity (signature and hash). Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify_self()\nif result.valid: print(\"Agent integrity verified\")\nelse: print(f\"Errors: {result.errors}\")","breadcrumbs":"Simplified API » verify_self()","id":"598","title":"verify_self()"},"599":{"body":"Sign arbitrary data as a JACS document. Parameters: data (any): Dict, list, string, or any JSON-serializable value Returns: SignedDocument Raises: AgentNotLoadedError if no agent is loaded # Sign a dict\nsigned = jacs.sign_message({ \"action\": \"transfer\", \"amount\": 500, \"recipient\": \"agent-123\"\n}) print(f\"Document ID: {signed.document_id}\")\nprint(f\"Signed by: {signed.agent_id}\")\nprint(f\"Timestamp: {signed.timestamp}\")\nprint(f\"Raw JSON: {signed.raw}\")","breadcrumbs":"Simplified API » sign_message(data)","id":"599","title":"sign_message(data)"},"6":{"body":"AI/ML Integration : Ideal for AI and machine learning workflows MCP Support : Authenticated MCP server patterns PyPI Package : Simple pip install integration Data Science : Perfect for Jupyter notebooks and data pipelines","breadcrumbs":"Introduction » 🐍 Python (jacs)","id":"6","title":"🐍 Python (jacs)"},"60":{"body":"JACS provides comprehensive versioning for tracking document evolution.","breadcrumbs":"Core Concepts » Versioning and Audit Trails","id":"60","title":"Versioning and Audit Trails"},"600":{"body":"Sign a file with optional content embedding. Parameters: file_path (str): Path to the file to sign embed (bool, optional): If True, embed file content in the document (default: False) Returns: SignedDocument Raises: JacsError if file not found or no agent loaded # Reference only (stores hash)\nsigned = jacs.sign_file(\"contract.pdf\", embed=False) # Embed content (creates portable document)\nembedded = jacs.sign_file(\"contract.pdf\", embed=True)","breadcrumbs":"Simplified API » sign_file(file_path, embed=False)","id":"600","title":"sign_file(file_path, embed=False)"},"601":{"body":"Verify a signed document and extract its content. Parameters: signed_document (str): The JSON string of the signed document Returns: VerificationResult Raises: AgentNotLoadedError if no agent is loaded result = jacs.verify(signed_json) if result.valid: print(f\"Signed by: {result.signer_id}\") print(f\"Timestamp: {result.timestamp}\")\nelse: print(f\"Invalid: {', '.join(result.errors)}\")","breadcrumbs":"Simplified API » verify(signed_document)","id":"601","title":"verify(signed_document)"},"602":{"body":"Verify a signed document without loading an agent. Use when you only need to verify (e.g. a lightweight API). Parameters: document (str|dict), key_resolution (str), data_directory (str, optional), key_directory (str, optional) Returns: VerificationResult","breadcrumbs":"Simplified API » verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)","id":"602","title":"verify_standalone(document, key_resolution=\"local\", data_directory=None, key_directory=None)"},"603":{"body":"Run a read-only security audit and health checks. Returns a dict with risks, health_checks, summary, and overall_status. Does not require a loaded agent; does not modify state. See Security Model — Security Audit for full details and options. result = jacs.audit()\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\")","breadcrumbs":"Simplified API » audit(config_path=None, recent_n=None)","id":"603","title":"audit(config_path=None, recent_n=None)"},"604":{"body":"Update the agent document with new data and re-sign it. This function expects a complete agent document (not partial updates). Use export_agent() to get the current document, modify it, then pass it here. Parameters: new_agent_data (dict|str): Complete agent document as JSON string or dict Returns: str - The updated and re-signed agent document Raises: AgentNotLoadedError if no agent loaded, JacsError if validation fails import json # Get current agent document\nagent_doc = json.loads(jacs.export_agent()) # Modify fields\nagent_doc[\"jacsAgentType\"] = \"hybrid\"\nagent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"Jane\", \"contactLastName\": \"Doe\"}] # Update (creates new version, re-signs, re-hashes)\nupdated = jacs.update_agent(agent_doc)\nnew_doc = json.loads(updated) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\") Valid jacsAgentType values: \"human\", \"human-org\", \"hybrid\", \"ai\"","breadcrumbs":"Simplified API » update_agent(new_agent_data)","id":"604","title":"update_agent(new_agent_data)"},"605":{"body":"Update an existing document with new data and re-sign it. Note: The original document must have been saved to disk (created without no_save=True). Parameters: document_id (str): The document ID (jacsId) to update new_document_data (dict|str): Updated document as JSON string or dict attachments (list, optional): List of file paths to attach embed (bool, optional): If True, embed attachment contents Returns: SignedDocument with the updated document Raises: JacsError if document not found, no agent loaded, or validation fails import json # Create a document (must be saved to disk)\noriginal = jacs.sign_message({\"status\": \"pending\", \"amount\": 100}) # Later, update it\ndoc = json.loads(original.raw)\ndoc[\"content\"][\"status\"] = \"approved\" updated = jacs.update_document(original.document_id, doc)\nnew_doc = json.loads(updated.raw) print(f\"New version: {new_doc['jacsVersion']}\")\nprint(f\"Previous: {new_doc['jacsPreviousVersion']}\")","breadcrumbs":"Simplified API » update_document(document_id, new_document_data, attachments=None, embed=False)","id":"605","title":"update_document(document_id, new_document_data, attachments=None, embed=False)"},"606":{"body":"Export the current agent document for sharing or inspection. Returns: str - The agent JSON document Raises: AgentNotLoadedError if no agent loaded agent_doc = jacs.export_agent()\nprint(agent_doc) # Parse to inspect\nagent = json.loads(agent_doc)\nprint(f\"Agent type: {agent['jacsAgentType']}\")","breadcrumbs":"Simplified API » export_agent()","id":"606","title":"export_agent()"},"607":{"body":"Return the DNS TXT record line for the loaded agent (for DNS-based discovery). Format: _v1.agent.jacs.{domain}. TTL IN TXT \"v=hai.ai; ...\". Returns: str","breadcrumbs":"Simplified API » get_dns_record(domain, ttl=3600)","id":"607","title":"get_dns_record(domain, ttl=3600)"},"608":{"body":"Return the well-known JSON object for the loaded agent (e.g. for /.well-known/jacs-pubkey.json). Keys: publicKey, publicKeyHash, algorithm, agentId. Returns: dict","breadcrumbs":"Simplified API » get_well_known_json()","id":"608","title":"get_well_known_json()"},"609":{"body":"Get the loaded agent's public key in PEM format for sharing with others. Returns: str - PEM-encoded public key Raises: AgentNotLoadedError if no agent loaded pem = jacs.get_public_key()\nprint(pem)\n# -----BEGIN PUBLIC KEY-----\n# ...\n# -----END PUBLIC KEY-----","breadcrumbs":"Simplified API » get_public_key()","id":"609","title":"get_public_key()"},"61":{"body":"Immutable IDs : jacsId never changes for a document Version IDs : jacsVersion changes with each update Previous Versions : jacsPreviousVersion creates a chain Timestamps : jacsVersionDate provides chronological order","breadcrumbs":"Core Concepts » Version Management","id":"61","title":"Version Management"},"610":{"body":"All types are Python dataclasses for convenient access:","breadcrumbs":"Simplified API » Type Definitions","id":"610","title":"Type Definitions"},"611":{"body":"@dataclass\nclass AgentInfo: agent_id: str # Agent's UUID config_path: str # Path to loaded config public_key_path: Optional[str] = None # Path to public key file","breadcrumbs":"Simplified API » AgentInfo","id":"611","title":"AgentInfo"},"612":{"body":"@dataclass\nclass SignedDocument: raw: str # Full JSON document with signature document_id: str # Document's UUID (jacsId) agent_id: str # Signing agent's ID timestamp: str # ISO 8601 timestamp","breadcrumbs":"Simplified API » SignedDocument","id":"612","title":"SignedDocument"},"613":{"body":"@dataclass\nclass VerificationResult: valid: bool # True if signature verified signer_id: Optional[str] # Agent who signed timestamp: Optional[str] # When it was signed attachments: List[Attachment] # File attachments errors: List[str] # Error messages if invalid","breadcrumbs":"Simplified API » VerificationResult","id":"613","title":"VerificationResult"},"614":{"body":"@dataclass\nclass Attachment: filename: str # Original filename mime_type: str # MIME type hash: str # SHA-256 hash embedded: bool # True if content is embedded content: Optional[bytes] = None # Embedded content (if available)","breadcrumbs":"Simplified API » Attachment","id":"614","title":"Attachment"},"615":{"body":"class JacsError(Exception): \"\"\"Base exception for JACS errors.\"\"\" pass class AgentNotLoadedError(JacsError): \"\"\"Raised when an operation requires a loaded agent.\"\"\" pass","breadcrumbs":"Simplified API » Exceptions","id":"615","title":"Exceptions"},"616":{"body":"import json\nimport jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError # Load agent\nagent = jacs.load(\"./jacs.config.json\")\nprint(f\"Loaded agent: {agent.agent_id}\") # Verify agent integrity\nself_check = jacs.verify_self()\nif not self_check.valid: raise RuntimeError(\"Agent integrity check failed\") # Sign a transaction\ntransaction = { \"type\": \"payment\", \"from\": agent.agent_id, \"to\": \"recipient-agent-uuid\", \"amount\": 250.00, \"currency\": \"USD\", \"memo\": \"Q1 Service Payment\"\n} signed = jacs.sign_message(transaction)\nprint(f\"Transaction signed: {signed.document_id}\") # Verify the transaction (simulating recipient)\nverification = jacs.verify(signed.raw) if verification.valid: doc = json.loads(signed.raw) print(f\"Payment verified from: {verification.signer_id}\") print(f\"Amount: {doc['content']['amount']} {doc['content']['currency']}\")\nelse: print(f\"Verification failed: {', '.join(verification.errors)}\") # Sign a file\ncontract_signed = jacs.sign_file(\"./contract.pdf\", embed=True)\nprint(f\"Contract signed: {contract_signed.document_id}\") # Update agent metadata\nagent_doc = json.loads(jacs.export_agent())\nagent_doc[\"jacsAgentType\"] = \"ai\"\nif not agent_doc.get(\"jacsContacts\") or len(agent_doc[\"jacsContacts\"]) == 0: agent_doc[\"jacsContacts\"] = [{\"contactFirstName\": \"AI\", \"contactLastName\": \"Agent\"}]\nupdated_agent = jacs.update_agent(agent_doc)\nprint(\"Agent metadata updated\") # Share public key\npublic_key = jacs.get_public_key()\nprint(\"Share this public key for verification:\")\nprint(public_key)","breadcrumbs":"Simplified API » Complete Example","id":"616","title":"Complete Example"},"617":{"body":"The simplified API works well with FastMCP tool implementations: from fastmcp import FastMCP\nimport jacs.simple as jacs mcp = FastMCP(\"My Server\") # Load agent once at startup\njacs.load(\"./jacs.config.json\") @mcp.tool()\ndef approve_request(request_id: str) -> dict: \"\"\"Approve a request with cryptographic signature.\"\"\" signed = jacs.sign_message({ \"action\": \"approve\", \"request_id\": request_id, \"approved_by\": jacs.get_agent_info().agent_id }) return {\"signed_approval\": signed.raw} @mcp.tool()\ndef verify_approval(signed_json: str) -> dict: \"\"\"Verify a signed approval.\"\"\" result = jacs.verify(signed_json) return { \"valid\": result.valid, \"signer\": result.signer_id, \"errors\": result.errors }","breadcrumbs":"Simplified API » MCP Integration","id":"617","title":"MCP Integration"},"618":{"body":"import jacs.simple as jacs\nfrom jacs.types import JacsError, AgentNotLoadedError try: jacs.load(\"./missing-config.json\")\nexcept JacsError as e: print(f\"Config not found: {e}\") try: # Will fail if no agent loaded jacs.sign_message({\"data\": \"test\"})\nexcept AgentNotLoadedError as e: print(f\"No agent: {e}\") try: jacs.sign_file(\"/nonexistent/file.pdf\")\nexcept JacsError as e: print(f\"File not found: {e}\") # Verification doesn't throw - check result.valid\nresult = jacs.verify(\"invalid json\")\nif not result.valid: print(f\"Verification errors: {result.errors}\")","breadcrumbs":"Simplified API » Error Handling","id":"618","title":"Error Handling"},"619":{"body":"Basic Usage - JacsAgent class usage API Reference - Complete JacsAgent API MCP Integration - Model Context Protocol","breadcrumbs":"Simplified API » See Also","id":"619","title":"See Also"},"62":{"body":"Complete History : Track all changes to any document Attribution : Know exactly who made each change Verification : Cryptographic proof of authenticity Compliance : Meet regulatory audit requirements","breadcrumbs":"Core Concepts » Audit Trail Benefits","id":"62","title":"Audit Trail Benefits"},"620":{"body":"This chapter covers fundamental JACS operations in Python, including agent initialization, document creation, signing, and verification.","breadcrumbs":"Basic Usage » Basic Usage","id":"620","title":"Basic Usage"},"621":{"body":"","breadcrumbs":"Basic Usage » Initializing an Agent","id":"621","title":"Initializing an Agent"},"622":{"body":"import jacs # Create a new agent instance\nagent = jacs.JacsAgent() # Load configuration from file\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Create and Load Agent","id":"622","title":"Create and Load Agent"},"623":{"body":"Create jacs.config.json: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_id_and_version\": \"agent-uuid:version-uuid\"\n}","breadcrumbs":"Basic Usage » Configuration File","id":"623","title":"Configuration File"},"624":{"body":"","breadcrumbs":"Basic Usage » Creating Documents","id":"624","title":"Creating Documents"},"625":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a document from JSON\ndocument_data = { \"title\": \"Project Proposal\", \"content\": \"Quarterly development plan\", \"budget\": 50000\n} signed_document = agent.create_document(json.dumps(document_data))\nprint('Signed document:', signed_document)","breadcrumbs":"Basic Usage » Basic Document Creation","id":"625","title":"Basic Document Creation"},"626":{"body":"Validate against a custom JSON Schema: signed_document = agent.create_document( json.dumps(document_data), './schemas/proposal.schema.json' # custom schema path\n)","breadcrumbs":"Basic Usage » With Custom Schema","id":"626","title":"With Custom Schema"},"627":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema './output/proposal.json' # output filename\n)","breadcrumbs":"Basic Usage » With Output File","id":"627","title":"With Output File"},"628":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename True # no_save = True\n)","breadcrumbs":"Basic Usage » Without Saving","id":"628","title":"Without Saving"},"629":{"body":"signed_document = agent.create_document( json.dumps(document_data), None, # no custom schema None, # no output filename False, # save the document './attachments/report.pdf', # attachment path True # embed files\n)","breadcrumbs":"Basic Usage » With Attachments","id":"629","title":"With Attachments"},"63":{"body":"JACS documents are designed to be storage and transport agnostic.","breadcrumbs":"Core Concepts » Storage and Transport","id":"63","title":"Storage and Transport"},"630":{"body":"","breadcrumbs":"Basic Usage » Verifying Documents","id":"630","title":"Verifying Documents"},"631":{"body":"# Verify a document's signature and hash\nis_valid = agent.verify_document(signed_document_json)\nprint('Document valid:', is_valid)","breadcrumbs":"Basic Usage » Verify Document Signature","id":"631","title":"Verify Document Signature"},"632":{"body":"# Verify with a custom signature field\nis_valid = agent.verify_signature( signed_document_json, 'jacsSignature' # signature field name\n)","breadcrumbs":"Basic Usage » Verify Specific Signature Field","id":"632","title":"Verify Specific Signature Field"},"633":{"body":"","breadcrumbs":"Basic Usage » Updating Documents","id":"633","title":"Updating Documents"},"634":{"body":"# Original document key format: \"id:version\"\ndocument_key = 'doc-uuid:version-uuid' # Modified document content (must include jacsId and jacsVersion)\nupdated_data = { \"jacsId\": \"doc-uuid\", \"jacsVersion\": \"version-uuid\", \"title\": \"Updated Proposal\", \"content\": \"Revised quarterly plan\", \"budget\": 75000\n} updated_document = agent.update_document( document_key, json.dumps(updated_data)\n) print('Updated document:', updated_document)","breadcrumbs":"Basic Usage » Update Existing Document","id":"634","title":"Update Existing Document"},"635":{"body":"updated_document = agent.update_document( document_key, json.dumps(updated_data), ['./new-report.pdf'], # new attachments True # embed files\n)","breadcrumbs":"Basic Usage » Update with New Attachments","id":"635","title":"Update with New Attachments"},"636":{"body":"","breadcrumbs":"Basic Usage » Signing and Verification","id":"636","title":"Signing and Verification"},"637":{"body":"# Sign any string data\nsignature = agent.sign_string('Important message to sign')\nprint('Signature:', signature)","breadcrumbs":"Basic Usage » Sign Arbitrary Data","id":"637","title":"Sign Arbitrary Data"},"638":{"body":"# Verify a signature on string data\nis_valid = agent.verify_string( 'Important message to sign', # original data signature_base64, # base64 signature public_key_bytes, # public key as bytes 'ring-Ed25519' # algorithm\n)","breadcrumbs":"Basic Usage » Verify Arbitrary Data","id":"638","title":"Verify Arbitrary Data"},"639":{"body":"","breadcrumbs":"Basic Usage » Working with Agreements","id":"639","title":"Working with Agreements"},"64":{"body":"File System : Simple JSON files Databases : Store as JSON/JSONB fields Object Storage : S3, Azure Blob, Google Cloud Storage Version Control : Git repositories for change tracking","breadcrumbs":"Core Concepts » Storage Options","id":"64","title":"Storage Options"},"640":{"body":"# Add agreement requiring multiple agent signatures\ndocument_with_agreement = agent.create_agreement( signed_document_json, ['agent1-uuid', 'agent2-uuid'], # required signers 'Do you agree to these terms?', # question 'Q1 2024 service contract', # context 'jacsAgreement' # field name\n)","breadcrumbs":"Basic Usage » Create an Agreement","id":"640","title":"Create an Agreement"},"641":{"body":"# Sign the agreement as the current agent\nsigned_agreement = agent.sign_agreement( document_with_agreement_json, 'jacsAgreement' # agreement field name\n)","breadcrumbs":"Basic Usage » Sign an Agreement","id":"641","title":"Sign an Agreement"},"642":{"body":"# Check which agents have signed\nstatus = agent.check_agreement( document_with_agreement_json, 'jacsAgreement'\n) print('Agreement status:', json.loads(status))","breadcrumbs":"Basic Usage » Check Agreement Status","id":"642","title":"Check Agreement Status"},"643":{"body":"","breadcrumbs":"Basic Usage » Agent Operations","id":"643","title":"Agent Operations"},"644":{"body":"# Verify the loaded agent's signature\nis_valid = agent.verify_agent()\nprint('Agent valid:', is_valid) # Verify a specific agent file\nis_valid_other = agent.verify_agent('./other-agent.json')","breadcrumbs":"Basic Usage » Verify Agent","id":"644","title":"Verify Agent"},"645":{"body":"# Update agent document\nupdated_agent_json = agent.update_agent(json.dumps({ \"jacsId\": \"agent-uuid\", \"jacsVersion\": \"version-uuid\", \"name\": \"Updated Agent Name\", \"description\": \"Updated description\"\n}))","breadcrumbs":"Basic Usage » Update Agent","id":"645","title":"Update Agent"},"646":{"body":"# Sign another agent's document with registration signature\nsigned_agent_json = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"Basic Usage » Sign External Agent","id":"646","title":"Sign External Agent"},"647":{"body":"","breadcrumbs":"Basic Usage » Request/Response Signing","id":"647","title":"Request/Response Signing"},"648":{"body":"# Sign request parameters as a JACS document\nsigned_request = agent.sign_request({ \"method\": \"GET\", \"path\": \"/api/resource\", \"timestamp\": datetime.now().isoformat(), \"body\": {\"query\": \"data\"}\n})","breadcrumbs":"Basic Usage » Sign a Request","id":"648","title":"Sign a Request"},"649":{"body":"# Verify a signed response\nresult = agent.verify_response(signed_response_json)\nprint('Response valid:', result) # Verify and get signer's agent ID\nresult_with_id = agent.verify_response_with_agent_id(signed_response_json)\nprint('Signer ID:', result_with_id)","breadcrumbs":"Basic Usage » Verify a Response","id":"649","title":"Verify a Response"},"65":{"body":"HTTP APIs : RESTful or GraphQL endpoints Message Queues : RabbitMQ, Kafka, SQS Email : Documents as attachments Direct Transfer : USB drives, file sharing","breadcrumbs":"Core Concepts » Transport Mechanisms","id":"65","title":"Transport Mechanisms"},"650":{"body":"","breadcrumbs":"Basic Usage » Utility Functions","id":"650","title":"Utility Functions"},"651":{"body":"import jacs # SHA-256 hash of a string\nhash_value = jacs.hash_string('data to hash')\nprint('Hash:', hash_value)","breadcrumbs":"Basic Usage » Hash String","id":"651","title":"Hash String"},"652":{"body":"import jacs # Programmatically create a config JSON string\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) print('Config:', config_json)","breadcrumbs":"Basic Usage » Create Configuration","id":"652","title":"Create Configuration"},"653":{"body":"import jacs agent = jacs.JacsAgent() try: agent.load('./jacs.config.json')\nexcept Exception as error: print(f'Failed to load agent: {error}') try: doc = agent.create_document(json.dumps({'data': 'test'})) print('Document created')\nexcept Exception as error: print(f'Failed to create document: {error}') try: is_valid = agent.verify_document(invalid_json)\nexcept Exception as error: print(f'Verification failed: {error}')","breadcrumbs":"Basic Usage » Error Handling","id":"653","title":"Error Handling"},"654":{"body":"import jacs\nimport json def main(): # Initialize agent agent = jacs.JacsAgent() agent.load('./jacs.config.json') # Create a task document task = { \"title\": \"Code Review\", \"description\": \"Review pull request #123\", \"assignee\": \"developer-uuid\", \"deadline\": \"2024-02-01\" } signed_task = agent.create_document(json.dumps(task)) print('Task created') # Verify the task if agent.verify_document(signed_task): print('Task signature valid') # Create agreement for task acceptance task_with_agreement = agent.create_agreement( signed_task, ['manager-uuid', 'developer-uuid'], 'Do you accept this task assignment?' ) # Sign the agreement signed_agreement = agent.sign_agreement(task_with_agreement) print('Agreement signed') # Check agreement status status = agent.check_agreement(signed_agreement) print('Status:', status) # Hash some data for reference task_hash = jacs.hash_string(signed_task) print('Task hash:', task_hash) if __name__ == \"__main__\": main()","breadcrumbs":"Basic Usage » Complete Example","id":"654","title":"Complete Example"},"655":{"body":"","breadcrumbs":"Basic Usage » Working with Document Data","id":"655","title":"Working with Document Data"},"656":{"body":"import json # Create and sign a document\ndoc_data = {\"title\": \"My Document\", \"content\": \"Hello, World!\"}\nsigned_doc = agent.create_document(json.dumps(doc_data)) # Parse the signed document to access JACS fields\nparsed = json.loads(signed_doc)\nprint('Document ID:', parsed.get('jacsId'))\nprint('Document Version:', parsed.get('jacsVersion'))\nprint('Signature:', parsed.get('jacsSignature'))","breadcrumbs":"Basic Usage » Parse Signed Documents","id":"656","title":"Parse Signed Documents"},"657":{"body":"# Document keys combine ID and version\ndoc_id = parsed['jacsId']\ndoc_version = parsed['jacsVersion']\ndocument_key = f\"{doc_id}:{doc_version}\" # Use the key for updates\nupdated_doc = agent.update_document(document_key, json.dumps({ **parsed, \"content\": \"Updated content\"\n}))","breadcrumbs":"Basic Usage » Document Key Format","id":"657","title":"Document Key Format"},"658":{"body":"","breadcrumbs":"Basic Usage » Configuration Management","id":"658","title":"Configuration Management"},"659":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Load from File","id":"659","title":"Load from File"},"66":{"body":"JSON : Universal compatibility across all systems Schema Validation : Ensures consistent structure Self-Contained : All necessary information in the document Human Readable : Can be inspected and debugged easily","breadcrumbs":"Core Concepts » Format Compatibility","id":"66","title":"Format Compatibility"},"660":{"body":"JACS reads environment variables that override configuration file settings: export JACS_DATA_DIRECTORY=\"./production_data\"\nexport JACS_KEY_DIRECTORY=\"./production_keys\"\nexport JACS_AGENT_KEY_ALGORITHM=\"ring-Ed25519\"\nexport JACS_DEFAULT_STORAGE=\"fs\"","breadcrumbs":"Basic Usage » Environment Variables","id":"660","title":"Environment Variables"},"661":{"body":"import jacs\nimport json\nimport os # Create config programmatically\nconfig_json = jacs.create_config( jacs_data_directory='./jacs_data', jacs_key_directory='./jacs_keys', jacs_agent_key_algorithm='ring-Ed25519', jacs_default_storage='fs'\n) # Write to file\nwith open('jacs.config.json', 'w') as f: f.write(config_json) # Then load it\nagent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Basic Usage » Programmatic Configuration","id":"661","title":"Programmatic Configuration"},"662":{"body":"MCP Integration - Model Context Protocol support FastMCP Integration - Build advanced MCP servers API Reference - Complete API documentation","breadcrumbs":"Basic Usage » Next Steps","id":"662","title":"Next Steps"},"663":{"body":"JACS provides seamless integration with the Model Context Protocol (MCP), enabling cryptographically signed and verified communication between AI agents and MCP servers. This integration ensures that all tool calls, resource requests, and prompt interactions are authenticated and tamper-proof.","breadcrumbs":"MCP Integration » MCP Integration","id":"663","title":"MCP Integration"},"664":{"body":"JACS MCP integration provides: Cryptographic Authentication : All MCP messages are signed and verified FastMCP Support : Native integration with FastMCP servers HTTP & SSE Transports : Support for Server-Sent Events transport Transparent Security : Existing MCP code works with minimal changes","breadcrumbs":"MCP Integration » Overview","id":"664","title":"Overview"},"665":{"body":"","breadcrumbs":"MCP Integration » Quick Start","id":"665","title":"Quick Start"},"666":{"body":"import jacs\nimport os\nfrom pathlib import Path\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport uvicorn # Setup JACS configuration\ncurrent_dir = Path(__file__).parent.absolute()\njacs_config_path = current_dir / \"jacs.config.json\" # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(str(jacs_config_path)) # Create FastMCP server with JACS authentication\nmcp = JACSMCPServer(FastMCP(\"Authenticated Echo Server\")) @mcp.tool()\ndef echo_tool(text: str) -> str: \"\"\"Echo the input text with server prefix\"\"\" return f\"SERVER SAYS: {text}\" @mcp.resource(\"echo://static\")\ndef echo_resource() -> str: return \"Echo!\" @mcp.prompt(\"echo\")\ndef echo_prompt(text: str) -> str: return f\"Echo prompt: {text}\" # Get the ASGI app with JACS middleware\nsse_app_with_middleware = mcp.sse_app() if __name__ == \"__main__\": print(\"Starting JACS-enabled MCP server...\") uvicorn.run(sse_app_with_middleware, host=\"localhost\", port=8000)","breadcrumbs":"MCP Integration » Basic MCP Server with JACS","id":"666","title":"Basic MCP Server with JACS"},"667":{"body":"import asyncio\nimport os\nfrom pathlib import Path\nimport jacs\nfrom jacs.mcp import JACSMCPClient # Setup JACS configuration\ncurrent_dir = Path(__file__).parent.absolute()\njacs_config_path = current_dir / \"jacs.client.config.json\" # Initialize JACS agent\nagent = jacs.JacsAgent()\nagent.load(str(jacs_config_path)) async def main(): server_url = \"http://localhost:8000/sse\" try: client = JACSMCPClient(server_url) async with client: # Call authenticated tool result = await client.call_tool(\"echo_tool\", { \"text\": \"Hello from authenticated client!\" }) print(f\"Tool result: {result}\") # Read authenticated resource resource = await client.read_resource(\"echo://static\") print(f\"Resource: {resource}\") except Exception as e: print(f\"Error: {e}\") if __name__ == \"__main__\": asyncio.run(main())","breadcrumbs":"MCP Integration » Basic MCP Client with JACS","id":"667","title":"Basic MCP Client with JACS"},"668":{"body":"","breadcrumbs":"MCP Integration » How It Works","id":"668","title":"How It Works"},"669":{"body":"The JACSMCPServer wrapper adds JACS middleware to a FastMCP server: Incoming Requests : Intercepts JSON-RPC requests and verifies them using jacs.verify_request() Outgoing Responses : Signs JSON-RPC responses using jacs.sign_response() from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP # Create FastMCP server\nbase_server = FastMCP(\"My Server\") # Wrap with JACS authentication\nauthenticated_server = JACSMCPServer(base_server) # All decorators work normally\n@authenticated_server.tool()\ndef my_tool(data: str) -> str: return f\"Processed: {data}\" # Get ASGI app with JACS middleware\napp = authenticated_server.sse_app()","breadcrumbs":"MCP Integration » JACSMCPServer","id":"669","title":"JACSMCPServer"},"67":{"body":"Now that you understand the core concepts: Quick Start - Try JACS hands-on Choose Implementation : Rust CLI for command-line usage Node.js for web applications Python for AI/ML workflows Examples - See real-world usage patterns","breadcrumbs":"Core Concepts » Next Steps","id":"67","title":"Next Steps"},"670":{"body":"The JACSMCPClient wrapper adds interceptors to a FastMCP client: Outgoing Messages : Signs messages using jacs.sign_request() Incoming Messages : Verifies messages using jacs.verify_response() from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: result = await client.call_tool(\"my_tool\", {\"data\": \"test\"})","breadcrumbs":"MCP Integration » JACSMCPClient","id":"670","title":"JACSMCPClient"},"671":{"body":"","breadcrumbs":"MCP Integration » Configuration","id":"671","title":"Configuration"},"672":{"body":"Create a jacs.config.json file for your server and client: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"MCP Integration » JACS Configuration File","id":"672","title":"JACS Configuration File"},"673":{"body":"Before using MCP integration, initialize your JACS agent: import jacs # Create and load agent\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Agent is now ready for MCP operations","breadcrumbs":"MCP Integration » Initializing the Agent","id":"673","title":"Initializing the Agent"},"674":{"body":"","breadcrumbs":"MCP Integration » Integration Patterns","id":"674","title":"Integration Patterns"},"675":{"body":"from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nimport jacs # Initialize JACS\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Create and wrap server\nserver = FastMCP(\"My Server\")\nauthenticated_server = JACSMCPServer(server) @authenticated_server.tool()\ndef secure_tool(input_data: str) -> str: \"\"\"A tool that processes signed input\"\"\" return f\"Securely processed: {input_data}\" # Run server\nif __name__ == \"__main__\": import uvicorn app = authenticated_server.sse_app() uvicorn.run(app, host=\"localhost\", port=8000)","breadcrumbs":"MCP Integration » FastMCP with JACS Middleware","id":"675","title":"FastMCP with JACS Middleware"},"676":{"body":"For custom integrations, you can use the module-level functions directly: import jacs # Initialize agent first\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\") # Sign a request\nsigned_request = jacs.sign_request({ \"method\": \"tools/call\", \"params\": {\"name\": \"my_tool\", \"arguments\": {\"data\": \"test\"}}\n}) # Verify a response\nverified_response = jacs.verify_response(signed_response_string)\npayload = verified_response.get(\"payload\")","breadcrumbs":"MCP Integration » Manual Request/Response Signing","id":"676","title":"Manual Request/Response Signing"},"677":{"body":"","breadcrumbs":"MCP Integration » Error Handling","id":"677","title":"Error Handling"},"678":{"body":"import jacs\nfrom jacs.mcp import JACSMCPClient async def robust_mcp_client(): try: agent = jacs.JacsAgent() agent.load(\"./jacs.config.json\") client = JACSMCPClient(\"http://localhost:8000/sse\") async with client: result = await client.call_tool(\"my_tool\", {\"data\": \"test\"}) return result except FileNotFoundError as e: print(f\"Configuration file not found: {e}\") except ConnectionError as e: print(f\"MCP connection failed: {e}\") except Exception as e: print(f\"Unexpected error: {e}\")","breadcrumbs":"MCP Integration » Common Errors","id":"678","title":"Common Errors"},"679":{"body":"Enable logging to debug authentication issues: import logging # Enable detailed logging\nlogging.basicConfig(level=logging.DEBUG) # Your MCP code here...","breadcrumbs":"MCP Integration » Debugging","id":"679","title":"Debugging"},"68":{"body":"This guide will get you up and running with JACS in under 10 minutes. We'll create an agent, generate a task, and demonstrate the core workflow across all three implementations.","breadcrumbs":"Quick Start » Quick Start Guide","id":"68","title":"Quick Start Guide"},"680":{"body":"","breadcrumbs":"MCP Integration » Production Deployment","id":"680","title":"Production Deployment"},"681":{"body":"Key Management : Store private keys securely Environment Variables : Use environment variables for sensitive paths Network Security : Use TLS for network transport Key Rotation : Implement key rotation policies import os\nimport jacs # Production initialization\nconfig_path = os.getenv(\"JACS_CONFIG_PATH\", \"/etc/jacs/config.json\") agent = jacs.JacsAgent()\nagent.load(config_path)","breadcrumbs":"MCP Integration » Security Best Practices","id":"681","title":"Security Best Practices"},"682":{"body":"FROM python:3.11-slim WORKDIR /app # Install dependencies\nCOPY requirements.txt .\nRUN pip install -r requirements.txt # Copy application\nCOPY . . # Create secure key directory\nRUN mkdir -p /secure/keys && chmod 700 /secure/keys # Set environment variables\nENV JACS_CONFIG_PATH=/app/jacs.config.json # Run MCP server\nCMD [\"python\", \"mcp_server.py\"]","breadcrumbs":"MCP Integration » Docker Deployment","id":"682","title":"Docker Deployment"},"683":{"body":"","breadcrumbs":"MCP Integration » Testing","id":"683","title":"Testing"},"684":{"body":"import pytest\nimport jacs\nfrom jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP\nfrom fastmcp.client import Client\nfrom fastmcp.client.transports import FastMCPTransport @pytest.fixture\ndef jacs_agent(): agent = jacs.JacsAgent() agent.load(\"./test.config.json\") return agent @pytest.fixture\ndef jacs_mcp_server(jacs_agent): server = FastMCP(\"Test Server\") return JACSMCPServer(server) async def test_authenticated_tool(jacs_mcp_server): @jacs_mcp_server.tool() def echo(text: str) -> str: return f\"Echo: {text}\" # Test the tool directly result = echo(\"test\") assert \"test\" in result","breadcrumbs":"MCP Integration » Unit Testing MCP Tools","id":"684","title":"Unit Testing MCP Tools"},"685":{"body":"","breadcrumbs":"MCP Integration » API Reference","id":"685","title":"API Reference"},"686":{"body":"Wraps a FastMCP server with JACS authentication middleware. Parameters: mcp_server: A FastMCP server instance Returns: The wrapped server with JACS middleware Example: from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP server = FastMCP(\"My Server\")\nauthenticated = JACSMCPServer(server)\napp = authenticated.sse_app()","breadcrumbs":"MCP Integration » JACSMCPServer(mcp_server)","id":"686","title":"JACSMCPServer(mcp_server)"},"687":{"body":"Creates a FastMCP client with JACS authentication interceptors. Parameters: url: The MCP server SSE endpoint URL **kwargs: Additional arguments passed to the FastMCP Client Returns: A FastMCP Client with JACS interceptors Example: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\")\nasync with client: result = await client.call_tool(\"my_tool\", {\"arg\": \"value\"})","breadcrumbs":"MCP Integration » JACSMCPClient(url, **kwargs)","id":"687","title":"JACSMCPClient(url, **kwargs)"},"688":{"body":"These functions are used internally by the MCP integration: jacs.sign_request(data) - Sign a request payload jacs.verify_request(data) - Verify an incoming request jacs.sign_response(data) - Sign a response payload jacs.verify_response(data) - Verify an incoming response","breadcrumbs":"MCP Integration » Module Functions","id":"688","title":"Module Functions"},"689":{"body":"FastMCP Integration - Advanced FastMCP patterns API Reference - Complete API documentation Examples - More complex examples","breadcrumbs":"MCP Integration » Next Steps","id":"689","title":"Next Steps"},"69":{"body":"Select the implementation that best fits your needs: 🦀 Rust CLI","breadcrumbs":"Quick Start » Choose Your Implementation","id":"69","title":"Choose Your Implementation"},"690":{"body":"Complete API documentation for the jacs Python package.","breadcrumbs":"API Reference » API Reference","id":"690","title":"API Reference"},"691":{"body":"pip install jacs","breadcrumbs":"API Reference » Installation","id":"691","title":"Installation"},"692":{"body":"import jacs\nfrom jacs import JacsAgent","breadcrumbs":"API Reference » Core Module","id":"692","title":"Core Module"},"693":{"body":"The JacsAgent class is the primary interface for JACS operations. Each instance maintains its own state and can be used independently, allowing multiple agents in the same process.","breadcrumbs":"API Reference » JacsAgent Class","id":"693","title":"JacsAgent Class"},"694":{"body":"JacsAgent() Creates a new empty JacsAgent instance. Call load() to initialize with a configuration. Example: agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"API Reference » Constructor","id":"694","title":"Constructor"},"695":{"body":"Load and initialize the agent from a configuration file. Parameters: config_path (str): Path to the JACS configuration file Returns: str - The loaded agent's JSON Example: agent = jacs.JacsAgent()\nagent_json = agent.load('./jacs.config.json')\nprint('Agent loaded:', json.loads(agent_json)['jacsId'])","breadcrumbs":"API Reference » agent.load(config_path)","id":"695","title":"agent.load(config_path)"},"696":{"body":"Create and sign a new JACS document. Parameters: document_string (str): JSON string of the document content custom_schema (str, optional): Path to a custom JSON Schema for validation output_filename (str, optional): Filename to save the document no_save (bool, optional): If True, don't save to storage (default: False) attachments (str, optional): Path to file attachments embed (bool, optional): If True, embed attachments in the document Returns: str - The signed document as a JSON string Example: # Basic document creation\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Hello, World!'\n})) # With custom schema\nvalidated_doc = agent.create_document( json.dumps({'title': 'Validated', 'amount': 100}), custom_schema='./schemas/invoice.schema.json'\n) # Without saving\ntemp_doc = agent.create_document( json.dumps({'data': 'temporary'}), no_save=True\n) # With attachments\ndoc_with_file = agent.create_document( json.dumps({'report': 'Monthly Report'}), attachments='./report.pdf', embed=True\n)","breadcrumbs":"API Reference » agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)","id":"696","title":"agent.create_document(document_string, custom_schema=None, output_filename=None, no_save=False, attachments=None, embed=False)"},"697":{"body":"Verify a document's signature and hash integrity. Parameters: document_string (str): The signed document JSON string Returns: bool - True if the document is valid Example: is_valid = agent.verify_document(signed_document_json)\nif is_valid: print('Document signature verified')\nelse: print('Document verification failed')","breadcrumbs":"API Reference » agent.verify_document(document_string)","id":"697","title":"agent.verify_document(document_string)"},"698":{"body":"Verify a document's signature with an optional custom signature field. Parameters: document_string (str): The signed document JSON string signature_field (str, optional): Name of the signature field (default: 'jacsSignature') Returns: bool - True if the signature is valid Example: # Verify default signature field\nis_valid = agent.verify_signature(doc_json) # Verify custom signature field\nis_valid_custom = agent.verify_signature(doc_json, 'customSignature')","breadcrumbs":"API Reference » agent.verify_signature(document_string, signature_field=None)","id":"698","title":"agent.verify_signature(document_string, signature_field=None)"},"699":{"body":"Update an existing document, creating a new version. Parameters: document_key (str): The document key in format \"id:version\" new_document_string (str): The modified document as JSON string attachments (list, optional): List of attachment file paths embed (bool, optional): If True, embed attachments Returns: str - The updated document as a JSON string Example: # Parse existing document to get key\ndoc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" # Update the document\nupdated_doc = agent.update_document( document_key, json.dumps({ **doc, 'title': 'Updated Title', 'content': 'Modified content' })\n)","breadcrumbs":"API Reference » agent.update_document(document_key, new_document_string, attachments=None, embed=False)","id":"699","title":"agent.update_document(document_key, new_document_string, attachments=None, embed=False)"},"7":{"body":"Choose your implementation and get started in minutes:","breadcrumbs":"Introduction » Quick Start","id":"7","title":"Quick Start"},"70":{"body":"# Install from crates.io (--features cli is required for the binary)\ncargo install jacs --features cli\n# Upgrade to latest: cargo install jacs --features cli --force # Or build from source\ngit clone https://github.com/HumanAssisted/JACS\ncd JACS/jacs\ncargo install --path . --features cli","breadcrumbs":"Quick Start » Install Rust CLI","id":"70","title":"Install Rust CLI"},"700":{"body":"Add an agreement requiring multiple agent signatures to a document. Parameters: document_string (str): The document JSON string agent_ids (list): List of agent IDs required to sign question (str, optional): The agreement question context (str, optional): Additional context for the agreement agreement_field_name (str, optional): Field name for the agreement (default: 'jacsAgreement') Returns: str - The document with agreement as a JSON string Example: doc_with_agreement = agent.create_agreement( signed_document_json, ['agent-1-uuid', 'agent-2-uuid', 'agent-3-uuid'], question='Do you agree to these terms?', context='Q1 2024 Service Agreement', agreement_field_name='jacsAgreement'\n)","breadcrumbs":"API Reference » agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)","id":"700","title":"agent.create_agreement(document_string, agent_ids, question=None, context=None, agreement_field_name=None)"},"701":{"body":"Sign an agreement as the current agent. Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - The document with this agent's signature added Example: signed_agreement = agent.sign_agreement( doc_with_agreement_json, 'jacsAgreement'\n)","breadcrumbs":"API Reference » agent.sign_agreement(document_string, agreement_field_name=None)","id":"701","title":"agent.sign_agreement(document_string, agreement_field_name=None)"},"702":{"body":"Check the status of an agreement (which agents have signed). Parameters: document_string (str): The document with agreement JSON string agreement_field_name (str, optional): Field name of the agreement (default: 'jacsAgreement') Returns: str - JSON string with agreement status Example: status_json = agent.check_agreement(signed_agreement_json)\nstatus = json.loads(status_json) print('Required signers:', status['required'])\nprint('Signatures received:', status['signed'])\nprint('Complete:', status['complete'])","breadcrumbs":"API Reference » agent.check_agreement(document_string, agreement_field_name=None)","id":"702","title":"agent.check_agreement(document_string, agreement_field_name=None)"},"703":{"body":"Sign arbitrary string data with the agent's private key. Parameters: data (str): The data to sign Returns: str - Base64-encoded signature Example: signature = agent.sign_string('Important message')\nprint('Signature:', signature)","breadcrumbs":"API Reference » agent.sign_string(data)","id":"703","title":"agent.sign_string(data)"},"704":{"body":"Verify a signature on arbitrary string data. Parameters: data (str): The original data signature_base64 (str): The base64-encoded signature public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm (e.g., 'ring-Ed25519') Returns: bool - True if the signature is valid Example: is_valid = agent.verify_string( 'Important message', signature_base64, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.verify_string(data, signature_base64, public_key, public_key_enc_type)","id":"704","title":"agent.verify_string(data, signature_base64, public_key, public_key_enc_type)"},"705":{"body":"Sign a request payload, wrapping it in a JACS document. Parameters: params (any): The request payload (will be JSON serialized) Returns: str - JACS-signed request as a JSON string Example: signed_request = agent.sign_request({ 'method': 'GET', 'path': '/api/data', 'timestamp': datetime.now().isoformat(), 'body': {'query': 'value'}\n})","breadcrumbs":"API Reference » agent.sign_request(params)","id":"705","title":"agent.sign_request(params)"},"706":{"body":"Verify a JACS-signed response and extract the payload. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary containing the verified payload Example: result = agent.verify_response(jacs_response_string)\npayload = result.get('payload')\nprint('Verified payload:', payload)","breadcrumbs":"API Reference » agent.verify_response(document_string)","id":"706","title":"agent.verify_response(document_string)"},"707":{"body":"Verify a response and return both the payload and signer's agent ID. Parameters: document_string (str): The JACS-signed response Returns: dict - Dictionary with payload and agent ID Example: result = agent.verify_response_with_agent_id(jacs_response_string)\nprint('Payload:', result['payload'])\nprint('Signed by agent:', result['agentId'])","breadcrumbs":"API Reference » agent.verify_response_with_agent_id(document_string)","id":"707","title":"agent.verify_response_with_agent_id(document_string)"},"708":{"body":"Verify the agent's own signature and hash, or verify another agent file. Parameters: agent_file (str, optional): Path to an agent file to verify Returns: bool - True if the agent is valid Example: # Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_other_valid = agent.verify_agent('./other-agent.json')","breadcrumbs":"API Reference » agent.verify_agent(agent_file=None)","id":"708","title":"agent.verify_agent(agent_file=None)"},"709":{"body":"Update the agent document with new data. Parameters: new_agent_string (str): The modified agent document as JSON string Returns: str - The updated agent document Example: current_agent = json.loads(agent.load('./jacs.config.json'))\nupdated_agent = agent.update_agent(json.dumps({ **current_agent, 'description': 'Updated description'\n}))","breadcrumbs":"API Reference » agent.update_agent(new_agent_string)","id":"709","title":"agent.update_agent(new_agent_string)"},"71":{"body":"# Create configuration and agent in one step\njacs init # This creates:\n# - ~/.jacs/config.json\n# - Agent keys and documents\n# - Basic directory structure","breadcrumbs":"Quick Start » Initialize JACS","id":"71","title":"Initialize JACS"},"710":{"body":"Sign another agent's document with a registration signature. Parameters: agent_string (str): The agent document to sign public_key (bytes): The public key as bytes public_key_enc_type (str): The key algorithm Returns: str - The signed agent document Example: signed_agent = agent.sign_agent( external_agent_json, public_key_bytes, 'ring-Ed25519'\n)","breadcrumbs":"API Reference » agent.sign_agent(agent_string, public_key, public_key_enc_type)","id":"710","title":"agent.sign_agent(agent_string, public_key, public_key_enc_type)"},"711":{"body":"These functions operate on a global agent singleton and are maintained for backwards compatibility. New code should use the JacsAgent class instead.","breadcrumbs":"API Reference » Module-Level Functions","id":"711","title":"Module-Level Functions"},"712":{"body":"Load the global agent from a configuration file. import jacs\njacs.load('./jacs.config.json')","breadcrumbs":"API Reference » jacs.load(config_path)","id":"712","title":"jacs.load(config_path)"},"713":{"body":"Sign a request using the global agent. signed = jacs.sign_request({'method': 'tools/call', 'params': {...}})","breadcrumbs":"API Reference » jacs.sign_request(data)","id":"713","title":"jacs.sign_request(data)"},"714":{"body":"Verify an incoming request using the global agent. payload = jacs.verify_request(incoming_request_string)","breadcrumbs":"API Reference » jacs.verify_request(data)","id":"714","title":"jacs.verify_request(data)"},"715":{"body":"Sign a response using the global agent. signed = jacs.sign_response({'result': 'success'})","breadcrumbs":"API Reference » jacs.sign_response(data)","id":"715","title":"jacs.sign_response(data)"},"716":{"body":"Verify an incoming response using the global agent. result = jacs.verify_response(response_string)\npayload = result.get('payload')","breadcrumbs":"API Reference » jacs.verify_response(data)","id":"716","title":"jacs.verify_response(data)"},"717":{"body":"from jacs.mcp import JACSMCPServer, JACSMCPClient","breadcrumbs":"API Reference » MCP Module","id":"717","title":"MCP Module"},"718":{"body":"Wraps a FastMCP server with JACS authentication middleware. Parameters: mcp_server: A FastMCP server instance Returns: The wrapped server with JACS middleware Example: from jacs.mcp import JACSMCPServer\nfrom fastmcp import FastMCP server = FastMCP(\"My Server\")\nauthenticated = JACSMCPServer(server)\napp = authenticated.sse_app()","breadcrumbs":"API Reference » JACSMCPServer(mcp_server)","id":"718","title":"JACSMCPServer(mcp_server)"},"719":{"body":"Creates a FastMCP client with JACS authentication interceptors. Parameters: url: The MCP server SSE endpoint URL **kwargs: Additional arguments passed to the FastMCP Client Returns: A FastMCP Client with JACS interceptors Example: from jacs.mcp import JACSMCPClient client = JACSMCPClient(\"http://localhost:8000/sse\")\nasync with client: result = await client.call_tool(\"my_tool\", {\"arg\": \"value\"})","breadcrumbs":"API Reference » JACSMCPClient(url, **kwargs)","id":"719","title":"JACSMCPClient(url, **kwargs)"},"72":{"body":"# Create an agent (if not done via jacs init)\n# Agent type is defined in the input JSON file or default template\njacs agent create --create-keys true # Or provide a custom agent definition file\njacs agent create --create-keys true -f my-agent.json # Verify your agent was created correctly\njacs agent verify","breadcrumbs":"Quick Start » Create Your First Agent","id":"72","title":"Create Your First Agent"},"720":{"body":"","breadcrumbs":"API Reference » Configuration","id":"720","title":"Configuration"},"721":{"body":"Create a jacs.config.json file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_agent_id_and_version\": \"your-agent-id:version\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_default_storage\": \"fs\", \"jacs_key_directory\": \"./jacs_keys\"\n}","breadcrumbs":"API Reference » Configuration File Format","id":"721","title":"Configuration File Format"},"722":{"body":"Field Type Description jacs_agent_id_and_version string Agent ID and version in format \"id:version\" jacs_agent_key_algorithm string Signing algorithm: \"ring-Ed25519\", \"RSA-PSS\", \"pq-dilithium\", \"pq2025\" jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_data_directory string Directory for data storage jacs_key_directory string Directory for key storage jacs_default_storage string Storage backend: \"fs\", \"s3\", \"memory\"","breadcrumbs":"API Reference » Configuration Options","id":"722","title":"Configuration Options"},"723":{"body":"All methods may raise exceptions. Use try/except for error handling: try: agent = jacs.JacsAgent() agent.load('./jacs.config.json') doc = agent.create_document(json.dumps({'data': 'test'}))\nexcept FileNotFoundError as e: print(f'Configuration file not found: {e}')\nexcept ValueError as e: print(f'Invalid configuration: {e}')\nexcept Exception as e: print(f'JACS error: {e}')","breadcrumbs":"API Reference » Error Handling","id":"723","title":"Error Handling"},"724":{"body":"Exception Description FileNotFoundError Configuration file or key file not found ValueError Invalid configuration or document format RuntimeError Agent not loaded or cryptographic operation failed","breadcrumbs":"API Reference » Common Exceptions","id":"724","title":"Common Exceptions"},"725":{"body":"The package supports type hints for better IDE integration: from jacs import JacsAgent\nimport json def process_document(agent: JacsAgent, data: dict) -> str: \"\"\"Create and return a signed document.\"\"\" doc_string = json.dumps(data) return agent.create_document(doc_string) def verify_and_extract(agent: JacsAgent, doc: str) -> dict: \"\"\"Verify document and extract content.\"\"\" if agent.verify_document(doc): return json.loads(doc) raise ValueError(\"Document verification failed\")","breadcrumbs":"API Reference » Type Hints","id":"725","title":"Type Hints"},"726":{"body":"JacsAgent instances use internal locking and are thread-safe. You can safely use the same agent instance across multiple threads: import threading\nfrom jacs import JacsAgent agent = JacsAgent()\nagent.load('./jacs.config.json') def worker(data): # Safe to call from multiple threads doc = agent.create_document(json.dumps(data)) return doc threads = [ threading.Thread(target=worker, args=({'id': i},)) for i in range(10)\n]\nfor t in threads: t.start()\nfor t in threads: t.join()","breadcrumbs":"API Reference » Thread Safety","id":"726","title":"Thread Safety"},"727":{"body":"Installation - Getting started Basic Usage - Common usage patterns MCP Integration - Model Context Protocol Examples - More complex examples","breadcrumbs":"API Reference » See Also","id":"727","title":"See Also"},"728":{"body":"JACS uses JSON Schema (Draft-07) to define the structure and validation rules for all documents in the system. These schemas ensure consistency, enable validation, and provide a contract for interoperability between agents.","breadcrumbs":"JSON Schemas » JSON Schemas","id":"728","title":"JSON Schemas"},"729":{"body":"JACS schemas follow a hierarchical composition pattern: ┌─────────────────────────────────────────────────────────┐\n│ Document Schemas │\n│ (agent.schema.json, task.schema.json, message.schema.json) │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Header Schema │\n│ (header.schema.json) │\n│ Base fields: jacsId, jacsVersion, jacsSignature, etc. │\n└─────────────────────────────────────────────────────────┘ │ ▼\n┌─────────────────────────────────────────────────────────┐\n│ Component Schemas │\n│ signature.schema.json, agreement.schema.json, │\n│ files.schema.json, embedding.schema.json, etc. │\n└─────────────────────────────────────────────────────────┘","breadcrumbs":"JSON Schemas » Schema Architecture","id":"729","title":"Schema Architecture"},"73":{"body":"# Create a task document with name and description\njacs task create \\ -n \"Write Product Description\" \\ -d \"Create compelling copy for new product launch\" # The task is automatically signed by your agent 🟢 Node.js","breadcrumbs":"Quick Start » Create and Sign a Task","id":"73","title":"Create and Sign a Task"},"730":{"body":"","breadcrumbs":"JSON Schemas » Schema Categories","id":"730","title":"Schema Categories"},"731":{"body":"Schema Purpose jacs.config.schema.json Agent configuration file format","breadcrumbs":"JSON Schemas » Configuration Schema","id":"731","title":"Configuration Schema"},"732":{"body":"Schema Purpose header/v1/header.schema.json Base fields for all JACS documents agent/v1/agent.schema.json Agent identity and capabilities task/v1/task.schema.json Task workflow and state management message/v1/message.schema.json Inter-agent messages node/v1/node.schema.json Graph node representation program/v1/program.schema.json Executable program definitions eval/v1/eval.schema.json Evaluation and assessment records agentstate/v1/agentstate.schema.json Signed agent state files (memory, skills, plans, configs, hooks, other) commitment/v1/commitment.schema.json Shared, signed agreements between agents todo/v1/todo.schema.json Private, signed todo lists with inline items","breadcrumbs":"JSON Schemas » Document Schemas","id":"732","title":"Document Schemas"},"733":{"body":"Schema Purpose signature/v1/signature.schema.json Cryptographic signatures agreement/v1/agreement.schema.json Multi-party agreements files/v1/files.schema.json File attachments embedding/v1/embedding.schema.json Vector embeddings contact/v1/contact.schema.json Contact information service/v1/service.schema.json Service definitions tool/v1/tool.schema.json Tool capabilities action/v1/action.schema.json Action definitions unit/v1/unit.schema.json Unit of measurement todoitem/v1/todoitem.schema.json Inline todo item (goal or task)","breadcrumbs":"JSON Schemas » Component Schemas","id":"733","title":"Component Schemas"},"734":{"body":"Schemas are available at: HTTPS URLs : https://hai.ai/schemas/... Local files : jacs/schemas/... Example schema URLs: https://hai.ai/schemas/jacs.config.schema.json\nhttps://hai.ai/schemas/header/v1/header.schema.json\nhttps://hai.ai/schemas/agent/v1/agent.schema.json\nhttps://hai.ai/schemas/components/signature/v1/signature.schema.json","breadcrumbs":"JSON Schemas » Schema Locations","id":"734","title":"Schema Locations"},"735":{"body":"","breadcrumbs":"JSON Schemas » Using Schemas","id":"735","title":"Using Schemas"},"736":{"body":"Every JACS document must include a $schema field: { \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsType\": \"agent\", ...\n}","breadcrumbs":"JSON Schemas » In Documents","id":"736","title":"In Documents"},"737":{"body":"Reference the config schema for IDE support: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", ...\n}","breadcrumbs":"JSON Schemas » In Configuration Files","id":"737","title":"In Configuration Files"},"738":{"body":"Validate documents against custom schemas: import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create document with custom schema\ndoc = agent.create_document( json.dumps({'invoice_id': 'INV-001', 'amount': 100.00}), custom_schema='./schemas/invoice.schema.json'\n) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); // Create document with custom schema\nconst doc = agent.createDocument( JSON.stringify({ invoice_id: 'INV-001', amount: 100.00 }), './schemas/invoice.schema.json'\n);","breadcrumbs":"JSON Schemas » Custom Schema Validation","id":"738","title":"Custom Schema Validation"},"739":{"body":"JACS schemas include a custom hai property that categorizes fields: Value Description meta Metadata fields (IDs, dates, versions) base Core cryptographic fields (hashes, signatures) agent Agent-controlled content fields This categorization helps determine which fields should be included in hash calculations and signature operations.","breadcrumbs":"JSON Schemas » HAI Extensions","id":"739","title":"HAI Extensions"},"74":{"body":"npm install @hai.ai/jacs","breadcrumbs":"Quick Start » Install Node.js Package","id":"74","title":"Install Node.js Package"},"740":{"body":"Schemas are versioned using directory paths: schemas/\n├── header/\n│ └── v1/\n│ └── header.schema.json\n├── agent/\n│ └── v1/\n│ └── agent.schema.json\n└── components/ └── signature/ └── v1/ └── signature.schema.json Configuration options allow specifying schema versions: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"JSON Schemas » Versioning","id":"740","title":"Versioning"},"741":{"body":"Document schemas use JSON Schema's allOf to compose the header with type-specific fields: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"jacsAgentType\": { ... }, \"jacsServices\": { ... } } } ]\n} This ensures all documents share common header fields while allowing type-specific extensions.","breadcrumbs":"JSON Schemas » Schema Composition","id":"741","title":"Schema Composition"},"742":{"body":"Create custom schemas that extend JACS schemas: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://example.com/schemas/invoice.schema.json\", \"title\": \"Invoice\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { \"invoiceNumber\": { \"type\": \"string\", \"description\": \"Unique invoice identifier\" }, \"amount\": { \"type\": \"number\", \"minimum\": 0, \"description\": \"Invoice amount\" }, \"currency\": { \"type\": \"string\", \"enum\": [\"USD\", \"EUR\", \"GBP\"], \"default\": \"USD\" }, \"lineItems\": { \"type\": \"array\", \"items\": { \"type\": \"object\", \"properties\": { \"description\": { \"type\": \"string\" }, \"quantity\": { \"type\": \"integer\", \"minimum\": 1 }, \"unitPrice\": { \"type\": \"number\", \"minimum\": 0 } }, \"required\": [\"description\", \"quantity\", \"unitPrice\"] } } }, \"required\": [\"invoiceNumber\", \"amount\"] } ]\n}","breadcrumbs":"JSON Schemas » Creating Custom Schemas","id":"742","title":"Creating Custom Schemas"},"743":{"body":"","breadcrumbs":"JSON Schemas » Validation Rules","id":"743","title":"Validation Rules"},"744":{"body":"All JACS documents require these header fields: jacsId - Unique document identifier (UUID v4) jacsType - Document type identifier jacsVersion - Version identifier (UUID v4) jacsVersionDate - Version timestamp (ISO 8601) jacsOriginalVersion - First version identifier jacsOriginalDate - Creation timestamp jacsLevel - Document level (raw, config, artifact, derived) $schema - Schema reference URL","breadcrumbs":"JSON Schemas » Required Fields","id":"744","title":"Required Fields"},"745":{"body":"Fields use JSON Schema format keywords: uuid - UUID v4 format date-time - ISO 8601 date-time format uri - Valid URI format","breadcrumbs":"JSON Schemas » Format Validation","id":"745","title":"Format Validation"},"746":{"body":"Many fields have enumerated valid values: { \"jacsLevel\": { \"enum\": [\"raw\", \"config\", \"artifact\", \"derived\"] }, \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }, \"jacs_agent_key_algorithm\": { \"enum\": [\"RSA-PSS\", \"ring-Ed25519\", \"pq-dilithium\", \"pq2025\"] }\n}","breadcrumbs":"JSON Schemas » Enum Constraints","id":"746","title":"Enum Constraints"},"747":{"body":"For detailed documentation on specific schemas: Agent Schema - Agent identity and capabilities Document Schema - Document header and structure Task Schema - Task workflow management Agent State Schema - Signed agent state documents Commitment Schema - Shared agreements between agents Todo List Schema - Private task tracking with inline items Conversation Schema - Message threading and ordering Configuration - Configuration file format","breadcrumbs":"JSON Schemas » Schema Reference","id":"747","title":"Schema Reference"},"748":{"body":"Custom Schemas - Creating custom document types Security Model - How schemas relate to security API Reference - Using schemas in code","breadcrumbs":"JSON Schemas » See Also","id":"748","title":"See Also"},"749":{"body":"The Agent Schema defines the structure for agent identity documents in JACS. Agents represent entities that can sign documents, participate in agreements, and provide services.","breadcrumbs":"Agent Schema » Agent Schema","id":"749","title":"Agent Schema"},"75":{"body":"import { JacsAgent, createConfig } from '@hai.ai/jacs';\nimport fs from 'fs'; // Create configuration\nconst config = { jacs_agent_id_and_version: null, jacs_data_directory: \"./jacs_data\", jacs_key_directory: \"./jacs_keys\", jacs_default_storage: \"fs\", jacs_agent_key_algorithm: \"ring-Ed25519\"\n}; // Save config\nfs.writeFileSync('./jacs.config.json', JSON.stringify(config, null, 2)); // Create agent instance and load configuration\nconst agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Quick Start » Basic Setup","id":"75","title":"Basic Setup"},"750":{"body":"https://hai.ai/schemas/agent/v1/agent.schema.json","breadcrumbs":"Agent Schema » Schema Location","id":"750","title":"Schema Location"},"751":{"body":"Agent documents describe: Identity : Unique identifiers and versioning Type : Human, organizational, hybrid, or AI classification Services : Capabilities the agent offers Contacts : How to reach human or hybrid agents Domain : Optional DNS-based verification","breadcrumbs":"Agent Schema » Overview","id":"751","title":"Overview"},"752":{"body":"The agent schema extends the Header Schema using JSON Schema composition: { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"title\": \"Agent\", \"description\": \"General schema for human, hybrid, and AI agents\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Agent Schema » Schema Structure","id":"752","title":"Schema Structure"},"753":{"body":"The jacsAgentType field classifies the agent: Type Description human A biological entity (individual person) human-org A group of people (organization, company) hybrid Combination of human and AI components ai Fully artificial intelligence { \"jacsAgentType\": { \"type\": \"string\", \"enum\": [\"human\", \"human-org\", \"hybrid\", \"ai\"] }\n}","breadcrumbs":"Agent Schema » Agent Types","id":"753","title":"Agent Types"},"754":{"body":"Human and hybrid agents must provide contact information: { \"if\": { \"properties\": { \"jacsAgentType\": { \"enum\": [\"human\", \"human-org\", \"hybrid\"] } } }, \"then\": { \"required\": [\"jacsContacts\"] }\n}","breadcrumbs":"Agent Schema » Contact Requirements","id":"754","title":"Contact Requirements"},"755":{"body":"","breadcrumbs":"Agent Schema » Agent Properties","id":"755","title":"Agent Properties"},"756":{"body":"All agents inherit these header fields: Field Type Required Description jacsId string (UUID) Yes Unique agent identifier jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version timestamp jacsType string Yes Set to \"agent\" jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Creation timestamp jacsLevel string Yes Document level jacsSignature object No Cryptographic signature jacsSha256 string No Content hash","breadcrumbs":"Agent Schema » Core Fields (from Header)","id":"756","title":"Core Fields (from Header)"},"757":{"body":"Field Type Required Description jacsAgentType string Yes Agent classification jacsAgentDomain string No Domain for DNS verification jacsServices array Yes Services the agent provides jacsContacts array Conditional Contact information (required for human/hybrid)","breadcrumbs":"Agent Schema » Agent-Specific Fields","id":"757","title":"Agent-Specific Fields"},"758":{"body":"Services describe capabilities the agent offers: { \"jacsServices\": [{ \"name\": \"Document Signing Service\", \"serviceDescription\": \"Sign and verify JACS documents\", \"successDescription\": \"Documents are signed with valid signatures\", \"failureDescription\": \"Invalid documents or signing errors\", \"costDescription\": \"Free for basic usage, paid tiers available\", \"idealCustomerDescription\": \"Developers building secure agent systems\", \"termsOfService\": \"https://example.com/tos\", \"privacyPolicy\": \"https://example.com/privacy\", \"isDev\": false, \"tools\": [...] }]\n}","breadcrumbs":"Agent Schema » Services","id":"758","title":"Services"},"759":{"body":"Field Type Required Description name string No Service name serviceDescription string Yes What the service does successDescription string Yes What success looks like failureDescription string Yes What failure looks like costDescription string No Pricing information idealCustomerDescription string No Target customer profile termsOfService string No Legal terms URL or text privacyPolicy string No Privacy policy URL or text copyright string No Usage rights for provided data eula string No End-user license agreement isDev boolean No Whether this is a dev/test service tools array No Tool definitions piiDesired array No Types of sensitive data needed","breadcrumbs":"Agent Schema » Service Schema Fields","id":"759","title":"Service Schema Fields"},"76":{"body":"// Create agent with services\nconst agentData = { name: \"Content Creator Bot\", description: \"AI agent specialized in content creation\", services: [ { type: \"content_generation\", name: \"Product Description Writer\", description: \"Creates compelling product descriptions\", success: \"Engaging copy that converts visitors\", failure: \"Generic or low-quality content\" } ]\n}; // Generate keys and create agent\nawait agent.generateKeys();\nconst agentDoc = await agent.createAgent(agentData);\nconsole.log('Agent created:', agentDoc.jacsId);","breadcrumbs":"Quick Start » Create Agent Document","id":"76","title":"Create Agent Document"},"760":{"body":"Services can declare what personally identifiable information they need: { \"piiDesired\": [\"email\", \"phone\", \"address\"]\n} Valid PII types: signature - Digital signatures cryptoaddress - Cryptocurrency addresses creditcard - Payment card numbers govid - Government identification social - Social security numbers email - Email addresses phone - Phone numbers address - Physical addresses zip - Postal codes PHI - Protected health information MHI - Mental health information identity - Identity documents political - Political affiliation bankaddress - Banking information income - Income data","breadcrumbs":"Agent Schema » PII Types","id":"760","title":"PII Types"},"761":{"body":"Contact information for human and hybrid agents: { \"jacsContacts\": [{ \"firstName\": \"Jane\", \"lastName\": \"Smith\", \"email\": \"jane@example.com\", \"phone\": \"+1-555-0123\", \"isPrimary\": true, \"mailAddress\": \"123 Main St\", \"mailState\": \"CA\", \"mailZip\": \"94102\", \"mailCountry\": \"USA\" }]\n}","breadcrumbs":"Agent Schema » Contacts","id":"761","title":"Contacts"},"762":{"body":"Field Type Description firstName string First name lastName string Last name addressName string Location name phone string Phone number email string (email) Email address mailName string Name at address mailAddress string Street address mailAddressTwo string Address line 2 mailState string State/province mailZip string Postal code mailCountry string Country isPrimary boolean Primary contact flag","breadcrumbs":"Agent Schema » Contact Schema Fields","id":"762","title":"Contact Schema Fields"},"763":{"body":"Agents can link to a domain for DNSSEC-validated verification: { \"jacsAgentDomain\": \"example.com\"\n} The domain should have a DNS TXT record at _v1.agent.jacs.example.com. containing the agent's public key fingerprint. See the DNS chapter for complete setup instructions.","breadcrumbs":"Agent Schema » DNS Verification","id":"763","title":"DNS Verification"},"764":{"body":"","breadcrumbs":"Agent Schema » Complete Example","id":"764","title":"Complete Example"},"765":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"ai\", \"jacsServices\": [{ \"name\": \"Code Review Service\", \"serviceDescription\": \"Automated code review and analysis\", \"successDescription\": \"Review completed with actionable feedback\", \"failureDescription\": \"Unable to process or analyze code\", \"isDev\": false }], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature...\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsAgentType\", \"jacsServices\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Agent Schema » AI Agent","id":"765","title":"AI Agent"},"766":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsVersionDate\": \"2024-01-15T11:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d480\", \"jacsOriginalDate\": \"2024-01-15T11:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human\", \"jacsAgentDomain\": \"smith.example.com\", \"jacsServices\": [{ \"name\": \"Consulting\", \"serviceDescription\": \"Technical consulting services\", \"successDescription\": \"Project goals achieved\", \"failureDescription\": \"Unable to meet requirements\", \"termsOfService\": \"https://smith.example.com/tos\" }], \"jacsContacts\": [{ \"firstName\": \"John\", \"lastName\": \"Smith\", \"email\": \"john@smith.example.com\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Human Agent","id":"766","title":"Human Agent"},"767":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agent/v1/agent.schema.json\", \"jacsId\": \"770e8400-e29b-41d4-a716-446655440002\", \"jacsVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsVersionDate\": \"2024-01-15T12:00:00Z\", \"jacsType\": \"agent\", \"jacsOriginalVersion\": \"b47ac10b-58cc-4372-a567-0e02b2c3d481\", \"jacsOriginalDate\": \"2024-01-15T12:00:00Z\", \"jacsLevel\": \"artifact\", \"jacsAgentType\": \"human-org\", \"jacsAgentDomain\": \"acme.com\", \"jacsServices\": [{ \"name\": \"Enterprise Software\", \"serviceDescription\": \"Enterprise software solutions\", \"successDescription\": \"Software deployed and operational\", \"failureDescription\": \"Deployment or integration failure\", \"privacyPolicy\": \"https://acme.com/privacy\", \"piiDesired\": [\"email\", \"phone\"] }], \"jacsContacts\": [{ \"addressName\": \"Acme Corporation\", \"email\": \"contact@acme.com\", \"phone\": \"+1-800-555-ACME\", \"mailAddress\": \"1 Corporate Plaza\", \"mailState\": \"NY\", \"mailZip\": \"10001\", \"mailCountry\": \"USA\", \"isPrimary\": true }]\n}","breadcrumbs":"Agent Schema » Organization Agent","id":"767","title":"Organization Agent"},"768":{"body":"","breadcrumbs":"Agent Schema » Creating Agents","id":"768","title":"Creating Agents"},"769":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # The agent is created during configuration setup\n# Agent document is available after loading\nagent_json = agent.load('./jacs.config.json')\nagent_doc = json.loads(agent_json) print(f\"Agent ID: {agent_doc['jacsId']}\")\nprint(f\"Agent Type: {agent_doc['jacsAgentType']}\")","breadcrumbs":"Agent Schema » Python","id":"769","title":"Python"},"77":{"body":"// Create task document\nconst task = { title: \"Write Product Description\", description: \"Create compelling copy for new product launch\", actions: [ { id: \"research\", name: \"Product Research\", description: \"Analyze product features and benefits\", success: \"Complete understanding of product value\", failure: \"Insufficient product knowledge\" }, { id: \"write\", name: \"Write Copy\", description: \"Create engaging product description\", success: \"200-word compelling description\", failure: \"Generic or unconvincing copy\" } ]\n}; // Sign and create task\nconst signedTask = await agent.createTask(task);\nconsole.log('Task created:', signedTask.jacsId); 🐍 Python","breadcrumbs":"Quick Start » Create a Task","id":"77","title":"Create a Task"},"770":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nconst agentJson = agent.load('./jacs.config.json');\nconst agentDoc = JSON.parse(agentJson); console.log(`Agent ID: ${agentDoc.jacsId}`);\nconsole.log(`Agent Type: ${agentDoc.jacsAgentType}`);","breadcrumbs":"Agent Schema » Node.js","id":"770","title":"Node.js"},"771":{"body":"# Create a new agent\njacs agent create # View agent details\njacs agent show","breadcrumbs":"Agent Schema » CLI","id":"771","title":"CLI"},"772":{"body":"# Verify the loaded agent\nis_valid = agent.verify_agent() # Verify another agent file\nis_valid = agent.verify_agent('./other-agent.json') // Verify the loaded agent\nconst isValid = agent.verifyAgent(); // Verify another agent file\nconst isOtherValid = agent.verifyAgent('./other-agent.json');","breadcrumbs":"Agent Schema » Verifying Agents","id":"772","title":"Verifying Agents"},"773":{"body":"Document Schema - Header fields documentation Task Schema - Task workflow schema DNS Verification - Setting up domain verification Creating an Agent - Agent creation guide","breadcrumbs":"Agent Schema » See Also","id":"773","title":"See Also"},"774":{"body":"The Document Schema (Header Schema) defines the base structure for all JACS documents. Every JACS document type (agents, tasks, messages, etc.) extends this schema.","breadcrumbs":"Document Schema » Document Schema","id":"774","title":"Document Schema"},"775":{"body":"https://hai.ai/schemas/header/v1/header.schema.json","breadcrumbs":"Document Schema » Schema Location","id":"775","title":"Schema Location"},"776":{"body":"The header schema provides: Unique Identification : Every document has a unique ID and version Version Tracking : Full history with previous version references Cryptographic Integrity : Signatures and hashes for verification File Attachments : Support for embedded or linked files Vector Embeddings : Pre-computed embeddings for semantic search Agreements : Multi-party signature support","breadcrumbs":"Document Schema » Overview","id":"776","title":"Overview"},"777":{"body":"","breadcrumbs":"Document Schema » Core Fields","id":"777","title":"Core Fields"},"778":{"body":"Field Type Required Description $schema string Yes Schema URL for validation jacsId string (UUID) Yes Unique document identifier jacsType string Yes Document type (agent, task, etc.) { \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\"\n}","breadcrumbs":"Document Schema » Identification","id":"778","title":"Identification"},"779":{"body":"Field Type Required Description jacsVersion string (UUID) Yes Current version identifier jacsVersionDate string (date-time) Yes Version creation timestamp jacsPreviousVersion string (UUID) No Previous version (if not first) jacsOriginalVersion string (UUID) Yes First version identifier jacsOriginalDate string (date-time) Yes Document creation timestamp jacsBranch string (UUID) No Branch identifier for JACS databases { \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsPreviousVersion\": \"e36ac10b-58cc-4372-a567-0e02b2c3d478\", \"jacsOriginalVersion\": \"a47ac10b-58cc-4372-a567-0e02b2c3d476\", \"jacsOriginalDate\": \"2024-01-01T09:00:00Z\"\n}","breadcrumbs":"Document Schema » Versioning","id":"779","title":"Versioning"},"78":{"body":"pip install jacs","breadcrumbs":"Quick Start » Install Python Package","id":"78","title":"Install Python Package"},"780":{"body":"The jacsLevel field indicates the intended use: Level Description raw Raw data that should not change config Configuration meant to be updated artifact Generated content that may be updated derived Computed from other documents { \"jacsLevel\": \"artifact\"\n}","breadcrumbs":"Document Schema » Document Level","id":"780","title":"Document Level"},"781":{"body":"","breadcrumbs":"Document Schema » Cryptographic Fields","id":"781","title":"Cryptographic Fields"},"782":{"body":"The jacsSignature field contains the creator's cryptographic signature: { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"base64-encoded-signature-string\", \"publicKeyHash\": \"sha256-hash-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"jacsType\", \"content\"] }\n} Signature Schema Fields Field Type Required Description agentID string (UUID) Yes Signing agent's ID agentVersion string (UUID) Yes Signing agent's version date string (date-time) Yes Signing timestamp signature string Yes Base64-encoded signature publicKeyHash string Yes Hash of public key used signingAlgorithm string No Algorithm used (ring-Ed25519, RSA-PSS, pq-dilithium) fields array Yes Fields included in signature response string No Text response with signature responseType string No agree, disagree, or reject","breadcrumbs":"Document Schema » Signature","id":"782","title":"Signature"},"783":{"body":"The jacsRegistration field contains a signature from a registration authority: { \"jacsRegistration\": { \"agentID\": \"registrar-agent-id\", \"agentVersion\": \"registrar-version\", \"date\": \"2024-01-15T10:35:00Z\", \"signature\": \"registrar-signature\", \"publicKeyHash\": \"registrar-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsSignature\"] }\n}","breadcrumbs":"Document Schema » Registration","id":"783","title":"Registration"},"784":{"body":"The jacsSha256 field contains a SHA-256 hash of all document content (excluding this field): { \"jacsSha256\": \"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855\"\n}","breadcrumbs":"Document Schema » Hash","id":"784","title":"Hash"},"785":{"body":"Documents can include multi-party agreements using jacsAgreement: { \"jacsAgreement\": { \"agentIDs\": [ \"agent-1-uuid\", \"agent-2-uuid\", \"agent-3-uuid\" ], \"question\": \"Do you agree to these terms?\", \"context\": \"Q1 2024 Service Agreement\", \"signatures\": [ { \"agentID\": \"agent-1-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T11:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-of-content-at-agreement-time\"\n}","breadcrumbs":"Document Schema » Agreements","id":"785","title":"Agreements"},"786":{"body":"Field Type Required Description agentIDs array Yes Required signers question string No What parties are agreeing to context string No Additional context signatures array No Collected signatures","breadcrumbs":"Document Schema » Agreement Schema Fields","id":"786","title":"Agreement Schema Fields"},"787":{"body":"Documents can include file attachments using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./documents/contract.pdf\", \"embed\": true, \"contents\": \"base64-encoded-file-contents\", \"sha256\": \"file-content-hash\" }, { \"mimetype\": \"image/png\", \"path\": \"./images/diagram.png\", \"embed\": false, \"sha256\": \"file-content-hash\" } ]\n}","breadcrumbs":"Document Schema » File Attachments","id":"787","title":"File Attachments"},"788":{"body":"Field Type Required Description mimetype string Yes MIME type of the file path string Yes File location (local path) embed boolean Yes Whether to embed contents contents string No Base64-encoded file contents sha256 string No Hash for content verification","breadcrumbs":"Document Schema » File Schema Fields","id":"788","title":"File Schema Fields"},"789":{"body":"Documents can include pre-computed embeddings for semantic search: { \"jacsEmbedding\": [ { \"llm\": \"text-embedding-ada-002\", \"vector\": [0.0023, -0.0089, 0.0156, ...] } ]\n}","breadcrumbs":"Document Schema » Vector Embeddings","id":"789","title":"Vector Embeddings"},"79":{"body":"import jacs\nimport json\nimport os # Create configuration\nconfig = { \"jacs_agent_id_and_version\": None, \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_default_storage\": \"fs\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} # Ensure directories exist\nos.makedirs(\"./jacs_data\", exist_ok=True)\nos.makedirs(\"./jacs_keys\", exist_ok=True) # Save config\nwith open('jacs.config.json', 'w') as f: json.dump(config, f, indent=2) # Create agent instance and load configuration\nagent = jacs.JacsAgent()\nagent.load(\"./jacs.config.json\")","breadcrumbs":"Quick Start » Basic Setup","id":"79","title":"Basic Setup"},"790":{"body":"Field Type Required Description llm string Yes Model used for embedding vector array Yes Vector of numbers","breadcrumbs":"Document Schema » Embedding Schema Fields","id":"790","title":"Embedding Schema Fields"},"791":{"body":"{ \"$schema\": \"https://hai.ai/schemas/header/v1/header.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"document\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"title\": \"Sample Document\", \"content\": \"This is the document content.\", \"jacsFiles\": [ { \"mimetype\": \"application/pdf\", \"path\": \"./attachment.pdf\", \"embed\": false, \"sha256\": \"abc123...\" } ], \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"signature-base64...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsVersion\", \"title\", \"content\"] }, \"jacsSha256\": \"document-hash...\"\n}","breadcrumbs":"Document Schema » Complete Example","id":"791","title":"Complete Example"},"792":{"body":"Fields include a hai property indicating their category: Category Description Examples meta Metadata (IDs, dates) jacsId, jacsVersion, jacsVersionDate base Cryptographic data jacsSha256, signature agent Agent-controlled content Custom content fields This categorization determines which fields are included in hash and signature calculations.","breadcrumbs":"Document Schema » HAI Field Categories","id":"792","title":"HAI Field Categories"},"793":{"body":"","breadcrumbs":"Document Schema » Working with Documents","id":"793","title":"Working with Documents"},"794":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create a basic document\ndoc = agent.create_document(json.dumps({ 'title': 'My Document', 'content': 'Document content here'\n})) import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json'); const doc = agent.createDocument(JSON.stringify({ title: 'My Document', content: 'Document content here'\n}));","breadcrumbs":"Document Schema » Creating Documents","id":"794","title":"Creating Documents"},"795":{"body":"is_valid = agent.verify_document(doc_json) const isValid = agent.verifyDocument(docJson);","breadcrumbs":"Document Schema » Verifying Documents","id":"795","title":"Verifying Documents"},"796":{"body":"doc = json.loads(signed_doc)\ndocument_key = f\"{doc['jacsId']}:{doc['jacsVersion']}\" updated = agent.update_document( document_key, json.dumps({**doc, 'content': 'Updated content'})\n) const doc = JSON.parse(signedDoc);\nconst documentKey = `${doc.jacsId}:${doc.jacsVersion}`; const updated = agent.updateDocument( documentKey, JSON.stringify({...doc, content: 'Updated content'})\n);","breadcrumbs":"Document Schema » Updating Documents","id":"796","title":"Updating Documents"},"797":{"body":"doc = agent.create_document( json.dumps({'title': 'Report'}), attachments='./report.pdf', embed=True\n) const doc = agent.createDocument( JSON.stringify({ title: 'Report' }), null, // custom_schema null, // output_filename false, // no_save './report.pdf', // attachments true // embed\n);","breadcrumbs":"Document Schema » Adding Attachments","id":"797","title":"Adding Attachments"},"798":{"body":"Documents maintain a version chain: Original (v1) ← Previous (v2) ← Current (v3) │ └── jacsOriginalVersion points here for all versions Each version: Has its own jacsVersion UUID References jacsPreviousVersion (except the first) All share the same jacsId and jacsOriginalVersion","breadcrumbs":"Document Schema » Version History","id":"798","title":"Version History"},"799":{"body":"Agent Schema - Agent document structure Task Schema - Task document structure Working with Documents - Document operations guide Agreements - Multi-party agreements","breadcrumbs":"Document Schema » See Also","id":"799","title":"See Also"},"8":{"body":"cargo install jacs --features cli\n# Upgrade to latest: cargo install jacs --features cli --force\njacs init # Create config, keys, and agent Or step by step: jacs config create\njacs agent create --create-keys true","breadcrumbs":"Introduction » Rust CLI","id":"8","title":"Rust CLI"},"80":{"body":"# Define agent capabilities\nagent_data = { \"name\": \"Content Creator Bot\", \"description\": \"AI agent specialized in content creation\", \"services\": [ { \"type\": \"content_generation\", \"name\": \"Product Description Writer\", \"description\": \"Creates compelling product descriptions\", \"success\": \"Engaging copy that converts visitors\", \"failure\": \"Generic or low-quality content\" } ]\n} # Generate keys and create agent\nagent.generate_keys()\nagent_doc = agent.create_agent(agent_data)\nprint(f'Agent created: {agent_doc[\"jacsId\"]}')","breadcrumbs":"Quick Start » Create Agent Document","id":"80","title":"Create Agent Document"},"800":{"body":"The Task Schema defines the structure for task documents in JACS. Tasks represent work items with defined states, assigned agents, and completion criteria.","breadcrumbs":"Task Schema » Task Schema","id":"800","title":"Task Schema"},"801":{"body":"https://hai.ai/schemas/task/v1/task.schema.json","breadcrumbs":"Task Schema » Schema Location","id":"801","title":"Schema Location"},"802":{"body":"Task documents manage: Workflow States : From creation through completion Agent Assignment : Customer and assigned agent tracking Actions : Desired outcomes and completion criteria Agreements : Start and end agreements between parties Relationships : Sub-tasks, copies, and merges","breadcrumbs":"Task Schema » Overview","id":"802","title":"Overview"},"803":{"body":"The task schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/task/v1/task-schema.json\", \"title\": \"Task\", \"description\": \"General schema for stateful resources.\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" }, { \"type\": \"object\", \"properties\": { ... } } ]\n}","breadcrumbs":"Task Schema » Schema Structure","id":"803","title":"Schema Structure"},"804":{"body":"Tasks progress through defined workflow states: State Description creating Task is being drafted rfp Request for proposal - seeking agents proposal Agent has submitted a proposal negotiation Terms being negotiated started Work has begun review Work submitted for review completed Task is finished { \"jacsTaskState\": \"started\"\n}","breadcrumbs":"Task Schema » Task States","id":"804","title":"Task States"},"805":{"body":"creating → rfp → proposal → negotiation → started → review → completed ↑_______________| (may cycle back for renegotiation)","breadcrumbs":"Task Schema » State Transitions","id":"805","title":"State Transitions"},"806":{"body":"","breadcrumbs":"Task Schema » Task Properties","id":"806","title":"Task Properties"},"807":{"body":"Tasks inherit all document header fields plus task-specific fields.","breadcrumbs":"Task Schema » Core Fields (from Header)","id":"807","title":"Core Fields (from Header)"},"808":{"body":"Field Type Required Description jacsTaskName string No Human-readable task name jacsTaskSuccess string No Description of success criteria jacsTaskState string Yes Current workflow state jacsTaskCustomer object Yes Customer agent signature jacsTaskAgent object No Assigned agent signature jacsTaskStartDate string (date-time) No When work started jacsTaskCompleteDate string (date-time) No When work completed jacsTaskActionsDesired array Yes Required actions jacsStartAgreement object No Agreement to begin work jacsEndAgreement object No Agreement that work is complete","breadcrumbs":"Task Schema » Task-Specific Fields","id":"808","title":"Task-Specific Fields"},"809":{"body":"Field Type Description jacsTaskSubTaskOf array Parent task IDs jacsTaskCopyOf array Source task IDs (branching) jacsTaskMergedTasks array Tasks folded into this one","breadcrumbs":"Task Schema » Relationship Fields","id":"809","title":"Relationship Fields"},"81":{"body":"# Define task\ntask = { \"title\": \"Write Product Description\", \"description\": \"Create compelling copy for new product launch\", \"actions\": [ { \"id\": \"research\", \"name\": \"Product Research\", \"description\": \"Analyze product features and benefits\", \"success\": \"Complete understanding of product value\", \"failure\": \"Insufficient product knowledge\" }, { \"id\": \"write\", \"name\": \"Write Copy\", \"description\": \"Create engaging product description\", \"success\": \"200-word compelling description\", \"failure\": \"Generic or unconvincing copy\" } ]\n} # Sign and create task\nsigned_task = agent.create_task(task)\nprint(f'Task created: {signed_task[\"jacsId\"]}')","breadcrumbs":"Quick Start » Create a Task","id":"81","title":"Create a Task"},"810":{"body":"Actions define what needs to be accomplished: { \"jacsTaskActionsDesired\": [ { \"name\": \"Create API Endpoint\", \"description\": \"Build REST endpoint for user registration\", \"cost\": { \"value\": 500, \"unit\": \"USD\" }, \"duration\": { \"value\": 8, \"unit\": \"hours\" }, \"completionAgreementRequired\": true, \"tools\": [...] } ]\n}","breadcrumbs":"Task Schema » Actions","id":"810","title":"Actions"},"811":{"body":"Field Type Required Description name string Yes Action name description string Yes What needs to be done tools array No Tools that can be used cost object No Cost estimate duration object No Time estimate completionAgreementRequired boolean No Requires sign-off","breadcrumbs":"Task Schema » Action Schema Fields","id":"811","title":"Action Schema Fields"},"812":{"body":"Costs and durations use the unit schema: { \"cost\": { \"value\": 100, \"unit\": \"USD\" }, \"duration\": { \"value\": 2, \"unit\": \"days\" }\n}","breadcrumbs":"Task Schema » Unit Schema","id":"812","title":"Unit Schema"},"813":{"body":"Tasks can include start and end agreements:","breadcrumbs":"Task Schema » Agreements","id":"813","title":"Agreements"},"814":{"body":"Signed when parties agree to begin work: { \"jacsStartAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree to begin this work?\", \"context\": \"Project XYZ - Phase 1\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » Start Agreement","id":"814","title":"Start Agreement"},"815":{"body":"Signed when parties agree work is complete: { \"jacsEndAgreement\": { \"agentIDs\": [\"customer-uuid\", \"agent-uuid\"], \"question\": \"Do you agree this work is complete?\", \"context\": \"Final deliverables reviewed\", \"signatures\": [...] }\n}","breadcrumbs":"Task Schema » End Agreement","id":"815","title":"End Agreement"},"816":{"body":"{ \"$schema\": \"https://hai.ai/schemas/task/v1/task.schema.json\", \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsType\": \"task\", \"jacsVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsVersionDate\": \"2024-01-15T10:30:00Z\", \"jacsOriginalVersion\": \"f47ac10b-58cc-4372-a567-0e02b2c3d479\", \"jacsOriginalDate\": \"2024-01-15T10:30:00Z\", \"jacsLevel\": \"artifact\", \"jacsTaskName\": \"Build Authentication System\", \"jacsTaskSuccess\": \"Users can register, login, and manage sessions\", \"jacsTaskState\": \"started\", \"jacsTaskCustomer\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"customer-signature...\", \"publicKeyHash\": \"customer-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskAgent\": { \"agentID\": \"assigned-agent-uuid\", \"agentVersion\": \"agent-version-uuid\", \"date\": \"2024-01-16T09:00:00Z\", \"signature\": \"agent-signature...\", \"publicKeyHash\": \"agent-key-hash\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsTaskName\", \"jacsTaskActionsDesired\"] }, \"jacsTaskStartDate\": \"2024-01-16T09:00:00Z\", \"jacsStartAgreement\": { \"agentIDs\": [\"customer-agent-uuid\", \"assigned-agent-uuid\"], \"question\": \"Do you agree to begin work on this task?\", \"signatures\": [ { \"agentID\": \"customer-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:00:00Z\" }, { \"agentID\": \"assigned-agent-uuid\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-16T09:05:00Z\" } ] }, \"jacsTaskActionsDesired\": [ { \"name\": \"User Registration\", \"description\": \"Implement user registration with email verification\", \"duration\": { \"value\": 4, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"User Login\", \"description\": \"Implement secure login with password hashing\", \"duration\": { \"value\": 3, \"unit\": \"hours\" }, \"completionAgreementRequired\": true }, { \"name\": \"Session Management\", \"description\": \"Implement JWT-based session tokens\", \"duration\": { \"value\": 2, \"unit\": \"hours\" }, \"completionAgreementRequired\": false } ], \"jacsSignature\": { \"agentID\": \"customer-agent-uuid\", \"agentVersion\": \"customer-version-uuid\", \"date\": \"2024-01-15T10:30:00Z\", \"signature\": \"document-signature...\", \"publicKeyHash\": \"key-hash...\", \"signingAlgorithm\": \"ring-Ed25519\", \"fields\": [\"jacsId\", \"jacsTaskName\", \"jacsTaskActionsDesired\"] }\n}","breadcrumbs":"Task Schema » Complete Example","id":"816","title":"Complete Example"},"817":{"body":"","breadcrumbs":"Task Schema » Task Relationships","id":"817","title":"Task Relationships"},"818":{"body":"Break large tasks into smaller units: { \"jacsTaskSubTaskOf\": [\"parent-task-uuid\"]\n}","breadcrumbs":"Task Schema » Sub-Tasks","id":"818","title":"Sub-Tasks"},"819":{"body":"Create variations or branches: { \"jacsTaskCopyOf\": [\"original-task-uuid\"]\n}","breadcrumbs":"Task Schema » Task Copies (Branching)","id":"819","title":"Task Copies (Branching)"},"82":{"body":"For scripts, CI/CD, and server environments, all bindings support fully programmatic agent creation without interactive prompts: Python import jacs.simple as jacs agent = jacs.create( name=\"my-agent\", password=\"Str0ng-P@ssw0rd!\", # or set JACS_PRIVATE_KEY_PASSWORD algorithm=\"pq2025\",\n)\nprint(f\"Agent: {agent.agent_id}\") Node.js const jacs = require('@hai.ai/jacs/simple'); const agent = jacs.create({ name: 'my-agent', password: process.env.JACS_PRIVATE_KEY_PASSWORD, algorithm: 'pq2025',\n});\nconsole.log(`Agent: ${agent.agentId}`); Go info, err := jacs.Create(\"my-agent\", &jacs.CreateAgentOptions{ Password: os.Getenv(\"JACS_PRIVATE_KEY_PASSWORD\"), Algorithm: \"pq2025\",\n}) Rust use jacs::simple::{CreateAgentParams, SimpleAgent}; let params = CreateAgentParams { name: \"my-agent\".into(), password: std::env::var(\"JACS_PRIVATE_KEY_PASSWORD\").unwrap(), algorithm: \"pq2025\".into(), ..Default::default()\n};\nlet (agent, info) = SimpleAgent::create_with_params(params)?; Password requirements : At least 8 characters, with uppercase, lowercase, a digit, and a special character. Algorithm note : pq-dilithium is deprecated in v0.6.0. Use pq2025 (ML-DSA-87, FIPS-204) instead.","breadcrumbs":"Quick Start » Non-Interactive Agent Creation (v0.6.0+)","id":"82","title":"Non-Interactive Agent Creation (v0.6.0+)"},"820":{"body":"Combine completed tasks: { \"jacsTaskMergedTasks\": [ \"subtask-1-uuid\", \"subtask-2-uuid\" ]\n}","breadcrumbs":"Task Schema » Merged Tasks","id":"820","title":"Merged Tasks"},"821":{"body":"","breadcrumbs":"Task Schema » Task Workflow","id":"821","title":"Task Workflow"},"822":{"body":"import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') task = agent.create_document(json.dumps({ 'jacsTaskName': 'Build Feature X', 'jacsTaskSuccess': 'Feature is deployed and tested', 'jacsTaskState': 'creating', 'jacsTaskActionsDesired': [ { 'name': 'Implementation', 'description': 'Write the code', 'completionAgreementRequired': True } ]\n}), custom_schema='https://hai.ai/schemas/task/v1/task.schema.json')","breadcrumbs":"Task Schema » 1. Creating a Task","id":"822","title":"1. Creating a Task"},"823":{"body":"When an agent accepts the task, add their signature to jacsTaskAgent and update state to started.","breadcrumbs":"Task Schema » 2. Assigning an Agent","id":"823","title":"2. Assigning an Agent"},"824":{"body":"Both parties sign the start agreement to confirm work begins.","breadcrumbs":"Task Schema » 3. Signing Start Agreement","id":"824","title":"3. Signing Start Agreement"},"825":{"body":"Update state to review, then both parties sign the end agreement.","breadcrumbs":"Task Schema » 4. Completing Work","id":"825","title":"4. Completing Work"},"826":{"body":"After end agreement is signed by all parties, update state to completed.","breadcrumbs":"Task Schema » 5. Final Completion","id":"826","title":"5. Final Completion"},"827":{"body":"Current State Valid Next States creating rfp rfp proposal, creating proposal negotiation, rfp negotiation started, proposal started review review completed, started completed (terminal)","breadcrumbs":"Task Schema » State Machine Rules","id":"827","title":"State Machine Rules"},"828":{"body":"Document Schema - Base document fields Agent Schema - Agent structure Agreements - Working with agreements JSON Schemas Overview - Schema architecture","breadcrumbs":"Task Schema » See Also","id":"828","title":"See Also"},"829":{"body":"The Agent State Schema defines the structure for signed agent state documents in JACS. Agent state documents wrap and cryptographically sign any agent configuration file -- memory files, skills, plans, configs, hooks, or any other document an agent wants to verify.","breadcrumbs":"Agent State Schema » Agent State Schema","id":"829","title":"Agent State Schema"},"83":{"body":"When you completed the quick start, several important things occurred:","breadcrumbs":"Quick Start » Understanding What Happened","id":"83","title":"Understanding What Happened"},"830":{"body":"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json","breadcrumbs":"Agent State Schema » Schema Location","id":"830","title":"Schema Location"},"831":{"body":"Agent state documents provide: Signed state files : Cryptographically sign MEMORY.md, skill files, plans, configs, hooks, or any file File integrity : SHA-256 hashes verify file contents haven't been tampered with Origin tracking : Record whether state was authored, adopted, generated, or imported Framework tagging : Identify which agent framework (claude-code, langchain, etc.) the state belongs to General-purpose signing : Use type other to sign any document an agent wants to verify All documents are stored within the JACS data directory for security.","breadcrumbs":"Agent State Schema » Overview","id":"831","title":"Overview"},"832":{"body":"The agent state schema extends the Header Schema : { \"$schema\": \"http://json-schema.org/draft-07/schema#\", \"$id\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"title\": \"Agent State Document\", \"allOf\": [ { \"$ref\": \"https://hai.ai/schemas/header/v1/header.schema.json\" } ], \"properties\": { \"jacsAgentStateType\": { \"type\": \"string\", \"enum\": [\"memory\", \"skill\", \"plan\", \"config\", \"hook\", \"other\"] }, \"jacsAgentStateName\": { \"type\": \"string\" } }, \"required\": [\"jacsAgentStateType\", \"jacsAgentStateName\"]\n}","breadcrumbs":"Agent State Schema » Schema Structure","id":"832","title":"Schema Structure"},"833":{"body":"Type Description Example memory Agent memory/knowledge files MEMORY.md, context files skill Agent skill definitions Coding patterns, domain knowledge plan Agent plans and strategies Implementation plans, workflows config Agent configuration files Settings, preferences hook Agent hooks and triggers (always embedded) Pre-commit hooks, event handlers other Any document the agent wants to sign and verify Reports, artifacts, custom files","breadcrumbs":"Agent State Schema » State Types","id":"833","title":"State Types"},"834":{"body":"","breadcrumbs":"Agent State Schema » Properties","id":"834","title":"Properties"},"835":{"body":"Field Type Description jacsAgentStateType string (enum) Type of agent state: memory, skill, plan, config, hook, other jacsAgentStateName string Human-readable name for this state document","breadcrumbs":"Agent State Schema » Required Fields","id":"835","title":"Required Fields"},"836":{"body":"Field Type Description jacsAgentStateDescription string Description of what this state contains jacsAgentStateFramework string Agent framework (e.g., \"claude-code\", \"langchain\") jacsAgentStateVersion string Content version (distinct from jacsVersion) jacsAgentStateContentType string MIME type (text/markdown, application/json, etc.) jacsAgentStateContent string Inline content (used when embedding) jacsAgentStateTags string[] Tags for categorization and search jacsAgentStateOrigin string (enum) How created: authored, adopted, generated, imported jacsAgentStateSourceUrl string (uri) Where content was obtained from","breadcrumbs":"Agent State Schema » Optional Fields","id":"836","title":"Optional Fields"},"837":{"body":"Every agent state document can track its provenance: Origin Meaning authored Created by the signing agent adopted Found unsigned, signed by adopting agent generated Produced by AI/automation imported Brought from another JACS installation","breadcrumbs":"Agent State Schema » Origin Tracking","id":"837","title":"Origin Tracking"},"838":{"body":"Agent state documents can reference external files using jacsFiles: { \"jacsFiles\": [ { \"mimetype\": \"text/markdown\", \"path\": \"MEMORY.md\", \"embed\": true, \"sha256\": \"b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9\", \"contents\": \"base64-encoded-gzipped-content\" } ]\n} When embed is true, the file content is stored inline in the document. Hook-type documents always embed content for security (prevents time-of-check/time-of-use attacks).","breadcrumbs":"Agent State Schema » File References","id":"838","title":"File References"},"839":{"body":"","breadcrumbs":"Agent State Schema » Examples","id":"839","title":"Examples"},"84":{"body":"A unique identity (UUID) was generated for your agent Cryptographic key pair was created for signing Agent document was created and self-signed Public key was stored for verification","breadcrumbs":"Quick Start » 1. Agent Creation","id":"84","title":"1. Agent Creation"},"840":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"Project Memory\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Minimal Agent State","id":"840","title":"Minimal Agent State"},"841":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"memory\", \"jacsAgentStateName\": \"JACS Project Memory\", \"jacsAgentStateDescription\": \"Agent memory for the JACS project workspace\", \"jacsAgentStateFramework\": \"claude-code\", \"jacsAgentStateOrigin\": \"authored\", \"jacsAgentStateContentType\": \"text/markdown\", \"jacsAgentStateContent\": \"# MEMORY.md\\n\\n## Project: JACS\\n- Location: /home/agent/jacs\\n- Rust library for cryptographic signing\\n\", \"jacsAgentStateTags\": [\"jacs\", \"rust\", \"crypto\"], \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Memory File with Embedding","id":"841","title":"Memory File with Embedding"},"842":{"body":"{ \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"skill\", \"jacsAgentStateName\": \"JSON Schema Validation\", \"jacsAgentStateOrigin\": \"adopted\", \"jacsAgentStateSourceUrl\": \"https://agentskills.io/skills/json-schema\", \"jacsAgentStateVersion\": \"2.1.0\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » Adopted Skill","id":"842","title":"Adopted Skill"},"843":{"body":"Use type other to sign any document: { \"$schema\": \"https://hai.ai/schemas/agentstate/v1/agentstate.schema.json\", \"jacsAgentStateType\": \"other\", \"jacsAgentStateName\": \"Q1 Financial Report\", \"jacsAgentStateDescription\": \"Quarterly financial summary for verification\", \"jacsAgentStateContentType\": \"application/json\", \"jacsAgentStateContent\": \"{\\\"revenue\\\": 150000, \\\"expenses\\\": 120000}\", \"jacsType\": \"agentstate\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Agent State Schema » General-Purpose Signed Document","id":"843","title":"General-Purpose Signed Document"},"844":{"body":"","breadcrumbs":"Agent State Schema » Rust API","id":"844","title":"Rust API"},"845":{"body":"use jacs::schema::agentstate_crud::*; // Minimal state\nlet doc = create_minimal_agentstate(\"memory\", \"Project Memory\", Some(\"Agent memory file\"))?; // With file reference\nlet doc = create_agentstate_with_file(\"skill\", \"Rust Patterns\", \"./skills/rust.md\", true)?; // With inline content\nlet doc = create_agentstate_with_content( \"config\", \"Agent Settings\", \"{\\\"theme\\\": \\\"dark\\\"}\", \"application/json\"\n)?; // General-purpose signing\nlet doc = create_agentstate_with_content( \"other\", \"Audit Report\", \"Report contents here...\", \"text/plain\"\n)?; // Set metadata\nlet mut doc = create_minimal_agentstate(\"memory\", \"My Memory\", None)?;\nset_agentstate_framework(&mut doc, \"claude-code\")?;\nset_agentstate_origin(&mut doc, \"authored\", None)?;\nset_agentstate_tags(&mut doc, vec![\"project\", \"notes\"])?;\nset_agentstate_version(&mut doc, \"1.0.0\")?;","breadcrumbs":"Agent State Schema » Creating Agent State Documents","id":"845","title":"Creating Agent State Documents"},"846":{"body":"// Create, sign, and store\nlet doc_string = serde_json::to_string(&doc)?;\nlet signed_doc = agent.create_document_and_load(&doc_string, None, None)?; // Verify file integrity\nlet hash_valid = verify_agentstate_file_hash(&doc)?;","breadcrumbs":"Agent State Schema » Signing and Verification","id":"846","title":"Signing and Verification"},"847":{"body":"Six MCP tools are available for agent state operations: Tool Description jacs_sign_state Create and sign a new agent state document jacs_verify_state Verify an existing agent state document's signature jacs_load_state Load an agent state document by key jacs_update_state Update and re-sign an agent state document jacs_list_state List all agent state documents jacs_adopt_state Adopt an external file as a signed agent state","breadcrumbs":"Agent State Schema » MCP Tools","id":"847","title":"MCP Tools"},"848":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"memory\", \"name\": \"Project Memory\", \"content\": \"# My Agent Memory\\n\\nKey facts about the project...\", \"content_type\": \"text/markdown\", \"framework\": \"claude-code\", \"tags\": [\"project\", \"memory\"] }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign a Memory File","id":"848","title":"MCP Example: Sign a Memory File"},"849":{"body":"{ \"tool\": \"jacs_sign_state\", \"arguments\": { \"state_type\": \"other\", \"name\": \"Verification Report\", \"content\": \"{\\\"status\\\": \\\"passed\\\", \\\"checks\\\": 42}\", \"content_type\": \"application/json\" }\n}","breadcrumbs":"Agent State Schema » MCP Example: Sign Any Document","id":"849","title":"MCP Example: Sign Any Document"},"85":{"body":"Storage directories were configured Cryptographic algorithm was selected Agent identity was linked to configuration","breadcrumbs":"Quick Start » 2. Configuration Setup","id":"85","title":"2. Configuration Setup"},"850":{"body":"All agent state documents are stored within the JACS data directory for security Hook-type documents always embed content to prevent TOCTOU attacks File hashes (SHA-256) are verified on load to detect tampering Origin tracking provides provenance auditing Documents are signed with the agent's private key, providing non-repudiation","breadcrumbs":"Agent State Schema » Security Notes","id":"850","title":"Security Notes"},"851":{"body":"JSON Schemas - Schema architecture overview Working with Documents - General document operations MCP Integration - MCP server setup Security Model - Cryptographic details","breadcrumbs":"Agent State Schema » See Also","id":"851","title":"See Also"},"852":{"body":"Commitments are shared, signed agreements between agents. They represent what an agent commits to doing, optionally within a conversation or linked to a task or todo item. Key design : Commitments work standalone. They do not require goals, tasks, conversations, or any other document type to be created first.","breadcrumbs":"Commitment Schema » Commitment Schema","id":"852","title":"Commitment Schema"},"853":{"body":"ID : https://hai.ai/schemas/commitment/v1/commitment.schema.json Type : jacsType: \"commitment\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf","breadcrumbs":"Commitment Schema » Schema","id":"853","title":"Schema"},"854":{"body":"Field Type Description jacsCommitmentDescription string Human-readable description of the commitment jacsCommitmentStatus enum Lifecycle status","breadcrumbs":"Commitment Schema » Required Fields","id":"854","title":"Required Fields"},"855":{"body":"pending -> active -> completed -> failed -> renegotiated -> disputed -> revoked Status Meaning pending Created but not yet started active Work is underway completed Successfully fulfilled failed Could not be fulfilled renegotiated Terms changed, replaced by new commitment disputed One party contests the commitment revoked Withdrawn by the owner","breadcrumbs":"Commitment Schema » Status Lifecycle","id":"855","title":"Status Lifecycle"},"856":{"body":"Field Type Description jacsCommitmentTerms object Structured terms (deliverable, deadline, compensation, etc.) jacsCommitmentDisputeReason string Reason when status is disputed or revoked jacsCommitmentTaskId uuid Reference to a task document jacsCommitmentConversationRef uuid Thread ID of the conversation that produced this commitment jacsCommitmentTodoRef string Todo item reference in format list-uuid:item-uuid jacsCommitmentQuestion string Structured question prompt jacsCommitmentAnswer string Answer to the question jacsCommitmentCompletionQuestion string Question to verify completion jacsCommitmentCompletionAnswer string Answer verifying completion jacsCommitmentStartDate date-time When the commitment period begins jacsCommitmentEndDate date-time Deadline jacsCommitmentRecurrence object Recurrence pattern (frequency + interval) jacsCommitmentOwner signature Single-agent owner signature","breadcrumbs":"Commitment Schema » Optional Fields","id":"856","title":"Optional Fields"},"857":{"body":"Commitments can link to other document types: Conversation : jacsCommitmentConversationRef holds a thread UUID Todo item : jacsCommitmentTodoRef uses format list-uuid:item-uuid Task : jacsCommitmentTaskId holds a task document UUID These references are optional. Commitments work independently.","breadcrumbs":"Commitment Schema » Cross-References","id":"857","title":"Cross-References"},"858":{"body":"Commitments use the standard JACS agreement mechanism from the header schema. Two or more agents can co-sign a commitment using jacsAgreement.","breadcrumbs":"Commitment Schema » Multi-Agent Agreements","id":"858","title":"Multi-Agent Agreements"},"859":{"body":"{ \"$schema\": \"https://hai.ai/schemas/commitment/v1/commitment.schema.json\", \"jacsCommitmentDescription\": \"Deliver Q1 analytics report by March 15\", \"jacsCommitmentStatus\": \"active\", \"jacsCommitmentTerms\": { \"deliverable\": \"PDF report with charts\", \"deadline\": \"2026-03-15T00:00:00Z\" }, \"jacsCommitmentStartDate\": \"2026-01-15T00:00:00Z\", \"jacsCommitmentEndDate\": \"2026-03-15T00:00:00Z\", \"jacsType\": \"commitment\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Commitment Schema » Example","id":"859","title":"Example"},"86":{"body":"Task document was structured according to JACS schema Document was signed with your agent's private key SHA-256 hash was calculated for integrity Signature metadata was embedded in the document","breadcrumbs":"Quick Start » 3. Task Creation","id":"86","title":"3. Task Creation"},"860":{"body":"use jacs::schema::commitment_crud::*; // Create\nlet commitment = create_minimal_commitment(\"Deliver report\").unwrap(); // With structured terms\nlet commitment = create_commitment_with_terms( \"Weekly standup\", serde_json::json!({\"frequency\": \"weekly\"}),\n).unwrap(); // Update status\nupdate_commitment_status(&mut commitment, \"active\").unwrap(); // Dispute\ndispute_commitment(&mut commitment, \"Terms not met\").unwrap(); // Cross-references\nset_conversation_ref(&mut commitment, &thread_id).unwrap();\nset_todo_ref(&mut commitment, \"list-uuid:item-uuid\").unwrap();\nset_task_ref(&mut commitment, &task_id).unwrap();","breadcrumbs":"Commitment Schema » Rust API","id":"860","title":"Rust API"},"861":{"body":"Since commitments use jacsLevel: \"config\", they can be updated. Each update creates a new jacsVersion linked to the previous via jacsPreviousVersion. This provides a full audit trail of status changes and modifications.","breadcrumbs":"Commitment Schema » Versioning","id":"861","title":"Versioning"},"862":{"body":"Todo List Schema - Private task tracking Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Commitment Schema » See Also","id":"862","title":"See Also"},"863":{"body":"Todo lists are private, signed documents belonging to a single agent. They contain inline items (goals and tasks) and are re-signed as a whole when any item changes.","breadcrumbs":"Todo List Schema » Todo List Schema","id":"863","title":"Todo List Schema"},"864":{"body":"ID : https://hai.ai/schemas/todo/v1/todo.schema.json Type : jacsType: \"todo\" Level : jacsLevel: \"config\" (editable, versioned) Extends : header.schema.json via allOf Component : todoitem.schema.json for inline items","breadcrumbs":"Todo List Schema » Schema","id":"864","title":"Schema"},"865":{"body":"Field Type Description jacsTodoName string Human-readable name for this list jacsTodoItems array Inline todo items","breadcrumbs":"Todo List Schema » Required Fields","id":"865","title":"Required Fields"},"866":{"body":"Field Type Description jacsTodoArchiveRefs uuid[] UUIDs of archived todo lists","breadcrumbs":"Todo List Schema » Optional Fields","id":"866","title":"Optional Fields"},"867":{"body":"Each item in jacsTodoItems is an inline object following todoitem.schema.json.","breadcrumbs":"Todo List Schema » Todo Items","id":"867","title":"Todo Items"},"868":{"body":"Field Type Description itemId uuid Stable UUID that does not change on re-signing itemType enum \"goal\" (broad objective) or \"task\" (specific action) description string Human-readable description status enum \"pending\", \"in-progress\", \"completed\", \"abandoned\"","breadcrumbs":"Todo List Schema » Required Item Fields","id":"868","title":"Required Item Fields"},"869":{"body":"Field Type Description priority enum \"low\", \"medium\", \"high\", \"critical\" childItemIds uuid[] Sub-goals or tasks under this item relatedCommitmentId uuid Commitment that formalizes this item relatedConversationThread uuid Conversation thread related to this item completedDate date-time When the item was completed assignedAgent uuid Agent assigned to this item tags string[] Tags for categorization","breadcrumbs":"Todo List Schema » Optional Item Fields","id":"869","title":"Optional Item Fields"},"87":{"body":"Let's verify that the documents are properly signed and can be validated: 🦀 Rust # Verify agent signature\njacs agent verify # Verify a specific document\njacs document verify -f ./jacs_data/[document-id].json # Sign a document\njacs document sign -f ./jacs_data/[document-id].json 🟢 Node.js // Verify agent signature\nconst isValid = await agent.verifyAgent();\nconsole.log('Agent signature valid:', isValid); // List all documents\nconst documents = await agent.listDocuments();\nconsole.log('Documents:', documents.length); // Verify task signature\nconst taskValid = await agent.verifyDocument(signedTask);\nconsole.log('Task signature valid:', taskValid); // Get document details\nconst taskDetails = await agent.getDocument(signedTask.jacsId);\nconsole.log('Task details:', taskDetails); 🐍 Python # Verify agent signature\nis_valid = agent.verify_agent()\nprint(f'Agent signature valid: {is_valid}') # List all documents\ndocuments = agent.list_documents()\nprint(f'Documents: {len(documents)}') # Verify task signature task_valid = agent.verify_document(signed_task)\nprint(f'Task signature valid: {task_valid}') # Get document details\ntask_details = agent.get_document(signed_task[\"jacsId\"])\nprint(f'Task details: {task_details}')","breadcrumbs":"Quick Start » Verify Everything Works","id":"87","title":"Verify Everything Works"},"870":{"body":"Todo items can link to other document types: Commitment : relatedCommitmentId links an item to a commitment Conversation : relatedConversationThread links an item to a message thread References use the list-uuid:item-uuid format when referenced FROM other documents (e.g., jacsCommitmentTodoRef on a commitment). Use build_todo_item_ref() and parse_todo_item_ref() from reference_utils for this format.","breadcrumbs":"Todo List Schema » Cross-References","id":"870","title":"Cross-References"},"871":{"body":"Items support parent-child relationships via childItemIds: Goal: \"Ship Q1 release\" ├── Task: \"Write documentation\" ├── Task: \"Run integration tests\" └── Goal: \"Performance optimization\" ├── Task: \"Profile database queries\" └── Task: \"Add caching layer\"","breadcrumbs":"Todo List Schema » Item Hierarchy","id":"871","title":"Item Hierarchy"},"872":{"body":"{ \"$schema\": \"https://hai.ai/schemas/todo/v1/todo.schema.json\", \"jacsTodoName\": \"Q1 Sprint\", \"jacsTodoItems\": [ { \"itemId\": \"550e8400-e29b-41d4-a716-446655440001\", \"itemType\": \"goal\", \"description\": \"Ship analytics dashboard\", \"status\": \"in-progress\", \"priority\": \"high\", \"childItemIds\": [ \"550e8400-e29b-41d4-a716-446655440002\" ] }, { \"itemId\": \"550e8400-e29b-41d4-a716-446655440002\", \"itemType\": \"task\", \"description\": \"Build chart components\", \"status\": \"pending\", \"priority\": \"medium\", \"relatedCommitmentId\": \"660e8400-e29b-41d4-a716-446655440000\", \"tags\": [\"frontend\", \"charts\"] } ], \"jacsType\": \"todo\", \"jacsLevel\": \"config\"\n}","breadcrumbs":"Todo List Schema » Example","id":"872","title":"Example"},"873":{"body":"use jacs::schema::todo_crud::*; // Create a list\nlet mut list = create_minimal_todo_list(\"Sprint Work\").unwrap(); // Add items\nlet goal_id = add_todo_item(&mut list, \"goal\", \"Ship Q1\", Some(\"high\")).unwrap();\nlet task_id = add_todo_item(&mut list, \"task\", \"Write tests\", None).unwrap(); // Build hierarchy\nadd_child_to_item(&mut list, &goal_id, &task_id).unwrap(); // Progress tracking\nupdate_todo_item_status(&mut list, &task_id, \"in-progress\").unwrap();\nmark_todo_item_complete(&mut list, &task_id).unwrap(); // Cross-references\nset_item_commitment_ref(&mut list, &task_id, &commitment_id).unwrap();\nset_item_conversation_ref(&mut list, &task_id, &thread_id).unwrap(); // Archive completed items\nlet completed = remove_completed_items(&mut list).unwrap();","breadcrumbs":"Todo List Schema » Rust API","id":"873","title":"Rust API"},"874":{"body":"Since todo lists use jacsLevel: \"config\", each modification creates a new signed version. The itemId fields remain stable across versions, enabling consistent cross-referencing even as items are added, updated, or removed.","breadcrumbs":"Todo List Schema » Versioning","id":"874","title":"Versioning"},"875":{"body":"Commitment Schema - Shared agreements Conversation Schema - Message threading Document Schema - Header fields and signing","breadcrumbs":"Todo List Schema » See Also","id":"875","title":"See Also"},"876":{"body":"Conversations use the existing message schema enhanced with thread tracking and message ordering. There is no separate \"conversation\" schema - conversations are sequences of signed messages sharing a thread ID.","breadcrumbs":"Conversation Schema » Conversation Schema","id":"876","title":"Conversation Schema"},"877":{"body":"ID : https://hai.ai/schemas/message/v1/message.schema.json Type : jacsType: \"message\" Level : jacsLevel: \"raw\" (immutable once signed) Extends : header.schema.json via allOf","breadcrumbs":"Conversation Schema » Schema","id":"877","title":"Schema"},"878":{"body":"","breadcrumbs":"Conversation Schema » Message Fields","id":"878","title":"Message Fields"},"879":{"body":"Field Type Description to string[] Recipient agent identifiers from string[] Sender agent identifiers content object Message body (free-form object)","breadcrumbs":"Conversation Schema » Required","id":"879","title":"Required"},"88":{"body":"Now let's create a second agent and demonstrate inter-agent communication: 🦀 Rust # Create a second agent configuration\ncp jacs.config.json reviewer.config.json\n# Edit reviewer.config.json to set jacs_agent_id_and_version to null # Create reviewer agent (uses JACS_CONFIG_PATH environment variable)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agent create --create-keys true # Create an agreement on a document\njacs agreement create -f ./document.json \\ --agents [agent-1-id],[agent-2-id] \\ --question \"Do you agree to collaborate on this content task?\" # Sign the agreement as first agent\njacs agreement sign -f ./document.json # Sign as second agent (using reviewer config)\nJACS_CONFIG_PATH=./reviewer.config.json jacs agreement sign -f ./document.json # Verify agreement is complete\njacs agreement check -f ./document.json 🟢 Node.js // Create second agent with separate config file\nconst reviewerConfig = { ...config };\nreviewerConfig.jacs_agent_id_and_version = null; fs.writeFileSync('./reviewer.config.json', JSON.stringify(reviewerConfig, null, 2)); const reviewer = new JacsAgent();\nreviewer.load('./reviewer.config.json');\nawait reviewer.generateKeys(); const reviewerDoc = await reviewer.createAgent({ name: \"Content Reviewer Bot\", description: \"AI agent specialized in content review\"\n}); // Create agreement between agents\nconst agreement = { title: \"Content Collaboration Agreement\", question: \"Do you agree to collaborate on this content task?\", context: `Task: ${signedTask.jacsId}`, agents: [agentDoc.jacsId, reviewerDoc.jacsId]\n}; const signedAgreement = await agent.createAgreement(agreement); // Both agents sign the agreement\nawait agent.signAgreement(signedAgreement.jacsId);\nawait reviewer.signAgreement(signedAgreement.jacsId); // Verify all signatures\nconst agreementValid = await agent.verifyAgreement(signedAgreement.jacsId);\nconsole.log('Agreement complete:', agreementValid); 🐍 Python # Create second agent with separate config file\nreviewer_config = config.copy()\nreviewer_config[\"jacs_agent_id_and_version\"] = None with open('reviewer.config.json', 'w') as f: json.dump(reviewer_config, f, indent=2) reviewer = jacs.JacsAgent()\nreviewer.load(\"./reviewer.config.json\")\nreviewer.generate_keys() reviewer_doc = reviewer.create_agent({ \"name\": \"Content Reviewer Bot\", \"description\": \"AI agent specialized in content review\"\n}) # Create agreement between agents\nagreement = { \"title\": \"Content Collaboration Agreement\", \"question\": \"Do you agree to collaborate on this content task?\", \"context\": f\"Task: {signed_task['jacsId']}\", \"agents\": [agent_doc[\"jacsId\"], reviewer_doc[\"jacsId\"]]\n} signed_agreement = agent.create_agreement(agreement) # Both agents sign the agreement\nagent.sign_agreement(signed_agreement[\"jacsId\"])\nreviewer.sign_agreement(signed_agreement[\"jacsId\"]) # Verify all signatures\nagreement_valid = agent.verify_agreement(signed_agreement[\"jacsId\"])\nprint(f'Agreement complete: {agreement_valid}')","breadcrumbs":"Quick Start » Next Steps: Multi-Agent Workflow","id":"88","title":"Next Steps: Multi-Agent Workflow"},"880":{"body":"Field Type Description threadID string UUID of the conversation thread jacsMessagePreviousId uuid UUID of the previous message in this thread attachments array File attachments","breadcrumbs":"Conversation Schema » Optional","id":"880","title":"Optional"},"881":{"body":"Messages form a thread via two fields: threadID - All messages in a conversation share the same thread ID jacsMessagePreviousId - Each message references the previous one, creating an ordered chain Message 1 (threadID: \"abc-123\", previousId: null) └── Message 2 (threadID: \"abc-123\", previousId: msg1.jacsId) └── Message 3 (threadID: \"abc-123\", previousId: msg2.jacsId)","breadcrumbs":"Conversation Schema » Threading Model","id":"881","title":"Threading Model"},"882":{"body":"Messages use jacsLevel: \"raw\", making them immutable once signed. To continue a conversation, create a new message referencing the previous one. This ensures the integrity of the conversation history.","breadcrumbs":"Conversation Schema » Immutability","id":"882","title":"Immutability"},"883":{"body":"{ \"$schema\": \"https://hai.ai/schemas/message/v1/message.schema.json\", \"threadID\": \"550e8400-e29b-41d4-a716-446655440000\", \"content\": { \"body\": \"I agree to the proposed terms.\", \"subject\": \"Re: Q1 Deliverables\" }, \"to\": [\"agent-b-uuid\"], \"from\": [\"agent-a-uuid\"], \"jacsMessagePreviousId\": \"660e8400-e29b-41d4-a716-446655440001\", \"jacsType\": \"message\", \"jacsLevel\": \"raw\"\n}","breadcrumbs":"Conversation Schema » Example","id":"883","title":"Example"},"884":{"body":"use jacs::schema::conversation_crud::*; // Start a new conversation (generates thread ID)\nlet (first_msg, thread_id) = start_new_conversation( serde_json::json!({\"body\": \"Hello, let's discuss terms.\"}), vec![\"agent-b\".to_string()], vec![\"agent-a\".to_string()],\n).unwrap(); // Continue the conversation\nlet reply = create_conversation_message( &thread_id, serde_json::json!({\"body\": \"Sounds good. Here are my terms.\"}), vec![\"agent-a\".to_string()], vec![\"agent-b\".to_string()], Some(&previous_message_jacs_id),\n).unwrap(); // Extract thread info\nlet tid = get_thread_id(&message).unwrap();\nlet prev = get_previous_message_id(&message);","breadcrumbs":"Conversation Schema » Rust API","id":"884","title":"Rust API"},"885":{"body":"Conversations can be referenced by other document types: Commitment : jacsCommitmentConversationRef stores the thread UUID Todo item : relatedConversationThread stores the thread UUID This allows tracking which conversation led to a commitment or is related to a work item.","breadcrumbs":"Conversation Schema » Cross-References","id":"885","title":"Cross-References"},"886":{"body":"Commitment Schema - Agreements arising from conversations Todo List Schema - Private task tracking Document Schema - Header fields and signing","breadcrumbs":"Conversation Schema » See Also","id":"886","title":"See Also"},"887":{"body":"The JACS configuration file (jacs.config.json) defines agent settings, key locations, storage backends, and observability options.","breadcrumbs":"Configuration » Configuration","id":"887","title":"Configuration"},"888":{"body":"https://hai.ai/schemas/jacs.config.schema.json","breadcrumbs":"Configuration » Schema Location","id":"888","title":"Schema Location"},"889":{"body":"Create a minimal configuration file: { \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\"\n}","breadcrumbs":"Configuration » Quick Start","id":"889","title":"Quick Start"},"89":{"body":"Congratulations! You've successfully: ✅ Created JACS agents with cryptographic identities ✅ Generated and signed documents with verifiable integrity ✅ Established multi-agent agreements with cryptographic consent ✅ Verified signatures and document authenticity ✅ Created an audit trail of all interactions","breadcrumbs":"Quick Start » What You've Accomplished","id":"89","title":"What You've Accomplished"},"890":{"body":"Field Type Description jacs_data_directory string Path to store documents and agents jacs_key_directory string Path to store cryptographic keys jacs_agent_private_key_filename string Private key filename jacs_agent_public_key_filename string Public key filename jacs_agent_key_algorithm string Signing algorithm jacs_default_storage string Storage backend","breadcrumbs":"Configuration » Required Fields","id":"890","title":"Required Fields"},"891":{"body":"","breadcrumbs":"Configuration » Configuration Options","id":"891","title":"Configuration Options"},"892":{"body":"jacs_agent_key_algorithm Specifies the cryptographic algorithm for signing: Value Description ring-Ed25519 Ed25519 signatures (recommended) RSA-PSS RSA with PSS padding pq-dilithium Post-quantum Dilithium pq2025 Post-quantum composite { \"jacs_agent_key_algorithm\": \"ring-Ed25519\"\n} jacs_agent_private_key_filename Name of the private key file in the key directory: { \"jacs_agent_private_key_filename\": \"private.pem\"\n} If the key is encrypted, it will have .enc appended automatically when loading. jacs_agent_public_key_filename Name of the public key file: { \"jacs_agent_public_key_filename\": \"public.pem\"\n} jacs_private_key_password Password for encrypted private keys: { \"jacs_private_key_password\": \"your-password\"\n} Warning : Do not store passwords in config files for production. Use the JACS_PRIVATE_KEY_PASSWORD environment variable instead.","breadcrumbs":"Configuration » Key Configuration","id":"892","title":"Key Configuration"},"893":{"body":"jacs_default_storage Specifies where documents are stored: Value Description fs Local filesystem aws AWS S3 storage hai HAI cloud storage { \"jacs_default_storage\": \"fs\"\n} jacs_data_directory Path for storing documents and agents: { \"jacs_data_directory\": \"./jacs_data\"\n}","breadcrumbs":"Configuration » Storage Configuration","id":"893","title":"Storage Configuration"},"894":{"body":"jacs_agent_id_and_version Load an existing agent by ID and version: { \"jacs_agent_id_and_version\": \"550e8400-e29b-41d4-a716-446655440000:f47ac10b-58cc-4372-a567-0e02b2c3d479\"\n}","breadcrumbs":"Configuration » Agent Identity","id":"894","title":"Agent Identity"},"895":{"body":"Specify which schema versions to use: { \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\"\n}","breadcrumbs":"Configuration » Schema Versions","id":"895","title":"Schema Versions"},"896":{"body":"For DNSSEC-based agent verification: jacs_agent_domain Domain for DNS-based public key verification: { \"jacs_agent_domain\": \"example.com\"\n} jacs_dns_validate Enable DNS TXT fingerprint validation: { \"jacs_dns_validate\": true\n} jacs_dns_strict Require DNSSEC validation (no fallback): { \"jacs_dns_strict\": true\n} jacs_dns_required Require domain and DNS validation: { \"jacs_dns_required\": true\n}","breadcrumbs":"Configuration » DNS Configuration","id":"896","title":"DNS Configuration"},"897":{"body":"jacs_use_security Enable strict security features: { \"jacs_use_security\": \"1\"\n} Values: \"0\", \"1\", or \"false\", \"true\"","breadcrumbs":"Configuration » Security","id":"897","title":"Security"},"898":{"body":"JACS supports comprehensive observability through logs, metrics, and tracing.","breadcrumbs":"Configuration » Observability Configuration","id":"898","title":"Observability Configuration"},"899":{"body":"{ \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"stderr\" } } }\n} Log Levels Level Description trace Most verbose debug Debug information info General information warn Warnings error Errors only Log Destinations stderr (default): { \"destination\": { \"type\": \"stderr\" }\n} File : { \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/app.log\" }\n} OTLP (OpenTelemetry): { \"destination\": { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\", \"headers\": { \"Authorization\": \"Bearer token\" } }\n} Null (disabled): { \"destination\": { \"type\": \"null\" }\n}","breadcrumbs":"Configuration » Logs Configuration","id":"899","title":"Logs Configuration"},"9":{"body":"npm install @hai.ai/jacs import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./config.json');","breadcrumbs":"Introduction » Node.js","id":"9","title":"Node.js"},"90":{"body":"Everything is verifiable : All documents have cryptographic signatures Agents are autonomous : Each has its own identity and keys Agreements enable trust : Multi-party consent before proceeding Audit trails are automatic : Complete history of all interactions JSON is universal : Documents work everywhere","breadcrumbs":"Quick Start » Key Takeaways","id":"90","title":"Key Takeaways"},"900":{"body":"{ \"observability\": { \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\" }, \"export_interval_seconds\": 60 } }\n} Metrics Destinations Prometheus : { \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://localhost:9090/api/v1/write\" }\n} OTLP : { \"destination\": { \"type\": \"otlp\", \"endpoint\": \"http://localhost:4317\" }\n} File : { \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/metrics.json\" }\n} stdout : { \"destination\": { \"type\": \"stdout\" }\n}","breadcrumbs":"Configuration » Metrics Configuration","id":"900","title":"Metrics Configuration"},"901":{"body":"{ \"observability\": { \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true, \"rate_limit\": 100 }, \"resource\": { \"service_name\": \"my-jacs-agent\", \"service_version\": \"1.0.0\", \"environment\": \"production\", \"attributes\": { \"team\": \"backend\" } } } }\n} Sampling Options Field Type Description ratio number (0-1) Percentage of traces to sample parent_based boolean Follow parent span's sampling decision rate_limit integer Max traces per second","breadcrumbs":"Configuration » Tracing Configuration","id":"901","title":"Tracing Configuration"},"902":{"body":"{ \"$schema\": \"https://hai.ai/schemas/jacs.config.schema.json\", \"jacs_data_directory\": \"./jacs_data\", \"jacs_key_directory\": \"./jacs_keys\", \"jacs_agent_private_key_filename\": \"private.pem\", \"jacs_agent_public_key_filename\": \"public.pem\", \"jacs_agent_key_algorithm\": \"ring-Ed25519\", \"jacs_default_storage\": \"fs\", \"jacs_agent_schema_version\": \"v1\", \"jacs_header_schema_version\": \"v1\", \"jacs_signature_schema_version\": \"v1\", \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": false, \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\", \"destination\": { \"type\": \"file\", \"path\": \"/var/log/jacs/agent.log\" } }, \"metrics\": { \"enabled\": true, \"destination\": { \"type\": \"prometheus\", \"endpoint\": \"http://prometheus:9090/api/v1/write\" }, \"export_interval_seconds\": 30 }, \"tracing\": { \"enabled\": true, \"sampling\": { \"ratio\": 0.1, \"parent_based\": true }, \"resource\": { \"service_name\": \"jacs-agent\", \"service_version\": \"1.0.0\", \"environment\": \"production\" } } }\n}","breadcrumbs":"Configuration » Complete Configuration Example","id":"902","title":"Complete Configuration Example"},"903":{"body":"Configuration can be overridden with environment variables: Variable Config Field JACS_PRIVATE_KEY_PASSWORD jacs_private_key_password JACS_DATA_DIRECTORY jacs_data_directory JACS_KEY_DIRECTORY jacs_key_directory export JACS_PRIVATE_KEY_PASSWORD=\"secure-password\"","breadcrumbs":"Configuration » Environment Variables","id":"903","title":"Environment Variables"},"904":{"body":"","breadcrumbs":"Configuration » Loading Configuration","id":"904","title":"Loading Configuration"},"905":{"body":"import jacs agent = jacs.JacsAgent()\nagent.load('./jacs.config.json')","breadcrumbs":"Configuration » Python","id":"905","title":"Python"},"906":{"body":"import { JacsAgent } from '@hai.ai/jacs'; const agent = new JacsAgent();\nagent.load('./jacs.config.json');","breadcrumbs":"Configuration » Node.js","id":"906","title":"Node.js"},"907":{"body":"jacs --config ./jacs.config.json agent show","breadcrumbs":"Configuration » CLI","id":"907","title":"CLI"},"908":{"body":"Never commit private keys - Keep keys out of version control Use environment variables for secrets - Don't store passwords in config files Enable observability - Configure logs and metrics for monitoring Use DNS validation - Enable jacs_dns_validate for additional security Secure key directories - Restrict file permissions on key directories chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Configuration » Production Best Practices","id":"908","title":"Production Best Practices"},"909":{"body":"JSON Schemas Overview - Schema architecture Observability - Monitoring guide DNS Verification - Domain-based verification Quick Start - Getting started guide","breadcrumbs":"Configuration » See Also","id":"909","title":"See Also"},"91":{"body":"Now that you have the basics working: Rust Deep Dive - Learn the full Rust API Node.js Integration - Add MCP support Python MCP - Build authenticated MCP servers Production Security - Harden runtime settings and key management Real Examples - See production patterns","breadcrumbs":"Quick Start » Where to Go Next","id":"91","title":"Where to Go Next"},"910":{"body":"JACS implements a comprehensive security model designed to ensure authenticity, integrity, and non-repudiation for all agent communications and documents.","breadcrumbs":"Security Model » Security Model","id":"910","title":"Security Model"},"911":{"body":"Passwords : The private key password must be set only via the JACS_PRIVATE_KEY_PASSWORD environment variable. It is never stored in config files. Keys : Private keys are encrypted at rest (AES-256-GCM with PBKDF2, 600k iterations). Public keys and config may be stored on disk. Path validation : All paths built from untrusted input (e.g. publicKeyHash, filenames) are validated via require_relative_path_safe() to prevent directory traversal. This single validation function is used in data and key directory path builders and the trust store. It rejects empty segments, ., .., null bytes, and Windows drive-prefixed paths. Trust ID canonicalization : Trust-store operations normalize canonical agent docs (jacsId + jacsVersion) into a safe UUID:VERSION_UUID identifier before filesystem use, preserving path-safety checks while supporting standard agent document layout. Filesystem schema policy : Local schema loading is disabled by default and requires JACS_ALLOW_FILESYSTEM_SCHEMAS=true. When enabled, schema paths must remain within configured roots (JACS_DATA_DIRECTORY and/or JACS_SCHEMA_DIRECTORY) after normalized/canonical path checks. Network endpoint policy : HAI registration verification requires HTTPS for HAI_API_URL (localhost HTTP is allowed for local testing only). No secrets in config : Config files must not contain passwords or other secrets. The example config (jacs.config.example.json) does not include jacs_private_key_password. Dependency auditing : Run cargo audit (Rust), npm audit (Node.js), or pip audit (Python) to check for known vulnerabilities.","breadcrumbs":"Security Model » Security Model (v0.6.0)","id":"911","title":"Security Model (v0.6.0)"},"912":{"body":"","breadcrumbs":"Security Model » Core Security Principles","id":"912","title":"Core Security Principles"},"913":{"body":"Every JACS agent has a unique cryptographic identity: Key Pair : Each agent possesses a private/public key pair Agent ID : Unique UUID identifying the agent Public Key Hash : SHA-256 hash of the public key for verification { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"publicKeyHash\": \"sha256-of-public-key\", \"signingAlgorithm\": \"ring-Ed25519\" }\n}","breadcrumbs":"Security Model » 1. Cryptographic Identity","id":"913","title":"1. Cryptographic Identity"},"914":{"body":"All documents include cryptographic guarantees: Signature : Cryptographic signature over specified fields Hash : SHA-256 hash of document contents Version Tracking : Immutable version history","breadcrumbs":"Security Model » 2. Document Integrity","id":"914","title":"2. Document Integrity"},"915":{"body":"Signatures provide proof of origin: Agents cannot deny signing a document Timestamps record when signatures were made Public keys enable independent verification","breadcrumbs":"Security Model » 3. Non-Repudiation","id":"915","title":"3. Non-Repudiation"},"916":{"body":"JACS provides a read-only security audit that checks configuration, directories, secrets, trust store, storage, quarantine/failed files, and optionally re-verifies recent documents. It does not modify state. Purpose : Surface misconfiguration, missing keys, unexpected paths, and verification failures in one report. Options (all optional): config_path: Path to jacs.config.json (default: 12-factor load) data_directory / key_directory: Override paths recent_verify_count: Number of recent documents to re-verify (default 10, max 100) Return structure : AuditResult with overall_status, risks (list of AuditRisk), health_checks (list of ComponentHealth), summary, checked_at, and optional quarantine_entries / failed_entries. Rust : use jacs::audit::{audit, AuditOptions}; let result = audit(AuditOptions::default())?;\nprintln!(\"{}\", jacs::format_audit_report(&result)); Python : import jacs.simple as jacs result = jacs.audit() # dict with risks, health_checks, summary, overall_status\nprint(f\"Risks: {len(result['risks'])}, Status: {result['overall_status']}\") Node.js : import * as jacs from '@hai.ai/jacs/simple'; const result = jacs.audit({ recentN: 5 });\nconsole.log(`Risks: ${result.risks.length}, Status: ${result.overall_status}`); Available in all bindings and as an MCP tool (jacs_audit) for automation.","breadcrumbs":"Security Model » Security Audit (audit())","id":"916","title":"Security Audit (audit())"},"917":{"body":"","breadcrumbs":"Security Model » Threat Model","id":"917","title":"Threat Model"},"918":{"body":"Threat Protection Tampering Content hashes detect modifications Impersonation Cryptographic signatures verify identity Replay Attacks Timestamps and version IDs ensure freshness; future timestamps rejected; optional signature expiration via JACS_MAX_SIGNATURE_AGE_SECONDS Man-in-the-Middle DNS verification via DNSSEC; TLS certificate validation Key Compromise Key rotation through versioning Weak Passwords Minimum 28-bit entropy enforcement (35-bit for single class)","breadcrumbs":"Security Model » Protected Against","id":"918","title":"Protected Against"},"919":{"body":"Private keys are kept secure Cryptographic algorithms are sound DNS infrastructure (when used) is trustworthy","breadcrumbs":"Security Model » Trust Assumptions","id":"919","title":"Trust Assumptions"},"92":{"body":"Agent creation fails : Check that the data and key directories exist and are writable Signature verification fails : Ensure public keys are properly stored and accessible Agreement signing fails : Verify all agent IDs are correct and agents exist Documents not found : Check the data directory configuration Need help? Check the GitHub issues or review the detailed implementation guides.","breadcrumbs":"Quick Start » Troubleshooting","id":"92","title":"Troubleshooting"},"920":{"body":"","breadcrumbs":"Security Model » Signature Process","id":"920","title":"Signature Process"},"921":{"body":"Field Selection : Determine which fields to sign Canonicalization : Serialize fields deterministically Signature Generation : Sign with private key Hash Computation : Compute SHA-256 of signed document import jacs\nimport json agent = jacs.JacsAgent()\nagent.load('./jacs.config.json') # Create signed document\ndoc = agent.create_document(json.dumps({ 'title': 'Confidential Report', 'content': 'Sensitive data here'\n})) # Document now includes jacsSignature and jacsSha256","breadcrumbs":"Security Model » Signing a Document","id":"921","title":"Signing a Document"},"922":{"body":"Hash Verification : Recompute hash and compare Signature Verification : Verify signature with public key Agent Verification : Optionally verify agent identity via DNS is_valid = agent.verify_document(doc_json)\nis_signature_valid = agent.verify_signature(doc_json)","breadcrumbs":"Security Model » Verifying a Document","id":"922","title":"Verifying a Document"},"923":{"body":"","breadcrumbs":"Security Model » Key Management","id":"923","title":"Key Management"},"924":{"body":"JACS generates cryptographic key pairs during agent creation: # Keys are created in the configured key directory\njacs_keys/\n├── private.pem # Private key (keep secure!)\n└── public.pem # Public key (can be shared)","breadcrumbs":"Security Model » Key Generation","id":"924","title":"Key Generation"},"925":{"body":"Encryption at Rest : Private keys are encrypted using AES-256-GCM with a key derived via PBKDF2-HMAC-SHA256 (600,000 iterations). Never store the password in config files. # Set via environment variable only\nexport JACS_PRIVATE_KEY_PASSWORD=\"secure-password\" Important : The CLI can prompt for the password during jacs init, but scripts and servers must set JACS_PRIVATE_KEY_PASSWORD as an environment variable. Password Entropy Requirements : JACS enforces password entropy minimums for private key encryption. Password validation is performed at encryption time, and weak passwords are rejected with helpful error messages: Minimum 28-bit entropy for passwords with 2+ character classes (mixed case, numbers, symbols) Minimum 35-bit entropy for single-character-class passwords (e.g., all lowercase) Entropy is calculated based on character class diversity and length Weak passwords result in immediate rejection during key encryption Error messages guide users toward stronger password choices Example of rejected weak passwords: password - Too common and predictable 12345678 - Insufficient character diversity abc - Too short File Permissions : chmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » Key Protection","id":"925","title":"Key Protection"},"926":{"body":"Update agent version to rotate keys: Generate new key pair Create new agent version Sign new version with old key Update configuration to use new keys","breadcrumbs":"Security Model » Key Rotation","id":"926","title":"Key Rotation"},"927":{"body":"JACS includes configurable TLS certificate validation for secure network communication.","breadcrumbs":"Security Model » TLS Certificate Validation","id":"927","title":"TLS Certificate Validation"},"928":{"body":"By default, JACS warns about invalid TLS certificates but accepts them to facilitate development environments with self-signed certificates: WARNING: Invalid TLS certificate detected. Set JACS_STRICT_TLS=true for production.","breadcrumbs":"Security Model » Default Behavior (Development)","id":"928","title":"Default Behavior (Development)"},"929":{"body":"For production deployments, enable strict TLS validation: export JACS_STRICT_TLS=true When enabled, JACS will: Reject connections with invalid, expired, or self-signed certificates Enforce proper certificate chain validation Fail fast with clear error messages for certificate issues Implementation : Certificate validation logic is located in jacs/src/schema/utils.rs.","breadcrumbs":"Security Model » Production Configuration","id":"929","title":"Production Configuration"},"93":{"body":"JACS supports a wide range of workflows: proving where data came from, protecting who runs an agent, registering with a platform, enforcing provenance in your app, and proving that a specific agent sent a message. This page summarizes five common use cases; each links to the full fictional scenario and technical flow in the repository. For detailed narratives (scenario, technical flow, outcome), see USECASES.md in the JACS repo.","breadcrumbs":"Use cases » Use cases","id":"93","title":"Use cases"},"930":{"body":"Mode Behavior Use Case Default (dev) Warn on invalid certs, allow connection Local development, testing Strict (JACS_STRICT_TLS=true) Reject invalid certs Production, staging For HAI registration verification endpoints, HAI_API_URL must use HTTPS. HTTP is only allowed for localhost test endpoints.","breadcrumbs":"Security Model » Security Implications","id":"930","title":"Security Implications"},"931":{"body":"JACS signatures include timestamps to prevent replay attacks and ensure temporal integrity.","breadcrumbs":"Security Model » Signature Timestamp Validation","id":"931","title":"Signature Timestamp Validation"},"932":{"body":"Timestamp Inclusion : Every signature includes a UTC timestamp recording when it was created Future Timestamp Rejection : Signatures with timestamps more than 5 minutes in the future are rejected Optional Signature Expiration : Configurable via JACS_MAX_SIGNATURE_AGE_SECONDS (disabled by default since JACS documents are designed to be eternal) Validation : Timestamp validation occurs during signature verification","breadcrumbs":"Security Model » How It Works","id":"932","title":"How It Works"},"933":{"body":"By default, signatures do not expire. JACS documents are designed to be idempotent and eternal. For use cases that require expiration: # Enable expiration (e.g., 90 days)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=7776000 # Default: no expiration (0)\nexport JACS_MAX_SIGNATURE_AGE_SECONDS=0","breadcrumbs":"Security Model » Configuring Signature Expiration","id":"933","title":"Configuring Signature Expiration"},"934":{"body":"The 5-minute future tolerance window: Allows for reasonable clock skew between systems Prevents attackers from creating signatures with future timestamps Ensures signatures cannot be pre-generated for later fraudulent use { \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"signature\": \"...\", \"date\": \"2024-01-15T10:30:00Z\" // Must be within 5 min of verifier's clock }\n}","breadcrumbs":"Security Model » Protection Against Replay Attacks","id":"934","title":"Protection Against Replay Attacks"},"935":{"body":"For reliable timestamp validation across distributed systems: Ensure all agents use NTP or similar time synchronization Monitor for clock drift in production environments Consider the 5-minute tolerance when debugging verification failures","breadcrumbs":"Security Model » Clock Synchronization","id":"935","title":"Clock Synchronization"},"936":{"body":"Agents can claim a verification level that determines security requirements. This follows the principle: \"If you claim it, you must prove it.\"","breadcrumbs":"Security Model » Verification Claims","id":"936","title":"Verification Claims"},"937":{"body":"Claim Required Conditions Behavior unverified (default) None Relaxed DNS/TLS settings allowed; self-asserted identity verified Domain with DNSSEC Strict TLS, strict DNS with DNSSEC validation required verified-hai.ai Above + HAI.ai registration Must be registered and verified with HAI.ai","breadcrumbs":"Security Model » Claim Levels","id":"937","title":"Claim Levels"},"938":{"body":"Add the jacsVerificationClaim field to your agent definition: { \"jacsAgentType\": \"ai\", \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\", \"jacsServices\": [...]\n}","breadcrumbs":"Security Model » Setting a Verification Claim","id":"938","title":"Setting a Verification Claim"},"939":{"body":"When an agent claims verified or verified-hai.ai: Domain Required : The jacsAgentDomain field must be set Strict DNS : DNS lookup uses DNSSEC validation (no insecure fallback) DNS Required : Public key fingerprint must match DNS TXT record Strict TLS : TLS certificate validation is mandatory (no self-signed certs) For verified-hai.ai claims, additional enforcement: HAI.ai Registration : Agent must be registered at hai.ai Public Key Match : Registered public key must match the agent's key Network Required : Verification fails if HAI.ai API is unreachable","breadcrumbs":"Security Model » Claim Enforcement","id":"939","title":"Claim Enforcement"},"94":{"body":"Summary. You have a pipeline or service that emits JSON (configs, reports, compliance data). Consumers need to trust that a given file or payload was produced by that program and not modified. With JACS, the program has one agent identity: it signs each artifact with sign_message or sign_file at emission; consumers verify with verify() or verify_by_id() (local storage), or use verify_standalone() for one-off verification without loading an agent. No central server is required. See USECASES.md § 1 for the full scenario.","breadcrumbs":"Use cases » 1. Verifying that JSON came from a specific program","id":"94","title":"1. Verifying that JSON came from a specific program"},"940":{"body":"Agents without jacsVerificationClaim are treated as unverified Existing agents continue to work with their current DNS settings No breaking changes for agents that don't opt into verified status","breadcrumbs":"Security Model » Backward Compatibility","id":"940","title":"Backward Compatibility"},"941":{"body":"If verification fails, clear error messages explain what's wrong: Verification claim 'verified' failed: Verified agents must have jacsAgentDomain set.\nAgents claiming 'verified' must meet the required security conditions. Verification claim 'verified-hai.ai' failed: Agent 'uuid' is not registered with HAI.ai.\nAgents claiming 'verified-hai.ai' must be registered at https://hai.ai","breadcrumbs":"Security Model » Error Messages","id":"941","title":"Error Messages"},"942":{"body":"No Downgrade : Once an agent claims verified, it cannot be verified with relaxed settings Claim Changes : Changing the claim requires creating a new agent version Network Dependency : verified-hai.ai requires network access to HAI.ai Audit Trail : Verification claim and enforcement results are logged","breadcrumbs":"Security Model » Security Considerations","id":"942","title":"Security Considerations"},"943":{"body":"JACS supports DNSSEC-validated identity verification:","breadcrumbs":"Security Model » DNS-Based Verification","id":"943","title":"DNS-Based Verification"},"944":{"body":"Agent publishes public key fingerprint in DNS TXT record Verifier queries DNS for _v1.agent.jacs.. DNSSEC validates the response authenticity Fingerprint is compared against agent's public key","breadcrumbs":"Security Model » How It Works","id":"944","title":"How It Works"},"945":{"body":"{ \"jacs_agent_domain\": \"myagent.example.com\", \"jacs_dns_validate\": true, \"jacs_dns_strict\": true\n}","breadcrumbs":"Security Model » Configuration","id":"945","title":"Configuration"},"946":{"body":"Mode Description jacs_dns_validate: false No DNS verification jacs_dns_validate: true Attempt DNS verification, allow fallback jacs_dns_strict: true Require DNSSEC validation jacs_dns_required: true Fail if domain not present","breadcrumbs":"Security Model » Security Levels","id":"946","title":"Security Levels"},"947":{"body":"JACS maintains a trust store for managing trusted agent relationships.","breadcrumbs":"Security Model » Trust Store Management","id":"947","title":"Trust Store Management"},"948":{"body":"Before trusting an agent, JACS performs public key hash verification: # Trust an agent after verifying their public key hash\nagent.trust_agent(agent_id, public_key_hash)","breadcrumbs":"Security Model » Trusting Agents","id":"948","title":"Trusting Agents"},"949":{"body":"The untrust_agent() method properly handles the case when an agent is not in the trust store: try: agent.untrust_agent(agent_id)\nexcept AgentNotTrusted as e: # Agent was not in the trust store print(f\"Agent {agent_id} was not trusted: {e}\")","breadcrumbs":"Security Model » Untrusting Agents","id":"949","title":"Untrusting Agents"},"95":{"body":"Summary. You run a public-facing agent and want its messages to be verifiable (signed) without exposing who operates it. JACS supports this by keeping signing internal-only and publishing only the public key (via DNS and optionally HAI). Recipients use verify() (core JACS) or jacs_verify_auto (OpenClaw/moltyjacs) to confirm origin and integrity; they never learn who runs the agent. See USECASES.md § 2 for the full scenario.","breadcrumbs":"Use cases » 2. Protecting your agent's identity on the internet","id":"95","title":"2. Protecting your agent's identity on the internet"},"950":{"body":"Operation Validation trust_agent() UUID format validation, path traversal rejection, public key hash verification, self-signature verification before adding untrust_agent() UUID format validation, path containment check, returns AgentNotTrusted error if agent not found get_trusted_agent() UUID format validation, path containment check is_trusted() UUID format validation, safe lookup without side effects Key cache (load_public_key_from_cache) require_relative_path_safe() rejects traversal in publicKeyHash Key cache (save_public_key_to_cache) require_relative_path_safe() rejects traversal in publicKeyHash Path Traversal Protection (v0.6.0) : All trust store operations that construct file paths from agent IDs or key hashes use defense-in-depth: UUID format validation : Agent IDs must match UUID:UUID format (rejects special characters) Path character rejection : Explicit rejection of .., /, \\, and null bytes Path containment check : For existing files, canonicalized paths are verified to stay within the trust store directory require_relative_path_safe() : Key hashes are validated to prevent traversal before constructing cache file paths","breadcrumbs":"Security Model » Trust Store Security","id":"950","title":"Trust Store Security"},"951":{"body":"Verify Before Trust : Always verify an agent's public key hash through an out-of-band channel before trusting Audit Trust Changes : Log all trust store modifications for security auditing Periodic Review : Regularly review and prune the trust store","breadcrumbs":"Security Model » Best Practices","id":"951","title":"Best Practices"},"952":{"body":"Multi-party agreements provide additional security:","breadcrumbs":"Security Model » Agreement Security","id":"952","title":"Agreement Security"},"953":{"body":"{ \"jacsAgreement\": { \"agentIDs\": [\"agent-1\", \"agent-2\", \"agent-3\"], \"signatures\": [ { \"agentID\": \"agent-1\", \"signature\": \"...\", \"responseType\": \"agree\", \"date\": \"2024-01-15T10:00:00Z\" } ] }, \"jacsAgreementHash\": \"hash-at-agreement-time\"\n}","breadcrumbs":"Security Model » Agreement Structure","id":"953","title":"Agreement Structure"},"954":{"body":"Content Lock : jacsAgreementHash ensures all parties agreed to same content Individual Consent : Each signature records explicit agreement Response Types : Support for agree, disagree, or reject Timestamp : Records when each party signed","breadcrumbs":"Security Model » Agreement Guarantees","id":"954","title":"Agreement Guarantees"},"955":{"body":"For MCP and HTTP communication:","breadcrumbs":"Security Model » Request/Response Security","id":"955","title":"Request/Response Security"},"956":{"body":"signed_request = agent.sign_request({ 'method': 'tools/call', 'params': {'name': 'echo', 'arguments': {'text': 'hello'}}\n}) The signed request includes: Full JACS document structure Agent signature Timestamp Content hash","breadcrumbs":"Security Model » Request Signing","id":"956","title":"Request Signing"},"957":{"body":"result = agent.verify_response(response_string)\npayload = result.get('payload')\nagent_id = result.get('agentId') # Who signed the response","breadcrumbs":"Security Model » Response Verification","id":"957","title":"Response Verification"},"958":{"body":"","breadcrumbs":"Security Model » Algorithm Security","id":"958","title":"Algorithm Security"},"959":{"body":"Algorithm Type Security Level ring-Ed25519 Elliptic Curve High (recommended) RSA-PSS RSA High pq-dilithium Post-Quantum Quantum-resistant pq2025 Composite Transitional","breadcrumbs":"Security Model » Supported Algorithms","id":"959","title":"Supported Algorithms"},"96":{"body":"Summary. You want to register your JACS agent with HAI.ai for attestation and discoverability, and to test verification before going live. Use the HAI registration flow: from Node registerWithHai() (@hai.ai/jacs), from Go RegisterWithHai() (jacsgo), from Python register_with_hai / register_new_agent() (jacspy), or openclaw jacs register (moltyjacs). Set HAI_API_KEY, then check attestation and run verification with JACS_KEY_RESOLUTION=local,hai. See USECASES.md § 3 for the full scenario.","breadcrumbs":"Use cases » 3. Registering and testing your agent on HAI.ai","id":"96","title":"3. Registering and testing your agent on HAI.ai"},"960":{"body":"Choose based on requirements: General Use : ring-Ed25519 - fast, secure, small signatures Legacy Systems : RSA-PSS - widely supported Future-Proofing : pq-dilithium - quantum-resistant Transition : pq2025 - hybrid classical/post-quantum","breadcrumbs":"Security Model » Algorithm Selection","id":"960","title":"Algorithm Selection"},"961":{"body":"","breadcrumbs":"Security Model » Security Best Practices","id":"961","title":"Security Best Practices"},"962":{"body":"# Never commit keys to version control\necho \"jacs_keys/\" >> .gitignore # Secure file permissions\nchmod 700 ./jacs_keys\nchmod 600 ./jacs_keys/private.pem","breadcrumbs":"Security Model » 1. Key Storage","id":"962","title":"1. Key Storage"},"963":{"body":"# Use environment variables\nexport JACS_PRIVATE_KEY_PASSWORD=\"$(pass show jacs/key-password)\"","breadcrumbs":"Security Model » 2. Password Handling","id":"963","title":"2. Password Handling"},"964":{"body":"Always use TLS for network communication: # HTTPS for web transport\nclient = JACSMCPClient(\"https://localhost:8000/sse\") # Good\n# client = JACSMCPClient(\"http://localhost:8000/sse\") # Avoid in production","breadcrumbs":"Security Model » 3. Transport Security","id":"964","title":"3. Transport Security"},"965":{"body":"{ \"jacs_dns_strict\": true, \"jacs_dns_required\": true, \"jacs_enable_filesystem_quarantine\": \"true\"\n}","breadcrumbs":"Security Model » 4. Verification Policies","id":"965","title":"4. Verification Policies"},"966":{"body":"Enable observability for security auditing: { \"observability\": { \"logs\": { \"enabled\": true, \"level\": \"info\" } }\n}","breadcrumbs":"Security Model » 5. Audit Logging","id":"966","title":"5. Audit Logging"},"967":{"body":"","breadcrumbs":"Security Model » Security Checklist","id":"967","title":"Security Checklist"},"968":{"body":"Generate unique keys for each environment Never commit private keys Use test keys separate from production","breadcrumbs":"Security Model » Development","id":"968","title":"Development"},"969":{"body":"Encrypt private keys at rest Use environment variables for secrets (never store jacs_private_key_password in config) Enable DNS verification Configure strict security mode Enable audit logging Use TLS for all network transport Restrict key file permissions (0600 for keys, 0700 for key directory) Implement key rotation policy Set JACS_STRICT_TLS=true for certificate validation Use strong passwords (28+ bit entropy, 35+ for single character class) Enable signature timestamp validation Verify public key hashes before trusting agents Run cargo audit / npm audit / pip audit regularly for dependency vulnerabilities","breadcrumbs":"Security Model » Production","id":"969","title":"Production"},"97":{"body":"Summary. Your agent (in Go, Node, or Python) must prove the origin and integrity of every important output for compliance. Use the simple API in jacspy, jacsnpm, or jacsgo: load(config), sign_message(payload) for each output, and verify(signed.raw) (or verify_standalone() for one-off verification without agent setup) wherever you consume signed data. Keys stay local; use JACS_KEY_RESOLUTION for external signers or air-gapped use. See USECASES.md § 4 for the full scenario.","breadcrumbs":"Use cases » 4. A Go, Node, or Python agent with strong data provenance","id":"97","title":"4. A Go, Node, or Python agent with strong data provenance"},"970":{"body":"Always verify documents before trusting Verify agent signatures Check agreement completeness Validate DNS records when required","breadcrumbs":"Security Model » Verification","id":"970","title":"Verification"},"971":{"body":"","breadcrumbs":"Security Model » Security Considerations","id":"971","title":"Security Considerations"},"972":{"body":"Verify JACS packages are from official sources Use package checksums Keep dependencies updated","breadcrumbs":"Security Model » Supply Chain","id":"972","title":"Supply Chain"},"973":{"body":"Use constant-time comparison for signatures Protect against timing attacks Secure memory handling for keys","breadcrumbs":"Security Model » Side Channels","id":"973","title":"Side Channels"},"974":{"body":"Backup key material securely Document key recovery procedures Plan for key compromise scenarios","breadcrumbs":"Security Model » Recovery","id":"974","title":"Recovery"},"975":{"body":"","breadcrumbs":"Security Model » Troubleshooting Verification Claims","id":"975","title":"Troubleshooting Verification Claims"},"976":{"body":"\"Verified agents must have jacsAgentDomain set\" Problem : You set jacsVerificationClaim to verified but didn't specify a domain. Solution : Either add a domain or use unverified: // Option 1: Add a domain (recommended for production)\n{ \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} // Option 2: Use unverified if DNS verification isn't needed\n{ \"jacsVerificationClaim\": \"unverified\"\n} \"Agent is not registered with HAI.ai\" Problem : You're using verified-hai.ai but the agent isn't registered. Solution : Register your agent at hai.ai Or use verified for DNS-only verification: { \"jacsVerificationClaim\": \"verified\", \"jacsAgentDomain\": \"myagent.example.com\"\n} \"Cannot downgrade from 'verified' to 'unverified'\" Problem : You're trying to change an existing agent's claim to a lower level. Solution : Verification claims cannot be downgraded for security. Options: Keep the current claim level Create a new agent with the desired claim level If this is a test/development scenario, start fresh # Create a new agent instead\njacs create --type ai --claim unverified \"DNS fingerprint mismatch\" Problem : The public key hash in DNS doesn't match your agent's key. Solution : Regenerate the DNS record with your current keys: jacs dns-record Update your DNS TXT record with the new value Wait for DNS propagation (can take up to 48 hours) \"Strict DNSSEC validation failed\" Problem : Your domain doesn't have DNSSEC enabled. Solution : Enable DNSSEC with your domain registrar Publish DS records at the parent zone Or use verified with non-strict DNS (development only)","breadcrumbs":"Security Model » Common Issues and Solutions","id":"976","title":"Common Issues and Solutions"},"977":{"body":"Claim Security Level Requirements unverified 0 (lowest) None - self-asserted identity verified 1 Domain + DNS TXT record + DNSSEC verified-hai.ai 2 (highest) Above + HAI.ai registration","breadcrumbs":"Security Model » Claim Level Reference","id":"977","title":"Claim Level Reference"},"978":{"body":"Upgrades allowed : unverified → verified → verified-hai.ai Downgrades blocked : Cannot go from higher to lower claim Same level allowed : Can update agent while keeping same claim","breadcrumbs":"Security Model » Upgrade vs Downgrade Rules","id":"978","title":"Upgrade vs Downgrade Rules"},"979":{"body":"# Check your agent's current claim\njacs info | grep jacsVerificationClaim # Verify DNS record is correct\njacs dns-check # Test verification\njacs verify --agent your-agent-id:version","breadcrumbs":"Security Model » Quick Diagnostic Commands","id":"979","title":"Quick Diagnostic Commands"},"98":{"body":"Summary. You use OpenClaw with the moltyjacs plugin and need cryptographic proof that a specific message came from your agent. The agent signs outbound messages with jacs_sign; the recipient verifies with jacs_verify_auto. The signature travels with the message; no custom PKI is required. See USECASES.md § 5 for the full scenario.","breadcrumbs":"Use cases » 5. OpenClaw (moltyjacs): proving your agent sent a message","id":"98","title":"5. OpenClaw (moltyjacs): proving your agent sent a message"},"980":{"body":"Cryptographic Algorithms - Algorithm details DNS Verification - DNS-based identity Configuration - Security configuration Agreements - Multi-party agreements","breadcrumbs":"Security Model » See Also","id":"980","title":"See Also"},"981":{"body":"Key rotation is the process of replacing an agent's cryptographic keys while preserving the ability to verify documents signed with previous keys. JACS implements version-aware key management to support secure key lifecycle operations.","breadcrumbs":"Key Rotation » Key Rotation","id":"981","title":"Key Rotation"},"982":{"body":"","breadcrumbs":"Key Rotation » Why Key Rotation Matters","id":"982","title":"Why Key Rotation Matters"},"983":{"body":"When a private key is compromised, the agent must be able to: Generate new keys and continue operating Revoke trust in the compromised key Maintain verifiability of documents signed before the compromise","breadcrumbs":"Key Rotation » Key Compromise Recovery","id":"983","title":"Key Compromise Recovery"},"984":{"body":"Cryptographic algorithms evolve. Key rotation enables: Migration from older algorithms to newer ones Transition to post-quantum cryptography when needed Algorithm upgrades without breaking existing signatures","breadcrumbs":"Key Rotation » Cryptographic Agility","id":"984","title":"Cryptographic Agility"},"985":{"body":"Many security standards require periodic key rotation: PCI-DSS mandates regular key changes SOC 2 requires key management policies NIST guidelines recommend rotation schedules","breadcrumbs":"Key Rotation » Compliance Requirements","id":"985","title":"Compliance Requirements"},"986":{"body":"JACS uses a versioned identity model where each key rotation creates a new agent version.","breadcrumbs":"Key Rotation » Agent Versioning","id":"986","title":"Agent Versioning"},"987":{"body":"Agent identifiers follow the format: {agent_id}:{version_uuid} jacsId : The stable agent identity (UUID v4) - never changes jacsVersion : Current version UUID - changes on each update jacsPreviousVersion : Links to the prior version jacsOriginalVersion : The first version ever created { \"jacsId\": \"550e8400-e29b-41d4-a716-446655440000\", \"jacsVersion\": \"7c9e6679-7425-40de-944b-e07fc1f90ae7\", \"jacsPreviousVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"jacsOriginalVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\"\n}","breadcrumbs":"Key Rotation » Version Format","id":"987","title":"Version Format"},"988":{"body":"Each version forms a linked chain back to the original: Original (v1) <-- Previous (v2) <-- Current (v3) | | | key-A key-B key-C This chain provides an audit trail of all key changes and allows verification of any version.","breadcrumbs":"Key Rotation » Version Chain","id":"988","title":"Version Chain"},"989":{"body":"The critical insight enabling key rotation is that signatures contain both the agent ID and the version that created them.","breadcrumbs":"Key Rotation » Version-Aware Verification","id":"989","title":"Version-Aware Verification"},"99":{"body":"This guide covers installing the JACS Rust CLI and library.","breadcrumbs":"Installation » Installation","id":"99","title":"Installation"},"990":{"body":"{ \"jacsSignature\": { \"agentID\": \"550e8400-e29b-41d4-a716-446655440000\", \"agentVersion\": \"6ba7b810-9dad-11d1-80b4-00c04fd430c8\", \"publicKeyHash\": \"sha256-of-public-key-A\", \"signingAlgorithm\": \"ring-Ed25519\", \"signature\": \"base64-encoded-signature\", \"date\": \"2024-01-15T10:00:00Z\" }\n}","breadcrumbs":"Key Rotation » Signature Structure","id":"990","title":"Signature Structure"},"991":{"body":"When verifying a signature: Extract agentVersion and publicKeyHash from the signature Look up the public key that was active for that version Verify the signature using that historical key // Pseudocode for version-aware verification\nfn verify_signature(doc: &Document) -> Result<()> { let sig = &doc.jacs_signature; // Find the key that was active for this version let public_key = resolve_key_for_version( &sig.agent_id, &sig.agent_version, &sig.public_key_hash, )?; // Verify with the historical key verify_with_key(&doc, &sig, &public_key)\n}","breadcrumbs":"Key Rotation » Key Resolution Process","id":"991","title":"Key Resolution Process"},"992":{"body":"The verification system tries multiple sources: Local cache by hash - Fastest, key already stored locally Trust store by version - Most accurate for known agents Trust store by hash - Fallback for legacy entries DNS lookup - External verification, authoritative Fail - Key not found, verification impossible","breadcrumbs":"Key Rotation » Key Lookup Priority","id":"992","title":"Key Lookup Priority"},"993":{"body":"","breadcrumbs":"Key Rotation » Key Rotation Process","id":"993","title":"Key Rotation Process"},"994":{"body":"Generate new key pair with the desired algorithm Create new agent version with updated key information Sign new version with old key (transition signature) Update DNS records to include new key fingerprint Store old public key for future verifications","breadcrumbs":"Key Rotation » Step-by-Step Rotation","id":"994","title":"Step-by-Step Rotation"},"995":{"body":"The transition signature proves the key rotation was authorized by the holder of the old key: JACS_KEY_ROTATION:{agent_id}:{old_key_hash}:{new_key_hash}:{timestamp} This signed message: Proves continuity of ownership Provides an audit trail Binds old and new keys together cryptographically","breadcrumbs":"Key Rotation » Transition Signature","id":"995","title":"Transition Signature"},"996":{"body":"Note : These CLI commands are planned for a future release. Currently, key rotation must be performed programmatically using the Rust API. # Rotate keys with default algorithm (Coming Soon)\njacs agent rotate-keys # Rotate to post-quantum algorithm (Coming Soon)\njacs agent rotate-keys --algorithm pq2025 # List key history (Coming Soon)\njacs agent keys list # Revoke a compromised key (Coming Soon)\njacs agent keys revoke ","breadcrumbs":"Key Rotation » CLI Commands (Planned)","id":"996","title":"CLI Commands (Planned)"},"997":{"body":"Time T0: Agent created - jacsId: \"abc-123\" - jacsVersion: \"v1-uuid\" - jacsCurrentKeyHash: \"hash-A\" Time T1: Agent signs document D1 - D1.jacsSignature.agentVersion: \"v1-uuid\" - D1.jacsSignature.publicKeyHash: \"hash-A\" Time T2: Key rotation - New keys generated with hash-B - jacsVersion: \"v2-uuid\" - jacsKeyHistory: [{ hash: \"hash-A\", status: \"rotated\" }] - jacsCurrentKeyHash: \"hash-B\" Time T3: Verify D1 - Extract agentVersion \"v1-uuid\" and hash \"hash-A\" - Look up key: find \"hash-A\" with status \"rotated\" - Verification succeeds (old key still valid for old docs) Time T4: Agent signs document D2 - D2.jacsSignature.agentVersion: \"v2-uuid\" - D2.jacsSignature.publicKeyHash: \"hash-B\"","breadcrumbs":"Key Rotation » Example Rotation Flow","id":"997","title":"Example Rotation Flow"},"998":{"body":"The trust store maintains a history of all public keys for each trusted agent.","breadcrumbs":"Key Rotation » Trust Store with Version History","id":"998","title":"Trust Store with Version History"},"999":{"body":"{ \"agent_id\": \"550e8400-e29b-41d4-a716-446655440000\", \"name\": \"Example Agent\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"current_key_hash\": \"abc123...\", \"domain\": \"agent.example.com\", \"key_history\": [ { \"public_key_hash\": \"xyz789...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-01T00:00:00Z\", \"first_version\": \"11111111-1111-1111-1111-111111111111\", \"last_version\": \"22222222-2222-2222-2222-222222222222\", \"status\": \"rotated\" }, { \"public_key_hash\": \"abc123...\", \"public_key_pem\": \"-----BEGIN PUBLIC KEY-----\\n...\", \"signing_algorithm\": \"ring-Ed25519\", \"trusted_at\": \"2024-01-15T10:00:00Z\", \"first_version\": \"33333333-3333-3333-3333-333333333333\", \"last_version\": null, \"status\": \"active\" } ]\n}","breadcrumbs":"Key Rotation » TrustedAgent Structure","id":"999","title":"TrustedAgent Structure"}},"length":1532,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"3":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1441":{"tf":1.0}}},"5":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":1,"docs":{"1441":{"tf":1.0}}},"1":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":5,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1437":{"tf":1.0},"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.0}}},"2":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":8,"docs":{"1112":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":2,"docs":{"157":{"tf":1.0},"761":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1003":{"tf":1.0},"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"298":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"654":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"859":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"779":{"tf":1.0}}}},"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":6,"docs":{"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}},"3":{"df":3,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"859":{"tf":1.4142135623730951}}},"6":{"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1432":{"tf":1.0},"728":{"tf":1.0}}},"df":27,"docs":{"1084":{"tf":1.4142135623730951},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1129":{"tf":1.0},"1307":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1362":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"382":{"tf":1.0},"588":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"897":{"tf":1.0},"901":{"tf":1.0},"933":{"tf":1.0},"977":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"779":{"tf":1.0}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":9,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":15,"docs":{"1134":{"tf":1.0},"1179":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.0},"1401":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"845":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1441":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0}}},"3":{"df":2,"docs":{"1015":{"tf":1.4142135623730951},"1030":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1329":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":2,"docs":{"1169":{"tf":1.0},"1403":{"tf":1.4142135623730951}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}},"1":{"df":1,"docs":{"767":{"tf":1.0}}},"df":5,"docs":{"1116":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"198":{"tf":1.0},"501":{"tf":1.0}}},"df":16,"docs":{"1048":{"tf":1.0},"1390":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"501":{"tf":1.4142135623730951},"519":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"812":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"k":{"df":1,"docs":{"1253":{"tf":1.0}}}},"df":15,"docs":{"1071":{"tf":1.0},"1079":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1441":{"tf":1.7320508075688772},"308":{"tf":1.0},"315":{"tf":1.0},"443":{"tf":1.0},"68":{"tf":1.0},"916":{"tf":1.0}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1024":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"196":{"tf":1.0},"365":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"599":{"tf":1.0},"654":{"tf":1.0},"761":{"tf":1.0},"881":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0}}},"d":{"3":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1079":{"tf":1.0},"1215":{"tf":1.0},"916":{"tf":1.0}}},"4":{"df":1,"docs":{"1087":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0}}},"df":3,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0}}},"df":5,"docs":{"1003":{"tf":1.0},"1336":{"tf":1.0},"298":{"tf":1.0},"501":{"tf":1.4142135623730951},"859":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":15,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.0},"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"783":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"785":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"767":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"351":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"1071":{"tf":1.0}}},"8":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":76,"docs":{"1048":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1072":{"tf":1.0},"1079":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.0},"1168":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1202":{"tf":1.0},"1242":{"tf":1.0},"1248":{"tf":1.0},"1284":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":2.23606797749979},"1302":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1312":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1392":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1512":{"tf":1.0},"1522":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"303":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"700":{"tf":1.0},"742":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"814":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"962":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0}}},"5":{"df":3,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"1149":{"tf":1.0},"1271":{"tf":1.0},"1379":{"tf":1.0},"458":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"1071":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":37,"docs":{"100":{"tf":1.0},"1045":{"tf":1.0},"115":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1403":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"176":{"tf":1.0},"180":{"tf":2.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":4,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1048":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.0}}},"df":2,"docs":{"443":{"tf":1.0},"53":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{"c":{"d":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"d":{"3":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1003":{"tf":1.0},"1015":{"tf":1.0},"1024":{"tf":1.0},"1046":{"tf":1.0},"1228":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.4142135623730951},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1346":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":62,"docs":{"1048":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1203":{"tf":1.0},"1242":{"tf":1.0},"1248":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"1437":{"tf":1.0},"144":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"357":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"591":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"762":{"tf":1.0},"785":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.4142135623730951},"881":{"tf":1.0},"914":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.4142135623730951},"953":{"tf":1.0},"963":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0}}},"3":{".":{"1":{"0":{"df":2,"docs":{"549":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":8,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.0},"458":{"tf":1.0}}},"df":5,"docs":{"1079":{"tf":1.0},"1399":{"tf":1.0},"1445":{"tf":1.0},"310":{"tf":1.0},"902":{"tf":1.0}}},"1":{"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}},"2":{"df":2,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.4142135623730951}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"6":{"0":{"0":{"df":9,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"1307":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"1030":{"tf":1.0},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1204":{"tf":1.0},"1248":{"tf":1.0},"1286":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.4142135623730951},"581":{"tf":1.0},"700":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.0},"824":{"tf":1.0},"86":{"tf":1.0},"881":{"tf":1.0},"915":{"tf":1.0},"953":{"tf":1.0},"96":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1268":{"tf":1.0},"1271":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0}}},"4":{"df":1,"docs":{"465":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"987":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"1226":{"tf":1.0}}}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1273":{"tf":1.0},"1274":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"493":{"tf":1.0},"849":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"1":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"2":{"df":2,"docs":{"767":{"tf":1.0},"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}},"df":21,"docs":{"1171":{"tf":1.0},"1185":{"tf":1.0},"1205":{"tf":1.0},"1248":{"tf":1.0},"1287":{"tf":1.0},"1301":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"581":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":8,"docs":{"1305":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"625":{"tf":1.0}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":4,"docs":{"365":{"tf":1.0},"498":{"tf":1.0},"599":{"tf":1.0},"810":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":23,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.7320508075688772},"883":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"157":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"1185":{"tf":1.0},"1186":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"581":{"tf":1.0},"826":{"tf":1.0},"916":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1505":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1105":{"tf":1.0},"1528":{"tf":1.0},"250":{"tf":1.0},"352":{"tf":1.0},"584":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}},"k":{"df":1,"docs":{"911":{"tf":1.0}}}},"df":6,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.0},"255":{"tf":1.0},"501":{"tf":1.0},"900":{"tf":1.0}}},"4":{"df":3,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0}}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"7":{"0":{"0":{"df":5,"docs":{"1105":{"tf":1.0},"682":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"5":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"8":{"'":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"9":{"df":0,"docs":{},"f":{"b":{"9":{"d":{"8":{"8":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"1270":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1522":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1507":{"tf":1.0},"933":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1119":{"tf":1.0}}},"6":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1001":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1161":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1247":{"tf":1.0},"944":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1250":{"tf":1.0},"1251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1003":{"tf":1.4142135623730951},"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1333":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"374":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":3,"docs":{"1247":{"tf":1.0},"1248":{"tf":1.0},"31":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":11,"docs":{"1211":{"tf":1.4142135623730951},"1212":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1214":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1227":{"tf":1.0},"1234":{"tf":1.0},"1244":{"tf":1.0}}},"df":1,"docs":{"1145":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{"df":3,"docs":{"53":{"tf":1.0},"791":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"881":{"tf":1.7320508075688772},"925":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"981":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"937":{"tf":1.0},"977":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1102":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1149":{"tf":1.0},"1214":{"tf":1.0},"1290":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.4142135623730951},"823":{"tf":1.0},"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1490":{"tf":1.0}}}}}},"df":30,"docs":{"1061":{"tf":1.0},"1066":{"tf":1.0},"1092":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1174":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1477":{"tf":1.0},"1528":{"tf":1.0},"281":{"tf":1.4142135623730951},"287":{"tf":1.0},"352":{"tf":1.0},"423":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.0},"584":{"tf":1.0},"610":{"tf":1.0},"656":{"tf":1.0},"92":{"tf":1.0},"942":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"810":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"r":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1070":{"tf":1.0},"1194":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":3,"docs":{"1154":{"tf":1.0},"151":{"tf":1.0},"992":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"766":{"tf":1.0}}}}}},"m":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"767":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":34,"docs":{"1071":{"tf":1.0},"1149":{"tf":1.0},"1158":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.0},"1403":{"tf":2.449489742783178},"1485":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"21":{"tf":1.0},"237":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.4142135623730951},"599":{"tf":1.0},"617":{"tf":1.0},"733":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"868":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1004":{"tf":1.0},"1012":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1476":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.0},"991":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1148":{"tf":1.0},"1194":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"789":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"d":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":47,"docs":{"106":{"tf":1.0},"1109":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1165":{"tf":1.0},"1180":{"tf":1.0},"1186":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1420":{"tf":1.0},"1480":{"tf":1.0},"1510":{"tf":1.0},"1526":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"473":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"553":{"tf":1.0},"580":{"tf":1.4142135623730951},"589":{"tf":1.0},"640":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"823":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0},"938":{"tf":1.0},"976":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1051":{"tf":1.0},"1083":{"tf":1.0},"1249":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1420":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"523":{"tf":1.0},"687":{"tf":1.0},"700":{"tf":1.0},"719":{"tf":1.0},"786":{"tf":1.0},"908":{"tf":1.0},"939":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0},"760":{"tf":2.23606797749979},"762":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"443":{"tf":1.0}}}}}}}}},"df":14,"docs":{"1166":{"tf":1.0},"1175":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"173":{"tf":1.0},"258":{"tf":1.0},"423":{"tf":1.0},"524":{"tf":1.0},"701":{"tf":1.0},"797":{"tf":1.0},"874":{"tf":1.0},"950":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1209":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.4142135623730951},"842":{"tf":1.4142135623730951},"847":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"1118":{"tf":1.0},"320":{"tf":1.0},"4":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.0},"1069":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1002":{"tf":1.0},"1007":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}},"s":{"2":{"5":{"6":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1450":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1477":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1032":{"tf":1.0},"1254":{"tf":1.0},"1333":{"tf":1.0},"1427":{"tf":1.0},"178":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"918":{"tf":1.0},"934":{"tf":1.0},"944":{"tf":1.0},"973":{"tf":1.0}}}}}}},"df":2,"docs":{"1507":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":51,"docs":{"1006":{"tf":1.0},"1177":{"tf":1.0},"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1245":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"1423":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"454":{"tf":1.0},"518":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"695":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.4142135623730951},"850":{"tf":1.0},"86":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"951":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"981":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"616":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"382":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"642":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1385":{"tf":1.0},"654":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1363":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1362":{"tf":1.0},"420":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":4,"docs":{"1384":{"tf":1.0},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1088":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"581":{"tf":1.0},"696":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"921":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"587":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"653":{"tf":1.0},"723":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"558":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"846":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":2,"docs":{"269":{"tf":1.0},"288":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1361":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"523":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":14,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"545":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0},"419":{"tf":1.0},"519":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"794":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1517":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.7320508075688772},"143":{"tf":1.0},"241":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"347":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1213":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"1515":{"tf":1.0},"201":{"tf":1.0},"242":{"tf":2.23606797749979},"410":{"tf":1.0},"531":{"tf":1.0},"644":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1356":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1518":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.0},"738":{"tf":1.4142135623730951},"75":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"794":{"tf":1.4142135623730951},"822":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1148":{"tf":1.0},"1149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1047":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1140":{"tf":1.0},"1394":{"tf":1.4142135623730951},"681":{"tf":1.0},"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1140":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1399":{"tf":1.0},"518":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1302":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":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":{"545":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"641":{"tf":1.0},"701":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"648":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"558":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1021":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"637":{"tf":1.0},"703":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"412":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":3,"docs":{"407":{"tf":1.0},"524":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1362":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1148":{"tf":1.0},"1405":{"tf":1.0},"414":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"526":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1047":{"tf":1.0},"645":{"tf":1.0},"709":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"657":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"411":{"tf":1.0},"532":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1353":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"522":{"tf":1.0},"545":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"795":{"tf":1.0},"922":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"1375":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0}}}}}},"df":1,"docs":{"725":{"tf":1.0}},"u":{"df":1,"docs":{"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"558":{"tf":1.0},"697":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"576":{"tf":1.0},"587":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"631":{"tf":1.0},"697":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"654":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"957":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"632":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"698":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"545":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1401":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"795":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1352":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":1,"docs":{"1401":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"419":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1369":{"tf":1.0},"349":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"520":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"420":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1356":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"527":{"tf":1.0},"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"142":{"tf":1.0},"1484":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"406":{"tf":1.0},"640":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1329":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"217":{"tf":1.0},"406":{"tf":1.0},"640":{"tf":1.0}}},":":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"1204":{"tf":1.0}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1332":{"tf":1.0},"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"606":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"=":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"287":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"769":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"604":{"tf":1.0},"606":{"tf":1.0},"616":{"tf":1.0},"769":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"708":{"tf":1.0}}}}},"i":{"d":{"df":14,"docs":{"1081":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1384":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"700":{"tf":1.4142135623730951},"949":{"tf":1.0},"957":{"tf":1.0},"999":{"tf":1.0}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"264":{"tf":1.0},"695":{"tf":1.0},"769":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"770":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.4142135623730951}},"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":1,"docs":{"382":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"76":{"tf":1.0},"770":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"76":{"tf":1.0},"770":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":566,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.0},"10":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1004":{"tf":1.0},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"1112":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.23606797749979},"1143":{"tf":1.4142135623730951},"1145":{"tf":2.449489742783178},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1166":{"tf":1.0},"117":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1175":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1194":{"tf":2.23606797749979},"1196":{"tf":1.0},"120":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1206":{"tf":2.6457513110645907},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.0},"1216":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.7320508075688772},"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1236":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1242":{"tf":1.7320508075688772},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1247":{"tf":2.6457513110645907},"1248":{"tf":2.6457513110645907},"1249":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"126":{"tf":1.0},"1261":{"tf":1.0},"1263":{"tf":1.0},"127":{"tf":2.449489742783178},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1277":{"tf":2.0},"128":{"tf":3.3166247903554},"129":{"tf":2.8284271247461903},"13":{"tf":1.4142135623730951},"130":{"tf":2.0},"1302":{"tf":1.0},"1318":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"1320":{"tf":1.0},"1321":{"tf":2.23606797749979},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":1.0},"1332":{"tf":2.8284271247461903},"1333":{"tf":3.3166247903554},"1334":{"tf":2.6457513110645907},"134":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"1390":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"1399":{"tf":3.4641016151377544},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":2.0},"1417":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"142":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"143":{"tf":2.0},"1430":{"tf":1.0},"1432":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"146":{"tf":1.7320508075688772},"1460":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"147":{"tf":1.7320508075688772},"1476":{"tf":1.0},"148":{"tf":1.0},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.7320508075688772},"149":{"tf":1.4142135623730951},"1499":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":2.449489742783178},"1515":{"tf":1.7320508075688772},"1518":{"tf":1.7320508075688772},"152":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"1530":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"167":{"tf":2.23606797749979},"169":{"tf":1.0},"17":{"tf":1.0},"170":{"tf":2.0},"172":{"tf":1.4142135623730951},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"205":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":2.0},"223":{"tf":1.4142135623730951},"226":{"tf":2.6457513110645907},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.7320508075688772},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":2.23606797749979},"242":{"tf":2.6457513110645907},"244":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"261":{"tf":2.6457513110645907},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.449489742783178},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"27":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":2.23606797749979},"327":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":2.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"35":{"tf":2.23606797749979},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":2.449489742783178},"410":{"tf":1.4142135623730951},"411":{"tf":2.0},"412":{"tf":1.0},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":1.7320508075688772},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":2.0},"436":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"478":{"tf":1.7320508075688772},"48":{"tf":1.0},"487":{"tf":2.0},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"52":{"tf":1.0},"523":{"tf":2.23606797749979},"524":{"tf":1.0},"525":{"tf":1.0},"53":{"tf":3.0},"530":{"tf":1.7320508075688772},"531":{"tf":2.23606797749979},"532":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"54":{"tf":2.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":2.23606797749979},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"590":{"tf":1.0},"592":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.4142135623730951},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":2.449489742783178},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":2.6457513110645907},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.7320508075688772},"623":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.4142135623730951},"645":{"tf":2.0},"646":{"tf":1.0},"649":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"672":{"tf":1.0},"673":{"tf":2.23606797749979},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.4142135623730951},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"700":{"tf":2.23606797749979},"701":{"tf":1.0},"702":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":2.23606797749979},"709":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":2.8284271247461903},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":2.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":2.23606797749979},"749":{"tf":2.0},"75":{"tf":1.4142135623730951},"751":{"tf":1.7320508075688772},"752":{"tf":1.7320508075688772},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.7320508075688772},"758":{"tf":1.4142135623730951},"76":{"tf":2.0},"761":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"769":{"tf":1.7320508075688772},"770":{"tf":1.0},"771":{"tf":2.0},"772":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":2.0},"79":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.1622776601683795},"82":{"tf":2.8284271247461903},"822":{"tf":1.0},"823":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"829":{"tf":2.449489742783178},"831":{"tf":1.7320508075688772},"832":{"tf":1.4142135623730951},"833":{"tf":2.449489742783178},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.7320508075688772},"838":{"tf":1.0},"84":{"tf":1.7320508075688772},"840":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.4142135623730951},"847":{"tf":2.6457513110645907},"848":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.4142135623730951},"863":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"879":{"tf":1.4142135623730951},"88":{"tf":4.47213595499958},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.4142135623730951},"896":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.4142135623730951},"913":{"tf":2.0},"915":{"tf":1.0},"92":{"tf":1.7320508075688772},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"95":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"953":{"tf":2.0},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.7320508075688772},"970":{"tf":1.0},"976":{"tf":2.449489742783178},"978":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.4142135623730951},"989":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":2.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}},"i":{"d":{"df":40,"docs":{"1045":{"tf":1.0},"1130":{"tf":1.0},"1186":{"tf":1.0},"1196":{"tf":1.0},"1226":{"tf":1.0},"1242":{"tf":1.0},"1245":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1361":{"tf":1.4142135623730951},"138":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1486":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"523":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"791":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.449489742783178},"913":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.4142135623730951},"990":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{":":{"'":{")":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.4142135623730951},"595":{"tf":1.0},"597":{"tf":1.0},"611":{"tf":1.4142135623730951}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"518":{"tf":1.0},"770":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0},"1399":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"615":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"990":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.0},"984":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"1143":{"tf":1.0},"1242":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"883":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1486":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1328":{"tf":2.0},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.0},"219":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":115,"docs":{"1":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1143":{"tf":2.449489742783178},"1144":{"tf":2.0},"1145":{"tf":1.7320508075688772},"118":{"tf":1.0},"1194":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1327":{"tf":1.0},"1328":{"tf":2.6457513110645907},"1329":{"tf":3.605551275463989},"1330":{"tf":3.3166247903554},"1360":{"tf":1.0},"1361":{"tf":2.23606797749979},"1362":{"tf":2.0},"1363":{"tf":1.0},"138":{"tf":2.8284271247461903},"1383":{"tf":1.0},"1384":{"tf":2.23606797749979},"1385":{"tf":2.0},"1386":{"tf":1.0},"1398":{"tf":1.0},"1399":{"tf":2.0},"142":{"tf":2.6457513110645907},"1423":{"tf":3.1622776601683795},"145":{"tf":1.4142135623730951},"1483":{"tf":1.0},"1484":{"tf":2.23606797749979},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1487":{"tf":1.7320508075688772},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.0},"216":{"tf":1.7320508075688772},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"225":{"tf":1.4142135623730951},"226":{"tf":2.8284271247461903},"227":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"256":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.4142135623730951},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"420":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"523":{"tf":2.449489742783178},"524":{"tf":1.7320508075688772},"525":{"tf":2.0},"53":{"tf":2.0},"54":{"tf":2.0},"55":{"tf":2.23606797749979},"639":{"tf":1.0},"640":{"tf":1.4142135623730951},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"654":{"tf":1.7320508075688772},"700":{"tf":2.449489742783178},"701":{"tf":1.7320508075688772},"702":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":2.0},"786":{"tf":1.0},"799":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"813":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"852":{"tf":1.0},"858":{"tf":1.4142135623730951},"875":{"tf":1.0},"88":{"tf":3.872983346207417},"886":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"952":{"tf":1.4142135623730951},"953":{"tf":1.4142135623730951},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"980":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"548":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1226":{"tf":1.0},"13":{"tf":1.0},"1332":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.0},"37":{"tf":2.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.4142135623730951},"663":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"76":{"tf":1.0},"765":{"tf":1.4142135623730951},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"938":{"tf":1.0},"976":{"tf":1.0}},"r":{"df":2,"docs":{"1060":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"1003":{"tf":1.0},"1250":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"1472":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":79,"docs":{"1010":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.4142135623730951},"1015":{"tf":1.4142135623730951},"1016":{"tf":1.0},"1028":{"tf":1.0},"1033":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1038":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1044":{"tf":1.0},"1045":{"tf":1.0},"1047":{"tf":2.0},"1048":{"tf":1.0},"1050":{"tf":2.23606797749979},"1053":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1227":{"tf":1.0},"1230":{"tf":1.0},"1245":{"tf":1.0},"1254":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":2.449489742783178},"1472":{"tf":2.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":2.0},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"334":{"tf":1.0},"341":{"tf":1.0},"345":{"tf":1.0},"375":{"tf":1.0},"404":{"tf":1.0},"418":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"568":{"tf":1.0},"57":{"tf":1.0},"572":{"tf":1.0},"608":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":1.0},"980":{"tf":1.4142135623730951},"984":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.7320508075688772}}}}}}}}},"i":{"a":{"df":1,"docs":{"1343":{"tf":2.0}}},"c":{"df":1,"docs":{"1305":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"w":{"df":19,"docs":{"1054":{"tf":1.0},"1071":{"tf":1.0},"1108":{"tf":1.0},"1209":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"446":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"934":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"978":{"tf":1.4142135623730951},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1447":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1485":{"tf":2.0},"43":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}},"n":{"df":3,"docs":{"112":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1085":{"tf":1.0},"1151":{"tf":1.0},"1163":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1455":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"477":{"tf":1.0},"509":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"951":{"tf":1.0},"964":{"tf":1.0},"970":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1451":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"1111":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"1480":{"tf":1.0},"198":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.0},"519":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"182":{"tf":1.0},"35":{"tf":1.7320508075688772},"49":{"tf":1.0},"581":{"tf":1.0},"765":{"tf":1.0}}},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.0}}},"z":{"df":7,"docs":{"1256":{"tf":1.0},"156":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"241":{"tf":1.0},"412":{"tf":1.0},"531":{"tf":1.4142135623730951},"533":{"tf":1.0},"646":{"tf":1.0},"708":{"tf":1.4142135623730951},"710":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1194":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"528":{"tf":1.0},"705":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"414":{"tf":1.0},"648":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":65,"docs":{"1042":{"tf":1.0},"1084":{"tf":1.0},"117":{"tf":1.0},"1172":{"tf":2.0},"1179":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1276":{"tf":1.0},"1290":{"tf":1.0},"1355":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":2.23606797749979},"1402":{"tf":2.23606797749979},"1437":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1525":{"tf":1.0},"1526":{"tf":1.0},"257":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.0},"360":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"383":{"tf":1.0},"385":{"tf":1.4142135623730951},"421":{"tf":1.7320508075688772},"428":{"tf":1.0},"452":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.0},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"486":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"594":{"tf":1.0},"602":{"tf":1.0},"617":{"tf":1.0},"619":{"tf":1.4142135623730951},"65":{"tf":1.0},"662":{"tf":1.4142135623730951},"685":{"tf":1.0},"689":{"tf":1.4142135623730951},"690":{"tf":1.4142135623730951},"748":{"tf":1.0},"810":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0},"91":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1276":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1276":{"tf":1.0},"486":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"434":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1149":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1355":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"1267":{"tf":1.0},"1526":{"tf":1.0},"483":{"tf":1.0},"493":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":4,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"507":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":5,"docs":{"1148":{"tf":1.0},"1355":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1281":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1526":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1526":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":2.0},"1287":{"tf":1.4142135623730951},"1288":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"479":{"tf":2.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"509":{"tf":2.0},"510":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":33,"docs":{"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"348":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"186":{"tf":1.0},"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1082":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1279":{"tf":1.0},"1358":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"186":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"1032":{"tf":1.0},"1086":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"257":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.0},"548":{"tf":1.0},"576":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}},"df":11,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1482":{"tf":1.0},"192":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"501":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"1042":{"tf":1.0},"1137":{"tf":1.0},"1295":{"tf":1.0},"21":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1116":{"tf":1.0},"1194":{"tf":1.0},"204":{"tf":1.0}}}}},"v":{"df":12,"docs":{"11":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"288":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"617":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"115":{"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":10,"docs":{"365":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"599":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"287":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"109":{"tf":1.0},"1176":{"tf":1.0},"1210":{"tf":1.0},"1294":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"549":{"tf":1.0},"729":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"866":{"tf":1.0},"873":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1186":{"tf":1.0},"1345":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"676":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"956":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"886":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":1,"docs":{"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"s":{"3":{":":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1071":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.4142135623730951},"1130":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"742":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"790":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1197":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1237":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"575":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1151":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1217":{"tf":1.0},"1392":{"tf":2.6457513110645907},"684":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"420":{"tf":1.0},"654":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"808":{"tf":1.0},"816":{"tf":1.7320508075688772},"823":{"tf":1.0},"869":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1336":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":59,"docs":{"1148":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1301":{"tf":2.23606797749979},"1305":{"tf":2.23606797749979},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.23606797749979},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1378":{"tf":2.23606797749979},"1382":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.6457513110645907},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0},"383":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"1148":{"tf":1.0},"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":47,"docs":{"1059":{"tf":1.0},"1067":{"tf":1.0},"1323":{"tf":2.8284271247461903},"134":{"tf":2.449489742783178},"135":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.449489742783178},"1421":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":2.449489742783178},"1432":{"tf":1.0},"1433":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":2.449489742783178},"185":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"193":{"tf":1.4142135623730951},"194":{"tf":1.0},"206":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.0},"371":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"401":{"tf":1.4142135623730951},"461":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":2.23606797749979},"522":{"tf":2.0},"605":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"635":{"tf":1.4142135623730951},"65":{"tf":1.0},"696":{"tf":2.0},"699":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1326":{"tf":1.0},"194":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"395":{"tf":1.0},"629":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":8,"docs":{"1032":{"tf":1.0},"1254":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.4142135623730951},"973":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"440":{"tf":1.0},"946":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1194":{"tf":1.0},"1208":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0},"62":{"tf":1.0},"901":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":32,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1403":{"tf":2.6457513110645907},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"423":{"tf":1.0},"502":{"tf":1.0},"60":{"tf":1.0},"603":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"845":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.7320508075688772},"942":{"tf":1.0},"951":{"tf":1.4142135623730951},"966":{"tf":1.4142135623730951},"969":{"tf":2.0},"988":{"tf":1.0},"995":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":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":{"1403":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":35,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1206":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1442":{"tf":2.23606797749979},"1455":{"tf":1.0},"147":{"tf":1.0},"1474":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"503":{"tf":2.0},"6":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.7320508075688772},"669":{"tf":1.0},"679":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"816":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"944":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1194":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1486":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"783":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"899":{"tf":1.0},"995":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1109":{"tf":1.0}}}}}}}}},"df":1,"docs":{"181":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1295":{"tf":1.0},"1432":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.0},"495":{"tf":1.0},"73":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0}}}},"df":3,"docs":{"255":{"tf":1.0},"765":{"tf":1.0},"916":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":20,"docs":{"1055":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1087":{"tf":1.0},"1089":{"tf":1.0},"1092":{"tf":1.0},"1220":{"tf":1.0},"1451":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.4142135623730951},"381":{"tf":1.0},"427":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"847":{"tf":1.0},"916":{"tf":1.0}}}}},"df":1,"docs":{"1097":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1287":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":71,"docs":{"1148":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":2.449489742783178},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.3166247903554},"1305":{"tf":2.6457513110645907},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.6457513110645907},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1359":{"tf":2.23606797749979},"1361":{"tf":1.7320508075688772},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":2.23606797749979},"1369":{"tf":2.449489742783178},"1378":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1399":{"tf":3.7416573867739413},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.3166247903554},"1405":{"tf":2.23606797749979},"1515":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"458":{"tf":2.0},"459":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":2.6457513110645907},"477":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}},"r":{"df":3,"docs":{"981":{"tf":1.0},"989":{"tf":1.0},"991":{"tf":1.0}}}},"df":23,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.4142135623730951},"1065":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":2.449489742783178},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1512":{"tf":2.0},"1513":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"237":{"tf":2.23606797749979},"255":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0},"893":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1066":{"tf":1.0},"1454":{"tf":1.0},"1512":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}}}}}},"s":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1452":{"tf":1.0},"1454":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.0},"64":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"1197":{"tf":1.0},"1422":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0},"805":{"tf":1.0},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"1054":{"tf":1.4142135623730951},"1055":{"tf":1.4142135623730951},"1056":{"tf":1.0},"1057":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"1083":{"tf":1.0},"1089":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.449489742783178},"1489":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1511":{"tf":1.0},"1528":{"tf":1.0},"1531":{"tf":1.0},"285":{"tf":1.4142135623730951},"289":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.0},"536":{"tf":1.0},"564":{"tf":1.0},"722":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"901":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1011":{"tf":1.0},"1061":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1098":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1510":{"tf":1.0},"1520":{"tf":1.0},"171":{"tf":1.4142135623730951},"974":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1503":{"tf":1.0},"711":{"tf":1.0},"940":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1312":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1119":{"tf":1.0}}}}}},"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"760":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":30,"docs":{"1021":{"tf":1.0},"1045":{"tf":1.0},"1091":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"129":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"404":{"tf":1.0},"45":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"53":{"tf":1.4142135623730951},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":47,"docs":{"1013":{"tf":1.0},"1015":{"tf":1.0},"1029":{"tf":1.0},"1077":{"tf":1.0},"110":{"tf":1.0},"1108":{"tf":1.0},"1119":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1192":{"tf":1.0},"1196":{"tf":1.0},"1249":{"tf":1.0},"1261":{"tf":1.0},"1333":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"1482":{"tf":1.0},"16":{"tf":1.0},"230":{"tf":1.4142135623730951},"244":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"607":{"tf":1.0},"615":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"739":{"tf":1.0},"751":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"925":{"tf":1.0},"943":{"tf":1.0},"960":{"tf":1.0},"980":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":46,"docs":{"107":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.0},"1324":{"tf":1.0},"1334":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"1381":{"tf":1.0},"1425":{"tf":1.0},"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"188":{"tf":1.0},"216":{"tf":1.0},"327":{"tf":1.0},"334":{"tf":1.0},"349":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0},"481":{"tf":1.0},"485":{"tf":1.0},"519":{"tf":1.0},"547":{"tf":1.0},"555":{"tf":1.0},"576":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"75":{"tf":1.0},"758":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":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":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1315":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.7320508075688772},"1389":{"tf":1.0},"1390":{"tf":1.7320508075688772},"206":{"tf":1.0},"237":{"tf":1.0},"311":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1033":{"tf":1.0}}}}}},"df":30,"docs":{"1145":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1206":{"tf":1.0},"1247":{"tf":1.7320508075688772},"1248":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1355":{"tf":2.6457513110645907},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.0},"1361":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1384":{"tf":1.0},"226":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"426":{"tf":2.0},"427":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.0},"883":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"899":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"173":{"tf":1.0},"21":{"tf":1.0},"439":{"tf":1.0},"54":{"tf":1.0}}}}},"df":1,"docs":{"804":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":36,"docs":{"1140":{"tf":1.0},"1161":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1292":{"tf":1.0},"1310":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.4142135623730951},"249":{"tf":1.0},"30":{"tf":1.0},"361":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"595":{"tf":1.0},"673":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"1310":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"856":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"804":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1215":{"tf":1.0},"1453":{"tf":1.0},"243":{"tf":1.0},"928":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1077":{"tf":1.0},"1295":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"831":{"tf":1.0},"863":{"tf":1.0}}}},"w":{"df":4,"docs":{"1295":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"1042":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1161":{"tf":1.0},"36":{"tf":1.0},"62":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1009":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1191":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1297":{"tf":1.0},"1311":{"tf":1.0},"1452":{"tf":2.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"433":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1306":{"tf":1.0},"250":{"tf":1.4142135623730951},"725":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1173":{"tf":1.0},"1417":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1502":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0},"156":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.4142135623730951},"934":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1083":{"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":1,"docs":{"1182":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1330":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1346":{"tf":1.0},"255":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"108":{"tf":1.0},"353":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"d":{"df":19,"docs":{"1194":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"321":{"tf":1.0},"327":{"tf":1.0},"54":{"tf":1.0},"548":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"753":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"978":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1305":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"879":{"tf":1.0},"883":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"1375":{"tf":1.0},"1404":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":23,"docs":{"1129":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"788":{"tf":1.0},"811":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1222":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"h":{"df":22,"docs":{"1007":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1036":{"tf":1.0},"1135":{"tf":1.0},"1145":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.4142135623730951},"125":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"15":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"451":{"tf":1.0},"530":{"tf":1.0},"707":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"88":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":12,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1154":{"tf":1.0},"779":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1080":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"473":{"tf":2.0},"818":{"tf":1.0},"940":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1035":{"tf":1.0},"35":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"837":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"1451":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1512":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1067":{"tf":1.4142135623730951},"1071":{"tf":1.4142135623730951},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"381":{"tf":1.0},"404":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"19":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":24,"docs":{"1":{"tf":1.0},"1078":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1296":{"tf":1.0},"1305":{"tf":1.0},"1409":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"453":{"tf":1.0},"481":{"tf":1.0},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"70":{"tf":1.0},"758":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":20,"docs":{"1069":{"tf":1.0},"1075":{"tf":1.0},"1136":{"tf":1.0},"1207":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"304":{"tf":1.0},"36":{"tf":1.4142135623730951},"5":{"tf":1.0},"587":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"1015":{"tf":1.7320508075688772},"1018":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1024":{"tf":1.0},"1080":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"277":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1101":{"tf":1.0},"1103":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"585":{"tf":1.0},"871":{"tf":1.0},"950":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"761":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1403":{"tf":1.0},"31":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":1,"docs":{"1379":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"474":{"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":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"1148":{"tf":1.0},"1174":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"361":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"517":{"tf":1.0},"595":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"694":{"tf":1.0},"726":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}}},"df":1,"docs":{"1356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"911":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"58":{"tf":1.0},"911":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"1083":{"tf":1.0},"1194":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1418":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}}}}}},"df":4,"docs":{"1213":{"tf":1.0},"1234":{"tf":1.7320508075688772},"1244":{"tf":1.0},"760":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1106":{"tf":1.0},"249":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"258":{"tf":1.0},"292":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1154":{"tf":3.0},"1165":{"tf":2.449489742783178},"1296":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"911":{"tf":1.0},"969":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":25,"docs":{"1016":{"tf":1.0},"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1108":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.0},"1295":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"1451":{"tf":1.0},"182":{"tf":1.0},"473":{"tf":2.0},"925":{"tf":1.0},"93":{"tf":1.4142135623730951},"930":{"tf":1.0},"933":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":8,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"1339":{"tf":1.0},"1480":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"739":{"tf":1.4142135623730951},"792":{"tf":1.0},"836":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":3,"docs":{"51":{"tf":1.0},"730":{"tf":1.0},"792":{"tf":1.7320508075688772}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":31,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"104":{"tf":1.0},"1320":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":4,"docs":{"1095":{"tf":1.0},"552":{"tf":1.0},"586":{"tf":1.7320508075688772},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"261":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"930":{"tf":1.4142135623730951},"939":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"34":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"929":{"tf":2.0},"939":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1403":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1194":{"tf":1.0},"1212":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.0},"61":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"929":{"tf":1.0},"972":{"tf":1.0},"988":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"1011":{"tf":1.0},"1219":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1456":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1509":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"664":{"tf":1.0},"780":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"940":{"tf":1.0},"942":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1174":{"tf":1.0},"59":{"tf":1.0},"951":{"tf":1.0},"973":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1137":{"tf":1.0},"1221":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.0},"620":{"tf":1.0},"763":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1021":{"tf":1.0},"82":{"tf":1.4142135623730951},"925":{"tf":2.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1250":{"tf":1.0}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"1144":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":76,"docs":{"1109":{"tf":1.0},"1166":{"tf":1.0},"1200":{"tf":1.0},"1208":{"tf":1.0},"1260":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"142":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1494":{"tf":1.0},"1498":{"tf":1.0},"1528":{"tf":1.7320508075688772},"188":{"tf":1.0},"205":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"253":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"408":{"tf":1.4142135623730951},"420":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"603":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"642":{"tf":1.4142135623730951},"654":{"tf":1.0},"702":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"96":{"tf":1.0},"970":{"tf":1.0},"979":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1529":{"tf":1.0},"967":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1421":{"tf":1.0},"1433":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"871":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1105":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"682":{"tf":1.0},"908":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"7":{"tf":1.0},"960":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"24":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"i":{"/":{"c":{"d":{"df":3,"docs":{"1157":{"tf":1.0},"255":{"tf":1.0},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":11,"docs":{"936":{"tf":1.7320508075688772},"937":{"tf":1.4142135623730951},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":2.0},"975":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.0}}}},"p":{"df":1,"docs":{"108":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":36,"docs":{"1152":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.0},"429":{"tf":1.0},"498":{"tf":1.0},"516":{"tf":1.4142135623730951},"541":{"tf":1.0},"588":{"tf":1.0},"593":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.4142135623730951},"619":{"tf":1.0},"693":{"tf":1.4142135623730951},"711":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"969":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"960":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1018":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"751":{"tf":1.0},"757":{"tf":1.0}},"i":{"df":3,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"753":{"tf":1.0}}}}}}},"u":{"d":{"df":5,"docs":{"831":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"1168":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"312":{"tf":1.0}}}}},"r":{"df":8,"docs":{"170":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"929":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":36,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1229":{"tf":1.0},"1317":{"tf":1.4142135623730951},"1347":{"tf":1.7320508075688772},"139":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1497":{"tf":1.0},"1501":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.7320508075688772},"359":{"tf":1.0},"4":{"tf":1.4142135623730951},"433":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"771":{"tf":1.0},"8":{"tf":1.7320508075688772},"907":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.4142135623730951},"427":{"tf":1.0},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"667":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":44,"docs":{"1149":{"tf":1.0},"1152":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1189":{"tf":1.7320508075688772},"1202":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1265":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1359":{"tf":2.6457513110645907},"1379":{"tf":1.0},"1382":{"tf":2.23606797749979},"1493":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"427":{"tf":2.6457513110645907},"429":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":2.6457513110645907},"447":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"667":{"tf":2.0},"670":{"tf":1.7320508075688772},"672":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":2.23606797749979},"719":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"446":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"934":{"tf":1.4142135623730951},"935":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"554":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"u":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1064":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1089":{"tf":1.0},"1439":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1310":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.0}}}}},"df":33,"docs":{"1154":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1345":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.4142135623730951},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"196":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"320":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.0},"679":{"tf":1.0},"711":{"tf":1.0},"748":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.7320508075688772},"822":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}}},"df":1,"docs":{"858":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1076":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"88":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1304":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.0},"213":{"tf":1.0},"786":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"302":{"tf":1.7320508075688772},"311":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1396":{"tf":1.0},"152":{"tf":1.0},"345":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"572":{"tf":1.0},"657":{"tf":1.0},"753":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"479":{"tf":1.0},"509":{"tf":1.0},"996":{"tf":2.0}}},"m":{"a":{"df":3,"docs":{"138":{"tf":1.0},"1436":{"tf":1.0},"1479":{"tf":1.0}},"n":{"d":{"df":43,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"133":{"tf":1.0},"1333":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1359":{"tf":1.0},"138":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.4142135623730951},"1412":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":1.4142135623730951},"1423":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1458":{"tf":1.0},"1501":{"tf":1.0},"1524":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"255":{"tf":1.0},"4":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"67":{"tf":1.0},"979":{"tf":1.0},"996":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":25,"docs":{"1084":{"tf":1.0},"1194":{"tf":2.0},"169":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"747":{"tf":1.0},"833":{"tf":1.0},"852":{"tf":2.0},"853":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"858":{"tf":1.4142135623730951},"859":{"tf":1.0},"860":{"tf":2.6457513110645907},"861":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.7320508075688772},"875":{"tf":1.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1317":{"tf":1.0},"140":{"tf":1.0},"1424":{"tf":1.0},"1428":{"tf":1.0},"1443":{"tf":1.0},"1502":{"tf":1.0},"1528":{"tf":1.0},"207":{"tf":1.0},"303":{"tf":1.0},"350":{"tf":1.0},"357":{"tf":1.0},"451":{"tf":1.0},"547":{"tf":1.0},"582":{"tf":1.0},"591":{"tf":1.0},"678":{"tf":1.0},"724":{"tf":1.0},"727":{"tf":1.0},"741":{"tf":1.0},"925":{"tf":1.0},"93":{"tf":1.0},"976":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":28,"docs":{"0":{"tf":1.7320508075688772},"1020":{"tf":1.0},"1042":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"422":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"663":{"tf":1.0},"88":{"tf":1.0},"910":{"tf":1.0},"927":{"tf":1.0},"955":{"tf":1.0},"964":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1328":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"753":{"tf":1.0}}}},"r":{"df":3,"docs":{"231":{"tf":1.0},"922":{"tf":1.0},"944":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1048":{"tf":1.0},"973":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"1023":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1292":{"tf":1.0},"1432":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1528":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.0},"25":{"tf":1.0},"353":{"tf":1.4142135623730951},"451":{"tf":1.0},"585":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"711":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"856":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1077":{"tf":1.0},"1078":{"tf":1.0},"1087":{"tf":1.0},"1296":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":106,"docs":{"11":{"tf":1.0},"1144":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1256":{"tf":1.0},"1268":{"tf":1.0},"1312":{"tf":2.0},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1347":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1370":{"tf":1.0},"1378":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":2.0},"1400":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1458":{"tf":1.0},"1487":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.0},"29":{"tf":1.0},"298":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"370":{"tf":1.4142135623730951},"382":{"tf":1.0},"385":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"441":{"tf":1.0},"452":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.0},"480":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"507":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"604":{"tf":1.4142135623730951},"616":{"tf":1.0},"619":{"tf":1.0},"62":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"820":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"83":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0},"902":{"tf":1.0},"970":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":12,"docs":{"1086":{"tf":1.0},"1089":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.0},"1297":{"tf":1.0},"17":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"593":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"1010":{"tf":1.0},"1026":{"tf":1.0},"1033":{"tf":1.0},"11":{"tf":1.0},"1166":{"tf":1.0},"1421":{"tf":1.4142135623730951},"188":{"tf":1.0},"37":{"tf":1.0},"62":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1079":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"51":{"tf":1.0},"729":{"tf":1.0},"733":{"tf":1.0},"740":{"tf":1.0},"753":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"1161":{"tf":1.0},"741":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"501":{"tf":1.0},"729":{"tf":1.0},"741":{"tf":1.0},"752":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"0":{"tf":1.0},"1173":{"tf":1.0},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"290":{"tf":1.0},"60":{"tf":1.0},"898":{"tf":1.0},"910":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.0},"1010":{"tf":1.0},"1052":{"tf":1.7320508075688772},"918":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":2.0},"996":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1036":{"tf":1.0},"1254":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"789":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":8,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.4142135623730951},"455":{"tf":1.0},"512":{"tf":1.0},"67":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"552":{"tf":1.7320508075688772},"579":{"tf":2.0},"586":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1119":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"54":{"tf":1.0},"757":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0}}}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1051":{"tf":1.0},"1129":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1047":{"tf":1.0},"139":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.4142135623730951},"661":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1140":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.7320508075688772},"595":{"tf":1.0},"611":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"112":{"tf":1.0},"1140":{"tf":2.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1413":{"tf":1.7320508075688772},"1419":{"tf":1.0},"142":{"tf":1.0},"1428":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1460":{"tf":1.0},"1467":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"150":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"378":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.7320508075688772},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"485":{"tf":1.0},"544":{"tf":1.0},"595":{"tf":1.0},"611":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.4142135623730951},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":2.0},"892":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":2.23606797749979},"925":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":47,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1301":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1495":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"378":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"518":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":204,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1056":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1065":{"tf":1.0},"1070":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1139":{"tf":1.0},"116":{"tf":1.0},"1168":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"120":{"tf":1.0},"1206":{"tf":1.0},"1215":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"1277":{"tf":1.0},"1292":{"tf":1.0},"1296":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.0},"1341":{"tf":1.0},"1343":{"tf":1.0},"1347":{"tf":1.4142135623730951},"139":{"tf":1.0},"1394":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1430":{"tf":1.0},"1434":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":2.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1449":{"tf":2.23606797749979},"1450":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1453":{"tf":2.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1459":{"tf":1.0},"1460":{"tf":2.0},"1461":{"tf":1.7320508075688772},"1467":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1489":{"tf":1.0},"149":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1498":{"tf":1.4142135623730951},"1499":{"tf":1.0},"150":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.4142135623730951},"160":{"tf":1.0},"182":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.4142135623730951},"312":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"337":{"tf":1.0},"361":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"435":{"tf":1.0},"447":{"tf":1.0},"462":{"tf":1.0},"478":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"562":{"tf":1.4142135623730951},"563":{"tf":1.0},"564":{"tf":1.0},"595":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"658":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"71":{"tf":1.0},"712":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.4142135623730951},"737":{"tf":1.0},"740":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"769":{"tf":1.0},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"829":{"tf":1.0},"833":{"tf":1.0},"85":{"tf":1.7320508075688772},"88":{"tf":1.0},"887":{"tf":1.4142135623730951},"889":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.0},"904":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0},"969":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"1012":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1475":{"tf":1.0},"318":{"tf":1.0},"824":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1082":{"tf":1.0},"1287":{"tf":1.0},"1522":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1480":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1084":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1179":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":2.23606797749979},"318":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"678":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"30":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"954":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1051":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1194":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"37":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1033":{"tf":1.0},"1039":{"tf":1.0},"1049":{"tf":1.0},"1062":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1104":{"tf":1.0},"1172":{"tf":1.0},"1279":{"tf":1.0},"1455":{"tf":1.0},"247":{"tf":1.0},"320":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"942":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1109":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"874":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":3,"docs":{"1358":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"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":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.0},"327":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"419":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}}},"j":{"a":{"c":{"df":4,"docs":{"1282":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"546":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1127":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"384":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"`":{"a":{"d":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"518":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":7,"docs":{"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"408":{"tf":1.0},"420":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"525":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"418":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":3,"docs":{"1365":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":8,"docs":{"1351":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"349":{"tf":1.4142135623730951},"397":{"tf":1.0},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"327":{"tf":1.0},"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"461":{"tf":1.0},"465":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"525":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"h":{"a":{"df":1,"docs":{"535":{"tf":1.0}},"r":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1351":{"tf":1.0},"1362":{"tf":1.0},"403":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}}}},"df":3,"docs":{"391":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1362":{"tf":1.0},"1399":{"tf":1.0},"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"420":{"tf":1.7320508075688772},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"400":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"458":{"tf":1.0},"529":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"770":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"358":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1355":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}}},"t":{"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":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"376":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1218":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"1352":{"tf":2.0},"1363":{"tf":2.0},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"973":{"tf":1.0}}}}},"df":171,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1140":{"tf":2.449489742783178},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1273":{"tf":2.23606797749979},"1276":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.4641016151377544},"1304":{"tf":1.0},"1305":{"tf":3.1622776601683795},"1306":{"tf":2.6457513110645907},"1307":{"tf":2.23606797749979},"1310":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1315":{"tf":2.0},"1349":{"tf":1.0},"1351":{"tf":2.0},"1352":{"tf":2.0},"1353":{"tf":2.23606797749979},"1355":{"tf":2.449489742783178},"1356":{"tf":2.6457513110645907},"1358":{"tf":2.0},"1359":{"tf":2.6457513110645907},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":2.0},"1365":{"tf":3.7416573867739413},"1367":{"tf":1.7320508075688772},"1369":{"tf":3.7416573867739413},"1399":{"tf":4.0},"1401":{"tf":3.872983346207417},"1403":{"tf":4.898979485566356},"1405":{"tf":3.3166247903554},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1522":{"tf":3.4641016151377544},"1524":{"tf":2.23606797749979},"1526":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":2.0},"358":{"tf":2.0},"361":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":3.1622776601683795},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":2.6457513110645907},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"443":{"tf":2.449489742783178},"458":{"tf":2.449489742783178},"459":{"tf":2.23606797749979},"461":{"tf":1.7320508075688772},"463":{"tf":2.23606797749979},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":2.449489742783178},"477":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"507":{"tf":2.449489742783178},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"770":{"tf":1.7320508075688772},"772":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"9":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1121":{"tf":1.0},"51":{"tf":1.0},"746":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1152":{"tf":1.0},"1399":{"tf":1.0},"517":{"tf":1.0},"541":{"tf":1.0},"694":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"766":{"tf":1.4142135623730951}}}},"m":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1332":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.4142135623730951},"170":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"733":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.4142135623730951},"757":{"tf":1.0},"761":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1186":{"tf":1.0},"1422":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"185":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"489":{"tf":1.0},"529":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"66":{"tf":1.0},"706":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"836":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"950":{"tf":1.7320508075688772},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"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":{"1270":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":121,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1091":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":2.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"137":{"tf":1.4142135623730951},"1374":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"167":{"tf":2.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"238":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.4142135623730951},"349":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"383":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"426":{"tf":1.0},"442":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"601":{"tf":1.0},"605":{"tf":1.0},"614":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"725":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"780":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":2.0},"788":{"tf":2.0},"791":{"tf":1.7320508075688772},"792":{"tf":1.4142135623730951},"794":{"tf":2.0},"796":{"tf":2.0},"80":{"tf":1.7320508075688772},"831":{"tf":1.0},"836":{"tf":1.7320508075688772},"838":{"tf":2.0},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":3.0},"883":{"tf":1.0},"914":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"855":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":34,"docs":{"108":{"tf":1.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.4142135623730951},"228":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"700":{"tf":1.4142135623730951},"727":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":9,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"209":{"tf":1.0},"38":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"940":{"tf":1.0},"983":{"tf":1.0},"995":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1323":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"616":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"1130":{"tf":1.4142135623730951},"1143":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1330":{"tf":3.605551275463989},"1336":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.449489742783178},"1404":{"tf":1.0},"209":{"tf":2.23606797749979},"217":{"tf":1.0},"224":{"tf":1.4142135623730951},"276":{"tf":1.0},"406":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"728":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"1399":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"463":{"tf":1.0},"593":{"tf":1.0},"64":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"610":{"tf":1.0}}},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":18,"docs":{"1236":{"tf":1.0},"1256":{"tf":1.0},"47":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":2.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"886":{"tf":1.0}}},"t":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1261":{"tf":1.0},"172":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"1528":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"682":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.7320508075688772},"819":{"tf":1.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":26,"docs":{"1447":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.0},"260":{"tf":1.0},"292":{"tf":1.0},"329":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"455":{"tf":1.0},"512":{"tf":1.0},"515":{"tf":1.0},"557":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"692":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"777":{"tf":1.0},"807":{"tf":1.0},"912":{"tf":1.0},"95":{"tf":1.0}}},"p":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1467":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1495":{"tf":1.0},"1528":{"tf":1.4142135623730951},"248":{"tf":1.0},"451":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1142":{"tf":1.0},"1493":{"tf":1.0},"1528":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1171":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1070":{"tf":1.0},"1102":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1083":{"tf":1.0},"1505":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1155":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1154":{"tf":2.8284271247461903},"1155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1153":{"tf":1.0},"1154":{"tf":2.23606797749979},"1155":{"tf":1.7320508075688772},"1156":{"tf":2.0},"1158":{"tf":1.0}}}},"df":12,"docs":{"1137":{"tf":1.0},"1219":{"tf":1.0},"1221":{"tf":1.0},"1298":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.4142135623730951},"620":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1510":{"tf":1.0},"1520":{"tf":1.0},"1530":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"1161":{"tf":1.0},"299":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.0},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":292,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1043":{"tf":1.0},"1047":{"tf":1.0},"1052":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1094":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.0},"1112":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"1124":{"tf":1.0},"1135":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"116":{"tf":1.0},"1161":{"tf":1.0},"1165":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.7320508075688772},"120":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"124":{"tf":1.7320508075688772},"1242":{"tf":1.0},"127":{"tf":3.1622776601683795},"1278":{"tf":1.0},"1300":{"tf":2.23606797749979},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1310":{"tf":2.0},"1318":{"tf":2.0},"132":{"tf":2.0},"1320":{"tf":1.4142135623730951},"1323":{"tf":3.872983346207417},"1325":{"tf":1.7320508075688772},"1328":{"tf":2.449489742783178},"1330":{"tf":2.449489742783178},"1332":{"tf":2.8284271247461903},"1336":{"tf":1.7320508075688772},"1338":{"tf":1.0},"134":{"tf":3.1622776601683795},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1346":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":2.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":2.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.449489742783178},"1405":{"tf":1.0},"141":{"tf":1.7320508075688772},"1410":{"tf":1.0},"1419":{"tf":3.872983346207417},"142":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1425":{"tf":1.7320508075688772},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.7320508075688772},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1467":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"148":{"tf":1.0},"1484":{"tf":1.4142135623730951},"1487":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":2.23606797749979},"1500":{"tf":1.4142135623730951},"151":{"tf":2.0},"1512":{"tf":1.0},"1515":{"tf":2.0},"1517":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"172":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"192":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":1.7320508075688772},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"215":{"tf":1.0},"216":{"tf":1.4142135623730951},"226":{"tf":1.7320508075688772},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":1.7320508075688772},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"327":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"418":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.7320508075688772},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.7320508075688772},"587":{"tf":1.4142135623730951},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"61":{"tf":1.0},"622":{"tf":1.4142135623730951},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"652":{"tf":1.4142135623730951},"653":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"71":{"tf":1.4142135623730951},"719":{"tf":1.0},"72":{"tf":2.6457513110645907},"721":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":2.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"748":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.23606797749979},"768":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":2.449489742783178},"771":{"tf":1.4142135623730951},"773":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"8":{"tf":2.0},"80":{"tf":2.0},"804":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":3.3166247903554},"881":{"tf":1.0},"882":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.4142135623730951},"921":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"845":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1361":{"tf":1.4142135623730951},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.0}}}}}},"df":6,"docs":{"332":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"515":{"tf":1.0},"536":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.7320508075688772}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1151":{"tf":1.0},"507":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":18,"docs":{"1179":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.7320508075688772},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"431":{"tf":1.7320508075688772},"540":{"tf":1.0},"543":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":32,"docs":{"1043":{"tf":1.0},"1140":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"356":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"590":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"696":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"82":{"tf":1.4142135623730951},"84":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"782":{"tf":1.0}}},"df":4,"docs":{"1390":{"tf":1.0},"28":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1072":{"tf":1.0},"1278":{"tf":1.0},"1355":{"tf":1.0},"1490":{"tf":1.4142135623730951},"339":{"tf":1.0},"491":{"tf":1.0},"566":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"29":{"tf":1.0},"47":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1042":{"tf":1.0},"1052":{"tf":1.0},"1194":{"tf":1.0},"1450":{"tf":1.0},"1515":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1099":{"tf":1.0},"1154":{"tf":1.0},"1404":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.0}}}}},"u":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"1119":{"tf":1.0},"841":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":100,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1173":{"tf":1.0},"1176":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.0},"1212":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1237":{"tf":1.0},"1262":{"tf":1.0},"127":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1415":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1432":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1458":{"tf":1.0},"1463":{"tf":1.0},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.0},"1531":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"341":{"tf":1.0},"41":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.4142135623730951},"568":{"tf":1.0},"617":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"724":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.0},"792":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"984":{"tf":1.4142135623730951},"995":{"tf":1.0}},"i":{"df":5,"docs":{"1010":{"tf":1.0},"1029":{"tf":1.0},"1254":{"tf":1.0},"24":{"tf":1.4142135623730951},"984":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"1268":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"465":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"1302":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"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":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}},"df":46,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1003":{"tf":1.0},"1011":{"tf":1.0},"1115":{"tf":1.0},"1213":{"tf":1.0},"1220":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1298":{"tf":1.0},"1328":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1423":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"15":{"tf":1.0},"1510":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"219":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"407":{"tf":1.0},"524":{"tf":1.0},"57":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.4142135623730951},"606":{"tf":1.0},"641":{"tf":1.0},"701":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"808":{"tf":1.0},"827":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"996":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1017":{"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":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1212":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"822":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1302":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":81,"docs":{"1044":{"tf":1.4142135623730951},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":2.0},"1124":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1197":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":2.0},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1333":{"tf":1.0},"134":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1441":{"tf":1.0},"1456":{"tf":1.0},"1460":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"205":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":1.7320508075688772},"284":{"tf":1.0},"289":{"tf":1.4142135623730951},"295":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"446":{"tf":1.0},"49":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"593":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.4142135623730951},"72":{"tf":1.0},"738":{"tf":2.0},"739":{"tf":1.0},"742":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"759":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.8284271247461903},"833":{"tf":1.0},"98":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"f":{"df":2,"docs":{"1095":{"tf":1.0},"1097":{"tf":1.0}}}}},"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"294":{"tf":1.0},"298":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"845":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"238":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1140":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":2.0},"1078":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1087":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1295":{"tf":1.7320508075688772},"1296":{"tf":1.4142135623730951},"1297":{"tf":2.0},"1298":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1316":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.7320508075688772},"16":{"tf":1.0},"64":{"tf":1.0},"779":{"tf":1.0},"871":{"tf":1.0}},"e":{"(":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"595":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":114,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1067":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1093":{"tf":1.0},"11":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":2.449489742783178},"1149":{"tf":1.0},"116":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.0},"1256":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1290":{"tf":1.0},"1298":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1422":{"tf":1.0},"1430":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"21":{"tf":1.0},"312":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.7320508075688772},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"46":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"532":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"548":{"tf":1.0},"55":{"tf":1.4142135623730951},"575":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.7320508075688772},"648":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"709":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.0},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1304":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"df":31,"docs":{"1045":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"1339":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"739":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.7320508075688772},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"808":{"tf":1.4142135623730951},"816":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"648":{"tf":1.0},"705":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1399":{"tf":1.0},"1507":{"tf":1.0},"812":{"tf":1.0},"933":{"tf":1.0}}}},"df":23,"docs":{"132":{"tf":2.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1530":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"73":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"420":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.0},"856":{"tf":1.4142135623730951},"859":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":20,"docs":{"1191":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1293":{"tf":1.0},"1428":{"tf":1.0},"1439":{"tf":1.0},"1444":{"tf":1.0},"1496":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"311":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.4142135623730951},"66":{"tf":1.0},"679":{"tf":1.4142135623730951},"899":{"tf":1.4142135623730951},"935":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"1041":{"tf":1.0},"11":{"tf":1.4142135623730951},"1441":{"tf":1.0},"21":{"tf":1.0},"308":{"tf":1.0},"901":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"1164":{"tf":1.0},"1166":{"tf":1.0},"1422":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"669":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1505":{"tf":1.0},"434":{"tf":1.0},"489":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"256":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":64,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1304":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1355":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.7320508075688772},"1440":{"tf":1.0},"1441":{"tf":1.0},"1449":{"tf":2.449489742783178},"1452":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.0},"285":{"tf":1.0},"294":{"tf":1.7320508075688772},"298":{"tf":1.0},"338":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"418":{"tf":1.0},"473":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.4142135623730951},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"565":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.4142135623730951},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"72":{"tf":1.0},"742":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"996":{"tf":1.0}}}}}},"df":46,"docs":{"1103":{"tf":1.0},"1120":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.7320508075688772},"1392":{"tf":2.23606797749979},"1394":{"tf":1.7320508075688772},"1402":{"tf":2.23606797749979},"1404":{"tf":3.3166247903554},"576":{"tf":1.0},"588":{"tf":2.0},"617":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":2.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1108":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1384":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"774":{"tf":1.0},"80":{"tf":1.0},"800":{"tf":1.4142135623730951},"804":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.0},"829":{"tf":1.0},"887":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"1120":{"tf":1.0},"127":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1453":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"332":{"tf":1.0},"354":{"tf":1.0},"377":{"tf":1.0},"47":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"610":{"tf":1.0},"72":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.4142135623730951},"759":{"tf":1.0},"833":{"tf":1.0},"938":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"1094":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1515":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"151":{"tf":1.0},"859":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"33":{"tf":1.0},"815":{"tf":1.0},"856":{"tf":1.0},"859":{"tf":1.0},"883":{"tf":1.0}},"i":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"246":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"116":{"tf":1.0},"1194":{"tf":1.0},"915":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"1011":{"tf":1.0},"106":{"tf":1.0},"1061":{"tf":1.0},"107":{"tf":1.0},"1087":{"tf":1.0},"1094":{"tf":1.0},"115":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"248":{"tf":1.0},"258":{"tf":1.4142135623730951},"259":{"tf":1.0},"292":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"682":{"tf":1.0},"911":{"tf":1.0},"942":{"tf":1.0},"969":{"tf":1.0},"972":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":18,"docs":{"1054":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1175":{"tf":1.0},"1211":{"tf":1.0},"1215":{"tf":1.0},"1284":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"680":{"tf":1.0},"682":{"tf":1.0},"767":{"tf":1.4142135623730951},"822":{"tf":1.0},"929":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1135":{"tf":1.0},"1449":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1509":{"tf":1.0},"545":{"tf":1.7320508075688772},"82":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"950":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"1253":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.0},"925":{"tf":1.0}}}}},"s":{"c":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"1211":{"tf":1.0},"47":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":108,"docs":{"1000":{"tf":1.0},"1055":{"tf":1.0},"108":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1115":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"1310":{"tf":1.0},"132":{"tf":2.449489742783178},"1323":{"tf":1.0},"1332":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"138":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.7320508075688772},"288":{"tf":1.0},"292":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"532":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.0},"709":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":2.0},"752":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.449489742783178},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"80":{"tf":2.0},"803":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"847":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.7320508075688772},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":1.0},"946":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"0":{"tf":1.0},"13":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"170":{"tf":1.0},"20":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0},"357":{"tf":1.0},"591":{"tf":1.0},"63":{"tf":1.0},"852":{"tf":1.0},"910":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}}},"r":{"df":3,"docs":{"802":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":21,"docs":{"1437":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1440":{"tf":2.0},"1442":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"899":{"tf":2.449489742783178},"900":{"tf":2.449489742783178},"902":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1013":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1347":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1406":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"603":{"tf":1.0},"679":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"851":{"tf":1.0},"87":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"980":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"1336":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1163":{"tf":1.0},"1175":{"tf":1.0},"1263":{"tf":1.0},"1432":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"928":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1450":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"921":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1454":{"tf":1.0}}}}}},"df":5,"docs":{"115":{"tf":1.0},"1343":{"tf":1.0},"1441":{"tf":1.0},"348":{"tf":1.0},"930":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":28,"docs":{"1":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1089":{"tf":1.0},"1194":{"tf":1.0},"1343":{"tf":1.0},"1444":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"250":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0},"346":{"tf":1.0},"391":{"tf":1.0},"420":{"tf":1.4142135623730951},"554":{"tf":1.4142135623730951},"573":{"tf":1.0},"625":{"tf":1.0},"654":{"tf":1.4142135623730951},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"968":{"tf":1.0},"976":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"t":{"df":1,"docs":{"979":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":18,"docs":{"1376":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.0},"1394":{"tf":2.0},"1402":{"tf":1.0},"1404":{"tf":2.8284271247461903},"599":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"617":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"725":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"706":{"tf":1.0},"707":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"1194":{"tf":1.0},"976":{"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":{"1014":{"tf":1.0},"1119":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"129":{"tf":1.0},"1298":{"tf":1.0},"1333":{"tf":1.0},"1343":{"tf":1.0},"1467":{"tf":1.0},"201":{"tf":1.0},"21":{"tf":1.0},"220":{"tf":1.4142135623730951},"289":{"tf":1.0},"487":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1475":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1014":{"tf":1.0},"1028":{"tf":1.0},"24":{"tf":1.0},"760":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":27,"docs":{"1015":{"tf":1.4142135623730951},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1031":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.4142135623730951},"57":{"tf":1.0},"571":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":2,"docs":{"1340":{"tf":1.0},"585":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"302":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1091":{"tf":1.0},"1156":{"tf":1.0},"1297":{"tf":1.0},"185":{"tf":1.0},"239":{"tf":1.0},"494":{"tf":1.0},"676":{"tf":1.0},"684":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":67,"docs":{"1043":{"tf":1.0},"1059":{"tf":1.0},"113":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.7320508075688772},"124":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.7320508075688772},"1340":{"tf":1.0},"136":{"tf":1.7320508075688772},"1369":{"tf":1.0},"137":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.7320508075688772},"1426":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1462":{"tf":2.0},"1464":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1528":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.0},"184":{"tf":1.0},"190":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"43":{"tf":1.0},"536":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"79":{"tf":1.0},"831":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"924":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"128":{"tf":1.0},"1439":{"tf":1.0},"242":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":4,"docs":{"221":{"tf":1.0},"228":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1099":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1164":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}},"i":{"df":5,"docs":{"1212":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"884":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":6,"docs":{"1062":{"tf":1.0},"1101":{"tf":1.0},"1489":{"tf":1.0},"371":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"125":{"tf":1.0},"1498":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"836":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1062":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1208":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1452":{"tf":1.0},"214":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"935":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"256":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":86,"docs":{"1002":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1004":{"tf":1.7320508075688772},"1006":{"tf":1.0},"1007":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1075":{"tf":1.0},"1196":{"tf":1.0},"1214":{"tf":1.0},"1235":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.7320508075688772},"1261":{"tf":1.4142135623730951},"128":{"tf":3.4641016151377544},"129":{"tf":2.6457513110645907},"130":{"tf":1.4142135623730951},"1333":{"tf":3.3166247903554},"1334":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1475":{"tf":1.7320508075688772},"1476":{"tf":2.23606797749979},"1477":{"tf":2.0},"165":{"tf":2.0},"169":{"tf":1.0},"172":{"tf":1.0},"202":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.7320508075688772},"231":{"tf":2.0},"232":{"tf":2.0},"234":{"tf":2.449489742783178},"235":{"tf":2.6457513110645907},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":3.3166247903554},"243":{"tf":3.4641016151377544},"244":{"tf":1.0},"245":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"254":{"tf":2.0},"255":{"tf":2.449489742783178},"256":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.7320508075688772},"773":{"tf":1.0},"896":{"tf":2.0},"908":{"tf":1.0},"909":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":2.0},"940":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"95":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"976":{"tf":3.0},"977":{"tf":1.0},"979":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"f":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"937":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":28,"docs":{"1227":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1474":{"tf":2.23606797749979},"165":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":2.23606797749979},"246":{"tf":2.23606797749979},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.4142135623730951},"918":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1361":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"522":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1351":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1352":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1342":{"tf":1.0},"139":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"179":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"1":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"2":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"588":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1302":{"tf":2.0},"657":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1094":{"tf":1.0},"288":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0},"725":{"tf":1.0},"846":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1143":{"tf":1.4142135623730951},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"df":83,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":2.0},"1151":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":1.0},"210":{"tf":1.4142135623730951},"224":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"419":{"tf":1.0},"45":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"581":{"tf":1.0},"605":{"tf":1.4142135623730951},"616":{"tf":1.0},"634":{"tf":1.4142135623730951},"653":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"723":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"845":{"tf":3.0},"911":{"tf":1.0},"921":{"tf":1.0},"997":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"682":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":13,"docs":{"1209":{"tf":1.0},"1421":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"379":{"tf":1.0},"397":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"612":{"tf":1.0},"631":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"847":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"134":{"tf":2.449489742783178},"1345":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"141":{"tf":1.0},"1419":{"tf":2.23606797749979},"142":{"tf":2.0},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"88":{"tf":2.0}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":2.449489742783178},"605":{"tf":1.0},"612":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"641":{"tf":1.0},"642":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":470,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"1007":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1027":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1086":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":2.0},"1103":{"tf":1.0},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"111":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1115":{"tf":1.0},"113":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":2.23606797749979},"1142":{"tf":2.0},"1143":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"122":{"tf":1.0},"1228":{"tf":1.0},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1240":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1256":{"tf":1.0},"1260":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":2.23606797749979},"1298":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1301":{"tf":2.6457513110645907},"1302":{"tf":2.6457513110645907},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1307":{"tf":1.0},"1312":{"tf":2.449489742783178},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1318":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1322":{"tf":1.0},"1323":{"tf":3.605551275463989},"1324":{"tf":3.3166247903554},"1325":{"tf":2.6457513110645907},"1326":{"tf":2.449489742783178},"1328":{"tf":2.0},"1329":{"tf":2.0},"133":{"tf":1.0},"1330":{"tf":3.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"134":{"tf":3.3166247903554},"1340":{"tf":2.23606797749979},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":2.6457513110645907},"1350":{"tf":1.0},"1351":{"tf":1.7320508075688772},"1352":{"tf":2.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.0},"136":{"tf":3.1622776601683795},"1361":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.0},"1369":{"tf":2.6457513110645907},"137":{"tf":2.23606797749979},"1370":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.7320508075688772},"1375":{"tf":2.0},"1376":{"tf":1.7320508075688772},"1378":{"tf":1.4142135623730951},"138":{"tf":2.0},"1384":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":2.449489742783178},"139":{"tf":1.0},"1390":{"tf":3.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.8284271247461903},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.7320508075688772},"141":{"tf":2.23606797749979},"1415":{"tf":1.0},"1418":{"tf":1.7320508075688772},"1419":{"tf":4.0},"142":{"tf":2.23606797749979},"1420":{"tf":3.0},"1421":{"tf":3.1622776601683795},"1422":{"tf":3.1622776601683795},"1423":{"tf":3.1622776601683795},"1425":{"tf":2.8284271247461903},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"145":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.0},"1466":{"tf":1.0},"1469":{"tf":2.0},"147":{"tf":1.0},"1470":{"tf":2.0},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"1481":{"tf":2.0},"1482":{"tf":1.4142135623730951},"1484":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"149":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.7320508075688772},"1515":{"tf":2.0},"1517":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":1.0},"156":{"tf":2.23606797749979},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.4142135623730951},"182":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":2.23606797749979},"187":{"tf":1.0},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"192":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":2.449489742783178},"195":{"tf":1.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"204":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":2.23606797749979},"209":{"tf":2.0},"210":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"270":{"tf":2.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"276":{"tf":2.0},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"287":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":2.6457513110645907},"372":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":2.0},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"480":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":2.449489742783178},"523":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"558":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.7320508075688772},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"593":{"tf":1.0},"599":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"604":{"tf":2.449489742783178},"605":{"tf":2.6457513110645907},"606":{"tf":1.4142135623730951},"61":{"tf":1.0},"612":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":2.0},"645":{"tf":1.0},"646":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":2.0},"657":{"tf":1.4142135623730951},"66":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"696":{"tf":2.6457513110645907},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"699":{"tf":2.449489742783178},"700":{"tf":1.7320508075688772},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.7320508075688772},"71":{"tf":1.0},"710":{"tf":1.7320508075688772},"724":{"tf":1.0},"725":{"tf":1.4142135623730951},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.4142135623730951},"736":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"741":{"tf":1.4142135623730951},"744":{"tf":2.0},"747":{"tf":2.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"751":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":2.0},"76":{"tf":1.0},"760":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":2.0},"776":{"tf":1.0},"778":{"tf":1.7320508075688772},"779":{"tf":1.0},"780":{"tf":1.4142135623730951},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"791":{"tf":2.0},"793":{"tf":1.0},"794":{"tf":2.449489742783178},"795":{"tf":1.0},"796":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":2.0},"80":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.7320508075688772},"831":{"tf":1.7320508075688772},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"84":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"847":{"tf":2.0},"849":{"tf":1.0},"850":{"tf":1.7320508075688772},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":3.3166247903554},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"875":{"tf":1.0},"88":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.7320508075688772},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"92":{"tf":1.0},"921":{"tf":2.0},"922":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"970":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.4142135623730951}},"i":{"d":{"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"371":{"tf":1.0},"379":{"tf":1.0}},"}":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"522":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"87":{"tf":1.0}}}}}}}}},"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"787":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0},"1309":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"407":{"tf":1.0},"408":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"852":{"tf":1.0}},"e":{"df":3,"docs":{"1404":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1456":{"tf":1.0},"1475":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"230":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"1109":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1239":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1259":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.0},"1333":{"tf":2.6457513110645907},"143":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"374":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.0},"833":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"1051":{"tf":1.0},"1088":{"tf":1.0},"1287":{"tf":1.0},"1323":{"tf":1.0},"1490":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0},"908":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"141":{"tf":1.0},"1456":{"tf":1.0},"72":{"tf":1.0},"811":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"942":{"tf":1.0},"976":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1513":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"1325":{"tf":1.0},"1432":{"tf":1.0},"728":{"tf":1.0},"804":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"1474":{"tf":1.4142135623730951},"253":{"tf":1.0},"976":{"tf":1.0}},"s":{"df":1,"docs":{"985":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1336":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1399":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1161":{"tf":1.0},"1309":{"tf":1.0},"1476":{"tf":1.0},"249":{"tf":1.0},"769":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1122":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1507":{"tf":1.0},"303":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.4142135623730951},"527":{"tf":1.0},"602":{"tf":1.0},"608":{"tf":1.0},"704":{"tf":1.0},"836":{"tf":1.0},"870":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1046":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"b":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":48,"docs":{"1003":{"tf":1.0},"11":{"tf":1.0},"1144":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1189":{"tf":1.0},"1206":{"tf":1.0},"1246":{"tf":1.0},"1285":{"tf":1.0},"1310":{"tf":1.0},"1330":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"693":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"874":{"tf":1.0},"881":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"954":{"tf":1.4142135623730951},"968":{"tf":1.0},"97":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"1061":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"548":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1381":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"1148":{"tf":1.0},"1330":{"tf":2.6457513110645907},"1338":{"tf":2.0},"1339":{"tf":2.8284271247461903},"1340":{"tf":2.0},"1345":{"tf":2.6457513110645907},"1346":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.7320508075688772},"956":{"tf":1.0},"962":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}}}},"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":{"1076":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":87,"docs":{"1015":{"tf":1.4142135623730951},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":2.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.4142135623730951},"389":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.0},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1164":{"tf":1.0},"1169":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0}}}}},"df":22,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.4142135623730951},"135":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.8284271247461903},"1402":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1420":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"384":{"tf":1.7320508075688772},"554":{"tf":1.0},"618":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.449489742783178},"723":{"tf":2.449489742783178},"949":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"950":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1130":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1309":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1381":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"1112":{"tf":2.23606797749979},"1116":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1332":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"507":{"tf":2.0},"65":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"816":{"tf":1.0}}}}},"b":{"df":29,"docs":{"1323":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":2.0},"185":{"tf":2.0},"206":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.7320508075688772},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":2.0},"522":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"797":{"tf":1.0},"838":{"tf":1.7320508075688772},"850":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":5,"docs":{"1092":{"tf":1.0},"600":{"tf":1.4142135623730951},"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":5,"docs":{"1091":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":26,"docs":{"1091":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1306":{"tf":1.0},"1326":{"tf":1.4142135623730951},"137":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1422":{"tf":2.23606797749979},"1425":{"tf":1.0},"1433":{"tf":1.0},"1476":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.0},"273":{"tf":1.0},"366":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"4":{"tf":1.0},"600":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.7320508075688772},"789":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1169":{"tf":1.0},"1200":{"tf":1.0},"261":{"tf":1.0},"451":{"tf":1.0},"517":{"tf":1.0},"694":{"tf":1.0},"911":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1199":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.0},"1263":{"tf":1.0},"1296":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"169":{"tf":1.0},"212":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"536":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"679":{"tf":1.4142135623730951},"728":{"tf":1.0},"874":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"90":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"984":{"tf":1.0},"989":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}},"o":{"d":{"df":22,"docs":{"1045":{"tf":1.0},"1091":{"tf":1.0},"129":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"186":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.0},"376":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"609":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1457":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"1051":{"tf":1.0},"1106":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1505":{"tf":1.7320508075688772},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.4142135623730951},"541":{"tf":1.0},"892":{"tf":1.4142135623730951},"911":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1448":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":13,"docs":{"1263":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"225":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"813":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1102":{"tf":1.0},"1106":{"tf":1.0},"1149":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1243":{"tf":1.0},"1285":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":2.0},"1445":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"486":{"tf":1.0},"65":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"810":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1197":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"47":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.4142135623730951},"942":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"151":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1175":{"tf":1.0},"423":{"tf":1.0},"876":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"1":{"tf":1.0},"1109":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1421":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1465":{"tf":1.0},"1493":{"tf":1.0},"15":{"tf":1.0},"1528":{"tf":1.7320508075688772},"227":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"511":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"79":{"tf":1.0},"882":{"tf":1.0},"910":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"1175":{"tf":1.0},"767":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"1323":{"tf":1.0},"1334":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1226":{"tf":1.0},"1403":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}}}}},"y":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"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":{"1403":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1131":{"tf":1.0},"742":{"tf":1.0},"746":{"tf":2.0},"753":{"tf":1.0},"754":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"746":{"tf":1.0}}}}}},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1449":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1212":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"1050":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1066":{"tf":1.0},"1079":{"tf":1.0},"1086":{"tf":1.0},"113":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1215":{"tf":1.0},"125":{"tf":1.0},"1296":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.4142135623730951},"1430":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"160":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"37":{"tf":1.0},"437":{"tf":1.0},"554":{"tf":1.0},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.0},"660":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"935":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1323":{"tf":1.4142135623730951},"1325":{"tf":2.0},"1328":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1338":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1027":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"286":{"tf":1.0},"299":{"tf":1.0}}},"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"442":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"382":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":2.23606797749979}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1356":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":12,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.0},"419":{"tf":1.7320508075688772},"477":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":126,"docs":{"1127":{"tf":1.0},"1149":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":2.23606797749979},"1282":{"tf":1.4142135623730951},"1344":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":3.605551275463989},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":2.449489742783178},"14":{"tf":1.0},"1401":{"tf":3.1622776601683795},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1439":{"tf":1.4142135623730951},"144":{"tf":1.0},"1457":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.7320508075688772},"1490":{"tf":1.7320508075688772},"1491":{"tf":1.4142135623730951},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1528":{"tf":1.4142135623730951},"243":{"tf":1.0},"261":{"tf":1.0},"286":{"tf":1.4142135623730951},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.4142135623730951},"353":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.4142135623730951},"419":{"tf":2.0},"442":{"tf":1.0},"463":{"tf":1.4142135623730951},"473":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.23606797749979},"498":{"tf":2.23606797749979},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"546":{"tf":2.23606797749979},"555":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"585":{"tf":1.0},"593":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"653":{"tf":2.6457513110645907},"677":{"tf":1.0},"678":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"758":{"tf":1.0},"899":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"941":{"tf":1.4142135623730951},"950":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1345":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1349":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1194":{"tf":1.4142135623730951},"21":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"811":{"tf":1.4142135623730951}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"681":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":14,"docs":{"1109":{"tf":1.0},"1160":{"tf":1.0},"1212":{"tf":1.0},"1298":{"tf":1.0},"1429":{"tf":1.4142135623730951},"28":{"tf":1.0},"369":{"tf":1.0},"439":{"tf":1.0},"729":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"932":{"tf":1.0},"933":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":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":{"255":{"tf":1.0}},"u":{"df":1,"docs":{"732":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1035":{"tf":1.0},"1085":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":2.0},"874":{"tf":1.0}},"t":{"df":5,"docs":{"1192":{"tf":1.0},"1205":{"tf":1.0},"1405":{"tf":1.7320508075688772},"664":{"tf":1.0},"833":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"1115":{"tf":1.0},"122":{"tf":1.0},"1462":{"tf":1.0},"327":{"tf":1.0},"555":{"tf":1.0},"87":{"tf":1.0},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1114":{"tf":1.0},"60":{"tf":1.0}}}},"v":{"df":1,"docs":{"984":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1080":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":114,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1084":{"tf":1.0},"1128":{"tf":1.0},"1185":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1248":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1317":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1337":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1371":{"tf":1.4142135623730951},"1396":{"tf":1.4142135623730951},"1397":{"tf":1.0},"1406":{"tf":2.449489742783178},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1454":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"19":{"tf":1.4142135623730951},"226":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"356":{"tf":1.7320508075688772},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"46":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"590":{"tf":1.7320508075688772},"616":{"tf":1.0},"654":{"tf":1.0},"67":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.4142135623730951},"734":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"902":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"997":{"tf":1.0},"999":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"129":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1126":{"tf":1.4142135623730951},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1378":{"tf":2.449489742783178},"1390":{"tf":2.0},"1394":{"tf":3.4641016151377544},"1402":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"615":{"tf":1.4142135623730951},"618":{"tf":1.7320508075688772},"653":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.0},"723":{"tf":2.23606797749979},"724":{"tf":1.4142135623730951},"798":{"tf":1.0},"949":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"1161":{"tf":1.0},"1185":{"tf":1.0},"1219":{"tf":1.0},"1310":{"tf":1.0},"1449":{"tf":1.0},"255":{"tf":1.0},"50":{"tf":1.0},"732":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1042":{"tf":1.0},"1082":{"tf":1.0},"1094":{"tf":1.0},"1135":{"tf":1.0},"116":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1209":{"tf":1.0},"127":{"tf":1.0},"1298":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1332":{"tf":1.0},"135":{"tf":1.0},"1404":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.0},"227":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"334":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"605":{"tf":1.0},"634":{"tf":1.0},"664":{"tf":1.0},"699":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"876":{"tf":1.0},"894":{"tf":1.0},"92":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0},"976":{"tf":1.0},"984":{"tf":1.0}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1345":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"1345":{"tf":1.0},"1346":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":4,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1471":{"tf":1.0},"1482":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1000":{"tf":1.0},"1507":{"tf":1.0},"918":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":2.23606797749979}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"941":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1436":{"tf":1.0},"950":{"tf":1.0},"954":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1214":{"tf":1.0},"234":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"606":{"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":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"372":{"tf":1.0}}}},"df":37,"docs":{"1066":{"tf":1.7320508075688772},"1079":{"tf":2.0},"1095":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1215":{"tf":2.0},"1234":{"tf":1.7320508075688772},"1296":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1440":{"tf":2.449489742783178},"1454":{"tf":2.23606797749979},"1456":{"tf":1.0},"1466":{"tf":1.0},"1497":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1520":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"298":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"336":{"tf":2.0},"372":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"506":{"tf":1.4142135623730951},"563":{"tf":2.0},"606":{"tf":1.0},"660":{"tf":2.0},"903":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"s":{"df":2,"docs":{"1194":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"1264":{"tf":1.0},"1267":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"547":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1287":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.7320508075688772},"510":{"tf":1.0},"538":{"tf":1.0}}}}}}},"df":36,"docs":{"1148":{"tf":2.0},"1192":{"tf":2.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":2.23606797749979},"463":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"483":{"tf":1.7320508075688772},"486":{"tf":1.0},"497":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":2.0},"538":{"tf":1.4142135623730951},"547":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1108":{"tf":1.0},"1111":{"tf":1.0},"1124":{"tf":1.0},"1367":{"tf":1.0},"498":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"1244":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"412":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1092":{"tf":1.0},"1174":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1405":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"206":{"tf":1.0},"272":{"tf":1.0},"412":{"tf":1.0},"423":{"tf":1.0},"646":{"tf":1.0},"838":{"tf":1.0},"847":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1080":{"tf":1.0},"1185":{"tf":1.0},"1300":{"tf":1.0},"1309":{"tf":1.4142135623730951},"1326":{"tf":2.449489742783178},"1356":{"tf":1.0},"137":{"tf":2.23606797749979},"1379":{"tf":1.0},"1422":{"tf":2.8284271247461903},"1425":{"tf":1.4142135623730951},"1433":{"tf":1.0},"156":{"tf":1.4142135623730951},"194":{"tf":2.23606797749979},"273":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"529":{"tf":1.0},"58":{"tf":1.4142135623730951},"601":{"tf":1.0},"706":{"tf":1.0},"725":{"tf":1.0},"884":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1148":{"tf":1.0},"1381":{"tf":1.0},"666":{"tf":1.0},"684":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"675":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}}},"{":{"a":{"df":1,"docs":{"1381":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"699":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1517":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"661":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1330":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1079":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":5,"docs":{"1182":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":67,"docs":{"1006":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1469":{"tf":1.4142135623730951},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1530":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":2.0},"253":{"tf":1.0},"299":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"520":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"653":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"855":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"929":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":21,"docs":{"1062":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1334":{"tf":1.0},"1346":{"tf":1.0},"1429":{"tf":1.4142135623730951},"155":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"759":{"tf":1.0},"76":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"916":{"tf":1.0},"935":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1177":{"tf":1.0},"1505":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1197":{"tf":1.0},"21":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0}}},"s":{"df":43,"docs":{"1001":{"tf":1.0},"1122":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"1194":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"1315":{"tf":1.0},"1332":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1449":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"185":{"tf":1.0},"206":{"tf":1.0},"295":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.4142135623730951},"600":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.0},"816":{"tf":1.0},"897":{"tf":1.0},"902":{"tf":1.0},"946":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1149":{"tf":1.7320508075688772},"1264":{"tf":1.0},"1270":{"tf":2.0},"1372":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"1018":{"tf":1.0},"1042":{"tf":1.0},"1061":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1030":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"992":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"617":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"684":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1148":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1381":{"tf":2.0},"1402":{"tf":1.4142135623730951},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"617":{"tf":1.7320508075688772},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":2.0},"670":{"tf":1.0},"675":{"tf":1.7320508075688772},"684":{"tf":1.4142135623730951},"686":{"tf":2.0},"687":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"718":{"tf":2.0},"719":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":77,"docs":{"1140":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"135":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"138":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1404":{"tf":2.23606797749979},"141":{"tf":1.4142135623730951},"1419":{"tf":2.449489742783178},"142":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.4142135623730951},"1425":{"tf":2.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"661":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"1055":{"tf":1.0},"107":{"tf":2.6457513110645907},"1075":{"tf":1.0},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"110":{"tf":1.0},"1118":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"290":{"tf":1.4142135623730951},"292":{"tf":2.0},"298":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"536":{"tf":1.0},"70":{"tf":2.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"822":{"tf":1.4142135623730951},"897":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1336":{"tf":1.0},"765":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"1208":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"459":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":4,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"d":{"df":127,"docs":{"1045":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1117":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.0},"1126":{"tf":1.0},"1134":{"tf":1.0},"1136":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":2.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1450":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1471":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1515":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"182":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"334":{"tf":1.4142135623730951},"370":{"tf":1.0},"398":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.4142135623730951},"498":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"58":{"tf":1.4142135623730951},"604":{"tf":1.0},"632":{"tf":1.7320508075688772},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.0},"698":{"tf":2.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.7320508075688772},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"762":{"tf":1.4142135623730951},"765":{"tf":1.0},"773":{"tf":1.0},"777":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":2.449489742783178},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":2.0},"807":{"tf":1.7320508075688772},"808":{"tf":1.4142135623730951},"809":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"828":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"862":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"874":{"tf":1.0},"875":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.4142135623730951},"901":{"tf":1.0},"903":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"135":{"tf":1.0},"1420":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":198,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1090":{"tf":1.0},"1091":{"tf":1.7320508075688772},"1092":{"tf":2.0},"110":{"tf":1.0},"111":{"tf":1.0},"1112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.4142135623730951},"122":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"132":{"tf":2.23606797749979},"1323":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1336":{"tf":1.0},"1338":{"tf":2.0},"1339":{"tf":1.7320508075688772},"134":{"tf":3.0},"1340":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1345":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1365":{"tf":1.7320508075688772},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1420":{"tf":2.8284271247461903},"1421":{"tf":2.8284271247461903},"1422":{"tf":3.3166247903554},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":1.0},"1432":{"tf":2.0},"1433":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.7320508075688772},"144":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1446":{"tf":1.7320508075688772},"1449":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1455":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1479":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"1528":{"tf":1.4142135623730951},"164":{"tf":1.0},"176":{"tf":1.0},"179":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"317":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.4142135623730951},"336":{"tf":1.0},"338":{"tf":1.0},"352":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"478":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.7320508075688772},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"560":{"tf":1.4142135623730951},"563":{"tf":1.0},"565":{"tf":1.0},"584":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":2.0},"605":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"616":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"629":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.4142135623730951},"644":{"tf":1.0},"65":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.4142135623730951},"678":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"699":{"tf":1.0},"708":{"tf":1.7320508075688772},"712":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"747":{"tf":1.0},"772":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":2.23606797749979},"788":{"tf":2.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":2.0},"838":{"tf":1.7320508075688772},"841":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"850":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"925":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"962":{"tf":1.0},"969":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"519":{"tf":1.0},"536":{"tf":2.0},"614":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"722":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"911":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1365":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":24,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1097":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1105":{"tf":1.0},"1422":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":1,"docs":{"319":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"815":{"tf":1.0},"826":{"tf":1.0}}},"n":{"c":{"df":1,"docs":{"1403":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1175":{"tf":1.0},"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1401":{"tf":1.0},"1460":{"tf":1.0},"1495":{"tf":1.0},"280":{"tf":1.0},"354":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"1046":{"tf":1.0},"1053":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1476":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"82":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"1001":{"tf":1.4142135623730951},"117":{"tf":1.0},"1320":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1410":{"tf":1.0},"142":{"tf":1.0},"1436":{"tf":1.0},"148":{"tf":1.0},"1484":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"23":{"tf":1.0},"349":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"576":{"tf":1.0},"676":{"tf":1.0},"72":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"987":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"x":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"1077":{"tf":1.0},"1087":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":1.0},"292":{"tf":1.0},"762":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1264":{"tf":1.0},"1271":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1014":{"tf":1.0},"1054":{"tf":1.0},"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":9,"docs":{"1184":{"tf":1.0},"1247":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1441":{"tf":1.0},"291":{"tf":1.0},"456":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"997":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"df":18,"docs":{"1001":{"tf":1.4142135623730951},"1161":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.4142135623730951},"991":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.0},"36":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1265":{"tf":1.0},"1333":{"tf":1.0},"139":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"545":{"tf":1.0},"729":{"tf":1.0},"867":{"tf":1.0},"901":{"tf":1.0},"936":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"c":{"df":4,"docs":{"1145":{"tf":1.0},"312":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0}}}}},"v":{"df":1,"docs":{"1194":{"tf":1.0}}}},"g":{"df":2,"docs":{"552":{"tf":1.0},"586":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"869":{"tf":1.0}}},"t":{"df":53,"docs":{"1011":{"tf":1.0},"1044":{"tf":1.7320508075688772},"1112":{"tf":1.0},"1116":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1166":{"tf":1.0},"129":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1421":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1465":{"tf":1.7320508075688772},"1471":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.0},"1528":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":2.23606797749979},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"400":{"tf":1.0},"495":{"tf":1.0},"522":{"tf":1.0},"58":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"634":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"724":{"tf":1.0},"731":{"tf":1.0},"745":{"tf":2.23606797749979},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"987":{"tf":1.4142135623730951}}}},"df":3,"docs":{"879":{"tf":1.0},"881":{"tf":1.0},"988":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":38,"docs":{"116":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":2.23606797749979},"1403":{"tf":1.0},"1404":{"tf":1.7320508075688772},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1495":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"351":{"tf":1.4142135623730951},"366":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"465":{"tf":1.0},"583":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"618":{"tf":1.4142135623730951},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"837":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"152":{"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":{"1441":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":10,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.4142135623730951},"13":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"454":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"848":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"934":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"758":{"tf":1.0},"879":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1103":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"1161":{"tf":1.0},"918":{"tf":1.0},"976":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"2":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1522":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1361":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":48,"docs":{"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.0},"1058":{"tf":1.0},"1089":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1461":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1115":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}},"l":{"df":29,"docs":{"109":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1214":{"tf":1.0},"1251":{"tf":1.0},"1296":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1436":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"4":{"tf":1.0},"544":{"tf":1.0},"603":{"tf":1.0},"612":{"tf":1.0},"776":{"tf":1.0},"861":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":6,"docs":{"1144":{"tf":1.0},"152":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"753":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":63,"docs":{"1164":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1278":{"tf":1.0},"1288":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0},"259":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"370":{"tf":1.0},"416":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"534":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":1.0},"650":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1103":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"=":{"1":{"0":{"0":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1138":{"tf":1.0},"146":{"tf":1.0},"386":{"tf":1.0},"40":{"tf":1.0},"620":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1014":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1254":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"960":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.4142135623730951},"1165":{"tf":2.6457513110645907},"1166":{"tf":1.7320508075688772}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"1215":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":4,"docs":{"1243":{"tf":1.0},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":4,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":74,"docs":{"1004":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1020":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"11":{"tf":1.0},"1154":{"tf":1.0},"1158":{"tf":1.4142135623730951},"119":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1235":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1429":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1505":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"780":{"tf":1.0},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"851":{"tf":1.0},"884":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.4142135623730951},"926":{"tf":1.0},"934":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"1069":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1384":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1305":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"b":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1305":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1003":{"tf":1.0},"1161":{"tf":1.0},"119":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0},"547":{"tf":1.0},"727":{"tf":1.0},"909":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"262":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1300":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1158":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"1158":{"tf":1.0},"19":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}},"n":{"df":2,"docs":{"1423":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"1102":{"tf":1.0},"1160":{"tf":1.0},"1281":{"tf":1.0},"1378":{"tf":1.0},"1408":{"tf":1.0},"1428":{"tf":1.0},"368":{"tf":1.0},"497":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"733":{"tf":1.0},"766":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0}}}},"df":6,"docs":{"450":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951},"978":{"tf":1.0}},"e":{"df":2,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0}}},"o":{"d":{"df":3,"docs":{"1312":{"tf":1.0},"884":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1050":{"tf":1.0},"1177":{"tf":1.0},"424":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"477":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"732":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1330":{"tf":1.0},"583":{"tf":1.0},"979":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1117":{"tf":1.0},"1277":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"1278":{"tf":1.0},"21":{"tf":1.0},"491":{"tf":1.0},"914":{"tf":1.0},"954":{"tf":1.0}}}}}},"d":{"df":3,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"df":19,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"1112":{"tf":1.0},"1211":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.4142135623730951},"773":{"tf":1.0},"799":{"tf":1.0},"909":{"tf":1.4142135623730951},"92":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"985":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"1208":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":68,"docs":{"1112":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"332":{"tf":1.0},"335":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.0},"505":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"738":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"770":{"tf":1.0},"794":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.0},"96":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":22,"docs":{"1148":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"331":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":17,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"357":{"tf":1.0},"916":{"tf":1.0}}}}}}}},"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"373":{"tf":1.0},"937":{"tf":1.7320508075688772},"939":{"tf":2.23606797749979},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"373":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"911":{"tf":1.0},"930":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1452":{"tf":1.0},"1455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"1055":{"tf":1.7320508075688772},"1073":{"tf":1.7320508075688772},"1074":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.7320508075688772},"1214":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"739":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"893":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"38":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":46,"docs":{"1011":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.7320508075688772},"1171":{"tf":1.0},"1200":{"tf":1.0},"1268":{"tf":1.0},"1280":{"tf":1.0},"1282":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.0},"1344":{"tf":1.0},"1346":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1393":{"tf":1.0},"1394":{"tf":1.7320508075688772},"14":{"tf":1.0},"1401":{"tf":1.0},"228":{"tf":1.0},"286":{"tf":1.0},"359":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"434":{"tf":1.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"546":{"tf":1.4142135623730951},"593":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"723":{"tf":1.4142135623730951},"949":{"tf":1.0},"963":{"tf":1.0},"973":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1267":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"507":{"tf":1.0},"833":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1048":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1145":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1003":{"tf":1.0}}},"2":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"557":{"tf":1.0},"651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":84,"docs":{"1001":{"tf":1.7320508075688772},"1046":{"tf":1.7320508075688772},"1059":{"tf":1.0},"1067":{"tf":1.0},"1092":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1333":{"tf":1.0},"1403":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1429":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":2.0},"236":{"tf":1.0},"24":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"332":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"417":{"tf":2.23606797749979},"420":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"520":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":2.449489742783178},"544":{"tf":1.0},"557":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"614":{"tf":1.4142135623730951},"631":{"tf":1.0},"651":{"tf":1.7320508075688772},"654":{"tf":1.4142135623730951},"697":{"tf":1.0},"708":{"tf":1.0},"739":{"tf":1.4142135623730951},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"776":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":2.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.4142135623730951},"996":{"tf":1.0},"997":{"tf":3.1622776601683795}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"332":{"tf":1.0},"417":{"tf":1.0},"420":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"417":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"1260":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"1194":{"tf":1.0},"248":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"831":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"729":{"tf":1.0},"740":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":47,"docs":{"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1136":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":2.0},"1442":{"tf":2.23606797749979},"1445":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":2.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"729":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"744":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.4142135623730951},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.4142135623730951},"832":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"899":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.4142135623730951},"369":{"tf":1.0},"507":{"tf":1.0},"603":{"tf":1.0},"760":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1401":{"tf":1.0},"1402":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":25,"docs":{"1148":{"tf":1.0},"1237":{"tf":1.0},"1248":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"197":{"tf":1.0},"268":{"tf":1.0},"349":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"519":{"tf":1.0},"576":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"884":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":15,"docs":{"105":{"tf":1.0},"1162":{"tf":1.0},"119":{"tf":2.6457513110645907},"1411":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"739":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"1220":{"tf":1.0},"1278":{"tf":1.0},"259":{"tf":1.4142135623730951},"292":{"tf":1.0},"491":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1161":{"tf":1.0},"1276":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1442":{"tf":1.0},"180":{"tf":1.7320508075688772},"370":{"tf":1.0},"45":{"tf":1.4142135623730951},"486":{"tf":1.0},"604":{"tf":1.0},"679":{"tf":1.0},"794":{"tf":1.4142135623730951},"798":{"tf":1.0},"845":{"tf":1.0},"884":{"tf":1.0},"921":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"535":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"729":{"tf":1.0}},"i":{"df":3,"docs":{"1124":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":14,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1089":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1336":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"959":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"322":{"tf":1.0},"549":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.0},"725":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"991":{"tf":1.4142135623730951}},"i":{"df":14,"docs":{"1006":{"tf":1.0},"1314":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"199":{"tf":1.4142135623730951},"2":{"tf":1.0},"62":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"882":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1162":{"tf":1.0},"261":{"tf":1.0},"857":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"995":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"1209":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"237":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1307":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.7320508075688772},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1154":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.0}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"667":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":0,"docs":{},"s":{":":{"9":{"0":{"9":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":41,"docs":{"1020":{"tf":1.0},"110":{"tf":1.0},"1149":{"tf":1.0},"1203":{"tf":1.0},"1262":{"tf":1.0},"1268":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1284":{"tf":1.0},"1294":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1377":{"tf":1.0},"1379":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1493":{"tf":1.0},"1525":{"tf":1.0},"311":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"434":{"tf":1.0},"452":{"tf":1.4142135623730951},"453":{"tf":1.7320508075688772},"454":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.7320508075688772},"481":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"537":{"tf":1.0},"547":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.0},"734":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"955":{"tf":1.0},"964":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":2,"docs":{"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"104":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"830":{"tf":1.0},"832":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"853":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"180":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"775":{"tf":1.0},"778":{"tf":1.0},"791":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1139":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1437":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"197":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"801":{"tf":1.0},"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"803":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"872":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"941":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"1227":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"157":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"370":{"tf":1.4142135623730951},"51":{"tf":1.0},"604":{"tf":1.4142135623730951},"66":{"tf":1.0},"746":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":2.23606797749979},"754":{"tf":1.7320508075688772},"761":{"tf":1.0},"766":{"tf":1.4142135623730951},"767":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1015":{"tf":1.0},"1034":{"tf":1.4142135623730951},"152":{"tf":1.0},"157":{"tf":1.0},"345":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"761":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"197":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"142":{"tf":1.0},"1484":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1047":{"tf":1.0},"1515":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"1188":{"tf":1.0},"1189":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"979":{"tf":1.0}}}}}}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":127,"docs":{"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1230":{"tf":1.0},"1241":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":2.0},"1302":{"tf":2.0},"1306":{"tf":2.23606797749979},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1405":{"tf":2.0},"142":{"tf":1.0},"1436":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1522":{"tf":1.7320508075688772},"174":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"49":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"587":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"612":{"tf":1.0},"649":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"700":{"tf":1.0},"707":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"832":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"884":{"tf":1.0},"894":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.4142135623730951},"989":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"1013":{"tf":1.0},"1175":{"tf":1.0},"1189":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.0},"1227":{"tf":1.0},"1231":{"tf":1.0},"1258":{"tf":1.0},"1285":{"tf":1.0},"1333":{"tf":1.0},"1415":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"24":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.4142135623730951},"918":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"977":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1441":{"tf":1.0},"760":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.0}},"i":{"df":21,"docs":{"1111":{"tf":1.0},"1441":{"tf":1.0},"155":{"tf":1.0},"232":{"tf":1.0},"262":{"tf":1.0},"41":{"tf":1.0},"445":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":2.0},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.7320508075688772},"831":{"tf":1.0},"879":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"987":{"tf":1.0}}}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1300":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1300":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951}}}}}}},"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1063":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1082":{"tf":1.0},"128":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1426":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1082":{"tf":1.0},"61":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.4142135623730951},"914":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"918":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":37,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"1103":{"tf":1.0},"1158":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1204":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"446":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"910":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0},"981":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"1194":{"tf":1.0},"930":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":188,"docs":{"10":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.7320508075688772},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1103":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1140":{"tf":3.3166247903554},"1142":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1179":{"tf":2.0},"1180":{"tf":2.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":2.0},"1199":{"tf":1.0},"1205":{"tf":1.0},"1217":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"1270":{"tf":2.23606797749979},"1271":{"tf":1.7320508075688772},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":2.0},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.23606797749979},"1379":{"tf":1.7320508075688772},"1381":{"tf":2.0},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.4142135623730951},"1388":{"tf":2.23606797749979},"1390":{"tf":2.0},"1392":{"tf":2.449489742783178},"1394":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1401":{"tf":2.6457513110645907},"1402":{"tf":2.6457513110645907},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.23606797749979},"1405":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.7320508075688772},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"483":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"515":{"tf":1.0},"527":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"592":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"622":{"tf":1.0},"625":{"tf":1.4142135623730951},"638":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.7320508075688772},"666":{"tf":2.449489742783178},"667":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"681":{"tf":1.4142135623730951},"684":{"tf":2.449489742783178},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"692":{"tf":1.4142135623730951},"704":{"tf":1.0},"712":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"79":{"tf":1.7320508075688772},"794":{"tf":1.7320508075688772},"82":{"tf":1.0},"822":{"tf":1.4142135623730951},"83":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"925":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":3,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.23606797749979}},"i":{"d":{"df":1,"docs":{"1010":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"100":{"tf":1.0},"1006":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1114":{"tf":1.0},"1137":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"125":{"tf":1.0},"1255":{"tf":1.0},"1295":{"tf":1.0},"1324":{"tf":1.0},"1490":{"tf":1.0},"1522":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.4142135623730951},"544":{"tf":1.0},"620":{"tf":1.0},"634":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"792":{"tf":1.4142135623730951},"813":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"932":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":18,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"1340":{"tf":1.0},"1493":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"760":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1200":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1200":{"tf":1.0},"1482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1027":{"tf":1.0},"1515":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":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":{"192":{"tf":1.0},"303":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":3,"docs":{"1404":{"tf":1.4142135623730951},"79":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1163":{"tf":1.0},"199":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"857":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1080":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1300":{"tf":2.6457513110645907},"1304":{"tf":2.0},"1306":{"tf":1.4142135623730951},"1308":{"tf":1.0},"1310":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"182":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":4,"docs":{"152":{"tf":1.0},"51":{"tf":1.0},"753":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1022":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"595":{"tf":1.0},"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"361":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"595":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"df":21,"docs":{"1324":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"442":{"tf":1.0},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"884":{"tf":1.0},"899":{"tf":1.4142135623730951},"902":{"tf":1.0},"966":{"tf":1.0},"979":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"1381":{"tf":1.0},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"363":{"tf":1.0},"47":{"tf":1.0},"597":{"tf":1.0},"66":{"tf":1.0},"733":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":2.0},"761":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"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":7,"docs":{"1042":{"tf":1.0},"1054":{"tf":1.0},"1075":{"tf":1.0},"1298":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1109":{"tf":1.0},"1123":{"tf":1.0},"308":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"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":2,"docs":{"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}}}},"df":21,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"1165":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"149":{"tf":1.0},"580":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":74,"docs":{"1107":{"tf":1.0},"111":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1180":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1349":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"149":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"54":{"tf":1.0},"580":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"71":{"tf":1.0}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1162":{"tf":1.0},"1166":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1432":{"tf":1.0},"210":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0},"72":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1082":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"989":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.4142135623730951},"606":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":56,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.7320508075688772},"1154":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1165":{"tf":1.4142135623730951},"1223":{"tf":1.7320508075688772},"1349":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1409":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"321":{"tf":1.0},"323":{"tf":1.0},"324":{"tf":1.0},"327":{"tf":1.0},"351":{"tf":1.0},"353":{"tf":1.0},"355":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.4142135623730951},"547":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"554":{"tf":1.7320508075688772},"555":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":1.4142135623730951},"585":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"6":{"tf":1.0},"682":{"tf":1.4142135623730951},"691":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"727":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"837":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.4142135623730951}}},"n":{"c":{"df":16,"docs":{"332":{"tf":1.0},"388":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"558":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"686":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"718":{"tf":1.0},"726":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":13,"docs":{"1292":{"tf":1.0},"134":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1449":{"tf":1.0},"179":{"tf":1.0},"234":{"tf":1.0},"253":{"tf":1.0},"545":{"tf":1.0},"711":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"763":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"319":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"1180":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1306":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"742":{"tf":1.0},"901":{"tf":1.0}},"r":{"df":117,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1042":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"108":{"tf":1.0},"1137":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1157":{"tf":1.0},"1173":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.7320508075688772},"1299":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1316":{"tf":1.0},"1357":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1523":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"44":{"tf":1.0},"445":{"tf":1.0},"452":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.7320508075688772},"503":{"tf":1.0},"512":{"tf":1.4142135623730951},"520":{"tf":1.0},"547":{"tf":1.4142135623730951},"548":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"590":{"tf":1.0},"598":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"617":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"664":{"tf":1.4142135623730951},"673":{"tf":1.0},"674":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.0},"689":{"tf":1.0},"697":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"86":{"tf":1.0},"871":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"914":{"tf":1.0},"931":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1102":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1194":{"tf":1.0},"780":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1144":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"1225":{"tf":1.0},"1263":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"423":{"tf":1.0},"663":{"tf":1.0},"82":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1177":{"tf":1.0},"439":{"tf":1.0},"470":{"tf":1.0},"669":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1183":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}}}},"df":2,"docs":{"732":{"tf":1.0},"88":{"tf":1.0}},"f":{"a":{"c":{"df":11,"docs":{"118":{"tf":1.0},"1407":{"tf":1.0},"357":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"4":{"tf":1.0},"516":{"tf":1.0},"591":{"tf":1.0},"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"510":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"1268":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"287":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"688":{"tf":1.0},"726":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"231":{"tf":1.0},"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":8,"docs":{"1026":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"446":{"tf":1.0},"728":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1282":{"tf":1.0},"477":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1127":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"1127":{"tf":1.0},"1148":{"tf":1.0},"1169":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1307":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1355":{"tf":1.0},"1375":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1461":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.4142135623730951},"1479":{"tf":1.7320508075688772},"1493":{"tf":1.0},"1494":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"380":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"507":{"tf":1.0},"595":{"tf":1.0},"613":{"tf":1.0},"724":{"tf":1.0},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":7,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1111":{"tf":1.7320508075688772},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1323":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1323":{"tf":2.23606797749979},"1324":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1346":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1111":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1131":{"tf":1.0}}}},"p":{"df":3,"docs":{"1288":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"708":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"644":{"tf":1.0}}}}}},"df":27,"docs":{"1142":{"tf":2.449489742783178},"1302":{"tf":2.0},"1375":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":2.0},"1404":{"tf":1.4142135623730951},"1517":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.4142135623730951},"653":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.4142135623730951},"795":{"tf":1.0},"87":{"tf":1.4142135623730951},"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"319":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}},"l":{"df":5,"docs":{"1139":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1404":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"531":{"tf":1.0},"772":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":15,"docs":{"1164":{"tf":1.0},"1200":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1528":{"tf":1.0},"19":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"451":{"tf":1.4142135623730951},"509":{"tf":1.0},"582":{"tf":1.0},"586":{"tf":1.0},"679":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"976":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}},"df":22,"docs":{"1301":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1403":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":3,"docs":{"357":{"tf":1.0},"471":{"tf":1.0},"591":{"tf":1.0}}},"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":28,"docs":{"1112":{"tf":2.23606797749979},"1121":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":2.449489742783178},"870":{"tf":1.7320508075688772},"871":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"874":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}}},"r":{"df":5,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.7320508075688772},"23":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}}}},"j":{"a":{"c":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"<":{"4":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":568,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"10":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"103":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"106":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1065":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":2.449489742783178},"1071":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"11":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"111":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"113":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"117":{"tf":1.0},"1173":{"tf":1.0},"1175":{"tf":2.0},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"118":{"tf":1.0},"1180":{"tf":2.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":2.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.7320508075688772},"12":{"tf":1.0},"120":{"tf":2.6457513110645907},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.4142135623730951},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.7320508075688772},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.0},"1248":{"tf":1.4142135623730951},"125":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1258":{"tf":1.7320508075688772},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"1270":{"tf":2.0},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"128":{"tf":2.449489742783178},"1281":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"129":{"tf":2.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1312":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"1320":{"tf":2.23606797749979},"1321":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":2.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1333":{"tf":2.8284271247461903},"1334":{"tf":2.449489742783178},"1336":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":3.1622776601683795},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1349":{"tf":1.0},"135":{"tf":1.7320508075688772},"1355":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"136":{"tf":2.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"137":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"138":{"tf":1.7320508075688772},"1381":{"tf":2.6457513110645907},"1382":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"14":{"tf":1.0},"1401":{"tf":2.449489742783178},"1402":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":2.23606797749979},"1407":{"tf":1.0},"1409":{"tf":1.7320508075688772},"141":{"tf":1.7320508075688772},"1410":{"tf":2.0},"1411":{"tf":1.7320508075688772},"1413":{"tf":1.7320508075688772},"1415":{"tf":1.7320508075688772},"1417":{"tf":1.7320508075688772},"1418":{"tf":1.0},"1419":{"tf":3.0},"142":{"tf":2.0},"1420":{"tf":2.449489742783178},"1421":{"tf":2.23606797749979},"1422":{"tf":2.0},"1423":{"tf":2.6457513110645907},"1425":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"146":{"tf":1.0},"1460":{"tf":2.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1484":{"tf":1.0},"149":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"150":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.0},"151":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":2.23606797749979},"1513":{"tf":1.4142135623730951},"1515":{"tf":1.0},"152":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"1529":{"tf":2.23606797749979},"1530":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"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.4142135623730951},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.0},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"25":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"28":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"321":{"tf":1.7320508075688772},"336":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.0},"365":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":1.7320508075688772},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":2.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":2.23606797749979},"585":{"tf":1.4142135623730951},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"6":{"tf":1.0},"60":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"63":{"tf":1.0},"648":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":2.6457513110645907},"667":{"tf":2.0},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"675":{"tf":1.7320508075688772},"676":{"tf":1.0},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"70":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"71":{"tf":1.4142135623730951},"712":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"72":{"tf":2.0},"725":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":2.23606797749979},"800":{"tf":1.0},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.7320508075688772},"850":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"887":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.7320508075688772},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.7320508075688772},"981":{"tf":1.0},"986":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":2.0}},"s":{"'":{"df":1,"docs":{"1447":{"tf":1.0}}},".":{"a":{"2":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.0},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"443":{"tf":1.0},"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1510":{"tf":1.0},"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"113":{"tf":1.0},"1140":{"tf":1.0},"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1320":{"tf":1.0},"1355":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"160":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"361":{"tf":1.4142135623730951},"389":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"560":{"tf":1.0},"564":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.4142135623730951},"623":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"907":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"731":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"609":{"tf":1.0},"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"376":{"tf":1.0},"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"651":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1264":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"10":{"tf":1.0},"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1149":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1404":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"618":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1273":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"545":{"tf":1.0},"712":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1301":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":18,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1437":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"616":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"618":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"599":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"592":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"713":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"670":{"tf":1.0},"676":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"715":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1290":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"467":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"1145":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1139":{"tf":1.0},"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"714":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"714":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"669":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"670":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"716":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"716":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1313":{"tf":1.0},"1315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1301":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"364":{"tf":1.0},"382":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"70":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"963":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"a":{"2":{"a":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1084":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"575":{"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":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":2.23606797749979},"684":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1430":{"tf":1.0}}}}},"i":{"d":{"=":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1003":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":19,"docs":{"1047":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1204":{"tf":1.0},"1419":{"tf":1.0},"1515":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"r":{"df":5,"docs":{"336":{"tf":1.0},"557":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":45,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":2.0},"1047":{"tf":1.4142135623730951},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1461":{"tf":1.0},"1515":{"tf":1.4142135623730951},"160":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"1520":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"$":{"(":{"d":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1329":{"tf":1.0},"142":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1460":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"682":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"1430":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"*":{"*":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1063":{"tf":1.0},"1510":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"1530":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1063":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1430":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":42,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1106":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"562":{"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":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"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":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"r":{"d":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":41,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1105":{"tf":1.0},"113":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1497":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":44,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":2.0},"1454":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"336":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"946":{"tf":1.0},"965":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":2.0},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1310":{"tf":2.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1452":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1454":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"965":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1248":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1239":{"tf":1.4142135623730951},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":34,"docs":{"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"562":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"557":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1342":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1214":{"tf":1.0},"1436":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1436":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"995":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":44,"docs":{"1043":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"161":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.4142135623730951}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1520":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"1520":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1507":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1199":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"684":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"963":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"903":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1466":{"tf":1.0},"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"1448":{"tf":1.0},"1455":{"tf":1.0},"332":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"1507":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1310":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1237":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1081":{"tf":1.0},"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.0},"897":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.4142135623730951}}},"y":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1240":{"tf":1.4142135623730951},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}}}}}},"a":{"2":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1217":{"tf":1.0},"1218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":54,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"332":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.4142135623730951},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"593":{"tf":1.0},"619":{"tf":1.4142135623730951},"692":{"tf":1.0},"693":{"tf":1.4142135623730951},"694":{"tf":1.4142135623730951},"711":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"151":{"tf":1.0},"167":{"tf":1.0},"244":{"tf":1.4142135623730951},"757":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"976":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"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":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":17,"docs":{"1332":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"741":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1143":{"tf":1.0},"1484":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"785":{"tf":1.4142135623730951},"858":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1486":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"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":2,"docs":{"217":{"tf":1.0},"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1046":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"785":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"779":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"885":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"854":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1084":{"tf":1.0},"854":{"tf":1.0},"859":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"856":{"tf":1.0},"857":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1305":{"tf":1.0},"262":{"tf":1.7320508075688772},"329":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":1,"docs":{"1305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1309":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"615":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1367":{"tf":2.6457513110645907},"1394":{"tf":2.449489742783178},"329":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":32,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.0},"538":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"1091":{"tf":1.0},"186":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"445":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":50,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1314":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.4142135623730951},"244":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"468":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"537":{"tf":1.0},"539":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"539":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"1382":{"tf":1.0},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1203":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}}},"df":9,"docs":{"1148":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1382":{"tf":1.0},"667":{"tf":1.0},"670":{"tf":1.7320508075688772},"678":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":14,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"330":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.7320508075688772},"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1180":{"tf":1.0},"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"1192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"798":{"tf":1.4142135623730951},"816":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1183":{"tf":1.0},"1371":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"861":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"536":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"741":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":13,"docs":{"1046":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1196":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":32,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1186":{"tf":1.0},"1196":{"tf":1.0},"1374":{"tf":1.0},"1392":{"tf":1.0},"1470":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"521":{"tf":1.0},"632":{"tf":1.0},"698":{"tf":1.0},"729":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"934":{"tf":1.0},"990":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"808":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"819":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"49":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"809":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"808":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"804":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"818":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"866":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"865":{"tf":1.0},"867":{"tf":1.0},"872":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"865":{"tf":1.0},"872":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":5,"docs":{"1182":{"tf":1.0},"429":{"tf":1.7320508075688772},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"541":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"498":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"938":{"tf":1.4142135623730951},"940":{"tf":1.0},"976":{"tf":2.0},"979":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":41,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1217":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.0},"836":{"tf":1.0},"861":{"tf":1.0},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1439":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"761":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1140":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1369":{"tf":1.0}}}}},"o":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1404":{"tf":1.0},"154":{"tf":1.0},"766":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"1480":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":7,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0},"1151":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1302":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1142":{"tf":1.0},"1171":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"634":{"tf":1.0},"635":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1088":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"696":{"tf":1.0},"797":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"709":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"695":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"769":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"588":{"tf":1.0},"656":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"518":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"770":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1361":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"522":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"408":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1151":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"349":{"tf":1.0},"519":{"tf":1.7320508075688772},"522":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}}},"y":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1399":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1312":{"tf":1.0},"1369":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1353":{"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":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"400":{"tf":1.0},"401":{"tf":1.0}}},"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":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":12,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"df":165,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"1021":{"tf":1.0},"1057":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1080":{"tf":1.0},"1094":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1231":{"tf":1.0},"127":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1302":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1340":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.23606797749979},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.0},"1479":{"tf":2.0},"16":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"528":{"tf":1.0},"532":{"tf":1.0},"536":{"tf":1.4142135623730951},"562":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"606":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"64":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"669":{"tf":1.4142135623730951},"695":{"tf":1.0},"696":{"tf":1.7320508075688772},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"725":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"828":{"tf":1.0},"842":{"tf":1.0},"851":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"921":{"tf":1.0},"94":{"tf":1.4142135623730951}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"581":{"tf":2.23606797749979},"590":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1219":{"tf":1.0},"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"816":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":3,"docs":{"1015":{"tf":2.0},"1030":{"tf":1.7320508075688772},"1036":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1526":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.4142135623730951},"204":{"tf":1.0},"433":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"_":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":3,"docs":{"1217":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":264,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":2.0},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.7320508075688772},"1004":{"tf":1.4142135623730951},"1006":{"tf":2.0},"1007":{"tf":2.0},"1008":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1018":{"tf":1.7320508075688772},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.0},"1043":{"tf":2.0},"1044":{"tf":1.7320508075688772},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1052":{"tf":1.7320508075688772},"1053":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1085":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1177":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1202":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1206":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":2.6457513110645907},"1219":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1253":{"tf":2.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"127":{"tf":2.449489742783178},"1285":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1369":{"tf":1.0},"139":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.0},"1410":{"tf":1.0},"1432":{"tf":1.0},"1436":{"tf":2.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1462":{"tf":1.7320508075688772},"1464":{"tf":2.449489742783178},"1465":{"tf":2.449489742783178},"1466":{"tf":1.7320508075688772},"1467":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"1493":{"tf":1.0},"150":{"tf":1.4142135623730951},"1505":{"tf":2.0},"151":{"tf":1.0},"1512":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.7320508075688772},"1522":{"tf":1.0},"1528":{"tf":2.23606797749979},"1530":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":2.0},"42":{"tf":1.4142135623730951},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"447":{"tf":1.4142135623730951},"45":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"478":{"tf":1.7320508075688772},"522":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"536":{"tf":2.449489742783178},"544":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":3.0},"608":{"tf":1.0},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"634":{"tf":1.0},"638":{"tf":1.0},"657":{"tf":1.7320508075688772},"681":{"tf":2.0},"682":{"tf":1.0},"699":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.4142135623730951},"71":{"tf":1.0},"710":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"722":{"tf":1.7320508075688772},"724":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"816":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"847":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.7320508075688772},"892":{"tf":2.449489742783178},"896":{"tf":1.0},"90":{"tf":1.4142135623730951},"908":{"tf":2.0},"91":{"tf":1.0},"911":{"tf":2.23606797749979},"913":{"tf":2.23606797749979},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":2.449489742783178},"925":{"tf":2.23606797749979},"926":{"tf":2.23606797749979},"939":{"tf":2.0},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.0},"950":{"tf":2.23606797749979},"951":{"tf":1.0},"962":{"tf":1.4142135623730951},"968":{"tf":1.7320508075688772},"969":{"tf":2.449489742783178},"97":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"981":{"tf":2.449489742783178},"982":{"tf":1.0},"983":{"tf":2.0},"984":{"tf":1.0},"985":{"tf":1.7320508075688772},"986":{"tf":1.0},"988":{"tf":2.0},"989":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":2.23606797749979},"992":{"tf":1.7320508075688772},"993":{"tf":1.0},"994":{"tf":2.23606797749979},"995":{"tf":1.7320508075688772},"996":{"tf":3.0},"997":{"tf":2.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1505":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"368":{"tf":1.4142135623730951},"43":{"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":1,"docs":{"1307":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1085":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":1,"docs":{"1106":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":8,"docs":{"1213":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0},"911":{"tf":1.0},"992":{"tf":1.0}}}}}},"o":{"a":{"df":7,"docs":{"1264":{"tf":1.0},"1268":{"tf":2.0},"454":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":2.6457513110645907},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1175":{"tf":1.0},"21":{"tf":1.0}}}},"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"831":{"tf":1.0},"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1181":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.0},"1310":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1068":{"tf":1.0},"1169":{"tf":1.0},"1426":{"tf":1.4142135623730951},"206":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"818":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":6,"docs":{"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.0},"185":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1039":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"1001":{"tf":1.0},"762":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1070":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"1194":{"tf":1.0},"1477":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"934":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1084":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1482":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1015":{"tf":1.0},"1029":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1051":{"tf":1.0},"1175":{"tf":1.0},"871":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":1,"docs":{"1154":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":1,"docs":{"1276":{"tf":1.0}}}},"d":{"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"1015":{"tf":1.0},"1026":{"tf":1.0},"1041":{"tf":1.0},"159":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1042":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"1130":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1194":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1021":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"458":{"tf":1.0},"925":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1033":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"19":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":45,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1103":{"tf":1.0},"1208":{"tf":1.0},"1276":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.4142135623730951},"204":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.4142135623730951},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"357":{"tf":1.0},"500":{"tf":1.0},"545":{"tf":1.0},"591":{"tf":1.0},"676":{"tf":1.0},"711":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"780":{"tf":1.4142135623730951},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0},"899":{"tf":1.7320508075688772},"902":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"959":{"tf":1.0},"966":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1194":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":14,"docs":{"1017":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0},"257":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.0},"4":{"tf":1.7320508075688772},"548":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"841":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"759":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"1425":{"tf":1.0},"214":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"368":{"tf":1.0},"43":{"tf":1.0},"602":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1062":{"tf":1.0},"1083":{"tf":1.7320508075688772},"109":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"248":{"tf":1.0},"501":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":12,"docs":{"1154":{"tf":1.4142135623730951},"118":{"tf":1.0},"1403":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"607":{"tf":1.0},"67":{"tf":1.0},"762":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"742":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":12,"docs":{"1298":{"tf":1.0},"192":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.7320508075688772},"93":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1479":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"578":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"322":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1388":{"tf":1.0},"613":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":36,"docs":{"1209":{"tf":1.0},"1255":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1423":{"tf":1.0},"1436":{"tf":1.0},"1486":{"tf":1.7320508075688772},"270":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"583":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"732":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"865":{"tf":1.0},"866":{"tf":1.0},"87":{"tf":1.4142135623730951},"870":{"tf":1.0},"873":{"tf":3.0},"874":{"tf":1.0},"886":{"tf":1.0},"916":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1292":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1038":{"tf":1.0},"129":{"tf":1.0},"234":{"tf":1.0},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"789":{"tf":1.0},"790":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1154":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":104,"docs":{"1047":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1436":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"270":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"286":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"378":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.4142135623730951},"410":{"tf":1.0},"419":{"tf":1.0},"43":{"tf":2.0},"431":{"tf":1.0},"458":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.4142135623730951},"576":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"622":{"tf":1.4142135623730951},"644":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.7320508075688772},"708":{"tf":1.0},"712":{"tf":1.0},"724":{"tf":1.0},"75":{"tf":1.0},"769":{"tf":1.0},"772":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"904":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1436":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1333":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"734":{"tf":1.0},"788":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"458":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.0}}}}}}},"t":{"df":15,"docs":{"1095":{"tf":1.0},"1131":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1452":{"tf":1.0},"734":{"tf":1.0},"750":{"tf":1.0},"762":{"tf":1.0},"775":{"tf":1.0},"788":{"tf":1.0},"801":{"tf":1.0},"830":{"tf":1.0},"841":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.0},"929":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":4,"docs":{"1046":{"tf":1.0},"1487":{"tf":1.0},"726":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"284":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":53,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1191":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1205":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"1293":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":3.605551275463989},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.4142135623730951},"298":{"tf":2.449489742783178},"299":{"tf":1.4142135623730951},"306":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.23606797749979},"36":{"tf":1.0},"4":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"450":{"tf":1.0},"502":{"tf":1.4142135623730951},"679":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":2.0},"902":{"tf":1.0},"908":{"tf":1.0},"942":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"1199":{"tf":1.0},"1293":{"tf":1.0},"679":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1205":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"28":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"250":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"1001":{"tf":1.0},"1233":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"991":{"tf":1.0},"997":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"1077":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1241":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1256":{"tf":1.0},"130":{"tf":2.23606797749979},"1333":{"tf":1.4142135623730951},"143":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"939":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1312":{"tf":1.0}}},"t":{"df":1,"docs":{"1452":{"tf":1.0}}}},"w":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"976":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1452":{"tf":1.0},"6":{"tf":1.0},"827":{"tf":1.0}}}}},"o":{"df":4,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1006":{"tf":1.0},"62":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"762":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1356":{"tf":1.0},"1359":{"tf":1.0},"420":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1382":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"474":{"tf":1.0},"576":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"667":{"tf":1.0},"761":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1314":{"tf":1.0},"1325":{"tf":1.0},"1503":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.0},"42":{"tf":1.0},"516":{"tf":1.0},"59":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"798":{"tf":1.0},"947":{"tf":1.0},"983":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1181":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"548":{"tf":1.0},"882":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1471":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1055":{"tf":1.0},"1073":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":2.0},"1209":{"tf":1.0},"1335":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"1441":{"tf":1.0},"146":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"447":{"tf":1.0},"549":{"tf":1.0},"59":{"tf":1.0},"590":{"tf":1.0},"61":{"tf":1.0},"654":{"tf":1.0},"658":{"tf":1.0},"681":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"816":{"tf":1.4142135623730951},"91":{"tf":1.0},"923":{"tf":1.0},"947":{"tf":1.4142135623730951},"981":{"tf":1.0},"985":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1026":{"tf":1.0},"985":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"918":{"tf":1.0}},"i":{"df":4,"docs":{"1162":{"tf":1.0},"308":{"tf":1.0},"746":{"tf":1.0},"985":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1095":{"tf":1.0},"112":{"tf":1.0},"1161":{"tf":1.0},"1456":{"tf":1.0},"150":{"tf":1.0},"238":{"tf":1.0},"36":{"tf":1.4142135623730951},"463":{"tf":2.0},"676":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":3,"docs":{"1399":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"1006":{"tf":1.0},"1214":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1251":{"tf":1.0},"1260":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1528":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.0},"939":{"tf":1.7320508075688772},"950":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"974":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1175":{"tf":1.0},"1286":{"tf":1.0},"982":{"tf":1.0}}}}}},"x":{"df":6,"docs":{"1036":{"tf":1.0},"1084":{"tf":1.0},"308":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1116":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1507":{"tf":1.0},"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1512":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"666":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}}}},"df":96,"docs":{"1020":{"tf":1.0},"1042":{"tf":1.0},"108":{"tf":1.0},"1148":{"tf":2.0},"1152":{"tf":1.4142135623730951},"1173":{"tf":1.7320508075688772},"1174":{"tf":1.4142135623730951},"1175":{"tf":2.449489742783178},"1176":{"tf":1.7320508075688772},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1210":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1294":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":2.0},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1402":{"tf":2.0},"1406":{"tf":1.4142135623730951},"1523":{"tf":1.0},"1524":{"tf":1.0},"2":{"tf":1.0},"330":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":2.0},"424":{"tf":1.4142135623730951},"426":{"tf":1.7320508075688772},"427":{"tf":1.7320508075688772},"429":{"tf":1.4142135623730951},"430":{"tf":1.0},"434":{"tf":1.4142135623730951},"436":{"tf":1.0},"439":{"tf":1.4142135623730951},"440":{"tf":1.0},"442":{"tf":1.7320508075688772},"443":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"451":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"593":{"tf":1.0},"6":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":1.7320508075688772},"664":{"tf":1.7320508075688772},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"673":{"tf":1.4142135623730951},"679":{"tf":1.0},"682":{"tf":1.0},"684":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.0},"847":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"851":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"916":{"tf":1.0},"955":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1401":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951}}}}}}}}}},"df":3,"docs":{"1340":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"144":{"tf":1.0},"837":{"tf":1.0},"855":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1114":{"tf":1.0},"170":{"tf":1.0}}}}},"t":{"df":2,"docs":{"182":{"tf":1.0},"780":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"733":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.0},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"869":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"62":{"tf":1.0},"766":{"tf":1.0},"941":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"113":{"tf":1.0},"1209":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.7320508075688772},"285":{"tf":1.0},"340":{"tf":1.4142135623730951},"536":{"tf":1.0},"567":{"tf":1.4142135623730951},"722":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":2.0},"845":{"tf":1.7320508075688772},"848":{"tf":2.0},"973":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"831":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"833":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"848":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"1219":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":91,"docs":{"1020":{"tf":1.0},"1021":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1177":{"tf":2.23606797749979},"1184":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1212":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1278":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"1457":{"tf":1.0},"197":{"tf":2.0},"358":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":2.0},"440":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"592":{"tf":1.0},"613":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"65":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"774":{"tf":1.0},"862":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":2.449489742783178},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"93":{"tf":1.0},"941":{"tf":1.4142135623730951},"95":{"tf":1.0},"98":{"tf":2.0},"995":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":15,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1122":{"tf":1.0},"1403":{"tf":2.0},"1420":{"tf":1.0},"1433":{"tf":1.0},"174":{"tf":1.0},"382":{"tf":1.4142135623730951},"47":{"tf":1.0},"495":{"tf":1.0},"616":{"tf":1.4142135623730951},"739":{"tf":1.0},"792":{"tf":1.0},"845":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"739":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":31,"docs":{"1045":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1186":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1297":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"262":{"tf":1.0},"276":{"tf":1.0},"414":{"tf":1.0},"439":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"558":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":36,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1440":{"tf":3.1622776601683795},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":2.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":1.7320508075688772},"34":{"tf":1.0},"4":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"908":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1440":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"301":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"295":{"tf":1.0},"302":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"918":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":53,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1275":{"tf":1.0},"1278":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1355":{"tf":1.0},"1381":{"tf":1.0},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":2.0},"462":{"tf":1.0},"465":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"480":{"tf":1.0},"481":{"tf":1.0},"483":{"tf":1.4142135623730951},"484":{"tf":1.0},"489":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.7320508075688772},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"547":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"1047":{"tf":1.4142135623730951},"1061":{"tf":1.0},"1084":{"tf":1.0},"1093":{"tf":1.0},"1095":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1456":{"tf":1.4142135623730951},"1502":{"tf":1.7320508075688772},"1504":{"tf":1.0},"1505":{"tf":1.0},"1508":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1525":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.4142135623730951},"1529":{"tf":1.0},"1530":{"tf":1.0},"446":{"tf":1.0},"545":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"614":{"tf":1.0}}}}}},"df":5,"docs":{"1432":{"tf":1.0},"381":{"tf":1.0},"614":{"tf":1.0},"788":{"tf":1.0},"836":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"1358":{"tf":1.0},"381":{"tf":1.0},"442":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1084":{"tf":1.0},"934":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"264":{"tf":1.0},"664":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0},"889":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"1071":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1439":{"tf":1.0},"742":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.0},"1130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"18":{"tf":1.0},"357":{"tf":1.0},"501":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"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":{"916":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"1292":{"tf":1.0},"1429":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"254":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":21,"docs":{"1126":{"tf":1.4142135623730951},"115":{"tf":1.0},"1220":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1363":{"tf":1.0},"1374":{"tf":1.0},"1386":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"319":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.0},"916":{"tf":1.0}}}},"x":{"df":2,"docs":{"1287":{"tf":1.0},"925":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1320":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":{"1151":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1151":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1137":{"tf":1.0},"1150":{"tf":1.0},"1151":{"tf":4.0},"1152":{"tf":2.0},"506":{"tf":1.4142135623730951}},"j":{"a":{"c":{"df":1,"docs":{"506":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"1197":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.0},"1497":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"440":{"tf":1.0},"446":{"tf":1.0},"554":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0}},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1358":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":44,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"108":{"tf":1.0},"1082":{"tf":1.0},"1107":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":2.0},"1193":{"tf":1.0},"1210":{"tf":1.0},"1214":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1501":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.4142135623730951},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"790":{"tf":1.0},"851":{"tf":1.0},"881":{"tf":1.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.0},"917":{"tf":1.0},"986":{"tf":1.0}}},"r":{"df":1,"docs":{"1030":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1255":{"tf":1.0},"2":{"tf":1.0},"227":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}},"i":{"df":25,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1260":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.0},"1469":{"tf":1.0},"1487":{"tf":1.4142135623730951},"166":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"532":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.4142135623730951},"634":{"tf":1.0},"699":{"tf":1.4142135623730951},"709":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"1264":{"tf":1.0},"1349":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"353":{"tf":1.0},"357":{"tf":1.0},"515":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"545":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.4142135623730951},"591":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"711":{"tf":1.0},"717":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":5,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}},"y":{"[":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1305":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"171":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"935":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"21":{"tf":1.0},"295":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"858":{"tf":1.0},"932":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1048":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":1.0},"1003":{"tf":1.0},"1050":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.4142135623730951},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1397":{"tf":1.0},"1404":{"tf":1.4142135623730951},"142":{"tf":1.0},"1423":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"593":{"tf":1.0},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"799":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"980":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1014":{"tf":1.0},"1054":{"tf":1.0},"1161":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1262":{"tf":1.0},"1277":{"tf":1.0},"1326":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.0},"1390":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1423":{"tf":1.0},"1426":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"406":{"tf":1.0},"487":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"523":{"tf":1.0},"593":{"tf":1.0},"640":{"tf":1.0},"693":{"tf":1.0},"700":{"tf":1.0},"726":{"tf":1.4142135623730951},"992":{"tf":1.0}},"i":{"df":10,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":10,"docs":{"1216":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"845":{"tf":1.0},"873":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1340":{"tf":1.4142135623730951},"1520":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"669":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"676":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"1333":{"tf":2.23606797749979},"151":{"tf":1.0},"167":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"902":{"tf":1.0},"938":{"tf":1.0},"945":{"tf":1.0},"976":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":97,"docs":{"1112":{"tf":2.0},"1122":{"tf":1.0},"1127":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1158":{"tf":2.449489742783178},"1179":{"tf":1.0},"1186":{"tf":1.0},"1219":{"tf":1.0},"1227":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1399":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1475":{"tf":1.0},"1506":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"309":{"tf":1.0},"348":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"398":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":2.0},"51":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"645":{"tf":1.4142135623730951},"676":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"73":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"762":{"tf":2.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"956":{"tf":1.0},"999":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"1181":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1452":{"tf":1.0},"2":{"tf":1.0},"353":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":18,"docs":{"132":{"tf":2.0},"1325":{"tf":1.0},"1336":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.0},"138":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":2.0},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.4142135623730951},"226":{"tf":1.0},"579":{"tf":1.0},"73":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"101":{"tf":1.0},"1027":{"tf":1.0},"1070":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1285":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1456":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":1.0},"1524":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"602":{"tf":1.0},"69":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1061":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":1.0},"681":{"tf":1.4142135623730951},"911":{"tf":1.0},"927":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1085":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"61":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"987":{"tf":1.0}}}}},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1095":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1420":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1047":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"1515":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":155,"docs":{"1007":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.449489742783178},"1052":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1161":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1209":{"tf":1.0},"1218":{"tf":1.0},"124":{"tf":1.0},"1268":{"tf":1.0},"127":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1288":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1325":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1340":{"tf":2.0},"1349":{"tf":1.0},"135":{"tf":2.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1399":{"tf":3.0},"1401":{"tf":2.23606797749979},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":2.449489742783178},"1456":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1487":{"tf":1.0},"150":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":2.6457513110645907},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"271":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":1.7320508075688772},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.0},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"622":{"tf":1.0},"635":{"tf":1.7320508075688772},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"709":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"794":{"tf":1.0},"81":{"tf":1.0},"847":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"926":{"tf":2.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":2.0},"995":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1000":{"tf":1.0},"1033":{"tf":1.0},"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"345":{"tf":1.0},"572":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"df":34,"docs":{"117":{"tf":1.0},"1261":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"491":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"827":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"57":{"tf":1.0},"985":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":5,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1088":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":54,"docs":{"1127":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":1.0},"1172":{"tf":1.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1268":{"tf":1.0},"1273":{"tf":1.0},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1348":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"327":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"770":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1158":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1359":{"tf":1.0},"1451":{"tf":1.0},"1524":{"tf":1.0},"327":{"tf":1.0},"348":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"732":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":18,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1228":{"tf":1.0},"1287":{"tf":1.0},"1298":{"tf":1.0},"1451":{"tf":1.0},"1526":{"tf":1.0},"242":{"tf":1.0},"446":{"tf":1.0},"456":{"tf":1.0},"486":{"tf":1.0},"510":{"tf":1.0},"82":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0},"976":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":45,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1169":{"tf":1.0},"1216":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1404":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.7320508075688772},"243":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"284":{"tf":2.23606797749979},"288":{"tf":2.8284271247461903},"295":{"tf":2.0},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"314":{"tf":2.0},"315":{"tf":1.4142135623730951},"597":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"79":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1080":{"tf":1.0},"669":{"tf":1.0},"911":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"371":{"tf":1.0},"394":{"tf":1.0},"519":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"581":{"tf":2.23606797749979},"590":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":18,"docs":{"1085":{"tf":1.0},"110":{"tf":1.0},"1129":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1505":{"tf":1.0},"1515":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"450":{"tf":1.0},"605":{"tf":1.0},"82":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.0},"996":{"tf":1.0}}},"h":{"df":2,"docs":{"1082":{"tf":1.0},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1006":{"tf":1.0},"1011":{"tf":1.0},"1405":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1522":{"tf":1.0},"355":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"921":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"m":{"df":17,"docs":{"1156":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1510":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.4142135623730951},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"5":{"tf":1.0},"514":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"935":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":33,"docs":{"1081":{"tf":2.449489742783178},"1088":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1306":{"tf":2.0},"1307":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"298":{"tf":1.0},"334":{"tf":1.0},"363":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"506":{"tf":1.4142135623730951},"519":{"tf":2.0},"75":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0},"999":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1180":{"tf":1.0},"1390":{"tf":1.0},"1441":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"790":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"767":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1120":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"28":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.4142135623730951},"511":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"608":{"tf":1.0},"64":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":2.0},"811":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"306":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":36,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.7320508075688772},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.4142135623730951},"291":{"tf":1.0},"292":{"tf":2.23606797749979},"294":{"tf":1.0},"304":{"tf":1.0},"310":{"tf":1.4142135623730951},"320":{"tf":1.0},"4":{"tf":1.0},"887":{"tf":1.0},"898":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1458":{"tf":1.0},"83":{"tf":1.0},"932":{"tf":1.0}}}}},"df":0,"docs":{}},"df":14,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":1.4142135623730951},"1346":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"179":{"tf":1.0},"208":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1083":{"tf":1.7320508075688772}}}}}}},"k":{"df":21,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0}}},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.23606797749979},"1135":{"tf":1.0},"1506":{"tf":1.0},"1515":{"tf":1.7320508075688772},"545":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"1082":{"tf":1.0},"1194":{"tf":1.0},"177":{"tf":1.0},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"942":{"tf":1.0}}},"df":18,"docs":{"1035":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"1342":{"tf":1.0},"1436":{"tf":1.0},"1448":{"tf":1.0},"359":{"tf":1.0},"43":{"tf":1.0},"593":{"tf":1.0},"71":{"tf":1.0},"809":{"tf":1.0},"855":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"984":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"661":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"'":{"df":2,"docs":{"1222":{"tf":1.0},"1243":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1228":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1223":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1225":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":18,"docs":{"1221":{"tf":1.7320508075688772},"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"1230":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1248":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1258":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"1154":{"tf":1.4142135623730951},"1155":{"tf":1.0},"1174":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"1520":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"259":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.4142135623730951},"4":{"tf":1.0},"899":{"tf":1.0}}}}}}}}}}}},"r":{"df":71,"docs":{"1046":{"tf":1.0},"1082":{"tf":1.0},"1088":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.0},"1194":{"tf":1.0},"1200":{"tf":1.0},"1207":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1313":{"tf":1.0},"1322":{"tf":1.0},"1331":{"tf":1.0},"1350":{"tf":1.0},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1369":{"tf":1.0},"1373":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1401":{"tf":1.0},"1448":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1484":{"tf":1.0},"171":{"tf":1.0},"268":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"409":{"tf":1.0},"42":{"tf":1.0},"423":{"tf":1.0},"451":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"516":{"tf":1.0},"549":{"tf":1.0},"558":{"tf":1.4142135623730951},"589":{"tf":1.0},"591":{"tf":1.0},"595":{"tf":1.0},"615":{"tf":1.0},"620":{"tf":1.0},"643":{"tf":1.0},"673":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"767":{"tf":1.0},"799":{"tf":1.0},"847":{"tf":1.0},"851":{"tf":1.0},"911":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.4142135623730951},"981":{"tf":1.0},"983":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1048":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"940":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1100":{"tf":1.0},"1102":{"tf":1.0},"871":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"614":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"611":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":89,"docs":{"107":{"tf":1.4142135623730951},"1079":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1196":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1247":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1501":{"tf":1.0},"1515":{"tf":1.0},"1531":{"tf":1.4142135623730951},"179":{"tf":1.0},"244":{"tf":1.0},"271":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":1.7320508075688772},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"43":{"tf":1.4142135623730951},"432":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"519":{"tf":2.23606797749979},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":3.0},"595":{"tf":1.0},"600":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"605":{"tf":1.4142135623730951},"64":{"tf":1.0},"696":{"tf":2.23606797749979},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.7320508075688772},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"722":{"tf":1.0},"740":{"tf":1.0},"751":{"tf":1.0},"836":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"880":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":2.0},"918":{"tf":1.0},"922":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"538":{"tf":1.0},"539":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":3,"docs":{"1112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":22,"docs":{"1080":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"1286":{"tf":2.0},"1292":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1314":{"tf":1.0},"1436":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"479":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"61":{"tf":1.0},"747":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"152":{"tf":1.0},"37":{"tf":1.0},"753":{"tf":1.0},"767":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"751":{"tf":1.0}}}}}},"df":7,"docs":{"152":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"767":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}},"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}},"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":{"1394":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1353":{"tf":1.4142135623730951}}},"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":{"1367":{"tf":2.0}}}}}}}}},"df":41,"docs":{"1142":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1433":{"tf":1.0},"1469":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.4142135623730951},"527":{"tf":1.0},"605":{"tf":1.4142135623730951},"614":{"tf":1.0},"634":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"798":{"tf":1.0},"819":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.4142135623730951},"850":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"[":{"'":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1072":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1072":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1072":{"tf":1.0},"1094":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"79":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1276":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"292":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1227":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"802":{"tf":1.0},"93":{"tf":1.0}}}}},"df":7,"docs":{"1452":{"tf":1.0},"1477":{"tf":1.0},"1520":{"tf":1.0},"356":{"tf":1.0},"590":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":9,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"393":{"tf":1.0},"627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1338":{"tf":1.4142135623730951},"1390":{"tf":1.0}}}}},"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":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1385":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":43,"docs":{"1154":{"tf":1.0},"1219":{"tf":1.0},"1250":{"tf":1.0},"129":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1346":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.0},"1428":{"tf":1.0},"1433":{"tf":1.0},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1497":{"tf":1.0},"179":{"tf":1.4142135623730951},"182":{"tf":1.0},"191":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"393":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"449":{"tf":1.0},"627":{"tf":1.4142135623730951},"628":{"tf":1.0},"629":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"453":{"tf":1.0},"914":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"903":{"tf":1.0}}}}},"df":9,"docs":{"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.4142135623730951},"277":{"tf":1.0},"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"1017":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1109":{"tf":1.0},"1136":{"tf":1.0},"120":{"tf":1.0},"1222":{"tf":1.0},"1263":{"tf":1.0},"1398":{"tf":1.0},"1435":{"tf":1.0},"231":{"tf":1.0},"291":{"tf":1.0},"454":{"tf":1.0},"482":{"tf":1.0},"664":{"tf":1.0},"751":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"828":{"tf":1.0},"831":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"995":{"tf":1.0}}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":2,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0}}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1219":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"18":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.4142135623730951},"332":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.4142135623730951},"6":{"tf":1.0},"690":{"tf":1.0},"725":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"972":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"347":{"tf":1.0},"348":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1022":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1407":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1077":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1376":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1052":{"tf":1.0},"1206":{"tf":1.0},"1225":{"tf":1.0},"149":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1160":{"tf":1.0},"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"m":{"df":12,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1306":{"tf":1.0},"439":{"tf":1.0},"467":{"tf":1.0},"528":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"713":{"tf":1.0},"82":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":68,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"648":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1039":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1212":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"809":{"tf":1.0},"818":{"tf":1.0},"871":{"tf":1.0},"901":{"tf":1.0},"976":{"tf":1.0}}}}},"s":{"df":30,"docs":{"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1197":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1419":{"tf":1.0},"1465":{"tf":1.0},"1479":{"tf":1.0},"372":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.0},"522":{"tf":1.0},"588":{"tf":1.7320508075688772},"606":{"tf":1.0},"656":{"tf":1.7320508075688772},"657":{"tf":1.0},"699":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"656":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"656":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"1144":{"tf":1.4142135623730951},"370":{"tf":1.0},"604":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"214":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"749":{"tf":1.0}}}}},"df":36,"docs":{"1130":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1305":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"855":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"980":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1333":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1144":{"tf":1.0},"1148":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1219":{"tf":1.0},"1339":{"tf":2.0},"370":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"849":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":2,"docs":{"1197":{"tf":1.0},"446":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"1145":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1253":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":2.0},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":2.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":3.605551275463989},"963":{"tf":1.4142135623730951},"969":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"1000":{"tf":1.0},"1256":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"_":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"104":{"tf":1.0},"1092":{"tf":1.0},"1114":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1154":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1219":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"1288":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1365":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.23606797749979},"1421":{"tf":2.0},"1422":{"tf":2.23606797749979},"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1495":{"tf":1.0},"1522":{"tf":1.0},"1528":{"tf":1.0},"280":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"378":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.7320508075688772},"462":{"tf":1.0},"485":{"tf":1.0},"502":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"522":{"tf":1.0},"528":{"tf":1.0},"531":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.4142135623730951},"626":{"tf":1.0},"629":{"tf":1.0},"648":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"740":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.0},"890":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"911":{"tf":2.6457513110645907},"916":{"tf":1.7320508075688772},"950":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":32,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.0},"1129":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1176":{"tf":1.0},"1182":{"tf":1.0},"1275":{"tf":1.0},"1294":{"tf":1.0},"13":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"23":{"tf":1.0},"422":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.0},"547":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"856":{"tf":1.0},"91":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"a":{"df":1,"docs":{"1378":{"tf":1.0}}},"b":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":57,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":2.0},"1268":{"tf":1.7320508075688772},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"424":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"461":{"tf":2.8284271247461903},"463":{"tf":1.0},"465":{"tf":2.6457513110645907},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"495":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":2.23606797749979},"530":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":2.23606797749979},"707":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1399":{"tf":1.0},"382":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1119":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":4,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"985":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1323":{"tf":1.0},"156":{"tf":1.0},"859":{"tf":1.0}}}},"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"506":{"tf":1.0},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1006":{"tf":1.0}}}},"m":{"df":4,"docs":{"1044":{"tf":2.8284271247461903},"1465":{"tf":1.0},"376":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772}}},"n":{"d":{"df":12,"docs":{"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1329":{"tf":1.0},"1362":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"855":{"tf":1.4142135623730951},"868":{"tf":1.0},"872":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"901":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"1404":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"486":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":16,"docs":{"1041":{"tf":1.0},"1048":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1100":{"tf":1.0},"1214":{"tf":1.0},"1381":{"tf":1.0},"206":{"tf":1.0},"29":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"871":{"tf":1.0},"925":{"tf":1.0},"948":{"tf":1.0},"996":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.0},"1035":{"tf":1.0},"1315":{"tf":1.0},"1403":{"tf":1.4142135623730951},"169":{"tf":1.0},"856":{"tf":1.0},"951":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1194":{"tf":1.7320508075688772},"181":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1071":{"tf":1.0},"1105":{"tf":1.0},"116":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1528":{"tf":1.0},"352":{"tf":2.0},"55":{"tf":1.0},"584":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1054":{"tf":1.0},"1088":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"43":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"1301":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"814":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"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":{"22":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1116":{"tf":1.0},"157":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"759":{"tf":1.0},"760":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":1,"docs":{"760":{"tf":1.4142135623730951}}},"p":{"df":18,"docs":{"10":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.4142135623730951},"554":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"581":{"tf":1.0},"583":{"tf":1.7320508075688772},"585":{"tf":2.23606797749979},"6":{"tf":1.0},"682":{"tf":1.0},"691":{"tf":1.0},"78":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1333":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}},"i":{"df":3,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1177":{"tf":1.0},"1197":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"511":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1402":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"$":{"1":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":18,"docs":{"1011":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"974":{"tf":1.0},"996":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"109":{"tf":1.7320508075688772},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1221":{"tf":1.0},"1437":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"36":{"tf":1.0},"93":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"807":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.4142135623730951},"580":{"tf":2.449489742783178}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1062":{"tf":1.0},"1161":{"tf":1.0},"478":{"tf":1.0},"798":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"1071":{"tf":1.0},"1106":{"tf":1.0},"1490":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"911":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1522":{"tf":1.0}}},"y":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1301":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1426":{"tf":1.0},"366":{"tf":1.0},"600":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"473":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"913":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1006":{"tf":1.0},"1419":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"760":{"tf":1.0},"762":{"tf":1.0}}}},"df":36,"docs":{"1012":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"1038":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.0},"1268":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"41":{"tf":1.0},"434":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"474":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.0},"572":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"b":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.0},"1310":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1164":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1015":{"tf":1.4142135623730951},"1034":{"tf":1.0},"1035":{"tf":1.0},"1037":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1254":{"tf":1.0},"1472":{"tf":1.0},"345":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"82":{"tf":1.7320508075688772},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"1015":{"tf":1.0},"1028":{"tf":1.0},"1031":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.4142135623730951},"57":{"tf":1.0},"571":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":18,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"925":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1011":{"tf":1.0},"1174":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0},"833":{"tf":1.0},"934":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"833":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"236":{"tf":1.0},"666":{"tf":1.0},"911":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"946":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":10,"docs":{"1077":{"tf":1.0},"1080":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1312":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"911":{"tf":1.0},"981":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"884":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"1144":{"tf":1.0},"1161":{"tf":1.0},"1255":{"tf":1.0},"227":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"373":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":15,"docs":{"1003":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"981":{"tf":1.0},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1306":{"tf":1.0},"1522":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1154":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"912":{"tf":1.0},"936":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"581":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"581":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1381":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"555":{"tf":1.0},"644":{"tf":1.0},"695":{"tf":1.0}},"r":{"df":2,"docs":{"642":{"tf":1.0},"654":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"576":{"tf":1.0},"631":{"tf":1.0},"653":{"tf":1.0},"656":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"651":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"555":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"649":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"637":{"tf":1.0},"656":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0}}}}}},"df":3,"docs":{"625":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"706":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"595":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.0},"769":{"tf":1.4142135623730951},"82":{"tf":1.0},"949":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"595":{"tf":1.0},"618":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1374":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"598":{"tf":1.0},"667":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"618":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1376":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0}}}},"o":{"df":1,"docs":{"618":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"599":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1021":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0}}}}}},"df":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1126":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}},"s":{"df":1,"docs":{"1374":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"723":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"576":{"tf":1.0},"87":{"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":{"555":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"653":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"653":{"tf":1.0}}}}}}}},"df":2,"docs":{"1375":{"tf":1.4142135623730951},"1386":{"tf":2.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"609":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1154":{"tf":1.0},"120":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"138":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"1440":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"916":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"987":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"1166":{"tf":1.0},"1336":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"992":{"tf":1.0}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"759":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":47,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1106":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1253":{"tf":1.0},"1320":{"tf":1.0},"1448":{"tf":1.0},"1464":{"tf":1.7320508075688772},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1528":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"280":{"tf":1.4142135623730951},"31":{"tf":1.0},"418":{"tf":1.4142135623730951},"526":{"tf":1.0},"536":{"tf":1.7320508075688772},"58":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"722":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1206":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"913":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1022":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1530":{"tf":1.0},"974":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":41,"docs":{"11":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1149":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1378":{"tf":1.0},"1389":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"177":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.0},"228":{"tf":1.0},"34":{"tf":1.4142135623730951},"359":{"tf":1.0},"43":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"593":{"tf":1.0},"675":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"920":{"tf":1.0},"981":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1390":{"tf":1.0},"311":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1343":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0}},"u":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1170":{"tf":1.0},"176":{"tf":1.0},"837":{"tf":1.0},"856":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":42,"docs":{"1068":{"tf":1.0},"1086":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1205":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1343":{"tf":1.0},"1396":{"tf":1.0},"14":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1445":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.4142135623730951},"49":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"91":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.4142135623730951},"930":{"tf":1.0},"935":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"759":{"tf":1.0},"871":{"tf":1.0}}},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"732":{"tf":1.0},"94":{"tf":1.7320508075688772}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"257":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.4142135623730951},"652":{"tf":1.0},"661":{"tf":1.4142135623730951},"82":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"804":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1202":{"tf":1.0},"1285":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":2.449489742783178},"1365":{"tf":1.0},"1388":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.4142135623730951},"321":{"tf":1.0},"347":{"tf":1.4142135623730951},"391":{"tf":1.0},"548":{"tf":1.0},"574":{"tf":1.4142135623730951},"580":{"tf":1.0},"625":{"tf":1.0},"766":{"tf":1.0},"814":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"845":{"tf":1.0},"848":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"900":{"tf":1.7320508075688772},"902":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"543":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"82":{"tf":1.0},"856":{"tf":1.0},"925":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":12,"docs":{"1014":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1403":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.0},"174":{"tf":1.0},"456":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"915":{"tf":1.0},"960":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1011":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.7320508075688772},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1455":{"tf":1.4142135623730951},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1149":{"tf":1.0},"1499":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":29,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.7320508075688772},"1119":{"tf":1.7320508075688772},"1120":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1122":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1162":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1170":{"tf":1.0},"41":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.0},"832":{"tf":1.0},"834":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"827":{"tf":1.7320508075688772},"883":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1162":{"tf":1.0},"1163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1008":{"tf":1.0},"1032":{"tf":1.0},"1042":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1378":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"169":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"760":{"tf":1.0},"918":{"tf":1.4142135623730951},"925":{"tf":1.0},"93":{"tf":1.0},"934":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":26,"docs":{"108":{"tf":2.0},"1173":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"93":{"tf":1.4142135623730951},"936":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"995":{"tf":1.4142135623730951}},"n":{"df":10,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.0},"1237":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"837":{"tf":1.0},"850":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}}},"i":{"d":{"df":81,"docs":{"1":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1051":{"tf":1.0},"1073":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1173":{"tf":1.0},"118":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1333":{"tf":2.0},"1336":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1400":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1466":{"tf":1.0},"147":{"tf":1.0},"1476":{"tf":1.0},"225":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":2.449489742783178},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"357":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"482":{"tf":1.0},"50":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.4142135623730951},"861":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"952":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1176":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1197":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"542":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"951":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":24,"docs":{"1015":{"tf":1.4142135623730951},"1022":{"tf":1.0},"1023":{"tf":1.0},"1025":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"343":{"tf":1.4142135623730951},"57":{"tf":1.0},"570":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"262":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1213":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}}}}}},"_":{"a":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":13,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1518":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"_":{"b":{"6":{"4":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"638":{"tf":1.0},"646":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"948":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"611":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"277":{"tf":1.0},"616":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}}}}}},"df":87,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1212":{"tf":1.0},"1228":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1276":{"tf":1.4142135623730951},"130":{"tf":1.0},"1320":{"tf":1.0},"1333":{"tf":1.0},"1436":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"486":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"84":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"896":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.7320508075688772},"915":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"939":{"tf":1.7320508075688772},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"404":{"tf":1.0},"412":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":7,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"608":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":19,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"375":{"tf":1.0},"45":{"tf":1.0},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"911":{"tf":1.0},"913":{"tf":1.0},"950":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"378":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":17,"docs":{"1222":{"tf":1.0},"1235":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1476":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.0},"33":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1015":{"tf":1.0},"1041":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1158":{"tf":1.0}}}},"t":{"df":3,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0},"1292":{"tf":1.0}}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"587":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1392":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1148":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1149":{"tf":1.0},"1155":{"tf":1.0},"1392":{"tf":1.4142135623730951},"684":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"3":{".":{"1":{"1":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":60,"docs":{"10":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1155":{"tf":1.0},"1172":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1217":{"tf":1.0},"1219":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1274":{"tf":1.0},"1293":{"tf":1.0},"1302":{"tf":1.0},"1371":{"tf":1.4142135623730951},"1395":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"548":{"tf":2.0},"549":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"6":{"tf":1.0},"610":{"tf":1.0},"620":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0},"690":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}}},"q":{"1":{"df":17,"docs":{"1403":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"616":{"tf":1.0},"640":{"tf":1.0},"785":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1112":{"tf":2.0},"1116":{"tf":1.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":32,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1032":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.7320508075688772},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.0},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"572":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"984":{"tf":1.0},"996":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"1507":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1010":{"tf":1.0},"226":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"843":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1309":{"tf":1.0},"35":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"871":{"tf":1.0},"944":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1143":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":16,"docs":{"1242":{"tf":1.0},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"856":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":22,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.0},"122":{"tf":1.0},"1318":{"tf":1.0},"149":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"359":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"593":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"83":{"tf":1.0},"889":{"tf":1.0},"909":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1479":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1160":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1168":{"tf":1.0}}},"s":{"df":18,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0},"1394":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"(":{"1":{"0":{"df":1,"docs":{"726":{"tf":1.0}}},"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":10,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"379":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.4142135623730951},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}},"df":10,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"682":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1276":{"tf":1.0},"41":{"tf":1.0},"486":{"tf":1.0},"751":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1227":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"1094":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1194":{"tf":1.0},"125":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1340":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1422":{"tf":1.0},"1498":{"tf":1.0},"1529":{"tf":1.0},"192":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.0},"369":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"603":{"tf":1.0},"660":{"tf":1.0},"667":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":9,"docs":{"1396":{"tf":1.0},"14":{"tf":1.4142135623730951},"19":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"454":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"673":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"1042":{"tf":1.0},"1211":{"tf":1.0},"32":{"tf":1.0},"37":{"tf":1.0},"506":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1403":{"tf":1.0},"856":{"tf":1.0},"934":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"1152":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1286":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"440":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"525":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"702":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1083":{"tf":1.0},"916":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"208":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"599":{"tf":1.0},"616":{"tf":1.4142135623730951},"879":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"103":{"tf":1.0},"1035":{"tf":1.0},"1041":{"tf":1.0},"1089":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.0},"1295":{"tf":1.0},"149":{"tf":1.0},"159":{"tf":1.0},"241":{"tf":1.0},"342":{"tf":1.0},"437":{"tf":1.0},"545":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"922":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":44,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.4142135623730951},"1004":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1235":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1251":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.23606797749979},"1476":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.7320508075688772},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"292":{"tf":1.0},"303":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0},"732":{"tf":1.0},"763":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"932":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":2.0},"977":{"tf":1.0},"979":{"tf":1.0},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1096":{"tf":1.0},"1099":{"tf":1.0},"974":{"tf":1.4142135623730951},"983":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}},"s":{"df":5,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1369":{"tf":1.0},"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1307":{"tf":1.7320508075688772}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}}}},"df":50,"docs":{"1052":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1355":{"tf":2.449489742783178},"1401":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1471":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"166":{"tf":1.0},"192":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"434":{"tf":2.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"538":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"847":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"883":{"tf":1.0},"916":{"tf":1.4142135623730951}},"f":{"df":13,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":54,"docs":{"1092":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1347":{"tf":1.7320508075688772},"1370":{"tf":1.0},"1395":{"tf":1.0},"1407":{"tf":1.4142135623730951},"1426":{"tf":1.0},"1434":{"tf":1.0},"1457":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.4142135623730951},"262":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.0},"366":{"tf":1.0},"385":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"428":{"tf":1.0},"452":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"589":{"tf":1.0},"594":{"tf":1.0},"600":{"tf":1.0},"619":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"685":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.4142135623730951},"860":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"881":{"tf":1.0},"885":{"tf":1.0},"977":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1419":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1292":{"tf":1.0},"1491":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1465":{"tf":1.0},"1467":{"tf":1.0},"254":{"tf":1.0},"976":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1099":{"tf":1.0},"1102":{"tf":1.0},"1154":{"tf":1.0},"1437":{"tf":1.0},"1452":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1179":{"tf":1.0},"1208":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1405":{"tf":1.4142135623730951},"373":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"816":{"tf":1.0},"93":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1474":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"783":{"tf":2.0},"976":{"tf":1.0}}}},"df":16,"docs":{"1208":{"tf":1.4142135623730951},"1230":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"533":{"tf":1.0},"646":{"tf":1.0},"710":{"tf":1.0},"783":{"tf":1.4142135623730951},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"96":{"tf":1.0},"977":{"tf":1.0}},"i":{"df":3,"docs":{"1075":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1010":{"tf":1.0},"1097":{"tf":1.0},"169":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"951":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"351":{"tf":1.0},"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":16,"docs":{"1171":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1507":{"tf":1.0},"221":{"tf":1.0},"458":{"tf":1.4142135623730951},"505":{"tf":1.0},"782":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"929":{"tf":1.0},"930":{"tf":1.0},"932":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"954":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"1117":{"tf":1.0},"1298":{"tf":1.0},"748":{"tf":1.0},"869":{"tf":1.0},"885":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1194":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.0},"817":{"tf":1.0},"871":{"tf":1.0},"947":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}},"df":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"871":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1007":{"tf":1.0},"1047":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"166":{"tf":1.0},"874":{"tf":1.0},"911":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"1214":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0}}},"v":{"df":7,"docs":{"1094":{"tf":1.0},"1403":{"tf":1.0},"1470":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"451":{"tf":1.0},"874":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"805":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":8,"docs":{"1310":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1507":{"tf":1.0},"237":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":3,"docs":{"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":1.7320508075688772}}},"df":1,"docs":{"884":{"tf":1.0}}}},"o":{"df":1,"docs":{"93":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"635":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1339":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":22,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1206":{"tf":1.0},"1339":{"tf":3.4641016151377544},"182":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"519":{"tf":1.4142135623730951},"696":{"tf":1.0},"797":{"tf":1.4142135623730951},"833":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.4142135623730951},"849":{"tf":1.0},"859":{"tf":1.4142135623730951},"916":{"tf":1.0},"921":{"tf":1.0},"94":{"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":3,"docs":{"554":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"1213":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"1194":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"749":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"456":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1278":{"tf":1.7320508075688772},"1281":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.0},"509":{"tf":1.0},"538":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"503":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"1148":{"tf":1.0},"1192":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1355":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"538":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"1020":{"tf":1.0},"1146":{"tf":1.0},"1262":{"tf":1.0},"1265":{"tf":1.0},"413":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"647":{"tf":1.0},"676":{"tf":1.0},"955":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":70,"docs":{"1146":{"tf":1.4142135623730951},"1148":{"tf":2.0},"1149":{"tf":1.0},"1185":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1206":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":2.23606797749979},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":2.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.7320508075688772},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":2.23606797749979},"1405":{"tf":1.0},"1441":{"tf":1.0},"1474":{"tf":1.0},"1493":{"tf":2.0},"151":{"tf":1.0},"19":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.4142135623730951},"420":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.0},"507":{"tf":1.0},"528":{"tf":1.7320508075688772},"617":{"tf":1.0},"648":{"tf":1.4142135623730951},"654":{"tf":1.0},"663":{"tf":1.0},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.7320508075688772},"713":{"tf":1.0},"714":{"tf":1.0},"804":{"tf":1.0},"956":{"tf":1.4142135623730951}},"i":{"d":{"df":2,"docs":{"383":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":164,"docs":{"100":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1055":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.4142135623730951},"11":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"115":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1208":{"tf":1.0},"1213":{"tf":1.0},"1222":{"tf":1.0},"1242":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":2.449489742783178},"1304":{"tf":1.7320508075688772},"132":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1333":{"tf":1.4142135623730951},"1334":{"tf":2.23606797749979},"1336":{"tf":1.0},"135":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1420":{"tf":1.0},"1423":{"tf":1.0},"143":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1452":{"tf":2.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1466":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1480":{"tf":1.7320508075688772},"1490":{"tf":1.0},"1515":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"181":{"tf":1.0},"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":2.23606797749979},"245":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.4142135623730951},"31":{"tf":1.0},"322":{"tf":1.0},"33":{"tf":1.0},"334":{"tf":1.0},"342":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.0},"446":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"549":{"tf":1.0},"569":{"tf":1.0},"588":{"tf":1.0},"603":{"tf":1.0},"615":{"tf":1.0},"62":{"tf":1.0},"640":{"tf":1.4142135623730951},"70":{"tf":1.0},"700":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"744":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.0},"766":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"82":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"852":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.0},"890":{"tf":1.0},"896":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.7320508075688772},"94":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"946":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"977":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":1.7320508075688772}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"1522":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"df":1,"docs":{"503":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"574":{"tf":1.0},"575":{"tf":1.0},"682":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":2,"docs":{"1355":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1292":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}}}},"df":25,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"461":{"tf":1.4142135623730951},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.0},"511":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1278":{"tf":1.0},"1355":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"1267":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"497":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"312":{"tf":1.7320508075688772},"506":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1254":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1212":{"tf":1.0},"1220":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.4142135623730951},"991":{"tf":1.0}}}},"v":{"df":5,"docs":{"1145":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"1071":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"442":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.7320508075688772},"803":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"237":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"139":{"tf":1.0},"1441":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":67,"docs":{"1010":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1474":{"tf":1.0},"1494":{"tf":2.0},"221":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.0},"415":{"tf":1.4142135623730951},"451":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"511":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"649":{"tf":1.4142135623730951},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"782":{"tf":1.4142135623730951},"944":{"tf":1.0},"954":{"tf":1.0},"957":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1149":{"tf":1.0},"1379":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.4142135623730951},"953":{"tf":1.0}}}}}}}}}},"t":{"df":8,"docs":{"1106":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"65":{"tf":1.0},"810":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":2.0},"1530":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1105":{"tf":1.0},"1253":{"tf":1.0},"51":{"tf":1.0},"908":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"364":{"tf":1.0},"384":{"tf":1.0},"598":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"957":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"706":{"tf":1.0},"716":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"468":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1301":{"tf":1.0},"1310":{"tf":1.0},"1314":{"tf":1.0}},"s":{"[":{"0":{"df":1,"docs":{"1301":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"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":2,"docs":{"367":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"384":{"tf":1.4142135623730951},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}},"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"649":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1314":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1355":{"tf":2.449489742783178},"1358":{"tf":2.449489742783178},"1365":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1381":{"tf":2.23606797749979},"1388":{"tf":1.0},"1390":{"tf":2.449489742783178},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"182":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"603":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"649":{"tf":1.4142135623730951},"667":{"tf":1.7320508075688772},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"687":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"916":{"tf":1.7320508075688772},"925":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"991":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1390":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"1080":{"tf":1.0},"1214":{"tf":1.0},"1313":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":163,"docs":{"1103":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1301":{"tf":2.449489742783178},"1302":{"tf":2.449489742783178},"1305":{"tf":2.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1381":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":2.449489742783178},"1403":{"tf":2.449489742783178},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1436":{"tf":1.0},"262":{"tf":2.0},"286":{"tf":1.0},"31":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"576":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"617":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.0},"916":{"tf":1.0},"950":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1120":{"tf":1.0},"1278":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1336":{"tf":2.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"214":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"33":{"tf":1.0},"420":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"765":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.4142135623730951},"88":{"tf":2.8284271247461903},"92":{"tf":1.0},"951":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.4142135623730951}}},"df":0,"docs":{},"k":{"df":7,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1052":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"983":{"tf":1.0},"996":{"tf":1.4142135623730951}}}}}},"f":{"c":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":1,"docs":{"351":{"tf":1.0}},"p":{"df":3,"docs":{"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.4142135623730951},"389":{"tf":1.0},"404":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1346":{"tf":1.0},"1520":{"tf":1.0},"351":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1346":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"1130":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"1145":{"tf":1.0},"248":{"tf":1.0},"911":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":30,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.0},"1008":{"tf":1.0},"1010":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1439":{"tf":1.0},"169":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"59":{"tf":1.0},"681":{"tf":1.4142135623730951},"918":{"tf":1.0},"926":{"tf":1.4142135623730951},"969":{"tf":1.0},"981":{"tf":1.4142135623730951},"982":{"tf":1.0},"984":{"tf":1.0},"985":{"tf":1.4142135623730951},"986":{"tf":1.0},"989":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"996":{"tf":2.23606797749979},"997":{"tf":2.0},"999":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1267":{"tf":1.0},"1276":{"tf":2.0},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1401":{"tf":1.0},"1526":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"302":{"tf":1.0},"311":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"491":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"500":{"tf":2.449489742783178}}}}}},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0}}}},"p":{"c":{"df":11,"docs":{"1177":{"tf":1.0},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"669":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"a":{"df":31,"docs":{"1015":{"tf":1.7320508075688772},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1227":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.4142135623730951},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1491":{"tf":1.0},"728":{"tf":1.0},"743":{"tf":1.0},"827":{"tf":1.0},"978":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}}},"df":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":{"1399":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1078":{"tf":1.0},"1084":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1200":{"tf":1.0},"1243":{"tf":1.0},"1258":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1462":{"tf":1.0},"1476":{"tf":1.0},"18":{"tf":1.0},"239":{"tf":1.0},"327":{"tf":1.0},"369":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"473":{"tf":1.0},"555":{"tf":1.0},"603":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.7320508075688772},"871":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0},"116":{"tf":1.0},"1215":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"724":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":41,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1084":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1160":{"tf":1.4142135623730951},"1162":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.0},"1213":{"tf":1.0},"1216":{"tf":1.0},"1219":{"tf":1.0},"1347":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"257":{"tf":1.7320508075688772},"320":{"tf":1.0},"321":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.4142135623730951},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0},"841":{"tf":1.4142135623730951},"844":{"tf":1.0},"845":{"tf":1.0},"860":{"tf":1.0},"87":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"91":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"115":{"tf":1.0}}}}}}}},"s":{"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0}}}}},"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1094":{"tf":1.7320508075688772},"1098":{"tf":1.4142135623730951},"1099":{"tf":1.0},"1102":{"tf":1.4142135623730951},"1106":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1512":{"tf":2.0},"1513":{"tf":1.4142135623730951},"285":{"tf":1.0},"339":{"tf":1.7320508075688772},"536":{"tf":1.0},"566":{"tf":1.7320508075688772},"64":{"tf":1.0},"722":{"tf":1.0},"893":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1108":{"tf":1.0},"287":{"tf":1.0},"726":{"tf":1.7320508075688772},"911":{"tf":1.0},"950":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1161":{"tf":1.4142135623730951},"287":{"tf":1.0},"726":{"tf":1.0},"911":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1330":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"1024":{"tf":1.0},"1080":{"tf":1.0},"1265":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"227":{"tf":1.0},"368":{"tf":1.0},"516":{"tf":1.0},"543":{"tf":1.0},"693":{"tf":1.0},"726":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"954":{"tf":1.0},"978":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.8284271247461903},"1445":{"tf":1.0},"1529":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"308":{"tf":2.0},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"319":{"tf":1.0},"791":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"1063":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1323":{"tf":2.0},"134":{"tf":2.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.0},"179":{"tf":1.7320508075688772},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"288":{"tf":1.0},"371":{"tf":1.4142135623730951},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"1089":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1452":{"tf":1.0},"1502":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"985":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"741":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1480":{"tf":1.0},"189":{"tf":1.0},"803":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":158,"docs":{"1081":{"tf":1.0},"1108":{"tf":1.7320508075688772},"1109":{"tf":1.0},"1110":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.7320508075688772},"1113":{"tf":1.0},"1114":{"tf":1.0},"1118":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":2.0},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":2.0},"1139":{"tf":1.0},"1166":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1209":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":2.449489742783178},"1422":{"tf":1.7320508075688772},"1427":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1480":{"tf":2.0},"151":{"tf":1.0},"1522":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"278":{"tf":1.7320508075688772},"287":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"389":{"tf":1.0},"392":{"tf":1.7320508075688772},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"560":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":1.7320508075688772},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"66":{"tf":1.0},"672":{"tf":1.0},"696":{"tf":1.4142135623730951},"721":{"tf":1.0},"728":{"tf":1.7320508075688772},"729":{"tf":2.23606797749979},"730":{"tf":1.0},"731":{"tf":1.4142135623730951},"732":{"tf":1.4142135623730951},"733":{"tf":1.4142135623730951},"734":{"tf":1.7320508075688772},"735":{"tf":1.0},"736":{"tf":1.4142135623730951},"737":{"tf":1.4142135623730951},"738":{"tf":2.0},"739":{"tf":1.0},"740":{"tf":1.7320508075688772},"741":{"tf":1.7320508075688772},"742":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"747":{"tf":3.0},"748":{"tf":1.7320508075688772},"749":{"tf":1.4142135623730951},"750":{"tf":1.0},"752":{"tf":2.449489742783178},"759":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"773":{"tf":1.7320508075688772},"774":{"tf":2.0},"775":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.7320508075688772},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"791":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.4142135623730951},"801":{"tf":1.0},"803":{"tf":2.23606797749979},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.0},"828":{"tf":2.0},"829":{"tf":1.4142135623730951},"830":{"tf":1.0},"832":{"tf":2.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.7320508075688772},"843":{"tf":1.0},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"853":{"tf":1.0},"858":{"tf":1.0},"859":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.7320508075688772},"863":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"875":{"tf":1.7320508075688772},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"883":{"tf":1.0},"886":{"tf":1.7320508075688772},"888":{"tf":1.0},"889":{"tf":1.0},"895":{"tf":1.4142135623730951},"902":{"tf":1.0},"909":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1324":{"tf":1.0},"278":{"tf":1.0},"519":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"178":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1134":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1017":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"548":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1337":{"tf":1.0},"1456":{"tf":1.0},"348":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0},"82":{"tf":1.0},"925":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"1176":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":12,"docs":{"1302":{"tf":3.4641016151377544},"1323":{"tf":1.0},"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"663":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":2.0},"776":{"tf":1.0},"789":{"tf":1.0},"836":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1084":{"tf":1.0},"129":{"tf":1.0},"1329":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.23606797749979},"901":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1423":{"tf":1.0},"1510":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":131,"docs":{"1":{"tf":1.0},"1005":{"tf":1.0},"1008":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1018":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1032":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1085":{"tf":1.0},"11":{"tf":1.0},"1104":{"tf":1.0},"1107":{"tf":1.4142135623730951},"113":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1179":{"tf":1.0},"1193":{"tf":1.0},"1205":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1252":{"tf":1.0},"1276":{"tf":1.0},"1283":{"tf":1.0},"1288":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1400":{"tf":1.0},"1401":{"tf":1.0},"1455":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1520":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.0},"171":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"320":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.7320508075688772},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.0},"486":{"tf":1.0},"536":{"tf":1.0},"56":{"tf":1.4142135623730951},"569":{"tf":1.0},"570":{"tf":1.0},"59":{"tf":1.0},"603":{"tf":1.7320508075688772},"664":{"tf":1.0},"681":{"tf":1.7320508075688772},"682":{"tf":1.0},"748":{"tf":1.4142135623730951},"758":{"tf":1.0},"760":{"tf":1.0},"816":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"897":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"91":{"tf":1.0},"910":{"tf":1.4142135623730951},"911":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.4142135623730951},"919":{"tf":1.0},"924":{"tf":1.0},"927":{"tf":1.0},"930":{"tf":1.0},"936":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.4142135623730951},"955":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"964":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"969":{"tf":1.0},"971":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"985":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":49,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"1107":{"tf":1.0},"1136":{"tf":1.0},"1172":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1316":{"tf":1.0},"1347":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"1406":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.0},"547":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"67":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"763":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0}},"k":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"1029":{"tf":1.0},"1040":{"tf":1.0},"1089":{"tf":1.0},"1225":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"206":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"921":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"588":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1404":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1388":{"tf":2.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1001":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"1161":{"tf":1.7320508075688772},"147":{"tf":1.0},"185":{"tf":1.0},"277":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"950":{"tf":1.0},"977":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":2.449489742783178},"1398":{"tf":1.0},"1399":{"tf":3.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1144":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1274":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":19,"docs":{"1248":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1292":{"tf":1.0},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"31":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"456":{"tf":1.0},"879":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1228":{"tf":1.0},"1313":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"921":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}}}}}},"t":{"df":7,"docs":{"1192":{"tf":1.0},"1439":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"664":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1101":{"tf":1.0},"112":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1148":{"tf":1.0},"1168":{"tf":1.0},"1202":{"tf":1.0},"1285":{"tf":1.0},"138":{"tf":1.0},"1436":{"tf":1.0},"1453":{"tf":1.0},"185":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"968":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"860":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1216":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"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":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}}},"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1200":{"tf":1.0},"439":{"tf":1.0},"705":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1243":{"tf":1.0},"1248":{"tf":1.0},"1259":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1179":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1524":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1524":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"473":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"a":{"d":{"d":{"df":3,"docs":{"1179":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1148":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":106,"docs":{"1060":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1179":{"tf":2.0},"1180":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":2.0},"1200":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.4142135623730951},"1262":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1265":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.449489742783178},"1401":{"tf":2.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1524":{"tf":1.4142135623730951},"248":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":2.449489742783178},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"442":{"tf":2.8284271247461903},"443":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.4142135623730951},"464":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"478":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"547":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"617":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":2.0},"682":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.23606797749979},"687":{"tf":1.0},"718":{"tf":2.23606797749979},"719":{"tf":1.0},"82":{"tf":1.0},"851":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"473":{"tf":1.0},"495":{"tf":1.0}}}}}}},"i":{"c":{"df":54,"docs":{"1076":{"tf":1.0},"1143":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"147":{"tf":1.0},"155":{"tf":2.449489742783178},"156":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"523":{"tf":1.0},"55":{"tf":1.4142135623730951},"616":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"733":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.7320508075688772},"759":{"tf":2.0},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"785":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1401":{"tf":2.0},"816":{"tf":1.7320508075688772}},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":58,"docs":{"1056":{"tf":1.0},"1072":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1159":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"1247":{"tf":1.0},"1258":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1315":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1410":{"tf":1.0},"1413":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"182":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"336":{"tf":1.0},"465":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"682":{"tf":1.0},"756":{"tf":1.0},"773":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.4142135623730951},"88":{"tf":1.0},"887":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":39,"docs":{"1061":{"tf":1.0},"1078":{"tf":1.0},"1107":{"tf":1.0},"1139":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1222":{"tf":1.0},"1224":{"tf":1.0},"1225":{"tf":1.0},"1261":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1349":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1372":{"tf":1.0},"1392":{"tf":1.0},"1395":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1476":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"763":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"328":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":12,"docs":{"1045":{"tf":1.0},"1245":{"tf":1.0},"1421":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"913":{"tf":1.0},"925":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"1046":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.0},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1213":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1228":{"tf":1.0}}}},"df":0,"docs":{}},"df":28,"docs":{"1075":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1145":{"tf":2.23606797749979},"1518":{"tf":1.4142135623730951},"161":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"214":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.0},"798":{"tf":1.0},"852":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"580":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1296":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"925":{"tf":1.0}}}},"w":{"df":8,"docs":{"101":{"tf":1.0},"1230":{"tf":1.0},"1323":{"tf":1.0},"1428":{"tf":1.0},"223":{"tf":1.0},"771":{"tf":1.0},"907":{"tf":1.0},"963":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1279":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1282":{"tf":1.0},"454":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"991":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"df":2,"docs":{"1151":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1346":{"tf":1.4142135623730951},"309":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":220,"docs":{"1":{"tf":1.0},"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1006":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1045":{"tf":2.0},"1047":{"tf":1.0},"1051":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1142":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1166":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1177":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":2.0},"1196":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1248":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1375":{"tf":1.7320508075688772},"138":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1423":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.7320508075688772},"1485":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.7320508075688772},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.449489742783178},"523":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"53":{"tf":2.0},"531":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.7320508075688772},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.0},"598":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.7320508075688772},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"640":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"654":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":2.449489742783178},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"708":{"tf":1.0},"710":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"782":{"tf":3.0},"783":{"tf":1.7320508075688772},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.0},"823":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":2.0},"933":{"tf":1.4142135623730951},"934":{"tf":1.7320508075688772},"950":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":1.7320508075688772},"991":{"tf":1.7320508075688772},"994":{"tf":1.0},"995":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":1,"docs":{"698":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1306":{"tf":1.0},"1315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"404":{"tf":1.0},"527":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":328,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1000":{"tf":1.0},"1007":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1042":{"tf":1.0},"1048":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1144":{"tf":1.7320508075688772},"1146":{"tf":2.23606797749979},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1173":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1194":{"tf":3.1622776601683795},"1195":{"tf":1.0},"1206":{"tf":2.0},"1209":{"tf":2.23606797749979},"1210":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.7320508075688772},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":2.8284271247461903},"1330":{"tf":2.449489742783178},"1332":{"tf":1.0},"1338":{"tf":2.449489742783178},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.0},"1369":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":1.0},"1390":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979},"1402":{"tf":1.0},"1405":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"142":{"tf":2.0},"1421":{"tf":1.0},"1423":{"tf":2.0},"1436":{"tf":1.0},"146":{"tf":1.0},"1469":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.0},"1472":{"tf":1.7320508075688772},"1485":{"tf":2.0},"1486":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.0},"1500":{"tf":1.0},"1503":{"tf":1.0},"1515":{"tf":2.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"218":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"223":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.7320508075688772},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":1.0},"407":{"tf":1.4142135623730951},"408":{"tf":1.0},"412":{"tf":1.4142135623730951},"413":{"tf":1.0},"414":{"tf":1.4142135623730951},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.0},"439":{"tf":1.4142135623730951},"445":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.23606797749979},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.7320508075688772},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":2.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"530":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.7320508075688772},"605":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.4142135623730951},"616":{"tf":2.23606797749979},"617":{"tf":1.4142135623730951},"620":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.7320508075688772},"638":{"tf":1.0},"641":{"tf":1.4142135623730951},"642":{"tf":1.0},"646":{"tf":1.4142135623730951},"647":{"tf":1.0},"648":{"tf":1.4142135623730951},"649":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.7320508075688772},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"710":{"tf":1.7320508075688772},"713":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.4142135623730951},"732":{"tf":1.7320508075688772},"747":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":2.0},"77":{"tf":1.0},"782":{"tf":1.7320508075688772},"81":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.0},"833":{"tf":1.0},"837":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"846":{"tf":1.4142135623730951},"847":{"tf":1.7320508075688772},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":2.449489742783178},"882":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.0},"921":{"tf":2.23606797749979},"926":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.4142135623730951},"957":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"997":{"tf":1.4142135623730951}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"592":{"tf":1.0},"599":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1330":{"tf":2.23606797749979},"1362":{"tf":1.0},"1385":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"365":{"tf":1.0},"383":{"tf":1.0},"599":{"tf":1.0},"617":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"646":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1385":{"tf":1.0},"641":{"tf":1.0},"654":{"tf":1.0},"701":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"617":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":15,"docs":{"1248":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"656":{"tf":1.0},"846":{"tf":1.0}},"u":{"df":6,"docs":{"601":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"632":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"654":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"412":{"tf":1.0}}}}}}}}},"r":{"df":6,"docs":{"1362":{"tf":1.4142135623730951},"1399":{"tf":1.7320508075688772},"407":{"tf":1.0},"420":{"tf":1.0},"524":{"tf":1.0},"88":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"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":2,"docs":{"1361":{"tf":1.4142135623730951},"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1517":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951}},"u":{"df":15,"docs":{"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"612":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1148":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.0},"528":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"469":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"420":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":5,"docs":{"1255":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1384":{"tf":1.0},"406":{"tf":1.0},"525":{"tf":1.0},"617":{"tf":1.0},"640":{"tf":1.0},"702":{"tf":1.0},"786":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1436":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"1039":{"tf":1.0},"1148":{"tf":1.0},"1182":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":14,"docs":{"1045":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1507":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"913":{"tf":1.0},"990":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1151":{"tf":1.0},"1176":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"545":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1185":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1082":{"tf":1.0},"1214":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"1061":{"tf":1.0},"1145":{"tf":1.0},"1336":{"tf":1.0},"1351":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":1.0},"327":{"tf":1.0},"37":{"tf":1.0},"555":{"tf":1.0},"581":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":6,"docs":{"357":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"383":{"tf":1.0},"591":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"1060":{"tf":1.0},"1062":{"tf":1.0},"1089":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"184":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"593":{"tf":1.0},"856":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"711":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}},"x":{"df":1,"docs":{"847":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"1015":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"934":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1209":{"tf":1.0},"1256":{"tf":1.4142135623730951},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.4142135623730951},"835":{"tf":1.0},"842":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":4,"docs":{"130":{"tf":1.0},"1334":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":2,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"682":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1039":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1426":{"tf":1.4142135623730951},"342":{"tf":1.0},"569":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"818":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1041":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1112":{"tf":1.4142135623730951},"154":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"985":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"767":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":36,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"767":{"tf":1.0},"976":{"tf":2.449489742783178}}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"845":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":1,"docs":{"308":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"3":{"0":{"df":4,"docs":{"1084":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"269":{"tf":1.0},"273":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1305":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"884":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"104":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1436":{"tf":1.7320508075688772},"182":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"70":{"tf":1.0},"809":{"tf":1.0},"972":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1062":{"tf":1.0},"1426":{"tf":1.0},"1489":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"901":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"df":2,"docs":{"309":{"tf":2.0},"319":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"1423":{"tf":1.0},"151":{"tf":1.0},"196":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":55,"docs":{"0":{"tf":1.0},"1001":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"119":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.0},"1309":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"1452":{"tf":1.0},"164":{"tf":1.0},"170":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"632":{"tf":1.0},"644":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"757":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"868":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":23,"docs":{"1323":{"tf":1.0},"138":{"tf":1.0},"1419":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1442":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"188":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"740":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"976":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"872":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"348":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"576":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"1101":{"tf":1.0}}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"1106":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1203":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.0},"541":{"tf":1.0},"664":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"249":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":5,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1441":{"tf":1.0},"930":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"852":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"1022":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.7320508075688772},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"858":{"tf":1.0},"911":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"884":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":43,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.0},"122":{"tf":1.0},"1319":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"18":{"tf":1.4142135623730951},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"293":{"tf":1.0},"348":{"tf":1.0},"358":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"483":{"tf":1.0},"507":{"tf":1.0},"547":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.4142135623730951},"727":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"808":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.4142135623730951},"827":{"tf":1.7320508075688772},"83":{"tf":1.0},"855":{"tf":1.0},"884":{"tf":1.0},"889":{"tf":1.0},"909":{"tf":1.4142135623730951},"976":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1378":{"tf":1.4142135623730951},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1209":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":36,"docs":{"1011":{"tf":1.0},"1144":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":3.0},"1230":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.0},"43":{"tf":1.0},"516":{"tf":1.0},"603":{"tf":1.0},"693":{"tf":1.0},"732":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"808":{"tf":1.0},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.7320508075688772},"829":{"tf":2.0},"831":{"tf":2.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.4142135623730951},"847":{"tf":2.6457513110645907},"850":{"tf":1.0},"916":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"317":{"tf":1.0}}}}}}},"u":{"df":61,"docs":{"1000":{"tf":1.4142135623730951},"1006":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1214":{"tf":1.0},"1230":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":2.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":2.0},"1399":{"tf":2.23606797749979},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"369":{"tf":1.0},"371":{"tf":1.0},"408":{"tf":1.7320508075688772},"420":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.7320508075688772},"603":{"tf":1.0},"642":{"tf":1.7320508075688772},"654":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"849":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"940":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1145":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.4142135623730951},"525":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1362":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1098":{"tf":1.0}}}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1143":{"tf":1.0},"702":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}},"y":{"df":2,"docs":{"950":{"tf":1.0},"97":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"1161":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":7,"docs":{"1191":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"298":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.4142135623730951},"1524":{"tf":1.0},"427":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":11,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.4142135623730951},"437":{"tf":1.0},"450":{"tf":1.4142135623730951},"541":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1154":{"tf":1.0},"1191":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1444":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"761":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":32,"docs":{"111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1158":{"tf":1.0},"117":{"tf":1.0},"122":{"tf":1.0},"1261":{"tf":1.0},"1330":{"tf":2.6457513110645907},"145":{"tf":1.0},"1510":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.0},"994":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1012":{"tf":1.0},"1144":{"tf":1.0},"1506":{"tf":1.0},"223":{"tf":1.0},"997":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{".":{".":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":1,"docs":{"1306":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1452":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":70,"docs":{"1054":{"tf":1.4142135623730951},"1055":{"tf":1.7320508075688772},"1056":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1064":{"tf":1.4142135623730951},"1069":{"tf":1.0},"1070":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"109":{"tf":1.0},"1090":{"tf":1.0},"110":{"tf":1.0},"1101":{"tf":1.0},"1107":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1295":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1320":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":2.449489742783178},"1452":{"tf":2.23606797749979},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"1481":{"tf":1.4142135623730951},"1488":{"tf":1.0},"1489":{"tf":2.0},"1491":{"tf":1.4142135623730951},"1511":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"161":{"tf":1.0},"261":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":2.8284271247461903},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"339":{"tf":1.0},"34":{"tf":1.0},"340":{"tf":1.0},"418":{"tf":1.0},"519":{"tf":1.0},"536":{"tf":2.0},"564":{"tf":1.4142135623730951},"566":{"tf":1.0},"567":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"696":{"tf":1.0},"722":{"tf":1.7320508075688772},"85":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.7320508075688772},"916":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":60,"docs":{"1057":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1209":{"tf":1.0},"1222":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":1.0},"1253":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.7320508075688772},"1312":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1387":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"334":{"tf":1.4142135623730951},"366":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"600":{"tf":1.0},"64":{"tf":1.0},"681":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"84":{"tf":1.0},"846":{"tf":1.0},"850":{"tf":1.0},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0},"947":{"tf":1.4142135623730951},"949":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.4142135623730951}}}}},"r":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1390":{"tf":1.4142135623730951},"1394":{"tf":2.0},"1402":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1080":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1296":{"tf":1.0},"1308":{"tf":1.0},"833":{"tf":1.0}}}}}}},"df":51,"docs":{"1001":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.23606797749979},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"1390":{"tf":1.7320508075688772},"1394":{"tf":2.23606797749979},"1402":{"tf":2.0},"1404":{"tf":3.4641016151377544},"587":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":2.0},"614":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"695":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"699":{"tf":1.7320508075688772},"700":{"tf":2.23606797749979},"701":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"703":{"tf":1.4142135623730951},"704":{"tf":1.7320508075688772},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"725":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1182":{"tf":1.0},"1439":{"tf":1.0},"37":{"tf":1.0},"450":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"357":{"tf":1.0},"591":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"1144":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"165":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":1.7320508075688772},"897":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":124,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1115":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":2.8284271247461903},"1119":{"tf":1.4142135623730951},"1120":{"tf":2.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":2.0},"1129":{"tf":2.449489742783178},"1130":{"tf":2.8284271247461903},"1131":{"tf":2.0},"1134":{"tf":1.0},"1227":{"tf":2.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1304":{"tf":2.0},"1401":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1471":{"tf":1.0},"262":{"tf":1.7320508075688772},"270":{"tf":1.0},"332":{"tf":1.7320508075688772},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"378":{"tf":2.0},"379":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.4142135623730951},"418":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"494":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":2.23606797749979},"523":{"tf":2.6457513110645907},"524":{"tf":2.0},"525":{"tf":2.23606797749979},"526":{"tf":1.7320508075688772},"527":{"tf":2.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"535":{"tf":2.23606797749979},"536":{"tf":3.4641016151377544},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"562":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"651":{"tf":1.4142135623730951},"652":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"722":{"tf":2.6457513110645907},"742":{"tf":1.7320508075688772},"753":{"tf":1.0},"756":{"tf":2.8284271247461903},"757":{"tf":1.4142135623730951},"759":{"tf":3.1622776601683795},"762":{"tf":3.3166247903554},"778":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":3.0},"786":{"tf":1.4142135623730951},"788":{"tf":2.0},"790":{"tf":1.0},"808":{"tf":2.23606797749979},"811":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":2.8284271247461903},"854":{"tf":1.0},"856":{"tf":2.449489742783178},"865":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1215":{"tf":1.0},"169":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1161":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"287":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":53,"docs":{"1043":{"tf":1.0},"1045":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1111":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"1228":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1417":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1528":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"2":{"tf":1.0},"211":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"25":{"tf":1.0},"291":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"36":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"66":{"tf":1.0},"71":{"tf":1.0},"728":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"803":{"tf":1.0},"828":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"916":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1413":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1417":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"802":{"tf":1.0},"818":{"tf":1.0},"869":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"883":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1182":{"tf":1.0},"1191":{"tf":1.0},"433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1163":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"1149":{"tf":1.0},"1321":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"155":{"tf":1.0},"264":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"715":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"1324":{"tf":1.0},"1338":{"tf":1.0},"1346":{"tf":1.0},"1458":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"855":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1062":{"tf":1.0},"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1166":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"1154":{"tf":1.0},"1339":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1000":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.4142135623730951},"505":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"1002":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1054":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1078":{"tf":1.4142135623730951},"109":{"tf":2.449489742783178},"1135":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1212":{"tf":1.0},"1264":{"tf":1.0},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1428":{"tf":1.0},"1438":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":2.0},"297":{"tf":1.0},"332":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"544":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"570":{"tf":1.0},"587":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"725":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.4142135623730951},"82":{"tf":1.0},"871":{"tf":1.0},"898":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"954":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"981":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"108":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1010":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1042":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"1512":{"tf":1.0},"1513":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1479":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":52,"docs":{"1":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1062":{"tf":1.0},"1068":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"1160":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1211":{"tf":1.0},"1222":{"tf":1.0},"1298":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.0},"37":{"tf":1.7320508075688772},"422":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.0},"64":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"758":{"tf":1.0},"816":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"726":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"726":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"997":{"tf":1.0}}},"1":{"df":1,"docs":{"997":{"tf":1.0}}},"2":{"df":1,"docs":{"997":{"tf":1.0}}},"3":{"df":1,"docs":{"997":{"tf":1.0}}},"4":{"df":1,"docs":{"997":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1081":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1310":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1121":{"tf":1.0},"1309":{"tf":1.0},"303":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"848":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}},"df":12,"docs":{"1142":{"tf":2.0},"1163":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1263":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1469":{"tf":1.0},"456":{"tf":1.0},"663":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"1095":{"tf":1.4142135623730951},"1097":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1213":{"tf":1.0},"759":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"654":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"873":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":91,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1256":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":3.4641016151377544},"1335":{"tf":1.0},"1336":{"tf":2.6457513110645907},"1416":{"tf":1.0},"1417":{"tf":2.0},"196":{"tf":2.0},"197":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":2.23606797749979},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"31":{"tf":2.0},"33":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":1.7320508075688772},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"574":{"tf":1.0},"590":{"tf":1.0},"654":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.7320508075688772},"77":{"tf":2.0},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":2.0},"802":{"tf":1.4142135623730951},"803":{"tf":1.4142135623730951},"804":{"tf":2.0},"806":{"tf":1.0},"807":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"809":{"tf":1.7320508075688772},"81":{"tf":2.0},"813":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.0},"818":{"tf":1.7320508075688772},"819":{"tf":1.4142135623730951},"820":{"tf":1.4142135623730951},"821":{"tf":1.0},"822":{"tf":1.4142135623730951},"823":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"862":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"871":{"tf":2.0},"872":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":2.0},"886":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":2,"docs":{"31":{"tf":2.0},"726":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1336":{"tf":1.0},"1403":{"tf":1.0},"1437":{"tf":1.0},"901":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"766":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1392":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":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":{"1140":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1369":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1174":{"tf":1.0},"1195":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1392":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}},"df":1,"docs":{"931":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1404":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":1,"docs":{"1404":{"tf":4.0}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"759":{"tf":1.0},"785":{"tf":1.0},"804":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"883":{"tf":1.0},"884":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"766":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"327":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1343":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"555":{"tf":1.4142135623730951}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"976":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"348":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1169":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1170":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1171":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"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":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1146":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1078":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":86,"docs":{"1012":{"tf":1.0},"1033":{"tf":1.0},"1060":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":1.0},"1137":{"tf":2.0},"1138":{"tf":1.0},"1139":{"tf":1.7320508075688772},"1140":{"tf":3.3166247903554},"1141":{"tf":1.0},"1142":{"tf":2.449489742783178},"1143":{"tf":2.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.4142135623730951},"1147":{"tf":1.0},"1148":{"tf":2.23606797749979},"1149":{"tf":1.7320508075688772},"1151":{"tf":2.6457513110645907},"1152":{"tf":1.4142135623730951},"1153":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1156":{"tf":1.4142135623730951},"1158":{"tf":2.449489742783178},"1159":{"tf":1.4142135623730951},"1160":{"tf":1.7320508075688772},"1161":{"tf":3.0},"1162":{"tf":1.4142135623730951},"1163":{"tf":1.7320508075688772},"1164":{"tf":1.0},"1166":{"tf":1.0},"1168":{"tf":2.0},"1169":{"tf":2.0},"1170":{"tf":1.0},"1171":{"tf":1.7320508075688772},"1172":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1289":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":2.449489742783178},"1391":{"tf":1.0},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1500":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"302":{"tf":1.0},"312":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"340":{"tf":1.0},"348":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.4142135623730951},"506":{"tf":2.23606797749979},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"555":{"tf":1.7320508075688772},"567":{"tf":1.0},"574":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":2.0},"618":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.7320508075688772},"723":{"tf":1.0},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"968":{"tf":1.0},"979":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"588":{"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":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1392":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"836":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1148":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"505":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"1080":{"tf":1.4142135623730951},"1081":{"tf":2.23606797749979},"1148":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1279":{"tf":1.0},"1287":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1306":{"tf":2.449489742783178},"1310":{"tf":1.7320508075688772},"1358":{"tf":2.23606797749979},"1401":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"235":{"tf":1.0},"383":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"483":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"510":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"684":{"tf":1.0},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"789":{"tf":1.0},"956":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"845":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"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":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{".":{".":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":15,"docs":{"287":{"tf":1.7320508075688772},"47":{"tf":1.0},"726":{"tf":2.8284271247461903},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":1.7320508075688772},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":2.0},"883":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"726":{"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1014":{"tf":1.0},"917":{"tf":1.0},"918":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"1177":{"tf":1.0},"1212":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.0},"424":{"tf":1.0},"59":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"898":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}}}}},"w":{"df":20,"docs":{"1281":{"tf":1.0},"1313":{"tf":1.0},"1356":{"tf":1.0},"1367":{"tf":2.0},"1399":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"546":{"tf":1.0},"618":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1102":{"tf":1.0},"758":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"1011":{"tf":1.0},"1042":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1087":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.0},"1215":{"tf":1.0},"129":{"tf":1.0},"1296":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1342":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1522":{"tf":1.0},"234":{"tf":1.0},"37":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"925":{"tf":1.0},"935":{"tf":1.0},"953":{"tf":1.0},"973":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"221":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1084":{"tf":1.0},"1200":{"tf":1.0},"1477":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":49,"docs":{"1097":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1245":{"tf":1.0},"1255":{"tf":1.0},"1288":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1522":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"744":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"931":{"tf":1.4142135623730951},"932":{"tf":2.23606797749979},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"z":{"df":1,"docs":{"1081":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.0}}},"t":{"df":0,"docs":{},"l":{"df":58,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1310":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":2.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1392":{"tf":2.0},"1394":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"276":{"tf":1.0},"288":{"tf":1.0},"349":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"797":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"88":{"tf":1.4142135623730951},"921":{"tf":1.0}}}}},"l":{"df":12,"docs":{"1051":{"tf":1.0},"1203":{"tf":1.0},"1284":{"tf":1.0},"681":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"850":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":17,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"867":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"995":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":2.0},"1445":{"tf":1.0},"816":{"tf":1.0},"899":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"934":{"tf":1.0},"935":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":50,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1165":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1182":{"tf":1.0},"1185":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.7320508075688772},"1236":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"17":{"tf":1.0},"246":{"tf":1.0},"359":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"4":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"433":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"446":{"tf":1.0},"586":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0},"684":{"tf":1.4142135623730951},"733":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"847":{"tf":1.7320508075688772},"848":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"439":{"tf":1.0},"676":{"tf":1.0},"713":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"320":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":30,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":3.4641016151377544},"1445":{"tf":1.0},"1509":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.7320508075688772},"307":{"tf":1.0},"308":{"tf":1.4142135623730951},"309":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"299":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"307":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":32,"docs":{"1094":{"tf":1.0},"1263":{"tf":1.0},"1403":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.4142135623730951},"850":{"tf":1.0},"862":{"tf":1.0},"873":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"914":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1314":{"tf":1.0},"1403":{"tf":2.6457513110645907},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"423":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"942":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"t":{"df":2,"docs":{"1161":{"tf":1.0},"268":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"382":{"tf":1.7320508075688772},"616":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1102":{"tf":1.0},"365":{"tf":1.0},"599":{"tf":1.0},"65":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"1007":{"tf":1.0},"1010":{"tf":1.0},"1015":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1050":{"tf":1.0},"249":{"tf":1.0},"805":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"984":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.4142135623730951}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"664":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1051":{"tf":1.0},"1152":{"tf":2.0},"1174":{"tf":1.0},"1176":{"tf":2.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1190":{"tf":1.0},"1203":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"432":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.4142135623730951},"681":{"tf":1.0},"964":{"tf":1.4142135623730951},"969":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":2.23606797749979}}}}}}},"df":1,"docs":{"1330":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"940":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":37,"docs":{"1126":{"tf":1.0},"1127":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"1477":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"667":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1310":{"tf":1.7320508075688772},"833":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"1163":{"tf":1.0}}}},"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":10,"docs":{"114":{"tf":1.0},"1220":{"tf":1.0},"1257":{"tf":1.0},"1291":{"tf":1.0},"1527":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0},"975":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":123,"docs":{"1088":{"tf":1.4142135623730951},"112":{"tf":1.0},"1121":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":2.23606797749979},"1151":{"tf":2.0},"1226":{"tf":1.0},"1248":{"tf":1.0},"127":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":3.0},"1323":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1378":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1437":{"tf":2.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1465":{"tf":1.0},"150":{"tf":1.0},"1500":{"tf":1.0},"1507":{"tf":1.0},"1509":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"295":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"354":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":2.449489742783178},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.4142135623730951},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"822":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"88":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":2.23606797749979},"945":{"tf":1.4142135623730951},"946":{"tf":1.7320508075688772},"965":{"tf":1.7320508075688772},"966":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1448":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1006":{"tf":1.0},"1052":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1436":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":2.0},"37":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.0},"94":{"tf":1.0},"947":{"tf":1.7320508075688772},"948":{"tf":1.7320508075688772},"949":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"951":{"tf":2.23606797749979},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0},"992":{"tf":1.4142135623730951},"998":{"tf":1.7320508075688772}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1001":{"tf":1.0},"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"919":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"546":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"723":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"354":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"129":{"tf":1.7320508075688772},"1307":{"tf":1.0},"1333":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"374":{"tf":1.7320508075688772},"607":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":8,"docs":{"1036":{"tf":1.0},"1145":{"tf":2.23606797749979},"1180":{"tf":1.0},"1328":{"tf":1.0},"216":{"tf":1.0},"43":{"tf":1.0},"858":{"tf":1.0},"881":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1003":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":182,"docs":{"1015":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":2.0},"1112":{"tf":3.4641016151377544},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":3.1622776601683795},"1119":{"tf":1.7320508075688772},"1120":{"tf":2.23606797749979},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1124":{"tf":2.6457513110645907},"1129":{"tf":3.0},"1130":{"tf":3.3166247903554},"1131":{"tf":3.0},"1134":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1179":{"tf":1.0},"1227":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":2.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1304":{"tf":2.6457513110645907},"1305":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1365":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":3.0},"1403":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":2.23606797749979},"1440":{"tf":2.23606797749979},"1441":{"tf":1.7320508075688772},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"1526":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.0},"221":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"348":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.4142135623730951},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.0},"587":{"tf":1.0},"606":{"tf":1.0},"610":{"tf":1.4142135623730951},"614":{"tf":1.0},"616":{"tf":1.0},"72":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.4142135623730951},"741":{"tf":1.7320508075688772},"742":{"tf":3.0},"744":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.0},"760":{"tf":1.4142135623730951},"762":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"774":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"790":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"838":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"877":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":2.23606797749979},"900":{"tf":2.23606797749979},"901":{"tf":1.0},"902":{"tf":1.4142135623730951},"954":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1489":{"tf":1.0},"151":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.0},"249":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1038":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1526":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1292":{"tf":1.0},"1358":{"tf":1.0},"1381":{"tf":1.0},"332":{"tf":2.23606797749979},"418":{"tf":2.23606797749979},"490":{"tf":1.0},"509":{"tf":1.0},"536":{"tf":2.23606797749979},"544":{"tf":1.0}}}}},"r":{"df":4,"docs":{"357":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1176":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"542":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1194":{"tf":1.4142135623730951},"1345":{"tf":1.0},"18":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"855":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":20,"docs":{"1111":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.4142135623730951},"778":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"968":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1522":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"1131":{"tf":1.0},"1137":{"tf":1.0},"1141":{"tf":1.0},"1148":{"tf":1.0},"1452":{"tf":1.0},"505":{"tf":1.0},"684":{"tf":1.0},"733":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":2.0},"816":{"tf":1.7320508075688772},"818":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"588":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.0},"25":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"1472":{"tf":1.7320508075688772},"202":{"tf":1.0},"249":{"tf":1.0},"473":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"939":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1290":{"tf":1.0},"1470":{"tf":1.0},"494":{"tf":1.0},"505":{"tf":1.0},"837":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1144":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1166":{"tf":1.0},"911":{"tf":1.0},"949":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1214":{"tf":1.0},"1220":{"tf":1.0},"937":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1011":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":82,"docs":{"1006":{"tf":1.0},"101":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1135":{"tf":1.0},"115":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1209":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":2.23606797749979},"1353":{"tf":1.7320508075688772},"1376":{"tf":1.7320508075688772},"1403":{"tf":2.449489742783178},"1420":{"tf":2.6457513110645907},"1425":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"166":{"tf":1.4142135623730951},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":2.0},"193":{"tf":1.4142135623730951},"209":{"tf":2.0},"249":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"370":{"tf":2.23606797749979},"371":{"tf":2.449489742783178},"382":{"tf":1.4142135623730951},"399":{"tf":1.0},"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":2.0},"42":{"tf":1.0},"46":{"tf":1.0},"522":{"tf":2.0},"532":{"tf":1.7320508075688772},"55":{"tf":1.0},"585":{"tf":1.0},"59":{"tf":1.0},"604":{"tf":2.23606797749979},"605":{"tf":2.449489742783178},"61":{"tf":1.0},"616":{"tf":1.4142135623730951},"633":{"tf":1.0},"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"645":{"tf":2.0},"657":{"tf":1.4142135623730951},"699":{"tf":2.0},"709":{"tf":1.7320508075688772},"780":{"tf":1.4142135623730951},"796":{"tf":2.23606797749979},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"874":{"tf":1.0},"926":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"987":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"616":{"tf":1.0},"709":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"u":{"df":2,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"382":{"tf":1.0},"532":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"411":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"400":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"522":{"tf":1.0}},"u":{"df":2,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1353":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1233":{"tf":1.0},"1258":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1410":{"tf":1.0},"143":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1505":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.4142135623730951},"252":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"68":{"tf":1.0},"773":{"tf":1.0},"976":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":8,"docs":{"1010":{"tf":1.0},"1505":{"tf":1.0},"1510":{"tf":1.0},"585":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"978":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1154":{"tf":1.0},"1158":{"tf":1.0},"1512":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":4,"docs":{"1358":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"836":{"tf":1.0}}},"l":{"df":12,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1491":{"tf":1.0},"262":{"tf":1.0},"46":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"744":{"tf":1.0},"759":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"761":{"tf":1.0},"767":{"tf":1.0}},"g":{"df":40,"docs":{"107":{"tf":1.0},"1161":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"1256":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1501":{"tf":1.0},"287":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"500":{"tf":1.0},"547":{"tf":1.4142135623730951},"589":{"tf":1.0},"619":{"tf":1.4142135623730951},"620":{"tf":1.0},"67":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"758":{"tf":1.0},"759":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"d":{"df":7,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"810":{"tf":1.0},"812":{"tf":1.0}}},"df":266,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1020":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.0},"1116":{"tf":1.0},"1137":{"tf":1.0},"1145":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"1158":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":2.23606797749979},"1163":{"tf":1.0},"1168":{"tf":1.4142135623730951},"117":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1222":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.4142135623730951},"129":{"tf":1.0},"1292":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1348":{"tf":1.0},"1371":{"tf":1.0},"139":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1421":{"tf":1.0},"1430":{"tf":1.0},"1436":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1453":{"tf":2.0},"1457":{"tf":1.0},"1472":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.0},"220":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":1.7320508075688772},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"311":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"332":{"tf":1.0},"359":{"tf":1.0},"368":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"433":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"476":{"tf":1.0},"487":{"tf":1.0},"510":{"tf":1.4142135623730951},"516":{"tf":1.0},"535":{"tf":1.0},"545":{"tf":4.123105625617661},"546":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"581":{"tf":1.0},"586":{"tf":1.0},"593":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"657":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"673":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"735":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.0},"790":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"82":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"93":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"96":{"tf":1.0},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772},"97":{"tf":1.7320508075688772},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.23606797749979},"98":{"tf":1.0},"986":{"tf":1.0},"991":{"tf":1.0},"996":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":6,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"759":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"925":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":8,"docs":{"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1262":{"tf":1.0},"259":{"tf":1.0},"332":{"tf":1.0},"416":{"tf":1.0},"453":{"tf":1.0},"534":{"tf":1.0},"557":{"tf":1.0},"650":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"138":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"950":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"389":{"tf":1.0},"400":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":80,"docs":{"1130":{"tf":1.0},"1186":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1248":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"147":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"226":{"tf":1.0},"27":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"400":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"436":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903},"560":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.7320508075688772},"640":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":1.7320508075688772},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"756":{"tf":1.7320508075688772},"778":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.4142135623730951},"785":{"tf":2.0},"798":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":3.1622776601683795},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.4142135623730951},"84":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":2.0},"870":{"tf":1.0},"880":{"tf":1.7320508075688772},"883":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"913":{"tf":1.0},"941":{"tf":1.0},"950":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":6,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1372":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"0":{".":{"4":{".":{"0":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"82":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1376":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"1405":{"tf":1.0},"1482":{"tf":1.0},"740":{"tf":2.449489742783178},"798":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1325":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951}}}}}}},"df":5,"docs":{"1482":{"tf":1.0},"1520":{"tf":1.0},"798":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":2,"docs":{"798":{"tf":1.0},"988":{"tf":1.0}}},"4":{"df":4,"docs":{"46":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"987":{"tf":1.0}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":145,"docs":{"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1007":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1148":{"tf":1.0},"1166":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1214":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1263":{"tf":1.0},"1278":{"tf":2.0},"128":{"tf":2.23606797749979},"1290":{"tf":1.0},"130":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1352":{"tf":1.0},"1355":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1432":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1515":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.7320508075688772},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.0},"261":{"tf":1.0},"278":{"tf":1.4142135623730951},"287":{"tf":1.0},"34":{"tf":1.0},"349":{"tf":1.0},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"491":{"tf":2.0},"498":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"626":{"tf":1.0},"631":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"654":{"tf":1.0},"66":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"743":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"778":{"tf":1.0},"827":{"tf":1.0},"842":{"tf":1.0},"87":{"tf":2.23606797749979},"896":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.0},"927":{"tf":1.4142135623730951},"929":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":2.6457513110645907},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":53,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1055":{"tf":1.0},"1083":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1200":{"tf":1.0},"125":{"tf":1.0},"1297":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1369":{"tf":1.0},"1384":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1419":{"tf":1.0},"1441":{"tf":1.0},"1451":{"tf":1.0},"1475":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.4142135623730951},"528":{"tf":1.0},"599":{"tf":1.0},"604":{"tf":1.0},"687":{"tf":1.0},"705":{"tf":1.0},"719":{"tf":1.0},"739":{"tf":1.0},"746":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"892":{"tf":1.0},"893":{"tf":1.0},"897":{"tf":1.0},"976":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1446":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"902":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"899":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"900":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1446":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"0":{"df":1,"docs":{"1300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1449":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":40,"docs":{"1066":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.7320508075688772},"1159":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1215":{"tf":1.0},"125":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.4142135623730951},"1430":{"tf":1.0},"1436":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1512":{"tf":1.0},"160":{"tf":1.0},"336":{"tf":1.4142135623730951},"339":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.4142135623730951},"566":{"tf":1.0},"660":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"963":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":1,"docs":{"1048":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"1054":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":14,"docs":{"1324":{"tf":1.0},"1325":{"tf":1.0},"1330":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"733":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"554":{"tf":1.4142135623730951},"578":{"tf":1.4142135623730951}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"179":{"tf":1.0},"191":{"tf":1.0},"297":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":159,"docs":{"1006":{"tf":1.0},"1008":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1214":{"tf":1.7320508075688772},"1219":{"tf":1.0},"1222":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1249":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":2.0},"1330":{"tf":1.0},"1334":{"tf":1.4142135623730951},"1339":{"tf":1.7320508075688772},"1345":{"tf":1.0},"1346":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":2.0},"1421":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1469":{"tf":1.4142135623730951},"1473":{"tf":1.0},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1507":{"tf":1.0},"1529":{"tf":1.0},"165":{"tf":1.0},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.4142135623730951},"206":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"241":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"402":{"tf":1.0},"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.4142135623730951},"445":{"tf":1.0},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"520":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.0},"697":{"tf":1.0},"725":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"788":{"tf":1.0},"816":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"849":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.4142135623730951},"938":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.7320508075688772},"942":{"tf":1.0},"943":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"957":{"tf":1.0},"96":{"tf":1.4142135623730951},"965":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.7320508075688772},"979":{"tf":1.0},"980":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"997":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1365":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.4142135623730951},"598":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}}}}}}}}},"df":0,"docs":{}},"df":283,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1007":{"tf":1.0},"101":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"105":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":1.0},"1146":{"tf":1.0},"1149":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1227":{"tf":1.0},"1232":{"tf":1.7320508075688772},"1238":{"tf":1.0},"1240":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"128":{"tf":3.0},"1282":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1321":{"tf":1.7320508075688772},"1324":{"tf":2.8284271247461903},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":2.6457513110645907},"1339":{"tf":1.4142135623730951},"1340":{"tf":2.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"136":{"tf":2.6457513110645907},"1365":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1421":{"tf":3.0},"1425":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"1436":{"tf":1.4142135623730951},"146":{"tf":1.0},"1460":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.7320508075688772},"1503":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1526":{"tf":1.0},"1528":{"tf":2.0},"1529":{"tf":2.449489742783178},"1530":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.4142135623730951},"190":{"tf":1.4142135623730951},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.7320508075688772},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"240":{"tf":1.0},"242":{"tf":2.6457513110645907},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":2.0},"277":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.4142135623730951},"34":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"39":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.4142135623730951},"398":{"tf":1.4142135623730951},"40":{"tf":1.0},"404":{"tf":1.4142135623730951},"410":{"tf":1.7320508075688772},"415":{"tf":1.7320508075688772},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":2.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":2.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"527":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"555":{"tf":1.4142135623730951},"576":{"tf":1.0},"58":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"613":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"649":{"tf":1.7320508075688772},"654":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"698":{"tf":1.7320508075688772},"704":{"tf":1.0},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"708":{"tf":2.23606797749979},"714":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":1.4142135623730951},"725":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":2.23606797749979},"795":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.4142135623730951},"833":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.4142135623730951},"87":{"tf":3.1622776601683795},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"937":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"94":{"tf":1.7320508075688772},"940":{"tf":1.0},"941":{"tf":2.23606797749979},"942":{"tf":1.7320508075688772},"944":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":2.8284271247461903},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"676":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"367":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"1":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"617":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1436":{"tf":1.0},"43":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1151":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1352":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1185":{"tf":1.0},"1265":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"1151":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"456":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":6,"docs":{"1103":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1522":{"tf":2.0}}},"df":0,"docs":{}}},"df":148,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":2.23606797749979},"1002":{"tf":1.4142135623730951},"1003":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1098":{"tf":1.7320508075688772},"11":{"tf":1.0},"1114":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.7320508075688772},"115":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1206":{"tf":1.0},"1255":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1365":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1388":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":1.0},"1409":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1482":{"tf":2.23606797749979},"1502":{"tf":1.0},"1503":{"tf":2.0},"1515":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"199":{"tf":3.0},"2":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"322":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"46":{"tf":2.0},"522":{"tf":1.0},"536":{"tf":1.0},"549":{"tf":1.0},"583":{"tf":1.4142135623730951},"60":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"61":{"tf":1.7320508075688772},"634":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0},"722":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":1.7320508075688772},"744":{"tf":1.7320508075688772},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"776":{"tf":1.7320508075688772},"779":{"tf":2.23606797749979},"782":{"tf":1.0},"783":{"tf":1.0},"798":{"tf":2.0},"816":{"tf":1.7320508075688772},"836":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"874":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.4142135623730951},"908":{"tf":1.0},"914":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"942":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":2.0},"988":{"tf":1.7320508075688772},"989":{"tf":1.4142135623730951},"991":{"tf":1.7320508075688772},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"998":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":25,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"160":{"tf":1.0},"192":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"482":{"tf":1.0},"72":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"871":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"911":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"922":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0},"95":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1155":{"tf":1.0},"771":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"554":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1086":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1068":{"tf":1.0}}}}}},"p":{"c":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"185":{"tf":1.0},"43":{"tf":1.0},"978":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"911":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"976":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1515":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"1194":{"tf":1.0},"1439":{"tf":1.0},"1506":{"tf":1.0},"243":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"892":{"tf":1.0},"899":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1087":{"tf":1.0},"1451":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1340":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1340":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1340":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.7320508075688772},"171":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"1":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"294":{"tf":1.0},"43":{"tf":1.0}}}},"df":10,"docs":{"1140":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951},"661":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":13,"docs":{"1042":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1406":{"tf":1.0},"1451":{"tf":1.4142135623730951},"321":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"964":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1405":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1405":{"tf":3.4641016151377544}},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"1212":{"tf":1.0},"1213":{"tf":2.23606797749979},"1217":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.4142135623730951},"383":{"tf":1.0},"608":{"tf":1.4142135623730951},"617":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1437":{"tf":1.0},"1454":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"941":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"17":{"tf":1.0},"223":{"tf":1.0},"759":{"tf":1.0},"788":{"tf":1.0},"831":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"863":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"232":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"93":{"tf":1.0},"960":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"586":{"tf":1.4142135623730951},"911":{"tf":1.0},"934":{"tf":1.0}},"m":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"855":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1209":{"tf":1.0},"1399":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.4142135623730951},"831":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"1088":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1194":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0},"127":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.0},"1484":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"394":{"tf":1.0},"43":{"tf":1.0},"506":{"tf":1.0},"519":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0},"984":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1286":{"tf":1.0},"242":{"tf":1.0},"479":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":64,"docs":{"1080":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1182":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1426":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1506":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"196":{"tf":1.0},"200":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"267":{"tf":1.0},"29":{"tf":1.0},"31":{"tf":1.0},"327":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"405":{"tf":1.0},"424":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"555":{"tf":1.0},"617":{"tf":1.0},"639":{"tf":1.0},"655":{"tf":1.0},"664":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"793":{"tf":1.0},"799":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.4142135623730951},"808":{"tf":2.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"857":{"tf":1.0},"87":{"tf":1.0},"885":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"932":{"tf":1.0},"940":{"tf":1.0},"944":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":32,"docs":{"1115":{"tf":1.0},"1144":{"tf":1.0},"1248":{"tf":1.0},"13":{"tf":1.0},"1317":{"tf":1.0},"1327":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1397":{"tf":1.0},"140":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"359":{"tf":1.0},"548":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"773":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.0},"821":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"841":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":7,"docs":{"1021":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.0},"519":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1524":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"528":{"tf":1.0},"541":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"705":{"tf":1.0},"718":{"tf":1.4142135623730951},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"1183":{"tf":1.7320508075688772},"669":{"tf":1.0},"670":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"317":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":15,"docs":{"116":{"tf":1.0},"1422":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1489":{"tf":1.4142135623730951},"226":{"tf":1.0},"302":{"tf":1.0},"536":{"tf":1.0},"661":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}},"r":{"df":3,"docs":{"1206":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1286":{"tf":1.0},"1292":{"tf":1.0},"1465":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"941":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"322":{"tf":1.0},"549":{"tf":1.0}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1122":{"tf":1.0},"1169":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"822":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"z":{"df":0,"docs":{},"f":{"df":1,"docs":{"1095":{"tf":1.0}}}}},"y":{"%":{"df":0,"docs":{},"m":{"%":{"d":{")":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1097":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"325":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"1175":{"tf":2.23606797749979},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"181":{"tf":2.8284271247461903},"756":{"tf":2.6457513110645907},"757":{"tf":1.4142135623730951},"759":{"tf":1.7320508075688772},"778":{"tf":1.7320508075688772},"779":{"tf":2.0},"782":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"811":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1456":{"tf":1.0}}}},"r":{"df":4,"docs":{"17":{"tf":1.0},"228":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"89":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"760":{"tf":1.0}}}},"o":{"d":{"df":6,"docs":{"1179":{"tf":1.0},"1349":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1300":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"976":{"tf":1.0}}}}}}}},"breadcrumbs":{"root":{"0":{".":{"0":{".":{"0":{".":{"0":{":":{"4":{"3":{"1":{"8":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"2":{"3":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"8":{"9":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{"6":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1441":{"tf":1.0}}},"5":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":1,"docs":{"1441":{"tf":1.0}}},"1":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.4142135623730951}}}},"df":5,"docs":{"106":{"tf":1.0},"107":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}},"4":{".":{"0":{"df":2,"docs":{"1437":{"tf":1.0},"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"1504":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"1":{"df":8,"docs":{"1112":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"789":{"tf":1.0}}},"c":{"0":{"4":{"df":0,"docs":{},"f":{"d":{"4":{"3":{"0":{"c":{"8":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"3":{"df":2,"docs":{"157":{"tf":1.0},"761":{"tf":1.0}}},"df":0,"docs":{}},"df":30,"docs":{"1003":{"tf":1.0},"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"298":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772},"654":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"859":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"779":{"tf":1.0}}}},"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":6,"docs":{"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}},"3":{"df":3,"docs":{"176":{"tf":1.0},"180":{"tf":1.0},"859":{"tf":1.4142135623730951}}},"6":{"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"0":{"0":{"df":1,"docs":{"969":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1432":{"tf":1.0},"728":{"tf":1.0}}},"df":27,"docs":{"1084":{"tf":1.4142135623730951},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1129":{"tf":1.0},"1307":{"tf":1.0},"1328":{"tf":1.0},"1338":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1362":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"382":{"tf":1.0},"588":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"897":{"tf":1.0},"901":{"tf":1.0},"933":{"tf":1.0},"977":{"tf":1.0}},"e":{"0":{"2":{"b":{"2":{"c":{"3":{"d":{"4":{"7":{"6":{"df":1,"docs":{"779":{"tf":1.0}}},"8":{"df":1,"docs":{"779":{"tf":1.0}}},"9":{"df":9,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"8":{"0":{"df":1,"docs":{"766":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{".":{".":{"1":{"0":{"0":{"0":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"1":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{".":{"0":{"df":15,"docs":{"1134":{"tf":1.0},"1179":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.0},"1401":{"tf":1.0},"310":{"tf":1.0},"348":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"845":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1441":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.0}}},"3":{"df":2,"docs":{"1015":{"tf":1.4142135623730951},"1030":{"tf":1.0}}},"9":{"3":{".":{"0":{"df":1,"docs":{"101":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1329":{"tf":1.7320508075688772}}}}}}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"0":{"0":{"df":1,"docs":{"738":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"0":{"df":2,"docs":{"1169":{"tf":1.0},"1403":{"tf":1.4142135623730951}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}},"1":{"df":1,"docs":{"767":{"tf":1.0}}},"df":5,"docs":{"1116":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"198":{"tf":1.0},"501":{"tf":1.0}}},"df":16,"docs":{"1048":{"tf":1.0},"1390":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"308":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"501":{"tf":1.4142135623730951},"519":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"812":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"k":{"df":1,"docs":{"1253":{"tf":1.0}}}},"df":15,"docs":{"1071":{"tf":1.0},"1079":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1441":{"tf":1.7320508075688772},"308":{"tf":1.0},"315":{"tf":1.0},"443":{"tf":1.0},"68":{"tf":1.0},"916":{"tf":1.0}}},"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"1":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"1024":{"tf":1.0}}},"d":{"1":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"4":{"5":{"6":{"7":{"8":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"196":{"tf":1.0},"365":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"467":{"tf":1.0},"599":{"tf":1.0},"654":{"tf":1.0},"761":{"tf":1.0},"881":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"4":{"5":{"6":{"7":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"df":2,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0}}},"d":{"3":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"1079":{"tf":1.0},"1215":{"tf":1.4142135623730951},"916":{"tf":1.0}}},"4":{"df":1,"docs":{"1087":{"tf":1.0}}},"5":{"0":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{".":{"0":{"0":{"df":5,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"843":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0}}},"df":3,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0}}},"df":5,"docs":{"1003":{"tf":1.0},"1336":{"tf":1.0},"298":{"tf":1.0},"501":{"tf":1.4142135623730951},"859":{"tf":1.0}},"t":{"0":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":3,"docs":{"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":15,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.7320508075688772},"180":{"tf":1.7320508075688772},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.4142135623730951},"53":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":2.0},"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"783":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"785":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"53":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"767":{"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":{}}},"6":{".":{"0":{"df":1,"docs":{"322":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"351":{"tf":1.0}},"t":{"0":{"9":{":":{"0":{"0":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{":":{"0":{"0":{"df":0,"docs":{},"z":{"df":1,"docs":{"816":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"df":1,"docs":{"1071":{"tf":1.0}}},"8":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":76,"docs":{"1048":{"tf":1.4142135623730951},"1066":{"tf":1.0},"1072":{"tf":1.0},"1079":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.0},"1168":{"tf":1.4142135623730951},"1170":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1248":{"tf":1.0},"1284":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1301":{"tf":2.23606797749979},"1302":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1312":{"tf":2.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1392":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1512":{"tf":1.0},"1522":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"303":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"700":{"tf":1.0},"742":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"814":{"tf":1.0},"820":{"tf":1.0},"822":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"881":{"tf":1.0},"897":{"tf":1.4142135623730951},"901":{"tf":1.0},"913":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772},"953":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0}}},"2":{".":{"0":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"1":{".":{"0":{"df":1,"docs":{"842":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":2,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0}}},"5":{"df":3,"docs":{"1015":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}},"df":0,"docs":{}},"/":{"2":{"df":1,"docs":{"1329":{"tf":1.0}}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"df":6,"docs":{"1149":{"tf":1.0},"1271":{"tf":1.0},"1379":{"tf":1.0},"458":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}},"1":{"2":{"df":1,"docs":{"1071":{"tf":1.0}}},"df":0,"docs":{}},"2":{"4":{"df":37,"docs":{"100":{"tf":1.0},"1045":{"tf":1.0},"115":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1328":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1403":{"tf":1.4142135623730951},"167":{"tf":1.7320508075688772},"176":{"tf":1.0},"180":{"tf":2.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"791":{"tf":1.7320508075688772},"816":{"tf":2.8284271247461903},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.7320508075688772}}},"6":{"df":1,"docs":{"859":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"4":{"8":{"df":4,"docs":{"1015":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.4142135623730951},"1048":{"tf":1.0}}},"df":1,"docs":{"82":{"tf":1.0}}},"df":2,"docs":{"443":{"tf":1.0},"53":{"tf":1.0}}},"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"2":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{".":{"0":{"0":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"c":{"c":{"d":{"df":0,"docs":{},"f":{"d":{"df":0,"docs":{},"f":{"d":{"3":{"d":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"df":24,"docs":{"1003":{"tf":1.0},"1015":{"tf":1.0},"1024":{"tf":1.0},"1046":{"tf":1.0},"1228":{"tf":1.0},"1250":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.4142135623730951},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"8":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"9":{".":{"9":{"9":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},">":{"&":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1346":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":62,"docs":{"1048":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1130":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1170":{"tf":1.0},"1185":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1248":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1286":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"1437":{"tf":1.0},"144":{"tf":1.0},"1454":{"tf":1.0},"1458":{"tf":1.0},"150":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"357":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.7320508075688772},"581":{"tf":1.0},"591":{"tf":1.0},"700":{"tf":1.0},"75":{"tf":1.0},"762":{"tf":1.0},"785":{"tf":1.0},"812":{"tf":1.0},"816":{"tf":1.0},"820":{"tf":1.0},"823":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"881":{"tf":1.0},"914":{"tf":1.4142135623730951},"925":{"tf":1.0},"95":{"tf":1.7320508075688772},"953":{"tf":1.0},"963":{"tf":1.4142135623730951},"976":{"tf":1.0},"977":{"tf":1.0},"985":{"tf":1.0}}},"3":{".":{"1":{"0":{"df":2,"docs":{"549":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":8,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}},"df":2,"docs":{"250":{"tf":1.0},"458":{"tf":1.0}}},"df":5,"docs":{"1079":{"tf":1.0},"1399":{"tf":1.0},"1445":{"tf":1.0},"310":{"tf":1.0},"902":{"tf":1.0}}},"1":{"df":2,"docs":{"176":{"tf":1.0},"180":{"tf":1.0}}},"2":{"df":2,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.4142135623730951}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"999":{"tf":1.7320508075688772}}},"9":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}}},"6":{"0":{"0":{"df":9,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"129":{"tf":1.0},"1307":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"250":{"tf":1.0},"374":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":38,"docs":{"1030":{"tf":1.0},"1170":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1314":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1345":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1522":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.4142135623730951},"581":{"tf":1.0},"700":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.0},"824":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"881":{"tf":1.0},"915":{"tf":1.4142135623730951},"953":{"tf":1.0},"96":{"tf":1.7320508075688772},"964":{"tf":1.4142135623730951}}},"4":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"1":{"8":{".":{"0":{"df":1,"docs":{"348":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":5,"docs":{"1268":{"tf":1.0},"1271":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"498":{"tf":1.0}}},"4":{"df":1,"docs":{"465":{"tf":1.0}}},"9":{"6":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"987":{"tf":1.0}}}},"df":0,"docs":{}},"1":{"d":{"4":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{".":{"0":{"df":1,"docs":{"303":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":0,"docs":{},"f":{"df":1,"docs":{"1226":{"tf":1.0}}}},"6":{"6":{"1":{"4":{"1":{"7":{"4":{"0":{"0":{"0":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1273":{"tf":1.0},"1274":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"459":{"tf":1.0},"469":{"tf":1.0},"493":{"tf":1.0},"849":{"tf":1.0}}},"3":{"7":{"2":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"6":{"6":{"5":{"5":{"4":{"4":{"0":{"0":{"0":{"0":{":":{"df":0,"docs":{},"f":{"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"1":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"2":{"df":2,"docs":{"767":{"tf":1.0},"872":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}},"df":21,"docs":{"1171":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1205":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1345":{"tf":1.0},"142":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"581":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}}},"5":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"df":8,"docs":{"1305":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"625":{"tf":1.0}}},"df":1,"docs":{"1404":{"tf":1.0}}},"df":4,"docs":{"365":{"tf":1.0},"498":{"tf":1.0},"599":{"tf":1.0},"810":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"1015":{"tf":1.0},"1024":{"tf":1.0}}},"df":0,"docs":{}},"3":{"df":2,"docs":{"235":{"tf":1.0},"237":{"tf":1.7320508075688772}}},"5":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":23,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":1.7320508075688772},"883":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"5":{"df":3,"docs":{"157":{"tf":1.0},"761":{"tf":1.0},"767":{"tf":1.0}}},"df":0,"docs":{}},"8":{"c":{"c":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"8":{"df":1,"docs":{"1112":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":23,"docs":{"1185":{"tf":1.0},"1186":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1330":{"tf":1.0},"1345":{"tf":1.0},"1425":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"226":{"tf":1.0},"255":{"tf":1.0},"309":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"581":{"tf":1.0},"826":{"tf":1.4142135623730951},"916":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.4142135623730951},"935":{"tf":1.0},"966":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772}}},"6":{"0":{"0":{",":{"0":{"0":{"0":{"df":2,"docs":{"1505":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1105":{"tf":1.0},"1528":{"tf":1.0},"250":{"tf":1.0},"352":{"tf":1.0},"584":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}},"k":{"df":1,"docs":{"911":{"tf":1.0}}}},"df":6,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.0},"255":{"tf":1.0},"501":{"tf":1.0},"900":{"tf":1.0}}},"4":{"df":3,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0}}},"6":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":3,"docs":{"766":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"9":{"9":{"0":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"a":{"7":{"b":{"8":{"1":{"0":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"7":{"0":{"0":{"df":5,"docs":{"1105":{"tf":1.0},"682":{"tf":1.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}},"df":0,"docs":{}},"2":{"0":{"0":{"df":3,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"234":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"2":{"5":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}},"df":0,"docs":{}},"7":{"0":{"df":0,"docs":{},"e":{"8":{"4":{"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"1507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"9":{"df":0,"docs":{},"e":{"6":{"6":{"7":{"9":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":8,"docs":{"1185":{"tf":1.0},"1248":{"tf":1.0},"1330":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"474":{"tf":1.0}}},"8":{"'":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"(":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"0":{"0":{"0":{"df":1,"docs":{"1048":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"8":{".":{"8":{".":{"8":{"df":1,"docs":{"246":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"767":{"tf":1.0}}},"b":{"4":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"0":{"1":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"df":1,"docs":{"250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"9":{"df":0,"docs":{},"f":{"b":{"9":{"d":{"8":{"8":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"1226":{"tf":1.0}}},"df":0,"docs":{}}},"df":13,"docs":{"1270":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1522":{"tf":1.0},"810":{"tf":1.0},"82":{"tf":1.0}}},"9":{"0":{"df":2,"docs":{"1507":{"tf":1.0},"933":{"tf":1.0}}},"4":{"1":{"0":{"2":{"df":1,"docs":{"761":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"b":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{".":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"9":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"]":{"\\":{"\\":{"d":{"df":0,"docs":{},"{":{"1":{",":{"1":{"4":{"df":1,"docs":{"1116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"{":{"1":{"0":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}},"4":{"df":1,"docs":{"1119":{"tf":1.0}}},"6":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"a":{"d":{"df":2,"docs":{"987":{"tf":1.4142135623730951},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"_":{"df":1,"docs":{"805":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":5,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":24,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.0},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1001":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1161":{"tf":1.0},"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"236":{"tf":1.0},"238":{"tf":1.0}},"s":{".":{"<":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1247":{"tf":1.0},"944":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1250":{"tf":1.0},"1251":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1003":{"tf":1.4142135623730951},"763":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"1333":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1475":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"{":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"374":{"tf":1.0},"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"df":3,"docs":{"1247":{"tf":1.0},"1248":{"tf":1.0},"31":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"1":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"2":{"c":{"3":{"d":{"4":{"df":1,"docs":{"180":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"2":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1217":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1218":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":13,"docs":{"1211":{"tf":2.0},"1212":{"tf":2.0},"1213":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1219":{"tf":1.7320508075688772},"1220":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1234":{"tf":1.0},"1244":{"tf":1.0}}},"df":1,"docs":{"1145":{"tf":1.0}}},"4":{"5":{"6":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"7":{"a":{"c":{"1":{"0":{"b":{"df":2,"docs":{"766":{"tf":1.4142135623730951},"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"6":{"7":{"df":11,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"779":{"tf":1.7320508075688772},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951},"894":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"1":{"6":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"31":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"868":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"1":{"2":{"3":{"df":3,"docs":{"53":{"tf":1.0},"791":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"881":{"tf":1.7320508075688772},"925":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"27":{"tf":1.0},"981":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":2,"docs":{"937":{"tf":1.0},"977":{"tf":1.0}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1102":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":11,"docs":{"1149":{"tf":1.0},"1214":{"tf":1.0},"1290":{"tf":1.0},"31":{"tf":1.0},"420":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"505":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.4142135623730951},"823":{"tf":1.0},"928":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"1490":{"tf":1.0}}}}}},"df":30,"docs":{"1061":{"tf":1.0},"1066":{"tf":1.0},"1092":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1174":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1477":{"tf":1.0},"1528":{"tf":1.0},"281":{"tf":1.7320508075688772},"287":{"tf":1.0},"352":{"tf":1.0},"423":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"482":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"55":{"tf":1.0},"584":{"tf":1.0},"610":{"tf":1.0},"656":{"tf":1.0},"92":{"tf":1.0},"942":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"810":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}}}},"r":{"d":{"df":1,"docs":{"86":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1070":{"tf":1.0},"1194":{"tf":1.4142135623730951},"35":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":3,"docs":{"1154":{"tf":1.0},"151":{"tf":1.0},"992":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"766":{"tf":1.0}}}}}},"m":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"767":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":34,"docs":{"1071":{"tf":1.0},"1149":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.0},"1403":{"tf":2.449489742783178},"1485":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"21":{"tf":1.0},"237":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"383":{"tf":1.0},"459":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"495":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"51":{"tf":1.4142135623730951},"599":{"tf":1.0},"617":{"tf":1.0},"733":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.7320508075688772},"811":{"tf":1.7320508075688772},"868":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"@":{"df":0,"docs":{},"v":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"v":{"df":15,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1004":{"tf":1.0},"1012":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1476":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.0},"855":{"tf":1.4142135623730951},"859":{"tf":1.0},"991":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"1148":{"tf":1.0},"1194":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"231":{"tf":1.0},"237":{"tf":1.0},"47":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"a":{"df":1,"docs":{"789":{"tf":1.0}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"17":{"tf":1.0}}}}},"d":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":47,"docs":{"106":{"tf":1.0},"1109":{"tf":1.0},"1143":{"tf":1.0},"1144":{"tf":1.0},"1165":{"tf":1.0},"1180":{"tf":1.0},"1186":{"tf":1.0},"1212":{"tf":1.7320508075688772},"1310":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1420":{"tf":1.0},"1480":{"tf":1.0},"1510":{"tf":1.0},"1526":{"tf":1.0},"176":{"tf":1.0},"204":{"tf":1.0},"214":{"tf":1.0},"226":{"tf":1.0},"238":{"tf":1.0},"258":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"355":{"tf":1.0},"406":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"473":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"553":{"tf":1.0},"580":{"tf":1.4142135623730951},"589":{"tf":1.0},"640":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"700":{"tf":1.0},"823":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0},"938":{"tf":1.0},"976":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"t":{"df":16,"docs":{"1051":{"tf":1.0},"1083":{"tf":1.0},"1249":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1420":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"523":{"tf":1.0},"687":{"tf":1.0},"700":{"tf":1.0},"719":{"tf":1.0},"786":{"tf":1.0},"908":{"tf":1.0},"939":{"tf":1.0},"952":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0},"760":{"tf":2.23606797749979},"762":{"tf":2.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"443":{"tf":1.0}}}}}}}}},"df":14,"docs":{"1166":{"tf":1.0},"1175":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1522":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"173":{"tf":1.0},"258":{"tf":1.4142135623730951},"423":{"tf":1.0},"524":{"tf":1.0},"701":{"tf":1.0},"797":{"tf":1.4142135623730951},"874":{"tf":1.0},"950":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1209":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.4142135623730951},"842":{"tf":1.7320508075688772},"847":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":8,"docs":{"1118":{"tf":1.4142135623730951},"320":{"tf":1.0},"4":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.4142135623730951},"1069":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1002":{"tf":1.0},"1007":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"1520":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}},"s":{"2":{"5":{"6":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1450":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"31":{"tf":1.0}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1477":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1032":{"tf":1.0},"1254":{"tf":1.0},"1333":{"tf":1.0},"1427":{"tf":1.0},"178":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"918":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"944":{"tf":1.0},"973":{"tf":1.0}}}}}}},"df":2,"docs":{"1507":{"tf":1.0},"31":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"'":{"df":51,"docs":{"1006":{"tf":1.0},"1177":{"tf":1.0},"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1245":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"1423":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"364":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"424":{"tf":1.0},"454":{"tf":1.0},"518":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.0},"531":{"tf":1.0},"533":{"tf":1.0},"598":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"695":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.0},"708":{"tf":1.0},"710":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.4142135623730951},"850":{"tf":1.0},"86":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"981":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"616":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"382":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"642":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1385":{"tf":1.0},"654":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"408":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1363":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1362":{"tf":1.0},"420":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"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":4,"docs":{"1384":{"tf":1.0},"640":{"tf":1.0},"654":{"tf":1.0},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":12,"docs":{"1088":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"725":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":7,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"581":{"tf":1.0},"696":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"921":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1374":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"587":{"tf":1.0}}}}}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"653":{"tf":1.0},"723":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"558":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"846":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":2,"docs":{"269":{"tf":1.0},"288":{"tf":1.0}}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1361":{"tf":1.0},"406":{"tf":1.0},"420":{"tf":1.0},"523":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":14,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"545":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0},"419":{"tf":1.0},"519":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"794":{"tf":1.0}}},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1517":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1361":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":9,"docs":{"1239":{"tf":1.0},"1241":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"130":{"tf":1.7320508075688772},"143":{"tf":1.0},"241":{"tf":1.7320508075688772},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"80":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"372":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"347":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1213":{"tf":1.0},"127":{"tf":1.4142135623730951},"132":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.0},"151":{"tf":1.4142135623730951},"1515":{"tf":1.0},"201":{"tf":1.0},"242":{"tf":2.23606797749979},"410":{"tf":1.0},"531":{"tf":1.0},"644":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.0},"772":{"tf":1.4142135623730951}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1274":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"9":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1356":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":64,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1518":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.0},"738":{"tf":1.4142135623730951},"75":{"tf":1.0},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"794":{"tf":1.4142135623730951},"822":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1148":{"tf":1.0},"1149":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1047":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":4,"docs":{"1140":{"tf":1.0},"1394":{"tf":1.4142135623730951},"681":{"tf":1.0},"695":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1140":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1399":{"tf":1.0},"518":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1302":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"_":{"b":{"df":0,"docs":{},"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":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":{"545":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1228":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1228":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"264":{"tf":1.0}},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"273":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":1,"docs":{"255":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":2,"docs":{"641":{"tf":1.0},"701":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1385":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":3,"docs":{"648":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"558":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"1021":{"tf":1.0}}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"637":{"tf":1.0},"703":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"412":{"tf":1.0},"533":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":3,"docs":{"407":{"tf":1.0},"524":{"tf":1.0},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1362":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1356":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1148":{"tf":1.0},"1405":{"tf":1.0},"414":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"403":{"tf":1.0},"526":{"tf":1.0}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"948":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"949":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":3,"docs":{"1047":{"tf":1.0},"645":{"tf":1.0},"709":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"657":{"tf":1.0},"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"411":{"tf":1.0},"532":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":6,"docs":{"1353":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"522":{"tf":1.0},"545":{"tf":1.0},"796":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"tf":1.4142135623730951}}}}}}}}}}},"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":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"644":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"795":{"tf":1.0},"922":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"1375":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0}}}}}},"df":1,"docs":{"725":{"tf":1.0}},"u":{"df":1,"docs":{"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"558":{"tf":1.0},"697":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"653":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"576":{"tf":1.0},"587":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"631":{"tf":1.0},"697":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"654":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}},"e":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"288":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"957":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"649":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"277":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"632":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"698":{"tf":1.4142135623730951},"922":{"tf":1.0}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"545":{"tf":1.0},"772":{"tf":1.0},"87":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"410":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1401":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"795":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1352":{"tf":1.0},"1367":{"tf":1.0}}}}},"u":{"df":1,"docs":{"1401":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"419":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1369":{"tf":1.0},"349":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"397":{"tf":1.0},"520":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"420":{"tf":1.0},"87":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1356":{"tf":1.0}}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"415":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"398":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"404":{"tf":1.0},"527":{"tf":1.0},"545":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":11,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"142":{"tf":1.0},"1484":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.4142135623730951},"406":{"tf":1.0},"640":{"tf":1.0}}},"2":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"1329":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"217":{"tf":1.0},"406":{"tf":1.0},"640":{"tf":1.0}}},":":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"1204":{"tf":1.0}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"1332":{"tf":1.0},"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"606":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"=":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"287":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"=":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"80":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"769":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"769":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"604":{"tf":1.0},"606":{"tf":1.0},"616":{"tf":1.0},"769":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"708":{"tf":1.0}}}}},"i":{"d":{"df":14,"docs":{"1081":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1330":{"tf":1.0},"1384":{"tf":1.4142135623730951},"611":{"tf":1.0},"612":{"tf":1.0},"700":{"tf":1.7320508075688772},"949":{"tf":1.0},"957":{"tf":1.0},"999":{"tf":1.0}},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"264":{"tf":1.0},"695":{"tf":1.0},"769":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"770":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.4142135623730951}},"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":1,"docs":{"382":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"76":{"tf":1.0},"770":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"370":{"tf":1.0},"372":{"tf":1.0},"382":{"tf":1.0},"76":{"tf":1.0},"770":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1227":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":586,"docs":{"0":{"tf":2.0},"1":{"tf":2.0},"10":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1004":{"tf":1.0},"1011":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1047":{"tf":2.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.0},"1083":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"1112":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1140":{"tf":2.23606797749979},"1143":{"tf":1.4142135623730951},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":2.0},"1166":{"tf":1.0},"117":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1175":{"tf":1.0},"118":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"119":{"tf":1.0},"1194":{"tf":2.23606797749979},"1196":{"tf":1.0},"120":{"tf":1.7320508075688772},"1204":{"tf":1.0},"1206":{"tf":2.8284271247461903},"1207":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":3.1622776601683795},"1211":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1214":{"tf":1.0},"1216":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.4142135623730951},"1222":{"tf":1.7320508075688772},"1225":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1230":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1234":{"tf":2.0},"1235":{"tf":1.0},"1236":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1242":{"tf":1.7320508075688772},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.7320508075688772},"1247":{"tf":2.6457513110645907},"1248":{"tf":2.6457513110645907},"1249":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"126":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1263":{"tf":1.0},"127":{"tf":2.6457513110645907},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.4142135623730951},"1277":{"tf":2.23606797749979},"128":{"tf":3.4641016151377544},"129":{"tf":2.8284271247461903},"13":{"tf":1.7320508075688772},"130":{"tf":2.23606797749979},"1302":{"tf":1.0},"1318":{"tf":1.7320508075688772},"132":{"tf":1.7320508075688772},"1320":{"tf":1.0},"1321":{"tf":2.23606797749979},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1332":{"tf":3.0},"1333":{"tf":3.3166247903554},"1334":{"tf":2.8284271247461903},"134":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1343":{"tf":1.0},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.7320508075688772},"139":{"tf":1.4142135623730951},"1390":{"tf":2.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":2.0},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.4142135623730951},"1399":{"tf":3.4641016151377544},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1410":{"tf":1.0},"1414":{"tf":1.4142135623730951},"1415":{"tf":2.23606797749979},"1417":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"142":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"143":{"tf":2.23606797749979},"1430":{"tf":1.0},"1432":{"tf":1.4142135623730951},"145":{"tf":1.7320508075688772},"1450":{"tf":1.0},"1453":{"tf":1.4142135623730951},"146":{"tf":2.23606797749979},"1460":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"147":{"tf":2.23606797749979},"1476":{"tf":1.0},"148":{"tf":1.7320508075688772},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.7320508075688772},"149":{"tf":1.7320508075688772},"1499":{"tf":2.0},"150":{"tf":1.7320508075688772},"151":{"tf":2.8284271247461903},"1515":{"tf":1.7320508075688772},"1518":{"tf":2.0},"152":{"tf":2.0},"1529":{"tf":1.4142135623730951},"153":{"tf":2.0},"1530":{"tf":1.0},"154":{"tf":1.7320508075688772},"155":{"tf":2.0},"156":{"tf":1.0},"157":{"tf":2.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"162":{"tf":1.7320508075688772},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":2.23606797749979},"167":{"tf":2.6457513110645907},"168":{"tf":1.0},"169":{"tf":1.4142135623730951},"17":{"tf":1.0},"170":{"tf":2.449489742783178},"171":{"tf":1.0},"172":{"tf":1.7320508075688772},"18":{"tf":1.0},"180":{"tf":1.4142135623730951},"182":{"tf":1.0},"197":{"tf":1.0},"2":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"200":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"21":{"tf":2.23606797749979},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":2.0},"223":{"tf":1.4142135623730951},"226":{"tf":2.8284271247461903},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"23":{"tf":2.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.4142135623730951},"234":{"tf":2.6457513110645907},"235":{"tf":2.0},"236":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"241":{"tf":2.449489742783178},"242":{"tf":2.8284271247461903},"244":{"tf":2.0},"249":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":2.0},"256":{"tf":1.7320508075688772},"257":{"tf":1.0},"261":{"tf":2.8284271247461903},"262":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"27":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"277":{"tf":1.0},"280":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"30":{"tf":1.4142135623730951},"304":{"tf":1.0},"31":{"tf":2.23606797749979},"327":{"tf":1.4142135623730951},"33":{"tf":2.0},"332":{"tf":1.4142135623730951},"334":{"tf":1.0},"335":{"tf":1.0},"34":{"tf":2.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"35":{"tf":2.449489742783178},"356":{"tf":1.0},"358":{"tf":1.4142135623730951},"359":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.0},"365":{"tf":1.4142135623730951},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"37":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":1.0},"372":{"tf":2.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"378":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":2.6457513110645907},"383":{"tf":1.0},"384":{"tf":1.4142135623730951},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"388":{"tf":2.0},"389":{"tf":1.0},"39":{"tf":1.0},"391":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.7320508075688772},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.4142135623730951},"41":{"tf":2.6457513110645907},"410":{"tf":1.7320508075688772},"411":{"tf":2.23606797749979},"412":{"tf":1.4142135623730951},"415":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.4142135623730951},"42":{"tf":2.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":2.0},"436":{"tf":1.0},"447":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"451":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":2.23606797749979},"478":{"tf":2.0},"48":{"tf":1.0},"487":{"tf":2.23606797749979},"49":{"tf":1.0},"50":{"tf":1.4142135623730951},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"52":{"tf":1.0},"523":{"tf":2.23606797749979},"524":{"tf":1.0},"525":{"tf":1.0},"53":{"tf":3.0},"530":{"tf":1.7320508075688772},"531":{"tf":2.23606797749979},"532":{"tf":1.7320508075688772},"533":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"54":{"tf":2.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.4142135623730951},"557":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"560":{"tf":1.0},"561":{"tf":1.4142135623730951},"574":{"tf":1.0},"576":{"tf":2.23606797749979},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"59":{"tf":1.7320508075688772},"590":{"tf":1.0},"592":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.0},"599":{"tf":1.4142135623730951},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":2.449489742783178},"605":{"tf":1.0},"606":{"tf":2.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"613":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":2.6457513110645907},"617":{"tf":1.0},"618":{"tf":1.4142135623730951},"620":{"tf":1.0},"621":{"tf":1.4142135623730951},"622":{"tf":2.0},"623":{"tf":1.0},"625":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.4142135623730951},"644":{"tf":1.7320508075688772},"645":{"tf":2.23606797749979},"646":{"tf":1.4142135623730951},"649":{"tf":1.0},"653":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"659":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"672":{"tf":1.0},"673":{"tf":2.449489742783178},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.4142135623730951},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"700":{"tf":2.23606797749979},"701":{"tf":1.0},"702":{"tf":1.0},"707":{"tf":1.7320508075688772},"708":{"tf":2.23606797749979},"709":{"tf":1.7320508075688772},"71":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":3.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"73":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":2.0},"736":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":2.23606797749979},"749":{"tf":2.449489742783178},"75":{"tf":1.4142135623730951},"750":{"tf":1.0},"751":{"tf":2.0},"752":{"tf":2.0},"753":{"tf":2.0},"754":{"tf":1.4142135623730951},"755":{"tf":1.7320508075688772},"756":{"tf":2.0},"757":{"tf":2.23606797749979},"758":{"tf":1.7320508075688772},"759":{"tf":1.0},"76":{"tf":2.23606797749979},"760":{"tf":1.0},"761":{"tf":1.4142135623730951},"762":{"tf":1.0},"763":{"tf":1.4142135623730951},"764":{"tf":1.0},"765":{"tf":2.0},"766":{"tf":2.0},"767":{"tf":2.0},"768":{"tf":1.7320508075688772},"769":{"tf":2.0},"770":{"tf":1.4142135623730951},"771":{"tf":2.23606797749979},"772":{"tf":2.6457513110645907},"773":{"tf":1.7320508075688772},"774":{"tf":1.0},"778":{"tf":1.0},"783":{"tf":1.0},"785":{"tf":2.0},"79":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"80":{"tf":2.23606797749979},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.1622776601683795},"82":{"tf":3.0},"822":{"tf":1.0},"823":{"tf":1.7320508075688772},"828":{"tf":1.4142135623730951},"829":{"tf":2.8284271247461903},"830":{"tf":1.0},"831":{"tf":2.0},"832":{"tf":1.7320508075688772},"833":{"tf":2.6457513110645907},"834":{"tf":1.0},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"837":{"tf":2.0},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"84":{"tf":2.0},"840":{"tf":1.7320508075688772},"841":{"tf":1.4142135623730951},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":2.0},"846":{"tf":1.0},"847":{"tf":2.8284271247461903},"848":{"tf":1.4142135623730951},"849":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"858":{"tf":1.7320508075688772},"863":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":2.0},"879":{"tf":1.4142135623730951},"88":{"tf":4.58257569495584},"883":{"tf":1.4142135623730951},"887":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.0},"894":{"tf":1.7320508075688772},"896":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.4142135623730951},"913":{"tf":2.0},"915":{"tf":1.0},"92":{"tf":1.7320508075688772},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"935":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951},"940":{"tf":1.7320508075688772},"941":{"tf":2.0},"942":{"tf":1.4142135623730951},"944":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":2.0},"949":{"tf":2.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"953":{"tf":2.0},"956":{"tf":1.0},"96":{"tf":1.7320508075688772},"969":{"tf":1.0},"97":{"tf":2.0},"970":{"tf":1.0},"976":{"tf":2.449489742783178},"978":{"tf":1.0},"979":{"tf":1.4142135623730951},"98":{"tf":2.0},"983":{"tf":1.0},"986":{"tf":1.7320508075688772},"987":{"tf":1.4142135623730951},"989":{"tf":1.0},"992":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":2.0},"997":{"tf":1.7320508075688772},"998":{"tf":1.0},"999":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}},"i":{"d":{"df":40,"docs":{"1045":{"tf":1.0},"1130":{"tf":1.0},"1186":{"tf":1.0},"1196":{"tf":1.0},"1226":{"tf":1.0},"1242":{"tf":1.0},"1245":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1361":{"tf":1.4142135623730951},"138":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1486":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":1.4142135623730951},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"791":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.449489742783178},"913":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.4142135623730951},"990":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"'":{":":{"'":{")":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":6,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"378":{"tf":1.7320508075688772},"595":{"tf":1.0},"597":{"tf":1.0},"611":{"tf":1.7320508075688772}}}}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"518":{"tf":1.0},"770":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0},"1399":{"tf":2.449489742783178}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"615":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":8,"docs":{"598":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":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":{"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":14,"docs":{"1045":{"tf":1.0},"1186":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"990":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"1086":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.4142135623730951},"984":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":28,"docs":{"1143":{"tf":1.0},"1242":{"tf":1.0},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"213":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.4142135623730951},"225":{"tf":1.4142135623730951},"227":{"tf":1.0},"228":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772},"883":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"1486":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1328":{"tf":2.0},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.0},"219":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.4142135623730951},"701":{"tf":1.4142135623730951},"702":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1361":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":116,"docs":{"1":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1143":{"tf":2.6457513110645907},"1144":{"tf":2.23606797749979},"1145":{"tf":2.0},"118":{"tf":1.0},"1194":{"tf":1.0},"1242":{"tf":1.0},"1261":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1327":{"tf":1.4142135623730951},"1328":{"tf":2.8284271247461903},"1329":{"tf":3.7416573867739413},"1330":{"tf":3.4641016151377544},"1360":{"tf":1.4142135623730951},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":1.4142135623730951},"138":{"tf":3.0},"1383":{"tf":1.4142135623730951},"1384":{"tf":2.449489742783178},"1385":{"tf":2.23606797749979},"1386":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":2.0},"142":{"tf":2.8284271247461903},"1423":{"tf":3.3166247903554},"145":{"tf":1.4142135623730951},"1483":{"tf":1.4142135623730951},"1484":{"tf":2.449489742783178},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.0},"1487":{"tf":2.0},"172":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":2.0},"214":{"tf":2.449489742783178},"215":{"tf":1.7320508075688772},"216":{"tf":2.23606797749979},"217":{"tf":1.4142135623730951},"218":{"tf":1.7320508075688772},"219":{"tf":1.4142135623730951},"220":{"tf":1.4142135623730951},"221":{"tf":1.0},"222":{"tf":1.7320508075688772},"223":{"tf":1.7320508075688772},"224":{"tf":2.23606797749979},"225":{"tf":2.0},"226":{"tf":3.0},"227":{"tf":2.0},"228":{"tf":1.4142135623730951},"229":{"tf":1.7320508075688772},"23":{"tf":1.0},"256":{"tf":1.4142135623730951},"30":{"tf":1.7320508075688772},"31":{"tf":1.4142135623730951},"36":{"tf":1.0},"38":{"tf":1.0},"405":{"tf":1.4142135623730951},"406":{"tf":1.7320508075688772},"407":{"tf":2.0},"408":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"47":{"tf":1.0},"50":{"tf":1.4142135623730951},"52":{"tf":1.7320508075688772},"523":{"tf":2.449489742783178},"524":{"tf":1.7320508075688772},"525":{"tf":2.0},"53":{"tf":2.23606797749979},"54":{"tf":2.23606797749979},"55":{"tf":2.449489742783178},"639":{"tf":1.4142135623730951},"640":{"tf":1.7320508075688772},"641":{"tf":2.0},"642":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":2.449489742783178},"701":{"tf":1.7320508075688772},"702":{"tf":2.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":2.23606797749979},"786":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"813":{"tf":1.7320508075688772},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"828":{"tf":1.4142135623730951},"852":{"tf":1.0},"858":{"tf":1.7320508075688772},"875":{"tf":1.0},"88":{"tf":3.872983346207417},"886":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"952":{"tf":1.7320508075688772},"953":{"tf":1.7320508075688772},"954":{"tf":1.7320508075688772},"970":{"tf":1.0},"980":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.7320508075688772},"524":{"tf":1.7320508075688772},"525":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"i":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":4,"docs":{"548":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0}}}}},"df":42,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":2.0},"1173":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1226":{"tf":1.0},"13":{"tf":1.0},"1332":{"tf":1.4142135623730951},"14":{"tf":1.0},"151":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"244":{"tf":1.0},"33":{"tf":1.4142135623730951},"37":{"tf":2.0},"370":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"6":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.4142135623730951},"663":{"tf":1.0},"746":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":1.7320508075688772},"76":{"tf":1.0},"765":{"tf":1.7320508075688772},"80":{"tf":1.0},"88":{"tf":1.4142135623730951},"938":{"tf":1.0},"976":{"tf":1.0}},"r":{"df":2,"docs":{"1060":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":2,"docs":{"1003":{"tf":1.0},"1250":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":1,"docs":{"1472":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"2":{"0":{"2":{"5":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":101,"docs":{"1010":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":2.0},"1015":{"tf":2.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1018":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.7320508075688772},"1034":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951},"1037":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1040":{"tf":1.7320508075688772},"1041":{"tf":1.4142135623730951},"1042":{"tf":1.0},"1043":{"tf":1.7320508075688772},"1044":{"tf":1.4142135623730951},"1045":{"tf":1.4142135623730951},"1046":{"tf":1.0},"1047":{"tf":2.449489742783178},"1048":{"tf":1.4142135623730951},"1049":{"tf":1.0},"1050":{"tf":2.6457513110645907},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.4142135623730951},"110":{"tf":1.0},"113":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1227":{"tf":1.0},"1230":{"tf":1.0},"1245":{"tf":1.0},"1254":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":2.6457513110645907},"1472":{"tf":2.23606797749979},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1515":{"tf":2.0},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"159":{"tf":2.0},"160":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"334":{"tf":1.0},"341":{"tf":1.4142135623730951},"345":{"tf":1.0},"375":{"tf":1.0},"404":{"tf":1.0},"418":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"568":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951},"572":{"tf":1.0},"608":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"919":{"tf":1.0},"958":{"tf":1.4142135623730951},"959":{"tf":1.7320508075688772},"960":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"984":{"tf":1.7320508075688772},"994":{"tf":1.0},"996":{"tf":1.7320508075688772}}}}}}}}},"i":{"a":{"df":1,"docs":{"1343":{"tf":2.0}}},"c":{"df":1,"docs":{"1305":{"tf":1.0}},"e":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"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":{},"o":{"df":0,"docs":{},"f":{"df":15,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"w":{"df":19,"docs":{"1054":{"tf":1.0},"1071":{"tf":1.0},"1108":{"tf":1.0},"1209":{"tf":1.0},"212":{"tf":1.0},"230":{"tf":1.0},"446":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.0},"885":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"934":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"978":{"tf":1.4142135623730951},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1447":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1485":{"tf":2.23606797749979},"43":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}},"n":{"df":3,"docs":{"112":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1085":{"tf":1.0},"1151":{"tf":1.0},"1163":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1455":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"477":{"tf":1.0},"509":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"951":{"tf":1.0},"964":{"tf":1.0},"970":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1451":{"tf":1.0}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"1111":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"1480":{"tf":1.0},"198":{"tf":1.0},"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.0},"519":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":5,"docs":{"182":{"tf":1.0},"35":{"tf":2.0},"49":{"tf":1.0},"581":{"tf":1.0},"765":{"tf":1.0}}},"t":{"df":1,"docs":{"1206":{"tf":1.0}}}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.0}}},"z":{"df":7,"docs":{"1256":{"tf":1.0},"156":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.0},"224":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":15,"docs":{"1208":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"130":{"tf":1.0},"1334":{"tf":1.0},"143":{"tf":1.4142135623730951},"241":{"tf":1.4142135623730951},"412":{"tf":1.0},"531":{"tf":1.4142135623730951},"533":{"tf":1.0},"646":{"tf":1.0},"708":{"tf":1.4142135623730951},"710":{"tf":1.0},"772":{"tf":1.4142135623730951},"837":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1174":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1194":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"528":{"tf":1.0},"705":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"458":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"414":{"tf":1.0},"648":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":213,"docs":{"1042":{"tf":1.0},"1084":{"tf":1.4142135623730951},"117":{"tf":1.0},"1172":{"tf":2.0},"1179":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1276":{"tf":1.0},"1290":{"tf":1.0},"1355":{"tf":1.0},"1370":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":2.23606797749979},"1402":{"tf":2.23606797749979},"1437":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1525":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"257":{"tf":1.7320508075688772},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":2.0},"36":{"tf":1.0},"360":{"tf":1.7320508075688772},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.4142135623730951},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.7320508075688772},"421":{"tf":1.7320508075688772},"428":{"tf":1.4142135623730951},"452":{"tf":1.7320508075688772},"461":{"tf":1.0},"466":{"tf":1.4142135623730951},"473":{"tf":1.0},"480":{"tf":1.4142135623730951},"486":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"512":{"tf":1.4142135623730951},"513":{"tf":2.0},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":2.0},"592":{"tf":1.0},"593":{"tf":2.0},"594":{"tf":1.7320508075688772},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.7320508075688772},"65":{"tf":1.0},"662":{"tf":1.4142135623730951},"685":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"690":{"tf":2.0},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"810":{"tf":1.0},"844":{"tf":1.4142135623730951},"860":{"tf":1.4142135623730951},"873":{"tf":1.4142135623730951},"884":{"tf":1.4142135623730951},"91":{"tf":1.0},"939":{"tf":1.0},"97":{"tf":1.0},"996":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"p":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"'":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":5,"docs":{"1276":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"1276":{"tf":1.0},"486":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"3":{"0":{"0":{"0":{"df":5,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"434":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":6,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"g":{".":{"2":{"0":{"2":{"4":{"df":1,"docs":{"298":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1149":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1378":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1355":{"tf":1.0},"473":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":5,"docs":{"1267":{"tf":1.0},"1526":{"tf":1.0},"483":{"tf":1.0},"493":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":4,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"507":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":5,"docs":{"1148":{"tf":1.0},"1355":{"tf":1.0},"461":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1281":{"tf":1.0},"463":{"tf":1.0},"489":{"tf":1.0},"497":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"503":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1276":{"tf":1.0},"1278":{"tf":1.0},"486":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}},"e":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"434":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"'":{"/":{"a":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1526":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1526":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":26,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":2.0},"1287":{"tf":1.4142135623730951},"1288":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.4142135623730951},"479":{"tf":2.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"509":{"tf":2.0},"510":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"470":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":33,"docs":{"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"348":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.0},"682":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0},"93":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"186":{"tf":1.0},"317":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1082":{"tf":1.4142135623730951},"892":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1279":{"tf":1.0},"1358":{"tf":1.0},"836":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"186":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":35,"docs":{"1032":{"tf":1.0},"1086":{"tf":1.0},"1103":{"tf":1.0},"1109":{"tf":1.0},"1135":{"tf":1.0},"1137":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.0},"1309":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"257":{"tf":1.0},"283":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.0},"321":{"tf":1.0},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"37":{"tf":1.0},"4":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"507":{"tf":1.4142135623730951},"548":{"tf":1.0},"576":{"tf":1.4142135623730951},"593":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0}}},"df":11,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1482":{"tf":1.0},"192":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"501":{"tf":1.0}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"1042":{"tf":1.0},"1137":{"tf":1.0},"1295":{"tf":1.0},"21":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1116":{"tf":1.4142135623730951},"1194":{"tf":1.0},"204":{"tf":1.0}}}}},"v":{"df":12,"docs":{"11":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1403":{"tf":1.0},"288":{"tf":1.0},"358":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"592":{"tf":1.0},"605":{"tf":1.0},"617":{"tf":1.7320508075688772}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"383":{"tf":1.0}}}}}}}}}},"d":{"_":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"617":{"tf":1.0}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}}},"t":{"df":1,"docs":{"115":{"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":10,"docs":{"365":{"tf":1.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"599":{"tf":1.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{":":{":":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"<":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"287":{"tf":1.0}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":13,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"109":{"tf":1.0},"1176":{"tf":1.4142135623730951},"1210":{"tf":1.0},"1294":{"tf":1.0},"17":{"tf":1.0},"21":{"tf":1.0},"549":{"tf":1.0},"729":{"tf":1.4142135623730951},"828":{"tf":1.0},"851":{"tf":1.0},"909":{"tf":1.0}}}}}},"df":0,"docs":{}}},"v":{"df":2,"docs":{"866":{"tf":1.0},"873":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"383":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"=":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":16,"docs":{"1186":{"tf":1.0},"1345":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"383":{"tf":1.0},"427":{"tf":1.0},"439":{"tf":1.0},"443":{"tf":1.4142135623730951},"676":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"956":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"886":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}},"m":{"6":{"4":{"df":1,"docs":{"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{":":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{":":{"df":0,"docs":{},"s":{"3":{":":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1071":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"y":{"df":18,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.7320508075688772},"1130":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"742":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"790":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.7320508075688772},"811":{"tf":1.0},"865":{"tf":1.0},"880":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":19,"docs":{"1197":{"tf":1.0},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"833":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1237":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"c":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"575":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1146":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1151":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1217":{"tf":1.0},"1392":{"tf":2.6457513110645907},"684":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"732":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":8,"docs":{"420":{"tf":1.0},"654":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"808":{"tf":1.0},"816":{"tf":1.7320508075688772},"823":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"869":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1336":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.4142135623730951}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":59,"docs":{"1148":{"tf":1.7320508075688772},"1149":{"tf":1.0},"1152":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1301":{"tf":2.23606797749979},"1305":{"tf":2.23606797749979},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.23606797749979},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772},"1378":{"tf":2.23606797749979},"1382":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":1.7320508075688772},"1403":{"tf":2.6457513110645907},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0},"383":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":3,"docs":{"1148":{"tf":1.0},"1382":{"tf":1.0},"667":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":47,"docs":{"1059":{"tf":1.0},"1067":{"tf":1.0},"1323":{"tf":2.8284271247461903},"134":{"tf":2.449489742783178},"135":{"tf":2.0},"1419":{"tf":2.8284271247461903},"1420":{"tf":2.449489742783178},"1421":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1426":{"tf":2.6457513110645907},"1432":{"tf":1.0},"1433":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.6457513110645907},"185":{"tf":1.4142135623730951},"186":{"tf":1.7320508075688772},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"206":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.0},"371":{"tf":2.23606797749979},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"395":{"tf":1.7320508075688772},"401":{"tf":1.7320508075688772},"461":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"489":{"tf":1.0},"503":{"tf":1.0},"519":{"tf":2.449489742783178},"522":{"tf":2.23606797749979},"605":{"tf":1.7320508075688772},"613":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"629":{"tf":1.7320508075688772},"635":{"tf":1.7320508075688772},"65":{"tf":1.0},"696":{"tf":2.0},"699":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.0},"787":{"tf":1.7320508075688772},"797":{"tf":1.7320508075688772},"880":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"134":{"tf":1.0},"791":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1326":{"tf":1.0},"194":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":2,"docs":{"395":{"tf":1.0},"629":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"=":{"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":8,"docs":{"1032":{"tf":1.0},"1254":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.7320508075688772},"973":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"440":{"tf":1.0},"946":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1194":{"tf":1.0},"1208":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0},"62":{"tf":1.0},"901":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.4142135623730951}}}}}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":32,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1288":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1403":{"tf":2.8284271247461903},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"369":{"tf":1.4142135623730951},"37":{"tf":1.0},"423":{"tf":1.0},"502":{"tf":1.0},"60":{"tf":1.4142135623730951},"603":{"tf":1.4142135623730951},"62":{"tf":1.7320508075688772},"845":{"tf":1.0},"850":{"tf":1.0},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":2.23606797749979},"942":{"tf":1.0},"951":{"tf":1.4142135623730951},"966":{"tf":1.7320508075688772},"969":{"tf":2.0},"988":{"tf":1.0},"995":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":2.0}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"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":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":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":{"1403":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1442":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":35,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1206":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1442":{"tf":2.449489742783178},"1455":{"tf":1.0},"147":{"tf":1.0},"1474":{"tf":1.4142135623730951},"174":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"503":{"tf":2.23606797749979},"6":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.7320508075688772},"669":{"tf":1.0},"679":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"816":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"944":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"669":{"tf":1.0},"675":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":19,"docs":{"1194":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1486":{"tf":1.4142135623730951},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"783":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"899":{"tf":1.0},"995":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"992":{"tf":1.0}}}}}}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1109":{"tf":1.0}}}}}}}}},"df":1,"docs":{"181":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":26,"docs":{"1043":{"tf":1.0},"1098":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1295":{"tf":1.0},"1432":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"36":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"482":{"tf":1.4142135623730951},"483":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.0},"495":{"tf":1.0},"73":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0}}}},"df":3,"docs":{"255":{"tf":1.0},"765":{"tf":1.0},"916":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":20,"docs":{"1055":{"tf":1.4142135623730951},"1068":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1092":{"tf":1.0},"1220":{"tf":1.0},"1451":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"3":{"tf":1.7320508075688772},"381":{"tf":1.0},"427":{"tf":1.0},"614":{"tf":1.0},"734":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"847":{"tf":1.0},"916":{"tf":1.0}}}}},"df":1,"docs":{"1097":{"tf":1.0}},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1287":{"tf":1.4142135623730951},"964":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":71,"docs":{"1148":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1270":{"tf":1.0},"1273":{"tf":2.449489742783178},"1279":{"tf":1.0},"1282":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.3166247903554},"1305":{"tf":2.6457513110645907},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.6457513110645907},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1349":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1359":{"tf":2.23606797749979},"1361":{"tf":1.7320508075688772},"1362":{"tf":1.7320508075688772},"1363":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":2.23606797749979},"1369":{"tf":2.449489742783178},"1378":{"tf":1.7320508075688772},"1382":{"tf":1.7320508075688772},"1399":{"tf":3.7416573867739413},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.4142135623730951},"1403":{"tf":3.3166247903554},"1405":{"tf":2.23606797749979},"1515":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.7320508075688772},"431":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.23606797749979},"458":{"tf":2.0},"459":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"474":{"tf":2.6457513110645907},"477":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.0},"507":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"667":{"tf":1.4142135623730951},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"87":{"tf":2.0},"88":{"tf":2.449489742783178}}}},"r":{"df":3,"docs":{"981":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0}}}},"df":23,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":2.0},"1065":{"tf":1.0},"1070":{"tf":1.0},"1072":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1098":{"tf":1.0},"1099":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":2.449489742783178},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.7320508075688772},"1512":{"tf":2.23606797749979},"1513":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"237":{"tf":2.449489742783178},"255":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0},"893":{"tf":1.4142135623730951}},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"=":{"\"":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"u":{"df":3,"docs":{"1066":{"tf":1.0},"1454":{"tf":1.0},"1512":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}}}}}},"s":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1106":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"=":{"\"":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1066":{"tf":1.0},"1512":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1452":{"tf":1.0},"1454":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"239":{"tf":2.23606797749979},"64":{"tf":1.0}}}}}},"b":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1248":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"9":{"4":{"d":{"2":{"7":{"b":{"9":{"9":{"3":{"4":{"d":{"3":{"df":0,"docs":{},"e":{"0":{"8":{"a":{"5":{"2":{"df":0,"docs":{},"e":{"5":{"2":{"d":{"7":{"d":{"a":{"7":{"d":{"a":{"b":{"df":0,"docs":{},"f":{"a":{"c":{"4":{"8":{"4":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"3":{"7":{"a":{"5":{"3":{"8":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"9":{"0":{"8":{"8":{"df":0,"docs":{},"f":{"7":{"a":{"c":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"d":{"df":0,"docs":{},"e":{"9":{"df":1,"docs":{"838":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"df":6,"docs":{"1197":{"tf":1.0},"1422":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0},"805":{"tf":1.0},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":83,"docs":{"1054":{"tf":2.0},"1055":{"tf":2.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.0},"1064":{"tf":1.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":1.7320508075688772},"1078":{"tf":1.0},"1079":{"tf":1.0},"108":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1090":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.0},"113":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.7320508075688772},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.6457513110645907},"1489":{"tf":1.7320508075688772},"1491":{"tf":1.0},"1511":{"tf":1.4142135623730951},"1528":{"tf":1.0},"1531":{"tf":1.0},"285":{"tf":1.7320508075688772},"289":{"tf":1.0},"334":{"tf":1.0},"337":{"tf":1.4142135623730951},"536":{"tf":1.0},"564":{"tf":1.4142135623730951},"722":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"901":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":10,"docs":{"1011":{"tf":1.0},"1061":{"tf":1.0},"1096":{"tf":1.4142135623730951},"1097":{"tf":1.7320508075688772},"1098":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1510":{"tf":1.0},"1520":{"tf":1.0},"171":{"tf":1.4142135623730951},"974":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":4,"docs":{"1047":{"tf":1.0},"1503":{"tf":1.0},"711":{"tf":1.0},"940":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"1312":{"tf":1.0}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"951":{"tf":1.0}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":1,"docs":{"1119":{"tf":1.0}}}}}},"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"760":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"_":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1165":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":30,"docs":{"1021":{"tf":1.0},"1045":{"tf":1.0},"1091":{"tf":1.0},"1166":{"tf":1.0},"1186":{"tf":1.0},"129":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"404":{"tf":1.0},"45":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"53":{"tf":1.4142135623730951},"638":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":71,"docs":{"1013":{"tf":1.0},"1015":{"tf":1.0},"1029":{"tf":1.0},"1077":{"tf":1.0},"110":{"tf":1.0},"1108":{"tf":1.0},"1119":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1162":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1192":{"tf":1.0},"1196":{"tf":1.0},"1249":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.4142135623730951},"1482":{"tf":1.0},"16":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.4142135623730951},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"434":{"tf":1.0},"607":{"tf":1.0},"615":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"739":{"tf":1.0},"751":{"tf":1.0},"774":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"925":{"tf":1.0},"943":{"tf":1.4142135623730951},"960":{"tf":1.0},"980":{"tf":1.0}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":17,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":2.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"i":{"c":{"df":121,"docs":{"107":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1334":{"tf":1.0},"1350":{"tf":1.4142135623730951},"1373":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1425":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"216":{"tf":1.4142135623730951},"327":{"tf":1.0},"334":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"481":{"tf":1.0},"485":{"tf":1.4142135623730951},"519":{"tf":1.0},"547":{"tf":1.0},"555":{"tf":1.0},"576":{"tf":1.4142135623730951},"589":{"tf":1.0},"590":{"tf":1.0},"619":{"tf":1.0},"620":{"tf":1.7320508075688772},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.7320508075688772},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951},"696":{"tf":1.0},"71":{"tf":1.0},"727":{"tf":1.0},"75":{"tf":1.4142135623730951},"758":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":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":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1315":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1338":{"tf":2.0},"1389":{"tf":1.4142135623730951},"1390":{"tf":2.0},"206":{"tf":1.0},"237":{"tf":1.0},"311":{"tf":2.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1033":{"tf":1.0}}}}}},"df":30,"docs":{"1145":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1206":{"tf":1.0},"1247":{"tf":1.7320508075688772},"1248":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1355":{"tf":2.6457513110645907},"1356":{"tf":1.0},"1358":{"tf":2.8284271247461903},"1359":{"tf":1.0},"1361":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1384":{"tf":1.0},"226":{"tf":1.4142135623730951},"31":{"tf":2.23606797749979},"426":{"tf":2.0},"427":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.0},"883":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.4142135623730951},"1445":{"tf":1.0},"899":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":4,"docs":{"173":{"tf":1.0},"21":{"tf":1.0},"439":{"tf":1.0},"54":{"tf":1.0}}}}},"df":1,"docs":{"804":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":36,"docs":{"1140":{"tf":1.0},"1161":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"1267":{"tf":1.0},"1292":{"tf":1.0},"1310":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"228":{"tf":1.4142135623730951},"249":{"tf":1.0},"30":{"tf":1.0},"361":{"tf":1.0},"431":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"47":{"tf":1.0},"471":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"495":{"tf":1.0},"509":{"tf":1.0},"595":{"tf":1.0},"673":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0}},"l":{"(":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"1310":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"856":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"804":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1215":{"tf":1.0},"1453":{"tf":1.4142135623730951},"243":{"tf":1.0},"928":{"tf":1.4142135623730951},"930":{"tf":1.0},"937":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1077":{"tf":1.0},"1295":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"831":{"tf":1.0},"863":{"tf":1.0}}}},"w":{"df":4,"docs":{"1295":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951}}}},"t":{"df":1,"docs":{"1042":{"tf":1.0}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1161":{"tf":1.0},"36":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"77":{"tf":1.0},"81":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":22,"docs":{"1009":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1113":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1201":{"tf":1.4142135623730951},"1283":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1311":{"tf":1.4142135623730951},"1452":{"tf":2.0},"168":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"433":{"tf":1.0},"681":{"tf":1.4142135623730951},"69":{"tf":1.0},"908":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"961":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1306":{"tf":1.0},"250":{"tf":1.4142135623730951},"725":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":25,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1173":{"tf":1.0},"1417":{"tf":1.0},"1456":{"tf":1.7320508075688772},"1502":{"tf":1.0},"1516":{"tf":1.4142135623730951},"1518":{"tf":1.4142135623730951},"156":{"tf":1.0},"212":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"52":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.4142135623730951},"934":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1083":{"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":1,"docs":{"1182":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"1330":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1346":{"tf":1.0},"255":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"108":{"tf":1.0},"353":{"tf":1.7320508075688772},"585":{"tf":1.7320508075688772},"70":{"tf":1.0}}}}},"d":{"df":19,"docs":{"1194":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1384":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"321":{"tf":1.0},"327":{"tf":1.0},"54":{"tf":1.0},"548":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"753":{"tf":1.0}}}}}},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1018":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"918":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"969":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"978":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"b":{"df":0,"docs":{},"o":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1305":{"tf":1.0}}},"d":{"df":0,"docs":{},"i":{"df":28,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"879":{"tf":1.0},"883":{"tf":1.0}}},"y":{".":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":14,"docs":{"1375":{"tf":1.0},"1404":{"tf":1.0},"587":{"tf":1.0},"596":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":23,"docs":{"1129":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1304":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"362":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"788":{"tf":1.0},"811":{"tf":1.0},"901":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1222":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.4142135623730951}},"h":{"df":22,"docs":{"1007":{"tf":1.4142135623730951},"1029":{"tf":1.0},"1036":{"tf":1.0},"1135":{"tf":1.0},"1145":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.4142135623730951},"125":{"tf":1.0},"1410":{"tf":1.0},"1420":{"tf":1.0},"15":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"226":{"tf":1.0},"31":{"tf":1.0},"451":{"tf":1.0},"530":{"tf":1.0},"707":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"88":{"tf":1.4142135623730951},"989":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"<":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"df":12,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1452":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1154":{"tf":1.0},"779":{"tf":1.0},"809":{"tf":1.0},"819":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"k":{"df":7,"docs":{"1080":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"473":{"tf":2.0},"818":{"tf":1.0},"940":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"a":{"d":{"df":1,"docs":{"868":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1035":{"tf":1.0},"35":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"837":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"1451":{"tf":1.0}}}}}}}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1512":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1067":{"tf":1.7320508075688772},"1071":{"tf":1.4142135623730951},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"381":{"tf":1.0},"404":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951}}}}}},"g":{"df":1,"docs":{"19":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":24,"docs":{"1":{"tf":1.0},"1078":{"tf":1.4142135623730951},"108":{"tf":1.0},"115":{"tf":2.0},"1262":{"tf":1.0},"1296":{"tf":1.0},"1305":{"tf":1.0},"1409":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"25":{"tf":1.0},"453":{"tf":1.0},"481":{"tf":1.0},"586":{"tf":1.4142135623730951},"589":{"tf":1.0},"662":{"tf":1.0},"70":{"tf":1.0},"758":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"911":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":20,"docs":{"1069":{"tf":1.0},"1075":{"tf":1.0},"1136":{"tf":1.0},"1207":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1316":{"tf":1.0},"14":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"225":{"tf":1.0},"23":{"tf":1.0},"291":{"tf":1.0},"304":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"5":{"tf":1.0},"587":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"28":{"tf":1.0}}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"\"":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"494":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":13,"docs":{"1015":{"tf":1.7320508075688772},"1018":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1024":{"tf":1.0},"1080":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"277":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":10,"docs":{"1101":{"tf":1.0},"1103":{"tf":1.7320508075688772},"1214":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.7320508075688772},"250":{"tf":1.7320508075688772},"585":{"tf":1.0},"871":{"tf":1.0},"950":{"tf":1.7320508075688772},"992":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"761":{"tf":1.0}},"l":{"c":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1359":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1403":{"tf":1.0},"31":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"86":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}}},"df":1,"docs":{"1379":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"474":{"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":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":25,"docs":{"1148":{"tf":1.0},"1174":{"tf":1.0},"1185":{"tf":1.7320508075688772},"1195":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"361":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"517":{"tf":1.0},"595":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"694":{"tf":1.0},"726":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}}},"df":1,"docs":{"1356":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"98":{"tf":1.0}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"58":{"tf":1.0},"911":{"tf":1.0}},"i":{"c":{"df":4,"docs":{"58":{"tf":1.0},"911":{"tf":1.0},"921":{"tf":1.0},"950":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":20,"docs":{"1083":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1418":{"tf":1.0},"170":{"tf":1.0},"23":{"tf":1.0},"27":{"tf":1.0},"41":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"51":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"308":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.4142135623730951}}}}}}},"df":4,"docs":{"1213":{"tf":1.0},"1234":{"tf":2.0},"1244":{"tf":1.0},"760":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1106":{"tf":1.0},"249":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1194":{"tf":1.0}}}}}}}}},"g":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":3,"docs":{"106":{"tf":1.0},"258":{"tf":1.0},"292":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1154":{"tf":3.0},"1165":{"tf":2.6457513110645907},"1296":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"911":{"tf":1.0},"969":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":30,"docs":{"1016":{"tf":1.0},"1020":{"tf":1.4142135623730951},"1026":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1038":{"tf":1.4142135623730951},"1042":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1068":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":2.0},"1358":{"tf":2.0},"1451":{"tf":1.0},"182":{"tf":1.0},"473":{"tf":2.0},"925":{"tf":1.0},"93":{"tf":2.0},"930":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"949":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":15,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":2.0},"1405":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":8,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"1339":{"tf":1.0},"1480":{"tf":1.0}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"739":{"tf":1.4142135623730951},"792":{"tf":1.0},"836":{"tf":1.0},"869":{"tf":1.0}},"i":{"df":3,"docs":{"51":{"tf":1.0},"730":{"tf":1.4142135623730951},"792":{"tf":2.0}}}}}}}},"u":{"df":0,"docs":{},"s":{"df":31,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0}}}}},"b":{"c":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":4,"docs":{"104":{"tf":1.0},"1320":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":4,"docs":{"1095":{"tf":1.0},"552":{"tf":1.0},"586":{"tf":1.7320508075688772},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.0},"21":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"261":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"930":{"tf":1.4142135623730951},"939":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"34":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.7320508075688772},"928":{"tf":1.7320508075688772},"929":{"tf":2.0},"939":{"tf":1.0},"969":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1403":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"1194":{"tf":1.0},"1212":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"199":{"tf":1.0},"248":{"tf":1.0},"61":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"929":{"tf":1.0},"972":{"tf":1.4142135623730951},"988":{"tf":2.0}}}},"n":{"df":0,"docs":{},"g":{"df":37,"docs":{"1011":{"tf":1.0},"1219":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1456":{"tf":1.0},"147":{"tf":1.0},"1487":{"tf":1.0},"1509":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"209":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"237":{"tf":1.7320508075688772},"249":{"tf":1.4142135623730951},"254":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"55":{"tf":1.0},"61":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"64":{"tf":1.0},"664":{"tf":1.0},"780":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"940":{"tf":1.0},"942":{"tf":1.4142135623730951},"951":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0},"987":{"tf":1.4142135623730951},"988":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"1174":{"tf":1.0},"59":{"tf":1.0},"951":{"tf":1.0},"973":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1137":{"tf":1.0},"1221":{"tf":1.0},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.0},"620":{"tf":1.0},"763":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1021":{"tf":1.0},"82":{"tf":1.4142135623730951},"925":{"tf":2.0},"950":{"tf":1.4142135623730951},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.4142135623730951},"1024":{"tf":1.4142135623730951},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1250":{"tf":1.0}},"t":{"df":2,"docs":{"859":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"r":{"df":1,"docs":{"1144":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1386":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1363":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":76,"docs":{"1109":{"tf":1.0},"1166":{"tf":1.0},"1200":{"tf":1.0},"1208":{"tf":1.0},"1260":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.7320508075688772},"1330":{"tf":2.0},"1355":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.4142135623730951},"1378":{"tf":1.0},"138":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"142":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1491":{"tf":1.4142135623730951},"1494":{"tf":1.0},"1498":{"tf":1.4142135623730951},"1528":{"tf":1.7320508075688772},"188":{"tf":1.0},"205":{"tf":1.0},"214":{"tf":1.0},"222":{"tf":1.4142135623730951},"223":{"tf":1.7320508075688772},"226":{"tf":1.4142135623730951},"228":{"tf":1.0},"246":{"tf":1.7320508075688772},"252":{"tf":1.0},"253":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"351":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"362":{"tf":1.0},"369":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"408":{"tf":1.7320508075688772},"420":{"tf":1.0},"451":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"596":{"tf":1.0},"603":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"642":{"tf":1.7320508075688772},"654":{"tf":1.0},"702":{"tf":1.0},"849":{"tf":1.0},"88":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"92":{"tf":1.7320508075688772},"950":{"tf":1.7320508075688772},"96":{"tf":1.0},"970":{"tf":1.0},"979":{"tf":1.4142135623730951}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.4142135623730951},"1012":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"967":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1421":{"tf":1.0},"1433":{"tf":1.0},"972":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"871":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":7,"docs":{"1105":{"tf":1.4142135623730951},"352":{"tf":1.4142135623730951},"584":{"tf":1.4142135623730951},"682":{"tf":1.0},"908":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"962":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":5,"docs":{"18":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"960":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":2,"docs":{"24":{"tf":1.0},"61":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"458":{"tf":1.4142135623730951}}}}}},"i":{"/":{"c":{"d":{"df":3,"docs":{"1157":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.4142135623730951}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":11,"docs":{"936":{"tf":2.0},"937":{"tf":1.7320508075688772},"938":{"tf":1.4142135623730951},"939":{"tf":2.0},"941":{"tf":2.0},"942":{"tf":2.0},"975":{"tf":1.4142135623730951},"976":{"tf":2.23606797749979},"977":{"tf":1.7320508075688772},"978":{"tf":1.4142135623730951},"979":{"tf":1.0}}}},"p":{"df":1,"docs":{"108":{"tf":1.0}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"217":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":36,"docs":{"1152":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.0},"429":{"tf":1.0},"498":{"tf":1.0},"516":{"tf":1.7320508075688772},"541":{"tf":1.0},"588":{"tf":1.0},"593":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.4142135623730951},"619":{"tf":1.0},"693":{"tf":1.7320508075688772},"711":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"969":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"960":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1018":{"tf":1.0},"1029":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":2,"docs":{"751":{"tf":1.0},"757":{"tf":1.0}},"i":{"df":3,"docs":{"1216":{"tf":1.0},"1218":{"tf":1.0},"753":{"tf":1.0}}}}}}},"u":{"d":{"df":5,"docs":{"831":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"1168":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"433":{"tf":1.0},"440":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"312":{"tf":1.4142135623730951}}}}},"r":{"df":8,"docs":{"170":{"tf":1.0},"228":{"tf":1.0},"312":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"351":{"tf":1.0},"929":{"tf":1.0},"941":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":117,"docs":{"102":{"tf":1.4142135623730951},"103":{"tf":1.0},"104":{"tf":1.0},"108":{"tf":1.4142135623730951},"1154":{"tf":1.0},"117":{"tf":1.4142135623730951},"118":{"tf":2.0},"1182":{"tf":1.0},"119":{"tf":1.0},"1191":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"1229":{"tf":1.4142135623730951},"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},"1317":{"tf":2.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"132":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"133":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":2.0},"135":{"tf":1.0},"136":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.7320508075688772},"1408":{"tf":1.0},"1409":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.0},"143":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1497":{"tf":1.0},"1501":{"tf":1.4142135623730951},"17":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"259":{"tf":1.7320508075688772},"359":{"tf":1.0},"4":{"tf":1.7320508075688772},"433":{"tf":1.0},"593":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":2.449489742783178},"771":{"tf":1.4142135623730951},"8":{"tf":2.0},"907":{"tf":1.4142135623730951},"925":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}}},"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":4,"docs":{"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.4142135623730951},"427":{"tf":1.0},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.4142135623730951}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"667":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":44,"docs":{"1149":{"tf":1.0},"1152":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1189":{"tf":2.0},"1202":{"tf":1.7320508075688772},"1203":{"tf":1.0},"1265":{"tf":1.0},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1282":{"tf":1.4142135623730951},"1284":{"tf":1.0},"1285":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1359":{"tf":2.8284271247461903},"1379":{"tf":1.4142135623730951},"1382":{"tf":2.449489742783178},"1493":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"427":{"tf":2.8284271247461903},"429":{"tf":1.0},"430":{"tf":1.0},"443":{"tf":2.8284271247461903},"447":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"470":{"tf":1.0},"474":{"tf":1.4142135623730951},"478":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"667":{"tf":2.23606797749979},"670":{"tf":1.7320508075688772},"672":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.0},"687":{"tf":2.23606797749979},"719":{"tf":2.23606797749979},"964":{"tf":1.4142135623730951}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"446":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"934":{"tf":1.4142135623730951},"935":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":4,"docs":{"104":{"tf":1.0},"287":{"tf":1.0},"554":{"tf":1.4142135623730951},"70":{"tf":1.0}}}},"u":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1064":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":1.4142135623730951},"1089":{"tf":1.0},"1439":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"129":{"tf":1.0},"1333":{"tf":1.0},"235":{"tf":1.4142135623730951},"238":{"tf":2.23606797749979}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"d":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"o":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1310":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1154":{"tf":1.0}}}}},"df":76,"docs":{"1154":{"tf":1.0},"1161":{"tf":1.0},"1162":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"1457":{"tf":2.0},"1458":{"tf":2.0},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1463":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1468":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1473":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1478":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.0},"225":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"320":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0},"664":{"tf":1.0},"679":{"tf":1.0},"711":{"tf":1.0},"748":{"tf":1.0},"760":{"tf":1.0},"762":{"tf":1.0},"765":{"tf":1.7320508075688772},"822":{"tf":1.0},"831":{"tf":1.0},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.0},"845":{"tf":1.0},"848":{"tf":1.0}}}},"df":1,"docs":{"858":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"1076":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"88":{"tf":2.23606797749979}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1304":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.0},"213":{"tf":1.0},"786":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"302":{"tf":1.7320508075688772},"311":{"tf":2.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":4,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":14,"docs":{"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1044":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1396":{"tf":1.0},"152":{"tf":1.0},"345":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"572":{"tf":1.0},"657":{"tf":1.0},"753":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":3,"docs":{"479":{"tf":1.0},"509":{"tf":1.0},"996":{"tf":2.0}}},"m":{"a":{"df":3,"docs":{"138":{"tf":1.0},"1436":{"tf":1.0},"1479":{"tf":1.0}},"n":{"d":{"df":60,"docs":{"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.0},"1229":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1250":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.7320508075688772},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1347":{"tf":1.4142135623730951},"1359":{"tf":1.0},"138":{"tf":1.4142135623730951},"1406":{"tf":1.0},"1407":{"tf":2.23606797749979},"1408":{"tf":1.7320508075688772},"1409":{"tf":1.0},"1410":{"tf":1.4142135623730951},"1411":{"tf":1.7320508075688772},"1412":{"tf":1.7320508075688772},"1413":{"tf":1.0},"1414":{"tf":1.7320508075688772},"1415":{"tf":1.0},"1416":{"tf":1.7320508075688772},"1417":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":2.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.0},"1427":{"tf":1.0},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1458":{"tf":1.0},"1501":{"tf":1.0},"1524":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.0},"239":{"tf":1.4142135623730951},"255":{"tf":1.0},"4":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"67":{"tf":1.0},"979":{"tf":1.4142135623730951},"996":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"1112":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":26,"docs":{"1084":{"tf":1.0},"1194":{"tf":2.0},"169":{"tf":1.0},"212":{"tf":1.0},"30":{"tf":1.0},"747":{"tf":1.0},"833":{"tf":1.0},"852":{"tf":2.449489742783178},"853":{"tf":1.4142135623730951},"854":{"tf":1.4142135623730951},"855":{"tf":1.7320508075688772},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"858":{"tf":1.7320508075688772},"859":{"tf":1.4142135623730951},"860":{"tf":2.8284271247461903},"861":{"tf":1.4142135623730951},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.7320508075688772},"875":{"tf":1.0},"885":{"tf":1.4142135623730951},"886":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1200":{"tf":1.4142135623730951},"1292":{"tf":1.4142135623730951},"1317":{"tf":1.0},"140":{"tf":1.4142135623730951},"1424":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1443":{"tf":1.4142135623730951},"1502":{"tf":1.0},"1528":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"303":{"tf":1.0},"350":{"tf":1.4142135623730951},"357":{"tf":1.0},"451":{"tf":1.4142135623730951},"547":{"tf":1.0},"582":{"tf":1.4142135623730951},"591":{"tf":1.0},"678":{"tf":1.4142135623730951},"724":{"tf":1.4142135623730951},"727":{"tf":1.0},"741":{"tf":1.0},"925":{"tf":1.0},"93":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":28,"docs":{"0":{"tf":2.0},"1020":{"tf":1.0},"1042":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.0},"1197":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.4142135623730951},"197":{"tf":1.0},"20":{"tf":1.4142135623730951},"21":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"422":{"tf":1.0},"433":{"tf":1.0},"446":{"tf":1.0},"453":{"tf":1.0},"47":{"tf":1.0},"663":{"tf":1.0},"88":{"tf":1.0},"910":{"tf":1.0},"927":{"tf":1.0},"955":{"tf":1.0},"964":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":4,"docs":{"1328":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"753":{"tf":1.0}}}},"r":{"df":3,"docs":{"231":{"tf":1.0},"922":{"tf":1.0},"944":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1048":{"tf":1.4142135623730951},"973":{"tf":1.0}}}}}}},"t":{"df":20,"docs":{"1023":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1292":{"tf":1.0},"1432":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.7320508075688772},"1528":{"tf":1.0},"159":{"tf":1.0},"16":{"tf":1.4142135623730951},"25":{"tf":1.0},"353":{"tf":1.7320508075688772},"451":{"tf":1.0},"585":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"711":{"tf":1.0},"940":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":6,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951}}},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"856":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"49":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"49":{"tf":1.7320508075688772}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1296":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":106,"docs":{"11":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.0},"1256":{"tf":1.0},"1268":{"tf":1.0},"1312":{"tf":2.23606797749979},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"1347":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1362":{"tf":1.0},"1363":{"tf":1.0},"1370":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"1399":{"tf":2.0},"1400":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1458":{"tf":1.0},"1487":{"tf":1.4142135623730951},"155":{"tf":1.0},"167":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.0},"199":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.7320508075688772},"225":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.4142135623730951},"29":{"tf":1.0},"298":{"tf":1.0},"34":{"tf":1.0},"355":{"tf":1.0},"356":{"tf":1.0},"370":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"385":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.4142135623730951},"421":{"tf":1.0},"441":{"tf":1.4142135623730951},"452":{"tf":1.0},"47":{"tf":1.0},"472":{"tf":1.4142135623730951},"480":{"tf":1.0},"49":{"tf":1.0},"495":{"tf":1.0},"50":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"51":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"604":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"619":{"tf":1.0},"62":{"tf":1.0},"654":{"tf":1.4142135623730951},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"763":{"tf":1.0},"764":{"tf":1.4142135623730951},"765":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.4142135623730951},"804":{"tf":1.0},"805":{"tf":1.0},"808":{"tf":1.4142135623730951},"81":{"tf":1.0},"815":{"tf":1.4142135623730951},"816":{"tf":1.4142135623730951},"820":{"tf":1.0},"825":{"tf":1.4142135623730951},"826":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"83":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"868":{"tf":1.0},"869":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"90":{"tf":1.0},"902":{"tf":1.4142135623730951},"970":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1329":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772}}}}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":1,"docs":{"869":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0}}}}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"x":{"df":12,"docs":{"1086":{"tf":1.0},"1089":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.0},"1297":{"tf":1.0},"17":{"tf":1.0},"35":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.0},"593":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":12,"docs":{"1010":{"tf":1.0},"1026":{"tf":1.0},"1033":{"tf":1.0},"11":{"tf":1.0},"1166":{"tf":1.0},"1421":{"tf":1.4142135623730951},"188":{"tf":1.0},"37":{"tf":1.0},"62":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"985":{"tf":1.4142135623730951}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1079":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"51":{"tf":1.4142135623730951},"729":{"tf":1.0},"733":{"tf":1.4142135623730951},"740":{"tf":1.0},"753":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"916":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":2,"docs":{"1161":{"tf":1.0},"741":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"501":{"tf":1.4142135623730951},"729":{"tf":1.0},"741":{"tf":1.4142135623730951},"752":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":13,"docs":{"0":{"tf":1.0},"1173":{"tf":1.0},"1394":{"tf":1.4142135623730951},"14":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"290":{"tf":1.0},"60":{"tf":1.0},"898":{"tf":1.0},"910":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.0},"1010":{"tf":1.0},"1052":{"tf":2.0},"918":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":2.23606797749979},"996":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":10,"docs":{"1014":{"tf":1.0},"1029":{"tf":1.0},"1036":{"tf":1.0},"1254":{"tf":1.0},"182":{"tf":1.0},"227":{"tf":1.0},"776":{"tf":1.0},"780":{"tf":1.0},"789":{"tf":1.0},"921":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":35,"docs":{"18":{"tf":1.0},"23":{"tf":1.0},"26":{"tf":1.4142135623730951},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"37":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":1.0},"287":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":3,"docs":{"552":{"tf":2.0},"579":{"tf":2.23606797749979},"586":{"tf":1.7320508075688772}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1119":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1384":{"tf":1.0},"54":{"tf":1.0},"757":{"tf":1.0},"937":{"tf":1.0},"941":{"tf":1.0}}}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"1051":{"tf":1.0},"1129":{"tf":1.0},"921":{"tf":1.0}}}}}}},"df":0,"docs":{},"g":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"281":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1047":{"tf":1.0},"139":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0}}}}}},"y":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}},"df":0,"docs":{}}},":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.4142135623730951},"661":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1140":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.7320508075688772},"595":{"tf":1.0},"611":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":96,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"112":{"tf":1.0},"1140":{"tf":2.0},"115":{"tf":1.0},"120":{"tf":1.4142135623730951},"1200":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1226":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"128":{"tf":1.0},"129":{"tf":1.0},"1318":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1413":{"tf":2.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1428":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1460":{"tf":1.0},"1467":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"150":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"306":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"378":{"tf":1.4142135623730951},"418":{"tf":1.0},"43":{"tf":1.7320508075688772},"436":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"462":{"tf":1.0},"485":{"tf":1.0},"544":{"tf":1.0},"595":{"tf":1.0},"611":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0},"732":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.4142135623730951},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":2.0},"892":{"tf":1.0},"903":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":2.23606797749979},"925":{"tf":1.0},"94":{"tf":1.0},"969":{"tf":1.0}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"332":{"tf":1.0},"418":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":47,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1301":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1495":{"tf":1.0},"1526":{"tf":1.0},"361":{"tf":1.0},"369":{"tf":1.0},"378":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"518":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"220":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":219,"docs":{"1019":{"tf":1.4142135623730951},"1025":{"tf":1.4142135623730951},"1031":{"tf":1.4142135623730951},"1037":{"tf":1.4142135623730951},"1047":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1056":{"tf":1.7320508075688772},"1058":{"tf":1.4142135623730951},"1065":{"tf":1.4142135623730951},"1070":{"tf":1.0},"1074":{"tf":1.4142135623730951},"1079":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.4142135623730951},"111":{"tf":2.0},"112":{"tf":2.0},"113":{"tf":1.0},"1136":{"tf":1.4142135623730951},"1139":{"tf":1.0},"116":{"tf":1.0},"1168":{"tf":1.0},"1187":{"tf":1.4142135623730951},"1188":{"tf":1.4142135623730951},"1189":{"tf":1.4142135623730951},"120":{"tf":1.0},"1206":{"tf":1.0},"1215":{"tf":1.4142135623730951},"122":{"tf":1.0},"1220":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.7320508075688772},"1227":{"tf":1.4142135623730951},"1228":{"tf":1.0},"123":{"tf":1.4142135623730951},"124":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"1277":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1296":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1329":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1347":{"tf":1.4142135623730951},"139":{"tf":1.0},"1394":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1412":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1430":{"tf":1.0},"1434":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1436":{"tf":1.4142135623730951},"1437":{"tf":1.7320508075688772},"1438":{"tf":2.23606797749979},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1441":{"tf":2.449489742783178},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.7320508075688772},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.7320508075688772},"1447":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":2.6457513110645907},"1450":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":2.23606797749979},"1454":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.4142135623730951},"1459":{"tf":1.4142135623730951},"1460":{"tf":2.23606797749979},"1461":{"tf":2.0},"1467":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1489":{"tf":1.0},"149":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.7320508075688772},"1498":{"tf":1.7320508075688772},"1499":{"tf":1.0},"150":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"182":{"tf":1.0},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"312":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.4142135623730951},"333":{"tf":1.4142135623730951},"334":{"tf":1.4142135623730951},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"337":{"tf":1.0},"361":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"435":{"tf":1.4142135623730951},"447":{"tf":1.0},"462":{"tf":1.4142135623730951},"478":{"tf":1.0},"484":{"tf":1.4142135623730951},"485":{"tf":1.4142135623730951},"486":{"tf":1.4142135623730951},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.4142135623730951},"560":{"tf":1.4142135623730951},"561":{"tf":1.7320508075688772},"562":{"tf":1.7320508075688772},"563":{"tf":1.0},"564":{"tf":1.0},"595":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.4142135623730951},"652":{"tf":1.4142135623730951},"658":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"671":{"tf":1.4142135623730951},"672":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.4142135623730951},"71":{"tf":1.0},"712":{"tf":1.0},"720":{"tf":1.4142135623730951},"721":{"tf":1.4142135623730951},"722":{"tf":1.4142135623730951},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.7320508075688772},"737":{"tf":1.4142135623730951},"740":{"tf":1.0},"747":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"769":{"tf":1.0},"780":{"tf":1.0},"79":{"tf":1.4142135623730951},"829":{"tf":1.0},"833":{"tf":1.0},"85":{"tf":2.0},"88":{"tf":1.0},"887":{"tf":2.0},"888":{"tf":1.0},"889":{"tf":1.4142135623730951},"890":{"tf":1.0},"891":{"tf":1.7320508075688772},"892":{"tf":1.7320508075688772},"893":{"tf":1.7320508075688772},"894":{"tf":1.0},"895":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"898":{"tf":1.7320508075688772},"899":{"tf":1.7320508075688772},"900":{"tf":1.7320508075688772},"901":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"904":{"tf":1.7320508075688772},"905":{"tf":1.0},"906":{"tf":1.0},"907":{"tf":1.0},"908":{"tf":1.4142135623730951},"909":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"92":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"929":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"945":{"tf":1.4142135623730951},"969":{"tf":1.0},"980":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"1012":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1475":{"tf":1.0},"318":{"tf":1.0},"824":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1082":{"tf":1.0},"1287":{"tf":1.4142135623730951},"1522":{"tf":1.0},"510":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1480":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"89":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1084":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1179":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1477":{"tf":1.0},"1491":{"tf":2.449489742783178},"318":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"678":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"221":{"tf":1.4142135623730951},"30":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"954":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"1051":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1194":{"tf":1.0},"221":{"tf":1.0},"250":{"tf":1.0},"37":{"tf":1.0},"935":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":18,"docs":{"1005":{"tf":1.4142135623730951},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.4142135623730951},"1039":{"tf":1.4142135623730951},"1049":{"tf":1.4142135623730951},"1062":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1087":{"tf":1.4142135623730951},"1104":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1455":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"320":{"tf":1.0},"444":{"tf":1.4142135623730951},"475":{"tf":1.4142135623730951},"942":{"tf":1.4142135623730951},"971":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1109":{"tf":1.0},"25":{"tf":1.0},"58":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"874":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":3,"docs":{"1358":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"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":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.0},"327":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"419":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"384":{"tf":1.0}}}}},"j":{"a":{"c":{"df":4,"docs":{"1282":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"546":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"o":{"df":1,"docs":{"384":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1367":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1127":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"384":{"tf":1.0},"419":{"tf":1.0}}}}}}}},"`":{"a":{"d":{"d":{"df":1,"docs":{"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"(":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1359":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":7,"docs":{"327":{"tf":1.0},"364":{"tf":1.0},"382":{"tf":1.0},"410":{"tf":1.0},"518":{"tf":1.0},"76":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":7,"docs":{"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"408":{"tf":1.0},"420":{"tf":1.0},"88":{"tf":1.0}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"427":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"525":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"418":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":3,"docs":{"1365":{"tf":1.0},"1367":{"tf":1.0},"1403":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"489":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":8,"docs":{"1351":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"349":{"tf":1.4142135623730951},"397":{"tf":1.0},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1356":{"tf":1.0},"474":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"364":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"417":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"327":{"tf":1.0},"349":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"461":{"tf":1.0},"465":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"489":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1361":{"tf":1.0},"525":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"415":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"473":{"tf":1.0}}}}},"h":{"a":{"df":1,"docs":{"535":{"tf":1.0}},"r":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1351":{"tf":1.0},"1362":{"tf":1.0},"403":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0}}}}}},"df":3,"docs":{"391":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1362":{"tf":1.0},"1399":{"tf":1.0},"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"420":{"tf":1.7320508075688772},"77":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"400":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"458":{"tf":1.0},"529":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1351":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"361":{"tf":1.0},"363":{"tf":1.0},"372":{"tf":1.0},"770":{"tf":1.4142135623730951},"82":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"361":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"358":{"tf":1.0},"365":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":4,"docs":{"1355":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"365":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}}},"t":{"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":2,"docs":{"365":{"tf":1.0},"367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"358":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"376":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1218":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":4,"docs":{"1352":{"tf":2.0},"1363":{"tf":2.0},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"(":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"166":{"tf":1.0},"973":{"tf":1.0}}}}},"df":171,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1140":{"tf":2.449489742783178},"1145":{"tf":2.8284271247461903},"1148":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1191":{"tf":1.4142135623730951},"1192":{"tf":1.7320508075688772},"1218":{"tf":2.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1273":{"tf":2.23606797749979},"1276":{"tf":1.0},"1279":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":2.23606797749979},"1301":{"tf":3.4641016151377544},"1304":{"tf":1.0},"1305":{"tf":3.1622776601683795},"1306":{"tf":2.6457513110645907},"1307":{"tf":2.23606797749979},"1310":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1315":{"tf":2.0},"1349":{"tf":1.0},"1351":{"tf":2.0},"1352":{"tf":2.0},"1353":{"tf":2.23606797749979},"1355":{"tf":2.449489742783178},"1356":{"tf":2.6457513110645907},"1358":{"tf":2.0},"1359":{"tf":2.6457513110645907},"1361":{"tf":2.449489742783178},"1362":{"tf":2.23606797749979},"1363":{"tf":2.0},"1365":{"tf":3.7416573867739413},"1367":{"tf":1.7320508075688772},"1369":{"tf":3.7416573867739413},"1399":{"tf":4.0},"1401":{"tf":3.872983346207417},"1403":{"tf":4.898979485566356},"1405":{"tf":3.3166247903554},"1515":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1522":{"tf":3.4641016151377544},"1524":{"tf":2.23606797749979},"1526":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.7320508075688772},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":2.0},"358":{"tf":2.0},"361":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.7320508075688772},"371":{"tf":2.0},"372":{"tf":1.4142135623730951},"376":{"tf":1.0},"382":{"tf":3.1622776601683795},"383":{"tf":2.0},"384":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.7320508075688772},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"400":{"tf":1.7320508075688772},"401":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"410":{"tf":1.4142135623730951},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.4142135623730951},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.7320508075688772},"420":{"tf":2.6457513110645907},"426":{"tf":2.0},"427":{"tf":2.449489742783178},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.7320508075688772},"442":{"tf":1.7320508075688772},"443":{"tf":2.449489742783178},"458":{"tf":2.449489742783178},"459":{"tf":2.23606797749979},"461":{"tf":1.7320508075688772},"463":{"tf":2.23606797749979},"465":{"tf":1.7320508075688772},"467":{"tf":1.0},"468":{"tf":1.4142135623730951},"469":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":2.449489742783178},"477":{"tf":1.0},"483":{"tf":1.4142135623730951},"486":{"tf":1.0},"489":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.23606797749979},"506":{"tf":1.4142135623730951},"507":{"tf":2.449489742783178},"517":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.0},"520":{"tf":1.0},"521":{"tf":1.4142135623730951},"522":{"tf":1.7320508075688772},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":1.4142135623730951},"532":{"tf":1.4142135623730951},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"770":{"tf":1.7320508075688772},"772":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"795":{"tf":1.0},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"82":{"tf":1.4142135623730951},"87":{"tf":2.0},"88":{"tf":2.449489742783178},"9":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"51":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1121":{"tf":1.4142135623730951},"51":{"tf":1.0},"746":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1152":{"tf":1.0},"1399":{"tf":1.0},"517":{"tf":1.4142135623730951},"541":{"tf":1.0},"694":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"766":{"tf":1.4142135623730951}}}},"m":{"df":3,"docs":{"43":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"@":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"767":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"1332":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.7320508075688772},"170":{"tf":1.0},"41":{"tf":1.0},"47":{"tf":1.0},"733":{"tf":1.0},"751":{"tf":1.0},"754":{"tf":1.7320508075688772},"757":{"tf":1.0},"761":{"tf":1.7320508075688772},"762":{"tf":1.7320508075688772}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"370":{"tf":1.0},"382":{"tf":1.0},"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":22,"docs":{"1186":{"tf":1.0},"1422":{"tf":1.0},"1461":{"tf":1.0},"1479":{"tf":1.0},"185":{"tf":1.0},"31":{"tf":1.7320508075688772},"47":{"tf":1.0},"489":{"tf":1.0},"529":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"66":{"tf":1.0},"706":{"tf":1.0},"763":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.0},"836":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"950":{"tf":1.7320508075688772},"989":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"450":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"=":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"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":{"1270":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":121,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.4142135623730951},"1091":{"tf":1.0},"11":{"tf":1.0},"1142":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":2.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":2.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"135":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"1374":{"tf":1.4142135623730951},"1376":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1401":{"tf":2.6457513110645907},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1422":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"167":{"tf":2.0},"186":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.4142135623730951},"224":{"tf":1.0},"227":{"tf":1.7320508075688772},"238":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"33":{"tf":1.7320508075688772},"349":{"tf":1.0},"366":{"tf":1.7320508075688772},"367":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.7320508075688772},"383":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"426":{"tf":1.0},"442":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.7320508075688772},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"58":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"600":{"tf":1.7320508075688772},"601":{"tf":1.0},"605":{"tf":1.0},"614":{"tf":1.7320508075688772},"625":{"tf":1.0},"634":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"725":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.7320508075688772},"780":{"tf":1.0},"782":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":2.0},"788":{"tf":2.0},"791":{"tf":1.7320508075688772},"792":{"tf":1.4142135623730951},"794":{"tf":2.0},"796":{"tf":2.0},"80":{"tf":1.7320508075688772},"831":{"tf":1.0},"836":{"tf":1.7320508075688772},"838":{"tf":2.0},"845":{"tf":1.4142135623730951},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"879":{"tf":1.0},"88":{"tf":3.0},"883":{"tf":1.0},"914":{"tf":1.0},"918":{"tf":1.0},"921":{"tf":1.0},"954":{"tf":1.4142135623730951},"956":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"855":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"'":{"df":0,"docs":{},"q":{"1":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":70,"docs":{"108":{"tf":1.0},"1173":{"tf":2.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"2":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.7320508075688772},"228":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.0},"406":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"523":{"tf":2.0},"53":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"640":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"700":{"tf":1.4142135623730951},"727":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"833":{"tf":1.0},"88":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":9,"docs":{"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"209":{"tf":1.0},"38":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"940":{"tf":1.0},"983":{"tf":1.0},"995":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1323":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"1323":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"616":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":20,"docs":{"1130":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1213":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1330":{"tf":3.605551275463989},"1336":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.449489742783178},"1404":{"tf":1.0},"209":{"tf":2.23606797749979},"217":{"tf":1.0},"224":{"tf":1.4142135623730951},"276":{"tf":1.0},"406":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"728":{"tf":1.0}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"1130":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}},"e":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"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":{"1399":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":16,"docs":{"11":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"170":{"tf":1.0},"204":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"359":{"tf":1.0},"463":{"tf":1.0},"593":{"tf":1.0},"64":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"908":{"tf":1.0},"962":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":6,"docs":{"108":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"610":{"tf":1.0}}},"t":{"df":1,"docs":{"44":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":22,"docs":{"1236":{"tf":1.0},"1256":{"tf":1.0},"47":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":2.449489742783178},"877":{"tf":1.0},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.4142135623730951},"881":{"tf":1.4142135623730951},"882":{"tf":1.7320508075688772},"883":{"tf":1.0},"884":{"tf":1.7320508075688772},"885":{"tf":1.7320508075688772},"886":{"tf":1.4142135623730951}}},"t":{"df":3,"docs":{"471":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1261":{"tf":1.0},"172":{"tf":1.0},"52":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"i":{"df":11,"docs":{"1528":{"tf":1.0},"49":{"tf":1.4142135623730951},"53":{"tf":1.0},"682":{"tf":1.7320508075688772},"73":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.7320508075688772},"80":{"tf":1.0},"802":{"tf":1.0},"81":{"tf":1.7320508075688772},"819":{"tf":1.4142135623730951}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":53,"docs":{"1447":{"tf":1.0},"173":{"tf":1.0},"18":{"tf":1.0},"22":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"292":{"tf":1.0},"329":{"tf":1.4142135623730951},"355":{"tf":1.0},"36":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"455":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"512":{"tf":1.0},"515":{"tf":1.4142135623730951},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"557":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"589":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"692":{"tf":1.4142135623730951},"739":{"tf":1.0},"756":{"tf":1.4142135623730951},"777":{"tf":1.4142135623730951},"807":{"tf":1.4142135623730951},"912":{"tf":1.4142135623730951},"95":{"tf":1.0}}},"p":{"df":10,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":1.0},"1330":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.449489742783178}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"767":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1467":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1495":{"tf":1.0},"1528":{"tf":1.4142135623730951},"248":{"tf":1.0},"451":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"1142":{"tf":1.0},"1493":{"tf":1.0},"1528":{"tf":1.0},"506":{"tf":1.0},"72":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1171":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1471":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1070":{"tf":1.0},"1102":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1083":{"tf":1.0},"1505":{"tf":1.4142135623730951},"304":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}}}}},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1155":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1154":{"tf":2.8284271247461903},"1155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"1153":{"tf":1.4142135623730951},"1154":{"tf":2.449489742783178},"1155":{"tf":2.0},"1156":{"tf":2.23606797749979},"1158":{"tf":1.0}}}},"df":12,"docs":{"1137":{"tf":1.0},"1219":{"tf":1.0},"1221":{"tf":1.0},"1298":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":1.0},"257":{"tf":1.0},"290":{"tf":1.0},"386":{"tf":1.0},"481":{"tf":1.4142135623730951},"620":{"tf":1.0},"99":{"tf":1.0}}}}}},"p":{"df":4,"docs":{"1510":{"tf":1.0},"1520":{"tf":1.0},"1530":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":2,"docs":{"1161":{"tf":1.0},"299":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":323,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1043":{"tf":1.0},"1047":{"tf":1.0},"1052":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1084":{"tf":1.4142135623730951},"1088":{"tf":1.4142135623730951},"1094":{"tf":1.0},"111":{"tf":1.4142135623730951},"1110":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"112":{"tf":2.449489742783178},"1124":{"tf":1.0},"1135":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"116":{"tf":1.0},"1161":{"tf":1.0},"1165":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1180":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.7320508075688772},"120":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.4142135623730951},"1225":{"tf":1.0},"124":{"tf":2.0},"1242":{"tf":1.0},"127":{"tf":3.3166247903554},"1278":{"tf":1.0},"1300":{"tf":2.23606797749979},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1310":{"tf":2.0},"1318":{"tf":2.0},"132":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1323":{"tf":4.0},"1325":{"tf":1.7320508075688772},"1328":{"tf":2.6457513110645907},"1330":{"tf":2.449489742783178},"1332":{"tf":3.0},"1336":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":3.3166247903554},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1346":{"tf":1.0},"1351":{"tf":2.0},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":2.23606797749979},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":2.0},"1378":{"tf":1.4142135623730951},"138":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":2.23606797749979},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.23606797749979},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.449489742783178},"1405":{"tf":1.0},"141":{"tf":2.0},"1410":{"tf":1.0},"1419":{"tf":4.0},"142":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"1425":{"tf":1.7320508075688772},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":2.23606797749979},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1467":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.4142135623730951},"1475":{"tf":1.0},"148":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1487":{"tf":1.0},"149":{"tf":1.7320508075688772},"150":{"tf":2.449489742783178},"1500":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"1512":{"tf":1.0},"1515":{"tf":2.0},"1517":{"tf":1.0},"152":{"tf":1.0},"1522":{"tf":1.4142135623730951},"1529":{"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.7320508075688772},"161":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"192":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"208":{"tf":2.0},"209":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":2.0},"213":{"tf":1.4142135623730951},"214":{"tf":2.0},"215":{"tf":1.7320508075688772},"216":{"tf":1.7320508075688772},"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":2.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"255":{"tf":1.7320508075688772},"256":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.4142135623730951},"264":{"tf":1.0},"268":{"tf":2.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.0},"271":{"tf":1.0},"274":{"tf":2.0},"276":{"tf":1.0},"280":{"tf":1.0},"288":{"tf":1.7320508075688772},"298":{"tf":1.0},"30":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":1.7320508075688772},"327":{"tf":1.0},"332":{"tf":1.4142135623730951},"335":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.4142135623730951},"388":{"tf":1.7320508075688772},"389":{"tf":1.0},"39":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":1.0},"40":{"tf":1.0},"406":{"tf":1.4142135623730951},"41":{"tf":1.0},"418":{"tf":1.7320508075688772},"419":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.7320508075688772},"421":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":1.0},"436":{"tf":1.0},"439":{"tf":1.0},"442":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.4142135623730951},"500":{"tf":1.0},"507":{"tf":1.0},"517":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"536":{"tf":1.0},"54":{"tf":1.0},"542":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.7320508075688772},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.7320508075688772},"587":{"tf":1.4142135623730951},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.4142135623730951},"61":{"tf":1.0},"622":{"tf":1.7320508075688772},"623":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":1.0},"640":{"tf":1.4142135623730951},"652":{"tf":1.7320508075688772},"653":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"656":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.0},"687":{"tf":1.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"71":{"tf":1.4142135623730951},"719":{"tf":1.0},"72":{"tf":2.8284271247461903},"721":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":2.23606797749979},"738":{"tf":1.4142135623730951},"742":{"tf":1.7320508075688772},"748":{"tf":1.0},"75":{"tf":1.4142135623730951},"76":{"tf":2.449489742783178},"768":{"tf":1.4142135623730951},"769":{"tf":1.0},"77":{"tf":2.6457513110645907},"771":{"tf":1.4142135623730951},"773":{"tf":1.0},"79":{"tf":1.4142135623730951},"794":{"tf":1.7320508075688772},"8":{"tf":2.0},"80":{"tf":2.23606797749979},"804":{"tf":1.0},"805":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"819":{"tf":1.0},"822":{"tf":1.7320508075688772},"827":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"873":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":3.3166247903554},"881":{"tf":1.0},"882":{"tf":1.0},"889":{"tf":1.0},"89":{"tf":1.4142135623730951},"921":{"tf":1.0},"924":{"tf":1.0},"926":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"986":{"tf":1.0},"987":{"tf":1.0},"989":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"845":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"845":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"860":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1374":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"r":{"df":2,"docs":{"1361":{"tf":1.4142135623730951},"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}}},"df":6,"docs":{"332":{"tf":1.4142135623730951},"418":{"tf":1.4142135623730951},"515":{"tf":1.0},"536":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"75":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1314":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.7320508075688772}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1151":{"tf":1.0},"507":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"331":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"500":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":18,"docs":{"1179":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"430":{"tf":2.0},"433":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"431":{"tf":2.0},"540":{"tf":1.0},"543":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1351":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"507":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":32,"docs":{"1043":{"tf":1.0},"1140":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"1529":{"tf":1.0},"167":{"tf":1.0},"181":{"tf":1.0},"356":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"519":{"tf":1.0},"54":{"tf":1.0},"590":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.4142135623730951},"696":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"76":{"tf":1.0},"773":{"tf":1.0},"779":{"tf":1.4142135623730951},"80":{"tf":1.0},"802":{"tf":1.0},"82":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"92":{"tf":1.0},"924":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"782":{"tf":1.0}}},"df":4,"docs":{"1390":{"tf":1.4142135623730951},"28":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1528":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":7,"docs":{"1072":{"tf":1.0},"1278":{"tf":1.0},"1355":{"tf":1.0},"1490":{"tf":1.4142135623730951},"339":{"tf":1.0},"491":{"tf":1.0},"566":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":5,"docs":{"29":{"tf":1.0},"47":{"tf":1.0},"800":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":9,"docs":{"1042":{"tf":1.0},"1052":{"tf":1.0},"1194":{"tf":1.0},"1450":{"tf":1.0},"1515":{"tf":1.0},"20":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"989":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":13,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1099":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1404":{"tf":1.7320508075688772},"36":{"tf":1.0},"37":{"tf":1.0},"857":{"tf":1.4142135623730951},"860":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}}}}},"u":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"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":{"760":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}}}},"df":3,"docs":{"109":{"tf":1.0},"1119":{"tf":1.0},"841":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":138,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1013":{"tf":1.0},"1014":{"tf":2.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1019":{"tf":1.0},"1020":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1025":{"tf":1.0},"1026":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1031":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1037":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1040":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"1049":{"tf":1.0},"1050":{"tf":1.0},"1051":{"tf":1.0},"1052":{"tf":1.0},"1053":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1173":{"tf":1.0},"1176":{"tf":1.0},"1194":{"tf":1.0},"1210":{"tf":1.0},"1212":{"tf":1.0},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1237":{"tf":1.0},"1262":{"tf":1.0},"127":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1403":{"tf":1.0},"1410":{"tf":1.0},"1415":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1432":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1458":{"tf":1.0},"1463":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"1503":{"tf":1.0},"1514":{"tf":1.4142135623730951},"1531":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"2":{"tf":1.4142135623730951},"21":{"tf":1.0},"212":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"248":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"341":{"tf":1.4142135623730951},"41":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"445":{"tf":1.0},"453":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.0},"56":{"tf":1.7320508075688772},"568":{"tf":1.4142135623730951},"617":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"724":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.0},"781":{"tf":1.4142135623730951},"782":{"tf":1.0},"792":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"84":{"tf":1.0},"841":{"tf":1.0},"85":{"tf":1.0},"851":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.7320508075688772},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"919":{"tf":1.0},"924":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.0},"981":{"tf":1.0},"984":{"tf":1.7320508075688772},"995":{"tf":1.0}},"i":{"df":5,"docs":{"1010":{"tf":1.0},"1029":{"tf":1.0},"1254":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"984":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"x":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":4,"docs":{"1268":{"tf":1.4142135623730951},"465":{"tf":1.7320508075688772},"471":{"tf":1.0},"539":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"465":{"tf":1.4142135623730951},"471":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":4,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"1268":{"tf":1.0},"465":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"539":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}},"df":1,"docs":{"1302":{"tf":2.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.0}}},"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"709":{"tf":1.4142135623730951}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"666":{"tf":1.4142135623730951},"667":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"999":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"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":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"532":{"tf":1.4142135623730951}}}},"df":46,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1003":{"tf":1.0},"1011":{"tf":1.0},"1115":{"tf":1.0},"1213":{"tf":1.0},"1220":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1298":{"tf":1.0},"1328":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1423":{"tf":1.0},"1456":{"tf":1.0},"1498":{"tf":1.0},"15":{"tf":1.0},"1510":{"tf":1.0},"171":{"tf":1.0},"199":{"tf":1.0},"219":{"tf":1.4142135623730951},"362":{"tf":1.0},"363":{"tf":1.0},"370":{"tf":1.4142135623730951},"372":{"tf":1.0},"407":{"tf":1.0},"524":{"tf":1.0},"57":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"604":{"tf":1.4142135623730951},"606":{"tf":1.0},"641":{"tf":1.0},"701":{"tf":1.0},"756":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"808":{"tf":1.0},"827":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"996":{"tf":1.0}}}}}},"v":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"1017":{"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":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1212":{"tf":1.0}}}},"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"'":{".":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"696":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"822":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1302":{"tf":1.0},"696":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":102,"docs":{"1044":{"tf":1.4142135623730951},"1108":{"tf":2.0},"1109":{"tf":1.4142135623730951},"1110":{"tf":1.7320508075688772},"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1113":{"tf":1.0},"1114":{"tf":1.0},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.7320508075688772},"1125":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1128":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1197":{"tf":1.0},"127":{"tf":1.0},"129":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":2.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1323":{"tf":2.0},"1324":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1333":{"tf":1.0},"134":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1441":{"tf":1.0},"1456":{"tf":1.0},"1460":{"tf":1.0},"151":{"tf":1.4142135623730951},"178":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"205":{"tf":1.0},"211":{"tf":1.0},"225":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":2.0},"284":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"392":{"tf":2.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"398":{"tf":1.0},"446":{"tf":1.0},"49":{"tf":1.4142135623730951},"495":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"521":{"tf":1.4142135623730951},"593":{"tf":1.0},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"632":{"tf":1.0},"676":{"tf":1.0},"696":{"tf":1.4142135623730951},"698":{"tf":1.4142135623730951},"72":{"tf":1.0},"738":{"tf":2.23606797749979},"739":{"tf":1.0},"742":{"tf":1.7320508075688772},"748":{"tf":1.4142135623730951},"759":{"tf":1.0},"792":{"tf":1.0},"802":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":2.8284271247461903},"833":{"tf":1.0},"98":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"521":{"tf":1.0},"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"t":{"df":1,"docs":{"1330":{"tf":1.0}}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"805":{"tf":1.0}}}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"f":{"df":2,"docs":{"1095":{"tf":1.0},"1097":{"tf":1.0}}}}},"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.4142135623730951}}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":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":{"997":{"tf":1.0}}},"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"294":{"tf":1.0},"298":{"tf":1.0}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"845":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"238":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"\"":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1140":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":36,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":2.449489742783178},"1078":{"tf":2.0},"1079":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.7320508075688772},"1087":{"tf":1.0},"1089":{"tf":1.4142135623730951},"1295":{"tf":2.23606797749979},"1296":{"tf":1.7320508075688772},"1297":{"tf":2.449489742783178},"1298":{"tf":2.0},"1299":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1303":{"tf":1.0},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1308":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.0},"1311":{"tf":1.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1521":{"tf":1.4142135623730951},"1522":{"tf":2.0},"16":{"tf":1.0},"64":{"tf":1.0},"779":{"tf":1.0},"871":{"tf":1.0}},"e":{"(":{"d":{"b":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1306":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"153":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"595":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":114,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1067":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1093":{"tf":1.4142135623730951},"11":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.0},"1145":{"tf":2.449489742783178},"1149":{"tf":1.0},"116":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":1.0},"1256":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1290":{"tf":1.0},"1298":{"tf":1.0},"1312":{"tf":1.0},"132":{"tf":1.0},"1336":{"tf":1.0},"1342":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1422":{"tf":1.0},"1430":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.7320508075688772},"1453":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1456":{"tf":1.7320508075688772},"153":{"tf":1.7320508075688772},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"21":{"tf":1.0},"312":{"tf":1.0},"332":{"tf":1.0},"34":{"tf":1.7320508075688772},"365":{"tf":1.4142135623730951},"37":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"380":{"tf":1.0},"384":{"tf":1.0},"403":{"tf":1.7320508075688772},"404":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"423":{"tf":1.0},"45":{"tf":1.4142135623730951},"458":{"tf":2.23606797749979},"46":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"486":{"tf":1.0},"489":{"tf":1.4142135623730951},"49":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":1.4142135623730951},"519":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"532":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"548":{"tf":1.0},"55":{"tf":1.4142135623730951},"575":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.7320508075688772},"638":{"tf":2.0},"648":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.4142135623730951},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"709":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.0},"759":{"tf":1.4142135623730951},"760":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.7320508075688772}}},"df":0,"docs":{},"e":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":16,"docs":{"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1304":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"df":31,"docs":{"1045":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"1339":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"53":{"tf":1.4142135623730951},"739":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"765":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.7320508075688772},"783":{"tf":1.0},"785":{"tf":1.0},"791":{"tf":1.0},"792":{"tf":1.0},"808":{"tf":1.4142135623730951},"816":{"tf":2.23606797749979},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"934":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"648":{"tf":1.0},"705":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"y":{"df":4,"docs":{"1399":{"tf":1.0},"1507":{"tf":1.0},"812":{"tf":1.0},"933":{"tf":1.0}}}},"df":23,"docs":{"132":{"tf":2.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1530":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.0},"210":{"tf":1.4142135623730951},"226":{"tf":1.0},"73":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"420":{"tf":1.0},"53":{"tf":1.0},"654":{"tf":1.0},"856":{"tf":1.4142135623730951},"859":{"tf":1.0}}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"115":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"g":{"!":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":20,"docs":{"1191":{"tf":1.0},"1198":{"tf":1.4142135623730951},"1199":{"tf":1.4142135623730951},"1293":{"tf":1.4142135623730951},"1428":{"tf":1.0},"1439":{"tf":1.0},"1444":{"tf":1.0},"1496":{"tf":1.4142135623730951},"297":{"tf":1.0},"299":{"tf":1.0},"311":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"448":{"tf":1.4142135623730951},"449":{"tf":1.4142135623730951},"450":{"tf":1.7320508075688772},"66":{"tf":1.0},"679":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"935":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":3,"docs":{"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"df":6,"docs":{"1041":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1441":{"tf":1.0},"21":{"tf":1.0},"308":{"tf":1.0},"901":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"d":{"df":3,"docs":{"1164":{"tf":1.0},"1166":{"tf":1.0},"1422":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":1,"docs":{"669":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"1505":{"tf":1.0},"434":{"tf":1.0},"489":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1139":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"256":{"tf":1.0},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"38":{"tf":1.0}}}}}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":64,"docs":{"1015":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1079":{"tf":1.7320508075688772},"1081":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"124":{"tf":1.0},"1254":{"tf":1.0},"129":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1304":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.0},"1355":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.7320508075688772},"1440":{"tf":1.0},"1441":{"tf":1.0},"1449":{"tf":2.449489742783178},"1452":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"272":{"tf":1.0},"283":{"tf":1.4142135623730951},"285":{"tf":1.0},"294":{"tf":2.0},"298":{"tf":1.0},"338":{"tf":1.4142135623730951},"361":{"tf":1.0},"366":{"tf":1.0},"374":{"tf":1.0},"418":{"tf":1.0},"473":{"tf":1.0},"519":{"tf":1.0},"521":{"tf":1.4142135623730951},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"565":{"tf":1.4142135623730951},"595":{"tf":1.0},"600":{"tf":1.0},"696":{"tf":1.0},"698":{"tf":1.4142135623730951},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"72":{"tf":1.0},"742":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.4142135623730951},"928":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.4142135623730951},"937":{"tf":1.0},"996":{"tf":1.0}}}}}},"df":46,"docs":{"1103":{"tf":1.0},"1120":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1146":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.0},"1169":{"tf":1.7320508075688772},"1170":{"tf":1.0},"1171":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":2.449489742783178},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.23606797749979},"1379":{"tf":1.0},"1381":{"tf":1.7320508075688772},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.7320508075688772},"1392":{"tf":2.23606797749979},"1394":{"tf":1.7320508075688772},"1402":{"tf":2.23606797749979},"1404":{"tf":3.3166247903554},"576":{"tf":1.0},"588":{"tf":2.0},"617":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":2.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":20,"docs":{"1108":{"tf":1.0},"1174":{"tf":1.4142135623730951},"1384":{"tf":1.0},"147":{"tf":1.0},"155":{"tf":1.0},"27":{"tf":1.0},"289":{"tf":1.0},"383":{"tf":1.0},"47":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"774":{"tf":1.0},"80":{"tf":1.0},"800":{"tf":1.4142135623730951},"804":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.0},"829":{"tf":1.0},"887":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":22,"docs":{"1120":{"tf":1.4142135623730951},"127":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1453":{"tf":1.0},"151":{"tf":1.7320508075688772},"155":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"182":{"tf":1.0},"332":{"tf":1.0},"354":{"tf":1.0},"377":{"tf":1.4142135623730951},"47":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"610":{"tf":1.4142135623730951},"72":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.4142135623730951},"759":{"tf":1.0},"833":{"tf":1.0},"938":{"tf":1.0}}}}}},"s":{"/":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"424":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"1094":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":8,"docs":{"11":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0}}},"t":{"df":3,"docs":{"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1515":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"v":{"df":4,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"151":{"tf":1.0},"859":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"33":{"tf":1.0},"815":{"tf":1.0},"856":{"tf":1.0},"859":{"tf":1.0},"883":{"tf":1.0}},"i":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"v":{"df":1,"docs":{"246":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":5,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1381":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"68":{"tf":1.0},"88":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":3,"docs":{"116":{"tf":1.0},"1194":{"tf":1.0},"915":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":24,"docs":{"1011":{"tf":1.0},"106":{"tf":1.0},"1061":{"tf":1.0},"107":{"tf":1.0},"1087":{"tf":1.0},"1094":{"tf":1.0},"115":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"248":{"tf":1.0},"258":{"tf":1.7320508075688772},"259":{"tf":1.0},"292":{"tf":1.0},"348":{"tf":1.0},"36":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"682":{"tf":1.0},"911":{"tf":1.0},"942":{"tf":1.0},"969":{"tf":1.0},"972":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":18,"docs":{"1054":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1175":{"tf":1.0},"1211":{"tf":1.0},"1215":{"tf":1.0},"1284":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951},"680":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"822":{"tf":1.0},"929":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":6,"docs":{"1135":{"tf":1.0},"1449":{"tf":1.0},"1506":{"tf":1.7320508075688772},"1509":{"tf":1.0},"545":{"tf":2.0},"82":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"145":{"tf":1.0},"950":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":8,"docs":{"1253":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.0},"925":{"tf":1.0}}}}},"s":{"c":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"b":{"df":4,"docs":{"1211":{"tf":1.0},"47":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}},"e":{"(":{"'":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1290":{"tf":1.0},"1369":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":108,"docs":{"1000":{"tf":1.0},"1055":{"tf":1.0},"108":{"tf":1.0},"1083":{"tf":1.0},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1115":{"tf":1.0},"113":{"tf":1.0},"120":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"1310":{"tf":1.0},"132":{"tf":2.449489742783178},"1323":{"tf":1.0},"1332":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"1351":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"138":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1458":{"tf":1.0},"1507":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"259":{"tf":1.0},"264":{"tf":1.7320508075688772},"288":{"tf":1.0},"292":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"51":{"tf":1.0},"532":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.0},"709":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"73":{"tf":1.4142135623730951},"739":{"tf":1.0},"742":{"tf":2.0},"752":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":2.0},"762":{"tf":1.0},"77":{"tf":2.449489742783178},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"80":{"tf":2.0},"803":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.4142135623730951},"809":{"tf":1.0},"81":{"tf":2.449489742783178},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.4142135623730951},"847":{"tf":1.0},"854":{"tf":1.4142135623730951},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.7320508075688772},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"879":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":1.0},"946":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"0":{"tf":1.0},"13":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1304":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"20":{"tf":1.0},"204":{"tf":1.4142135623730951},"23":{"tf":1.4142135623730951},"357":{"tf":1.0},"591":{"tf":1.0},"63":{"tf":1.0},"852":{"tf":1.0},"910":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0}}}},"r":{"df":3,"docs":{"802":{"tf":1.0},"976":{"tf":1.0},"994":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":21,"docs":{"1437":{"tf":1.4142135623730951},"1439":{"tf":2.0},"1440":{"tf":2.0},"1442":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"291":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.4142135623730951},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"899":{"tf":2.449489742783178},"900":{"tf":2.449489742783178},"902":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":32,"docs":{"1013":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1347":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1406":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"196":{"tf":1.0},"299":{"tf":1.0},"369":{"tf":1.0},"449":{"tf":1.0},"51":{"tf":1.0},"603":{"tf":1.0},"679":{"tf":1.0},"747":{"tf":1.0},"771":{"tf":1.0},"851":{"tf":1.0},"87":{"tf":2.0},"92":{"tf":1.0},"93":{"tf":1.0},"980":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"132":{"tf":1.0},"1336":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"1163":{"tf":1.0},"1175":{"tf":1.0},"1263":{"tf":1.0},"1432":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0},"928":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"1450":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0},"936":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"921":{"tf":1.0}}}}}}}}}}},"v":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}}}},"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1454":{"tf":1.0}}}}}},"df":5,"docs":{"115":{"tf":1.0},"1343":{"tf":1.0},"1441":{"tf":1.0},"348":{"tf":1.0},"930":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":28,"docs":{"1":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1089":{"tf":1.0},"1194":{"tf":1.0},"1343":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"250":{"tf":1.0},"288":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"391":{"tf":1.0},"420":{"tf":1.4142135623730951},"554":{"tf":1.7320508075688772},"573":{"tf":1.4142135623730951},"625":{"tf":1.0},"654":{"tf":1.4142135623730951},"758":{"tf":1.0},"928":{"tf":1.7320508075688772},"930":{"tf":1.0},"968":{"tf":1.4142135623730951},"976":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"t":{"df":1,"docs":{"979":{"tf":1.4142135623730951}}}}}}}},"c":{"df":0,"docs":{},"t":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":18,"docs":{"1376":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.0},"1394":{"tf":2.0},"1402":{"tf":1.0},"1404":{"tf":2.8284271247461903},"599":{"tf":1.4142135623730951},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"608":{"tf":1.0},"617":{"tf":1.4142135623730951},"706":{"tf":1.0},"707":{"tf":1.0},"725":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"706":{"tf":1.0},"707":{"tf":1.0}}}}},"df":0,"docs":{}}}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":2,"docs":{"1194":{"tf":1.0},"976":{"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":{"1014":{"tf":1.0},"1119":{"tf":1.0},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"1277":{"tf":1.4142135623730951},"129":{"tf":1.0},"1298":{"tf":1.0},"1333":{"tf":1.0},"1343":{"tf":1.0},"1467":{"tf":1.0},"201":{"tf":1.4142135623730951},"21":{"tf":1.0},"220":{"tf":1.7320508075688772},"289":{"tf":1.0},"487":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":4,"docs":{"1475":{"tf":1.0},"246":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1014":{"tf":1.0},"1028":{"tf":1.0},"24":{"tf":1.0},"760":{"tf":1.0},"82":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":27,"docs":{"1015":{"tf":1.4142135623730951},"1028":{"tf":2.0},"1029":{"tf":1.0},"1031":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.7320508075688772},"57":{"tf":1.0},"571":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":2,"docs":{"1340":{"tf":1.0},"585":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"302":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":8,"docs":{"1091":{"tf":1.0},"1156":{"tf":1.0},"1297":{"tf":1.0},"185":{"tf":1.0},"239":{"tf":1.0},"494":{"tf":1.0},"676":{"tf":1.0},"684":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":67,"docs":{"1043":{"tf":1.0},"1059":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0},"1209":{"tf":1.0},"1228":{"tf":2.0},"124":{"tf":1.0},"1320":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.7320508075688772},"1340":{"tf":1.0},"136":{"tf":1.7320508075688772},"1369":{"tf":1.0},"137":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.7320508075688772},"1426":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"1462":{"tf":2.23606797749979},"1464":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1528":{"tf":1.0},"161":{"tf":1.0},"177":{"tf":1.4142135623730951},"184":{"tf":1.0},"190":{"tf":1.4142135623730951},"206":{"tf":1.0},"210":{"tf":1.0},"280":{"tf":1.0},"317":{"tf":1.0},"352":{"tf":1.0},"356":{"tf":1.0},"43":{"tf":1.0},"536":{"tf":1.4142135623730951},"584":{"tf":1.0},"590":{"tf":1.0},"682":{"tf":1.0},"71":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"79":{"tf":1.0},"831":{"tf":1.0},"85":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"92":{"tf":1.4142135623730951},"924":{"tf":1.0},"950":{"tf":1.0},"969":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"128":{"tf":1.0},"1439":{"tf":1.0},"242":{"tf":1.0},"294":{"tf":1.4142135623730951},"298":{"tf":1.0},"899":{"tf":1.0},"911":{"tf":1.0},"932":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"228":{"tf":1.0}},"e":{"df":4,"docs":{"221":{"tf":1.0},"228":{"tf":1.0},"782":{"tf":1.0},"954":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1099":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1164":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"96":{"tf":1.0}},"i":{"df":5,"docs":{"1212":{"tf":1.0},"1227":{"tf":1.0},"1249":{"tf":1.4142135623730951},"374":{"tf":1.0},"607":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"884":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":6,"docs":{"1062":{"tf":1.0},"1101":{"tf":1.0},"1489":{"tf":1.0},"371":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":2,"docs":{"125":{"tf":1.0},"1498":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"860":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"836":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1062":{"tf":1.0},"1068":{"tf":1.0},"108":{"tf":1.0},"1208":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1452":{"tf":1.0},"214":{"tf":1.4142135623730951},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"305":{"tf":1.4142135623730951},"54":{"tf":1.0},"59":{"tf":1.0},"935":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"256":{"tf":1.0},"38":{"tf":1.0},"91":{"tf":1.0}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"925":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":90,"docs":{"1002":{"tf":1.7320508075688772},"1003":{"tf":1.4142135623730951},"1004":{"tf":2.0},"1006":{"tf":1.0},"1007":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1053":{"tf":1.0},"1075":{"tf":1.0},"1196":{"tf":1.0},"1214":{"tf":1.0},"1235":{"tf":2.0},"1247":{"tf":1.0},"1249":{"tf":1.7320508075688772},"1250":{"tf":2.0},"1251":{"tf":2.0},"1261":{"tf":1.4142135623730951},"128":{"tf":3.4641016151377544},"129":{"tf":2.8284271247461903},"130":{"tf":1.4142135623730951},"1333":{"tf":3.4641016151377544},"1334":{"tf":2.8284271247461903},"143":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1473":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":2.449489742783178},"1477":{"tf":2.23606797749979},"165":{"tf":2.23606797749979},"169":{"tf":1.0},"172":{"tf":1.0},"202":{"tf":1.4142135623730951},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.23606797749979},"231":{"tf":2.23606797749979},"232":{"tf":2.449489742783178},"233":{"tf":1.0},"234":{"tf":2.8284271247461903},"235":{"tf":2.8284271247461903},"236":{"tf":2.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":2.0},"240":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"242":{"tf":3.605551275463989},"243":{"tf":3.7416573867739413},"244":{"tf":1.4142135623730951},"245":{"tf":2.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.7320508075688772},"249":{"tf":1.7320508075688772},"250":{"tf":1.4142135623730951},"251":{"tf":1.0},"252":{"tf":2.0},"253":{"tf":1.7320508075688772},"254":{"tf":2.23606797749979},"255":{"tf":2.6457513110645907},"256":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":2.0},"773":{"tf":1.0},"896":{"tf":2.23606797749979},"908":{"tf":1.0},"909":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":2.0},"940":{"tf":1.0},"943":{"tf":1.4142135623730951},"944":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"95":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"976":{"tf":3.0},"977":{"tf":1.0},"979":{"tf":1.4142135623730951},"980":{"tf":1.4142135623730951},"992":{"tf":1.0},"994":{"tf":1.0}},"f":{"df":1,"docs":{"115":{"tf":1.0}}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"937":{"tf":1.0}}}}},"_":{"c":{"df":0,"docs":{},"m":{"d":{"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"255":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":28,"docs":{"1227":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1474":{"tf":2.449489742783178},"165":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"245":{"tf":2.449489742783178},"246":{"tf":2.449489742783178},"248":{"tf":1.4142135623730951},"249":{"tf":1.0},"253":{"tf":2.23606797749979},"763":{"tf":1.0},"896":{"tf":1.4142135623730951},"918":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"371":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"991":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1361":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":14,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1522":{"tf":1.0}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"522":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1351":{"tf":1.0}},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1352":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1352":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":10,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1342":{"tf":1.0},"139":{"tf":1.0},"1426":{"tf":1.7320508075688772},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"179":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"1":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"2":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1170":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}},"[":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"\"":{"]":{"[":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"1302":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"588":{"tf":1.4142135623730951},"656":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1302":{"tf":2.0},"657":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1094":{"tf":1.0},"288":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":9,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1517":{"tf":1.0},"725":{"tf":1.0},"846":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":2,"docs":{"1143":{"tf":1.4142135623730951},"700":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"701":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"df":83,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1142":{"tf":1.7320508075688772},"1143":{"tf":2.0},"1151":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1384":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":1.0},"210":{"tf":1.4142135623730951},"224":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"371":{"tf":1.4142135623730951},"400":{"tf":1.4142135623730951},"419":{"tf":1.0},"45":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"581":{"tf":1.0},"605":{"tf":1.4142135623730951},"616":{"tf":1.0},"634":{"tf":1.4142135623730951},"653":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"723":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.4142135623730951},"738":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"796":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"845":{"tf":3.0},"911":{"tf":1.0},"921":{"tf":1.0},"997":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1078":{"tf":1.0},"682":{"tf":1.4142135623730951}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1315":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":11,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.4142135623730951},"1307":{"tf":2.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1403":{"tf":1.0},"1522":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":13,"docs":{"1209":{"tf":1.0},"1421":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"379":{"tf":1.0},"397":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"612":{"tf":1.0},"631":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"847":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":25,"docs":{"134":{"tf":2.449489742783178},"1345":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.7320508075688772},"141":{"tf":1.0},"1419":{"tf":2.23606797749979},"142":{"tf":2.0},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"216":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"88":{"tf":2.0}}}}}}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"576":{"tf":1.0},"625":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":2.449489742783178},"605":{"tf":1.0},"612":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":5,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"640":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"641":{"tf":1.0},"642":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"391":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":486,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.4142135623730951},"1007":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1020":{"tf":1.0},"1027":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1054":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1068":{"tf":1.0},"1072":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.4142135623730951},"1085":{"tf":1.0},"1086":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1091":{"tf":1.0},"1092":{"tf":1.0},"1094":{"tf":2.0},"1103":{"tf":1.0},"1108":{"tf":1.4142135623730951},"1109":{"tf":1.0},"111":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1115":{"tf":1.4142135623730951},"113":{"tf":1.0},"1135":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":2.23606797749979},"1142":{"tf":2.23606797749979},"1143":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"118":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1186":{"tf":1.0},"119":{"tf":1.0},"1194":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1209":{"tf":3.0},"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"122":{"tf":1.0},"1228":{"tf":1.0},"1231":{"tf":1.7320508075688772},"1232":{"tf":1.7320508075688772},"1237":{"tf":1.4142135623730951},"1238":{"tf":1.7320508075688772},"1240":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1255":{"tf":1.0},"1256":{"tf":1.0},"1260":{"tf":1.0},"1268":{"tf":1.0},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":2.23606797749979},"1298":{"tf":1.0},"1300":{"tf":1.7320508075688772},"1301":{"tf":2.6457513110645907},"1302":{"tf":2.6457513110645907},"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1307":{"tf":1.0},"1312":{"tf":2.6457513110645907},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1316":{"tf":1.0},"1318":{"tf":2.23606797749979},"1320":{"tf":1.4142135623730951},"1322":{"tf":1.4142135623730951},"1323":{"tf":3.7416573867739413},"1324":{"tf":3.4641016151377544},"1325":{"tf":2.8284271247461903},"1326":{"tf":2.449489742783178},"1328":{"tf":2.0},"1329":{"tf":2.0},"133":{"tf":1.4142135623730951},"1330":{"tf":3.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.7320508075688772},"1339":{"tf":1.4142135623730951},"134":{"tf":3.4641016151377544},"1340":{"tf":2.449489742783178},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":2.8284271247461903},"1350":{"tf":1.4142135623730951},"1351":{"tf":2.0},"1352":{"tf":2.23606797749979},"1353":{"tf":2.0},"1355":{"tf":1.0},"136":{"tf":3.3166247903554},"1361":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1365":{"tf":2.449489742783178},"1367":{"tf":1.0},"1369":{"tf":2.6457513110645907},"137":{"tf":2.23606797749979},"1370":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1374":{"tf":2.0},"1375":{"tf":2.23606797749979},"1376":{"tf":2.0},"1378":{"tf":1.4142135623730951},"138":{"tf":2.0},"1384":{"tf":1.0},"1387":{"tf":1.4142135623730951},"1388":{"tf":2.449489742783178},"139":{"tf":1.0},"1390":{"tf":3.1622776601683795},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1395":{"tf":1.0},"1398":{"tf":1.0},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1403":{"tf":3.0},"1404":{"tf":3.605551275463989},"1405":{"tf":1.7320508075688772},"141":{"tf":2.449489742783178},"1415":{"tf":1.0},"1418":{"tf":2.0},"1419":{"tf":4.123105625617661},"142":{"tf":2.23606797749979},"1420":{"tf":3.1622776601683795},"1421":{"tf":3.3166247903554},"1422":{"tf":3.3166247903554},"1423":{"tf":3.1622776601683795},"1425":{"tf":3.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.0},"1436":{"tf":1.0},"145":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0},"146":{"tf":1.0},"1466":{"tf":1.0},"1469":{"tf":2.0},"147":{"tf":1.0},"1470":{"tf":2.0},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.0},"1478":{"tf":1.4142135623730951},"1479":{"tf":1.4142135623730951},"1480":{"tf":1.4142135623730951},"1481":{"tf":2.23606797749979},"1482":{"tf":1.4142135623730951},"1484":{"tf":1.7320508075688772},"1487":{"tf":1.4142135623730951},"149":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.7320508075688772},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.7320508075688772},"1515":{"tf":2.0},"1517":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.0},"1529":{"tf":2.0},"1530":{"tf":1.0},"156":{"tf":2.23606797749979},"16":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":2.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.4142135623730951},"173":{"tf":2.23606797749979},"174":{"tf":2.0},"175":{"tf":1.7320508075688772},"176":{"tf":2.0},"177":{"tf":2.0},"178":{"tf":1.4142135623730951},"179":{"tf":2.0},"18":{"tf":1.0},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"182":{"tf":2.23606797749979},"183":{"tf":1.0},"184":{"tf":1.7320508075688772},"185":{"tf":2.449489742783178},"186":{"tf":1.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":2.23606797749979},"193":{"tf":1.4142135623730951},"194":{"tf":2.6457513110645907},"195":{"tf":1.7320508075688772},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":2.0},"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":2.23606797749979},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"208":{"tf":2.6457513110645907},"209":{"tf":2.449489742783178},"210":{"tf":2.6457513110645907},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.4142135623730951},"220":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"226":{"tf":2.0},"228":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":2.23606797749979},"269":{"tf":1.7320508075688772},"27":{"tf":1.0},"270":{"tf":2.23606797749979},"271":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"276":{"tf":2.23606797749979},"277":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":2.0},"287":{"tf":1.0},"288":{"tf":1.7320508075688772},"289":{"tf":1.0},"29":{"tf":1.0},"299":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"31":{"tf":2.0},"33":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"349":{"tf":1.7320508075688772},"355":{"tf":1.0},"359":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.4142135623730951},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":2.449489742783178},"371":{"tf":2.6457513110645907},"372":{"tf":1.4142135623730951},"379":{"tf":1.0},"38":{"tf":1.0},"380":{"tf":1.0},"386":{"tf":1.0},"390":{"tf":1.4142135623730951},"391":{"tf":2.0},"395":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"4":{"tf":1.0},"40":{"tf":1.0},"400":{"tf":2.23606797749979},"411":{"tf":1.0},"412":{"tf":1.0},"414":{"tf":1.0},"419":{"tf":1.0},"42":{"tf":1.4142135623730951},"420":{"tf":1.0},"421":{"tf":1.0},"43":{"tf":1.7320508075688772},"44":{"tf":1.7320508075688772},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"452":{"tf":1.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.449489742783178},"480":{"tf":1.0},"50":{"tf":1.0},"507":{"tf":1.4142135623730951},"512":{"tf":1.0},"513":{"tf":1.0},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"522":{"tf":2.449489742783178},"523":{"tf":1.7320508075688772},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"558":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.7320508075688772},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"589":{"tf":1.0},"593":{"tf":1.0},"599":{"tf":1.0},"60":{"tf":1.0},"600":{"tf":1.4142135623730951},"601":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"604":{"tf":2.449489742783178},"605":{"tf":2.6457513110645907},"606":{"tf":1.4142135623730951},"61":{"tf":1.0},"612":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"624":{"tf":1.4142135623730951},"625":{"tf":2.0},"629":{"tf":1.0},"63":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"634":{"tf":2.23606797749979},"645":{"tf":1.0},"646":{"tf":1.0},"648":{"tf":1.0},"65":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.4142135623730951},"656":{"tf":2.23606797749979},"657":{"tf":1.7320508075688772},"66":{"tf":1.0},"662":{"tf":1.0},"689":{"tf":1.0},"690":{"tf":1.0},"696":{"tf":2.6457513110645907},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"699":{"tf":2.449489742783178},"700":{"tf":1.7320508075688772},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.7320508075688772},"71":{"tf":1.0},"710":{"tf":1.7320508075688772},"724":{"tf":1.0},"725":{"tf":1.4142135623730951},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"738":{"tf":1.7320508075688772},"741":{"tf":1.4142135623730951},"744":{"tf":2.0},"747":{"tf":2.0},"748":{"tf":1.0},"749":{"tf":1.4142135623730951},"751":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":2.0},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.0},"773":{"tf":1.4142135623730951},"774":{"tf":2.449489742783178},"775":{"tf":1.0},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.4142135623730951},"780":{"tf":2.0},"781":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"784":{"tf":1.4142135623730951},"785":{"tf":1.4142135623730951},"786":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"789":{"tf":1.4142135623730951},"790":{"tf":1.0},"791":{"tf":2.23606797749979},"792":{"tf":1.0},"793":{"tf":1.7320508075688772},"794":{"tf":2.8284271247461903},"795":{"tf":1.7320508075688772},"796":{"tf":1.7320508075688772},"797":{"tf":1.0},"798":{"tf":1.4142135623730951},"799":{"tf":2.23606797749979},"80":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"807":{"tf":1.0},"816":{"tf":1.0},"828":{"tf":1.4142135623730951},"829":{"tf":1.7320508075688772},"831":{"tf":1.7320508075688772},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.7320508075688772},"84":{"tf":1.0},"843":{"tf":1.7320508075688772},"845":{"tf":1.4142135623730951},"847":{"tf":2.0},"849":{"tf":1.4142135623730951},"850":{"tf":1.7320508075688772},"851":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"87":{"tf":3.3166247903554},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"875":{"tf":1.0},"88":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.4142135623730951},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"910":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":2.0},"915":{"tf":1.0},"916":{"tf":1.4142135623730951},"92":{"tf":1.0},"921":{"tf":2.23606797749979},"922":{"tf":1.4142135623730951},"932":{"tf":1.0},"933":{"tf":1.0},"956":{"tf":1.0},"970":{"tf":1.0},"974":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.4142135623730951}},"i":{"d":{"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"371":{"tf":1.0},"379":{"tf":1.0}},"}":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"349":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":4,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0},"522":{"tf":1.7320508075688772},"796":{"tf":1.4142135623730951}}}}},"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":1,"docs":{"87":{"tf":1.0}}}}}}}}},"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"787":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":5,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0},"1309":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"406":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"407":{"tf":1.0},"408":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"852":{"tf":1.0}},"e":{"df":3,"docs":{"1404":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":8,"docs":{"1456":{"tf":1.0},"1475":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"230":{"tf":1.0},"384":{"tf":1.0},"618":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":41,"docs":{"1109":{"tf":1.0},"1227":{"tf":1.0},"1233":{"tf":1.4142135623730951},"1235":{"tf":1.0},"1239":{"tf":1.4142135623730951},"1241":{"tf":1.4142135623730951},"1259":{"tf":1.0},"129":{"tf":2.449489742783178},"130":{"tf":1.0},"1333":{"tf":2.6457513110645907},"143":{"tf":1.0},"1474":{"tf":1.0},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0},"244":{"tf":1.7320508075688772},"245":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"374":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.4142135623730951},"773":{"tf":1.0},"833":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"999":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"'":{"df":0,"docs":{},"t":{"df":11,"docs":{"1051":{"tf":1.0},"1088":{"tf":1.0},"1287":{"tf":1.0},"1323":{"tf":1.0},"1490":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0},"908":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":7,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"141":{"tf":1.0},"1456":{"tf":1.0},"72":{"tf":1.0},"811":{"tf":1.0}}}},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"35":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":3,"docs":{"942":{"tf":1.0},"976":{"tf":1.4142135623730951},"978":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1513":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"1325":{"tf":1.0},"1432":{"tf":1.0},"728":{"tf":1.0},"804":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"935":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"65":{"tf":1.0},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}},"s":{"a":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"df":3,"docs":{"1474":{"tf":1.4142135623730951},"253":{"tf":1.0},"976":{"tf":1.0}},"s":{"df":1,"docs":{"985":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1336":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1399":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":10,"docs":{"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1161":{"tf":1.0},"1309":{"tf":1.0},"1476":{"tf":1.0},"249":{"tf":1.0},"769":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1122":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1507":{"tf":1.0},"303":{"tf":1.0},"368":{"tf":1.0},"375":{"tf":1.0},"43":{"tf":1.4142135623730951},"527":{"tf":1.0},"602":{"tf":1.0},"608":{"tf":1.0},"704":{"tf":1.0},"836":{"tf":1.0},"870":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"933":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"384":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"0":{"7":{"df":0,"docs":{},"f":{"c":{"1":{"df":0,"docs":{},"f":{"9":{"0":{"a":{"df":0,"docs":{},"e":{"7":{"df":1,"docs":{"987":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"9":{"b":{"df":25,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.4142135623730951},"224":{"tf":1.7320508075688772},"234":{"tf":1.0},"244":{"tf":1.0},"41":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"816":{"tf":1.0},"872":{"tf":2.0},"883":{"tf":1.4142135623730951},"894":{"tf":1.0},"913":{"tf":1.0},"934":{"tf":1.0},"987":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"6":{"a":{"c":{"1":{"0":{"b":{"df":1,"docs":{"779":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"c":{"4":{"4":{"2":{"9":{"8":{"df":0,"docs":{},"f":{"c":{"1":{"c":{"1":{"4":{"9":{"a":{"df":0,"docs":{},"f":{"b":{"df":0,"docs":{},"f":{"4":{"c":{"8":{"9":{"9":{"6":{"df":0,"docs":{},"f":{"b":{"9":{"2":{"4":{"2":{"7":{"a":{"df":0,"docs":{},"e":{"4":{"1":{"df":0,"docs":{},"e":{"4":{"6":{"4":{"9":{"b":{"9":{"3":{"4":{"c":{"a":{"4":{"9":{"5":{"9":{"9":{"1":{"b":{"7":{"8":{"5":{"2":{"b":{"8":{"5":{"5":{"df":2,"docs":{"1046":{"tf":1.0},"784":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"9":{"b":{"df":3,"docs":{"167":{"tf":1.7320508075688772},"224":{"tf":1.0},"41":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"h":{"df":48,"docs":{"1003":{"tf":1.0},"11":{"tf":1.0},"1144":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1189":{"tf":1.0},"1206":{"tf":1.0},"1246":{"tf":1.0},"1285":{"tf":1.0},"1310":{"tf":1.0},"1330":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"155":{"tf":1.0},"199":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"227":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"501":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"693":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"867":{"tf":1.0},"874":{"tf":1.0},"881":{"tf":1.0},"90":{"tf":1.0},"913":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"954":{"tf":1.4142135623730951},"968":{"tf":1.0},"97":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"998":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":4,"docs":{"1061":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"548":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0}}}}},"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1381":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"666":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1379":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"1148":{"tf":1.0},"1330":{"tf":2.6457513110645907},"1338":{"tf":2.0},"1339":{"tf":2.8284271247461903},"1340":{"tf":2.0},"1345":{"tf":2.6457513110645907},"1346":{"tf":1.7320508075688772},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.7320508075688772},"1359":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1500":{"tf":1.0},"1529":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"507":{"tf":1.0},"666":{"tf":1.7320508075688772},"956":{"tf":1.0},"962":{"tf":1.0}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"0":{"]":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1359":{"tf":1.0},"443":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":4,"docs":{"1356":{"tf":1.4142135623730951},"1359":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.4142135623730951}}}}}}}}}},"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":{"1076":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":87,"docs":{"1015":{"tf":1.4142135623730951},"1016":{"tf":2.0},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1035":{"tf":1.0},"1036":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":2.0},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"167":{"tf":1.0},"169":{"tf":1.0},"180":{"tf":1.0},"2":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"342":{"tf":1.7320508075688772},"389":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"557":{"tf":1.0},"560":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"569":{"tf":1.7320508075688772},"57":{"tf":1.0},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"652":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":2,"docs":{"1164":{"tf":1.0},"1169":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"100":{"tf":1.0},"115":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"88":{"tf":1.0}}}}},"df":22,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.4142135623730951},"135":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.8284271247461903},"1402":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1420":{"tf":1.0},"286":{"tf":1.0},"299":{"tf":1.0},"384":{"tf":1.7320508075688772},"554":{"tf":1.0},"618":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.449489742783178},"723":{"tf":2.449489742783178},"949":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"950":{"tf":1.0}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"d":{"df":5,"docs":{"1130":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"1080":{"tf":1.0},"1296":{"tf":1.0},"1309":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"1378":{"tf":1.7320508075688772},"1381":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1015":{"tf":1.0},"1017":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"959":{"tf":1.0}}}}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":14,"docs":{"1112":{"tf":2.23606797749979},"1116":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1332":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"507":{"tf":2.0},"65":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"766":{"tf":1.0},"767":{"tf":1.4142135623730951},"816":{"tf":1.0}}}}},"b":{"df":29,"docs":{"1323":{"tf":1.4142135623730951},"134":{"tf":2.0},"135":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.0},"1425":{"tf":1.0},"1426":{"tf":2.0},"185":{"tf":2.23606797749979},"206":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.0},"366":{"tf":2.23606797749979},"371":{"tf":2.0},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":2.23606797749979},"522":{"tf":2.0},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"797":{"tf":1.0},"838":{"tf":1.7320508075688772},"850":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":5,"docs":{"1092":{"tf":1.0},"600":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":5,"docs":{"1091":{"tf":1.0},"600":{"tf":1.0},"616":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":26,"docs":{"1091":{"tf":1.7320508075688772},"1092":{"tf":1.0},"1306":{"tf":1.0},"1326":{"tf":1.7320508075688772},"137":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1422":{"tf":2.23606797749979},"1425":{"tf":1.0},"1433":{"tf":1.0},"1476":{"tf":1.0},"186":{"tf":1.0},"194":{"tf":1.4142135623730951},"273":{"tf":1.0},"366":{"tf":1.4142135623730951},"381":{"tf":1.7320508075688772},"4":{"tf":1.0},"600":{"tf":1.4142135623730951},"614":{"tf":1.7320508075688772},"733":{"tf":1.0},"776":{"tf":1.7320508075688772},"789":{"tf":2.0},"790":{"tf":1.7320508075688772},"833":{"tf":1.0},"836":{"tf":1.0},"841":{"tf":1.4142135623730951},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1169":{"tf":1.0},"1200":{"tf":1.0},"261":{"tf":1.0},"451":{"tf":1.0},"517":{"tf":1.0},"694":{"tf":1.0},"911":{"tf":1.0}}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":88,"docs":{"1045":{"tf":1.0},"1050":{"tf":1.0},"1077":{"tf":1.4142135623730951},"108":{"tf":1.0},"1098":{"tf":1.0},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"1173":{"tf":1.0},"1185":{"tf":1.0},"1199":{"tf":1.4142135623730951},"1221":{"tf":1.0},"1222":{"tf":1.0},"1226":{"tf":1.0},"1263":{"tf":1.0},"1296":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.7320508075688772},"169":{"tf":1.0},"212":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.4142135623730951},"246":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.4142135623730951},"292":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"301":{"tf":1.7320508075688772},"304":{"tf":1.0},"306":{"tf":1.7320508075688772},"310":{"tf":1.7320508075688772},"314":{"tf":1.4142135623730951},"315":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.4142135623730951},"319":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.4142135623730951},"453":{"tf":1.0},"500":{"tf":1.0},"52":{"tf":1.0},"536":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"679":{"tf":1.4142135623730951},"728":{"tf":1.0},"874":{"tf":1.0},"896":{"tf":1.0},"897":{"tf":1.0},"899":{"tf":1.0},"90":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"911":{"tf":1.0},"915":{"tf":1.0},"929":{"tf":1.4142135623730951},"933":{"tf":1.0},"966":{"tf":1.4142135623730951},"969":{"tf":1.7320508075688772},"976":{"tf":1.4142135623730951},"984":{"tf":1.0},"989":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"113":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"=":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"892":{"tf":1.0}},"o":{"d":{"df":22,"docs":{"1045":{"tf":1.0},"1091":{"tf":1.0},"129":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1471":{"tf":1.0},"167":{"tf":1.0},"186":{"tf":1.0},"234":{"tf":1.4142135623730951},"236":{"tf":1.0},"272":{"tf":1.0},"376":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"609":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1457":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":21,"docs":{"1051":{"tf":1.0},"1106":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1505":{"tf":1.7320508075688772},"1520":{"tf":2.0},"1528":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.7320508075688772},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.4142135623730951},"541":{"tf":1.0},"892":{"tf":1.4142135623730951},"911":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1448":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"d":{"df":13,"docs":{"1263":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"225":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0},"759":{"tf":1.0},"802":{"tf":1.0},"813":{"tf":1.0},"815":{"tf":1.4142135623730951},"825":{"tf":1.0},"826":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":42,"docs":{"1102":{"tf":1.0},"1106":{"tf":1.0},"1149":{"tf":1.7320508075688772},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1285":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":2.0},"1445":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0},"284":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"315":{"tf":1.7320508075688772},"318":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.4142135623730951},"486":{"tf":1.0},"65":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"810":{"tf":1.4142135623730951},"899":{"tf":1.0},"900":{"tf":1.7320508075688772},"902":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":11,"docs":{"1197":{"tf":1.0},"2":{"tf":1.0},"213":{"tf":1.0},"245":{"tf":1.0},"47":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.0},"939":{"tf":1.7320508075688772},"942":{"tf":1.0}}},"df":0,"docs":{}}}},"g":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"151":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"154":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"1175":{"tf":1.0},"423":{"tf":1.0},"876":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":45,"docs":{"1":{"tf":1.0},"1109":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1421":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1465":{"tf":1.0},"1493":{"tf":1.0},"15":{"tf":1.0},"1528":{"tf":1.7320508075688772},"227":{"tf":1.0},"24":{"tf":1.0},"245":{"tf":1.0},"30":{"tf":1.0},"317":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.0},"461":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"511":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"663":{"tf":1.0},"728":{"tf":1.0},"741":{"tf":1.0},"79":{"tf":1.0},"882":{"tf":1.0},"910":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"1175":{"tf":1.0},"767":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"128":{"tf":1.0},"1323":{"tf":1.0},"1334":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"146":{"tf":1.0},"27":{"tf":1.0},"40":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1226":{"tf":1.0},"1403":{"tf":1.7320508075688772},"992":{"tf":1.0}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"918":{"tf":1.0},"925":{"tf":2.23606797749979},"969":{"tf":1.0}}}}},"y":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"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":{"1403":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1131":{"tf":1.0},"742":{"tf":1.0},"746":{"tf":2.23606797749979},"753":{"tf":1.0},"754":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"868":{"tf":1.4142135623730951},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"746":{"tf":1.0}}}}}},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},":":{":":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"\"":{")":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1449":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1212":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":65,"docs":{"1050":{"tf":1.0},"1054":{"tf":1.0},"1060":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1079":{"tf":1.0},"1086":{"tf":1.0},"113":{"tf":1.7320508075688772},"1159":{"tf":1.7320508075688772},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1215":{"tf":1.0},"125":{"tf":1.0},"1296":{"tf":1.0},"1341":{"tf":1.4142135623730951},"1342":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"1430":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1512":{"tf":1.0},"160":{"tf":1.0},"298":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"37":{"tf":1.0},"437":{"tf":1.4142135623730951},"554":{"tf":1.0},"563":{"tf":1.7320508075688772},"566":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0},"579":{"tf":1.4142135623730951},"581":{"tf":1.0},"660":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"935":{"tf":1.0},"963":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"f":{"df":6,"docs":{"1323":{"tf":1.4142135623730951},"1325":{"tf":2.0},"1328":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"286":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"q":{"df":1,"docs":{"1338":{"tf":1.0}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1027":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"r":{"(":{"df":2,"docs":{"286":{"tf":1.0},"299":{"tf":1.0}}},"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"442":{"tf":1.0},"507":{"tf":1.0},"82":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"299":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"382":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}}}}}},"`":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":2.23606797749979}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":3,"docs":{"1356":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":12,"docs":{"1127":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.0},"419":{"tf":1.7320508075688772},"477":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.0},"546":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"498":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":132,"docs":{"1127":{"tf":1.0},"1149":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"1171":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1278":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1281":{"tf":2.449489742783178},"1282":{"tf":1.7320508075688772},"1344":{"tf":1.4142135623730951},"1345":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1355":{"tf":2.6457513110645907},"1358":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.4142135623730951},"1367":{"tf":3.7416573867739413},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1393":{"tf":1.4142135623730951},"1394":{"tf":2.6457513110645907},"14":{"tf":1.0},"1401":{"tf":3.1622776601683795},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1439":{"tf":1.4142135623730951},"144":{"tf":1.0},"1457":{"tf":2.0},"1458":{"tf":1.7320508075688772},"1459":{"tf":1.7320508075688772},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1462":{"tf":1.4142135623730951},"1463":{"tf":1.7320508075688772},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1466":{"tf":1.4142135623730951},"1467":{"tf":1.4142135623730951},"1468":{"tf":1.7320508075688772},"1469":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.4142135623730951},"1472":{"tf":1.4142135623730951},"1473":{"tf":1.7320508075688772},"1474":{"tf":1.4142135623730951},"1475":{"tf":1.4142135623730951},"1476":{"tf":1.4142135623730951},"1477":{"tf":1.4142135623730951},"1478":{"tf":1.7320508075688772},"1479":{"tf":1.7320508075688772},"1480":{"tf":1.4142135623730951},"1481":{"tf":1.4142135623730951},"1482":{"tf":1.4142135623730951},"1483":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1485":{"tf":1.4142135623730951},"1486":{"tf":1.4142135623730951},"1487":{"tf":1.4142135623730951},"1488":{"tf":1.7320508075688772},"1489":{"tf":2.23606797749979},"1490":{"tf":2.23606797749979},"1491":{"tf":2.0},"1492":{"tf":1.7320508075688772},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":2.0},"1496":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"1501":{"tf":1.0},"1528":{"tf":1.4142135623730951},"243":{"tf":1.0},"261":{"tf":1.0},"286":{"tf":1.7320508075688772},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"327":{"tf":1.4142135623730951},"351":{"tf":1.0},"352":{"tf":1.7320508075688772},"353":{"tf":1.0},"359":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"380":{"tf":1.4142135623730951},"384":{"tf":1.7320508075688772},"419":{"tf":2.23606797749979},"442":{"tf":1.0},"463":{"tf":1.4142135623730951},"473":{"tf":1.0},"477":{"tf":1.7320508075688772},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"496":{"tf":1.4142135623730951},"497":{"tf":2.449489742783178},"498":{"tf":2.449489742783178},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"546":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"584":{"tf":1.7320508075688772},"585":{"tf":1.0},"593":{"tf":1.0},"613":{"tf":1.4142135623730951},"615":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":2.8284271247461903},"677":{"tf":1.4142135623730951},"678":{"tf":1.7320508075688772},"723":{"tf":2.0},"758":{"tf":1.0},"899":{"tf":1.4142135623730951},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"941":{"tf":1.7320508075688772},"950":{"tf":1.0}}}}}},"s":{"a":{"c":{"df":1,"docs":{"1345":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"1349":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.4142135623730951},"1160":{"tf":1.0}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"1194":{"tf":1.4142135623730951},"21":{"tf":1.0},"232":{"tf":1.0},"89":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"811":{"tf":1.4142135623730951}}}}}},"t":{"c":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"681":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":14,"docs":{"1109":{"tf":1.0},"1160":{"tf":1.0},"1212":{"tf":1.0},"1298":{"tf":1.0},"1429":{"tf":1.4142135623730951},"28":{"tf":1.0},"369":{"tf":1.0},"439":{"tf":1.0},"729":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"932":{"tf":1.0},"933":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"759":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":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":{"255":{"tf":1.0}},"u":{"df":1,"docs":{"732":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":5,"docs":{"1035":{"tf":1.0},"1085":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":2.0},"874":{"tf":1.0}},"t":{"df":5,"docs":{"1192":{"tf":1.4142135623730951},"1205":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"664":{"tf":1.0},"833":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":7,"docs":{"1115":{"tf":1.4142135623730951},"122":{"tf":1.0},"1462":{"tf":1.0},"327":{"tf":1.0},"555":{"tf":1.0},"87":{"tf":1.4142135623730951},"90":{"tf":1.0}}}},"w":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"16":{"tf":1.0},"36":{"tf":1.0},"90":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1114":{"tf":1.0},"60":{"tf":1.0}}}},"v":{"df":1,"docs":{"984":{"tf":1.0}}}}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1080":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":196,"docs":{"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.4142135623730951},"1084":{"tf":1.4142135623730951},"1128":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1206":{"tf":1.7320508075688772},"1216":{"tf":1.4142135623730951},"1217":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1317":{"tf":2.0},"1318":{"tf":1.0},"1319":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"1326":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1334":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1337":{"tf":1.7320508075688772},"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1344":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"1348":{"tf":2.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.0},"1371":{"tf":2.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":1.0},"1396":{"tf":2.0},"1397":{"tf":1.4142135623730951},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":2.6457513110645907},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1454":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"356":{"tf":2.0},"382":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"441":{"tf":1.4142135623730951},"46":{"tf":1.0},"472":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"590":{"tf":2.0},"616":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"67":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"689":{"tf":1.4142135623730951},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"727":{"tf":1.4142135623730951},"734":{"tf":1.0},"764":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":1.4142135623730951},"833":{"tf":1.0},"839":{"tf":1.4142135623730951},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"872":{"tf":1.4142135623730951},"883":{"tf":1.4142135623730951},"902":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"129":{"tf":2.0},"763":{"tf":1.0},"896":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":17,"docs":{"1126":{"tf":1.4142135623730951},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1378":{"tf":2.449489742783178},"1390":{"tf":2.0},"1394":{"tf":3.4641016151377544},"1402":{"tf":2.449489742783178},"555":{"tf":1.4142135623730951},"615":{"tf":1.7320508075688772},"618":{"tf":1.7320508075688772},"653":{"tf":2.449489742783178},"667":{"tf":1.4142135623730951},"678":{"tf":2.0},"723":{"tf":2.23606797749979},"724":{"tf":1.7320508075688772},"798":{"tf":1.0},"949":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"21":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"784":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"1161":{"tf":1.0},"1185":{"tf":1.0},"1219":{"tf":1.0},"1310":{"tf":1.0},"1449":{"tf":1.0},"255":{"tf":1.0},"50":{"tf":1.0},"732":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.7320508075688772},"79":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":50,"docs":{"1042":{"tf":1.0},"1082":{"tf":1.0},"1094":{"tf":1.0},"1135":{"tf":1.0},"116":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1209":{"tf":1.0},"127":{"tf":1.0},"1298":{"tf":1.0},"1306":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1332":{"tf":1.0},"135":{"tf":1.0},"1404":{"tf":1.0},"1420":{"tf":1.0},"1422":{"tf":1.0},"1456":{"tf":1.0},"1458":{"tf":1.0},"1462":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"227":{"tf":1.0},"232":{"tf":1.0},"252":{"tf":1.0},"261":{"tf":1.0},"334":{"tf":1.0},"371":{"tf":1.0},"400":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"605":{"tf":1.0},"634":{"tf":1.4142135623730951},"664":{"tf":1.0},"699":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"876":{"tf":1.0},"894":{"tf":1.0},"92":{"tf":1.4142135623730951},"940":{"tf":1.0},"950":{"tf":1.0},"976":{"tf":1.0},"984":{"tf":1.0}}}},"t":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1345":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":5,"docs":{"1345":{"tf":1.4142135623730951},"1346":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1166":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}},"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":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1369":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"(":{"2":{"0":{"0":{"df":4,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":8,"docs":{"1145":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1324":{"tf":1.0},"1471":{"tf":1.0},"1482":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"38":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1130":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":6,"docs":{"1000":{"tf":1.0},"1507":{"tf":1.0},"918":{"tf":1.0},"929":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":2.449489742783178}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"941":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1436":{"tf":1.0},"950":{"tf":1.0},"954":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1214":{"tf":1.0},"234":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"606":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":12,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"301":{"tf":1.0},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"372":{"tf":1.4142135623730951}}}},"df":37,"docs":{"1066":{"tf":1.7320508075688772},"1079":{"tf":2.0},"1095":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1159":{"tf":1.4142135623730951},"1199":{"tf":1.0},"1215":{"tf":2.0},"1234":{"tf":2.0},"1296":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1440":{"tf":2.449489742783178},"1454":{"tf":2.23606797749979},"1456":{"tf":1.0},"1466":{"tf":1.0},"1497":{"tf":1.0},"1512":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1520":{"tf":1.0},"273":{"tf":1.0},"292":{"tf":1.4142135623730951},"298":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.4142135623730951},"336":{"tf":2.0},"372":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0},"506":{"tf":1.4142135623730951},"563":{"tf":2.0},"606":{"tf":1.0},"660":{"tf":2.0},"903":{"tf":1.0},"925":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.4142135623730951},"963":{"tf":1.0}}}},"s":{"df":2,"docs":{"1194":{"tf":1.0},"95":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":10,"docs":{"1264":{"tf":1.0},"1267":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.0},"547":{"tf":1.0}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1287":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.4142135623730951},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"509":{"tf":1.7320508075688772},"510":{"tf":1.0},"538":{"tf":1.0}}}}}}},"df":61,"docs":{"1148":{"tf":2.0},"1192":{"tf":2.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1286":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.449489742783178},"1401":{"tf":2.0},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"348":{"tf":1.0},"355":{"tf":1.0},"421":{"tf":1.0},"434":{"tf":1.7320508075688772},"452":{"tf":1.0},"454":{"tf":1.0},"460":{"tf":1.4142135623730951},"461":{"tf":2.449489742783178},"463":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.7320508075688772},"479":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":2.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.4142135623730951},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"492":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":2.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.23606797749979},"508":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"512":{"tf":1.0},"538":{"tf":1.4142135623730951},"547":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":13,"docs":{"1108":{"tf":1.0},"1111":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1367":{"tf":1.0},"498":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"774":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":3,"docs":{"1244":{"tf":1.0},"739":{"tf":1.4142135623730951},"741":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"646":{"tf":1.0},"710":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"412":{"tf":1.0},"533":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1092":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1405":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"206":{"tf":1.0},"272":{"tf":1.0},"412":{"tf":1.4142135623730951},"423":{"tf":1.0},"646":{"tf":1.4142135623730951},"838":{"tf":1.0},"847":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":27,"docs":{"1080":{"tf":1.0},"1185":{"tf":1.0},"1300":{"tf":1.0},"1309":{"tf":1.7320508075688772},"1326":{"tf":2.6457513110645907},"1356":{"tf":1.0},"137":{"tf":2.449489742783178},"1379":{"tf":1.0},"1422":{"tf":3.0},"1425":{"tf":1.4142135623730951},"1433":{"tf":1.0},"156":{"tf":1.4142135623730951},"194":{"tf":2.449489742783178},"273":{"tf":1.0},"367":{"tf":1.0},"380":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"468":{"tf":1.0},"529":{"tf":1.0},"58":{"tf":1.4142135623730951},"601":{"tf":1.0},"706":{"tf":1.0},"725":{"tf":1.0},"884":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1018":{"tf":1.0}}}}}}}},"f":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":4,"docs":{"1148":{"tf":1.0},"1381":{"tf":1.0},"666":{"tf":1.0},"684":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"675":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}}}},"{":{"a":{"df":1,"docs":{"1381":{"tf":1.0}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"'":{"]":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0}}}}}}},":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"699":{"tf":1.0},"796":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"}":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1140":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1140":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1140":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":7,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1517":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":0,"docs":{},"e":{"(":{"'":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1365":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"661":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"2":{"df":1,"docs":{"1330":{"tf":1.0}}},"4":{"7":{"a":{"c":{"1":{"0":{"b":{"df":8,"docs":{"1045":{"tf":1.0},"1321":{"tf":1.0},"736":{"tf":1.0},"765":{"tf":1.7320508075688772},"779":{"tf":1.0},"782":{"tf":1.0},"791":{"tf":1.7320508075688772},"816":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"95":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"928":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"848":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1079":{"tf":1.0},"1154":{"tf":1.0},"1215":{"tf":1.4142135623730951},"916":{"tf":1.0}},"i":{"df":5,"docs":{"1182":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":67,"docs":{"1006":{"tf":1.0},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1144":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.4142135623730951},"1278":{"tf":1.0},"1282":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1394":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1465":{"tf":1.0},"1469":{"tf":1.7320508075688772},"1474":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1489":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.7320508075688772},"1494":{"tf":1.7320508075688772},"1530":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":2.0},"253":{"tf":1.4142135623730951},"299":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"419":{"tf":1.0},"424":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"520":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"653":{"tf":1.0},"678":{"tf":1.0},"697":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"855":{"tf":1.4142135623730951},"92":{"tf":1.7320508075688772},"929":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.7320508075688772},"946":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"e":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":21,"docs":{"1062":{"tf":1.0},"1200":{"tf":1.0},"1292":{"tf":1.0},"1334":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1429":{"tf":1.4142135623730951},"155":{"tf":1.0},"264":{"tf":1.0},"451":{"tf":1.0},"470":{"tf":1.0},"477":{"tf":1.0},"49":{"tf":1.0},"51":{"tf":1.4142135623730951},"759":{"tf":1.0},"76":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"81":{"tf":1.4142135623730951},"916":{"tf":1.0},"935":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":1,"docs":{"1151":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1177":{"tf":1.0},"1505":{"tf":1.0},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"946":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"1197":{"tf":1.0},"21":{"tf":1.0},"243":{"tf":1.0},"446":{"tf":1.0}}},"s":{"df":43,"docs":{"1001":{"tf":1.0},"1122":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"1194":{"tf":1.0},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.4142135623730951},"127":{"tf":1.0},"1315":{"tf":1.0},"1332":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1449":{"tf":1.0},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"185":{"tf":1.0},"206":{"tf":1.0},"295":{"tf":1.0},"314":{"tf":1.0},"366":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.4142135623730951},"600":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.0},"787":{"tf":1.0},"791":{"tf":1.0},"797":{"tf":1.0},"816":{"tf":1.0},"897":{"tf":1.0},"902":{"tf":1.0},"946":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.0},"1402":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},">":{"=":{"0":{".":{"1":{"0":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"1149":{"tf":1.7320508075688772},"1264":{"tf":1.0},"1270":{"tf":2.23606797749979},"1372":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}}}},"df":9,"docs":{"1018":{"tf":1.0},"1042":{"tf":1.0},"1061":{"tf":1.0},"159":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.0},"929":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1030":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"992":{"tf":1.0}}}}},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":5,"docs":{"617":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1148":{"tf":1.0},"684":{"tf":1.0}}}}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"684":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":23,"docs":{"1148":{"tf":1.4142135623730951},"1180":{"tf":1.7320508075688772},"1183":{"tf":1.7320508075688772},"1192":{"tf":1.7320508075688772},"1372":{"tf":1.0},"1381":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"617":{"tf":1.7320508075688772},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":2.0},"670":{"tf":1.0},"675":{"tf":2.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.0},"687":{"tf":1.7320508075688772},"689":{"tf":1.4142135623730951},"718":{"tf":2.0},"719":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"684":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":77,"docs":{"1140":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":1.4142135623730951},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1336":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.0},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1343":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1346":{"tf":1.7320508075688772},"135":{"tf":2.0},"136":{"tf":2.0},"137":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"138":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1404":{"tf":2.23606797749979},"141":{"tf":1.4142135623730951},"1419":{"tf":2.449489742783178},"142":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.4142135623730951},"1425":{"tf":2.0},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"1466":{"tf":1.0},"1470":{"tf":1.0},"1484":{"tf":1.0},"1497":{"tf":1.0},"1500":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1517":{"tf":1.0},"1529":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"216":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.0},"661":{"tf":1.0},"72":{"tf":1.0},"79":{"tf":1.4142135623730951},"87":{"tf":1.4142135623730951},"88":{"tf":2.449489742783178}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"103":{"tf":1.0},"104":{"tf":1.0},"1055":{"tf":1.0},"107":{"tf":2.8284271247461903},"1075":{"tf":1.4142135623730951},"1077":{"tf":1.4142135623730951},"1078":{"tf":1.4142135623730951},"108":{"tf":1.7320508075688772},"1087":{"tf":1.0},"110":{"tf":1.0},"1118":{"tf":1.4142135623730951},"113":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.4142135623730951},"1396":{"tf":1.0},"1438":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.4142135623730951},"259":{"tf":2.23606797749979},"290":{"tf":1.4142135623730951},"292":{"tf":2.23606797749979},"298":{"tf":1.0},"302":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"536":{"tf":1.0},"70":{"tf":2.0},"77":{"tf":1.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"822":{"tf":1.4142135623730951},"897":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"d":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1336":{"tf":1.0},"765":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"(":{"`":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"474":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":4,"docs":{"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":10,"docs":{"1208":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1259":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"459":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":4,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"d":{"df":127,"docs":{"1045":{"tf":1.4142135623730951},"1080":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1109":{"tf":1.4142135623730951},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1122":{"tf":1.0},"1126":{"tf":1.0},"1134":{"tf":1.4142135623730951},"1136":{"tf":1.0},"1220":{"tf":1.0},"1255":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":2.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":2.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1450":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1470":{"tf":1.0},"1471":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1484":{"tf":1.0},"1509":{"tf":1.4142135623730951},"1515":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.0},"186":{"tf":1.0},"204":{"tf":1.0},"224":{"tf":1.0},"244":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"309":{"tf":1.0},"334":{"tf":1.4142135623730951},"370":{"tf":1.0},"398":{"tf":2.0},"406":{"tf":1.0},"407":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.7320508075688772},"498":{"tf":1.0},"521":{"tf":2.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"58":{"tf":1.4142135623730951},"604":{"tf":1.0},"632":{"tf":2.0},"64":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"656":{"tf":1.0},"698":{"tf":2.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"722":{"tf":1.0},"729":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":2.23606797749979},"741":{"tf":1.4142135623730951},"744":{"tf":1.7320508075688772},"745":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.0},"756":{"tf":2.0},"757":{"tf":1.7320508075688772},"759":{"tf":1.7320508075688772},"762":{"tf":1.7320508075688772},"765":{"tf":1.0},"773":{"tf":1.0},"777":{"tf":1.4142135623730951},"778":{"tf":1.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.4142135623730951},"782":{"tf":2.449489742783178},"783":{"tf":1.4142135623730951},"784":{"tf":1.4142135623730951},"786":{"tf":1.7320508075688772},"788":{"tf":1.7320508075688772},"790":{"tf":1.7320508075688772},"791":{"tf":1.0},"792":{"tf":2.23606797749979},"807":{"tf":2.0},"808":{"tf":1.7320508075688772},"809":{"tf":1.7320508075688772},"811":{"tf":1.7320508075688772},"816":{"tf":1.7320508075688772},"828":{"tf":1.0},"835":{"tf":1.7320508075688772},"836":{"tf":1.7320508075688772},"854":{"tf":1.7320508075688772},"856":{"tf":1.7320508075688772},"862":{"tf":1.0},"865":{"tf":1.7320508075688772},"866":{"tf":1.7320508075688772},"868":{"tf":1.7320508075688772},"869":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.7320508075688772},"901":{"tf":1.0},"903":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"135":{"tf":1.0},"1420":{"tf":1.0},"193":{"tf":1.0}}}},"df":0,"docs":{}}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":198,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1090":{"tf":1.4142135623730951},"1091":{"tf":2.0},"1092":{"tf":2.23606797749979},"110":{"tf":1.0},"111":{"tf":1.0},"1112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1160":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.4142135623730951},"122":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":1.7320508075688772},"132":{"tf":2.23606797749979},"1323":{"tf":1.7320508075688772},"1326":{"tf":1.0},"1332":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1336":{"tf":1.0},"1338":{"tf":2.0},"1339":{"tf":1.7320508075688772},"134":{"tf":3.0},"1340":{"tf":1.7320508075688772},"1342":{"tf":1.0},"1345":{"tf":1.0},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1365":{"tf":2.0},"1388":{"tf":1.4142135623730951},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":3.4641016151377544},"1420":{"tf":2.8284271247461903},"1421":{"tf":2.8284271247461903},"1422":{"tf":3.3166247903554},"1425":{"tf":1.4142135623730951},"1426":{"tf":1.7320508075688772},"1428":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1431":{"tf":1.4142135623730951},"1432":{"tf":2.23606797749979},"1433":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.7320508075688772},"144":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1446":{"tf":2.0},"1449":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1455":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.0},"1464":{"tf":1.4142135623730951},"1465":{"tf":1.4142135623730951},"1467":{"tf":1.0},"1479":{"tf":1.0},"149":{"tf":1.0},"1495":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"1528":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"179":{"tf":1.0},"183":{"tf":1.4142135623730951},"184":{"tf":2.0},"185":{"tf":2.23606797749979},"186":{"tf":1.0},"192":{"tf":1.0},"204":{"tf":1.0},"206":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.4142135623730951},"273":{"tf":1.0},"283":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.7320508075688772},"302":{"tf":1.4142135623730951},"310":{"tf":1.7320508075688772},"317":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.7320508075688772},"336":{"tf":1.0},"338":{"tf":1.4142135623730951},"352":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":2.0},"371":{"tf":1.0},"378":{"tf":1.0},"380":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.4142135623730951},"393":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"410":{"tf":1.0},"43":{"tf":1.0},"436":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"478":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":1.0},"522":{"tf":1.0},"531":{"tf":1.7320508075688772},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"560":{"tf":1.7320508075688772},"563":{"tf":1.0},"565":{"tf":1.4142135623730951},"584":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":2.0},"605":{"tf":1.0},"611":{"tf":1.0},"613":{"tf":1.0},"616":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.4142135623730951},"627":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"64":{"tf":1.4142135623730951},"644":{"tf":1.0},"65":{"tf":1.0},"659":{"tf":1.4142135623730951},"660":{"tf":1.0},"661":{"tf":1.0},"672":{"tf":1.7320508075688772},"678":{"tf":1.0},"695":{"tf":1.4142135623730951},"696":{"tf":1.0},"699":{"tf":1.0},"708":{"tf":1.7320508075688772},"712":{"tf":1.0},"72":{"tf":1.4142135623730951},"721":{"tf":1.7320508075688772},"723":{"tf":1.0},"724":{"tf":1.4142135623730951},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.4142135623730951},"747":{"tf":1.0},"772":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"787":{"tf":2.449489742783178},"788":{"tf":2.23606797749979},"829":{"tf":1.4142135623730951},"831":{"tf":2.23606797749979},"833":{"tf":2.0},"838":{"tf":2.0},"841":{"tf":1.4142135623730951},"845":{"tf":1.4142135623730951},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.4142135623730951},"850":{"tf":1.0},"88":{"tf":1.4142135623730951},"880":{"tf":1.0},"887":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.7320508075688772},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"925":{"tf":1.4142135623730951},"94":{"tf":1.0},"950":{"tf":1.7320508075688772},"962":{"tf":1.0},"969":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":32,"docs":{"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.4142135623730951},"381":{"tf":1.4142135623730951},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"418":{"tf":1.4142135623730951},"519":{"tf":1.0},"536":{"tf":2.0},"614":{"tf":1.4142135623730951},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"696":{"tf":1.0},"722":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"911":{"tf":1.0}},"e":{"=":{"$":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1338":{"tf":1.0},"1339":{"tf":1.0}}}},"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":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.4142135623730951}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":4,"docs":{"1365":{"tf":2.0},"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"366":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1422":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":24,"docs":{"1055":{"tf":1.0},"1057":{"tf":1.7320508075688772},"1063":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.7320508075688772},"1105":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1489":{"tf":1.4142135623730951},"1507":{"tf":1.0},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1522":{"tf":1.0},"273":{"tf":1.0},"285":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":1,"docs":{"319":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1145":{"tf":1.4142135623730951},"1325":{"tf":1.0},"1330":{"tf":1.0},"1399":{"tf":1.0},"815":{"tf":1.0},"826":{"tf":1.4142135623730951}}},"n":{"c":{"df":1,"docs":{"1403":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1175":{"tf":1.0},"843":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1401":{"tf":1.0},"1460":{"tf":1.0},"1495":{"tf":1.0},"280":{"tf":1.0},"354":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"<":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"236":{"tf":1.0}}}}}}}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":16,"docs":{"1046":{"tf":1.0},"1053":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1476":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"254":{"tf":1.7320508075688772},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.4142135623730951},"976":{"tf":1.0},"994":{"tf":1.0}}}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"804":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"82":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":28,"docs":{"1001":{"tf":1.4142135623730951},"117":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.0},"1410":{"tf":1.0},"142":{"tf":1.0},"1436":{"tf":1.0},"148":{"tf":1.4142135623730951},"1484":{"tf":1.0},"155":{"tf":1.0},"181":{"tf":1.0},"23":{"tf":1.4142135623730951},"349":{"tf":1.0},"43":{"tf":1.0},"501":{"tf":1.0},"503":{"tf":1.0},"576":{"tf":1.0},"676":{"tf":1.0},"72":{"tf":1.4142135623730951},"744":{"tf":1.0},"756":{"tf":1.0},"762":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"852":{"tf":1.0},"88":{"tf":1.0},"987":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"69":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"93":{"tf":1.0}}}},"x":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1160":{"tf":1.4142135623730951}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":9,"docs":{"1077":{"tf":1.0},"1087":{"tf":1.0},"1295":{"tf":1.0},"1301":{"tf":1.0},"243":{"tf":1.0},"259":{"tf":1.4142135623730951},"271":{"tf":1.0},"292":{"tf":1.4142135623730951},"762":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"(":{"_":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"_":{"_":{"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1264":{"tf":1.0},"1271":{"tf":2.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1014":{"tf":1.0},"1054":{"tf":1.0},"17":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1381":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"w":{"df":9,"docs":{"1184":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1265":{"tf":1.7320508075688772},"1441":{"tf":1.0},"291":{"tf":1.0},"456":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"997":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"312":{"tf":1.0}}}}}},"n":{"df":18,"docs":{"1001":{"tf":1.4142135623730951},"1161":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.4142135623730951},"991":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"13":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"809":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":13,"docs":{"109":{"tf":1.0},"113":{"tf":1.0},"1265":{"tf":1.0},"1333":{"tf":1.0},"139":{"tf":1.0},"236":{"tf":1.0},"44":{"tf":1.0},"545":{"tf":1.0},"729":{"tf":1.0},"867":{"tf":1.0},"901":{"tf":1.0},"936":{"tf":1.0},"987":{"tf":1.0}}}}}},"r":{"c":{"df":4,"docs":{"1145":{"tf":1.0},"312":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0}}}}},"v":{"df":1,"docs":{"1194":{"tf":1.0}}}},"g":{"df":2,"docs":{"552":{"tf":1.0},"586":{"tf":1.4142135623730951}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"869":{"tf":1.0}}},"t":{"df":53,"docs":{"1011":{"tf":1.0},"1044":{"tf":2.0},"1112":{"tf":1.0},"1116":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.7320508075688772},"1131":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1166":{"tf":1.0},"129":{"tf":1.7320508075688772},"1419":{"tf":1.0},"1421":{"tf":1.0},"1431":{"tf":1.4142135623730951},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.4142135623730951},"1440":{"tf":1.0},"1465":{"tf":2.0},"1471":{"tf":1.7320508075688772},"1510":{"tf":1.0},"1517":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1528":{"tf":1.0},"21":{"tf":1.0},"235":{"tf":2.449489742783178},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"36":{"tf":1.0},"374":{"tf":1.0},"376":{"tf":1.0},"400":{"tf":1.0},"495":{"tf":1.4142135623730951},"522":{"tf":1.0},"58":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"634":{"tf":1.0},"657":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"699":{"tf":1.0},"721":{"tf":1.4142135623730951},"722":{"tf":1.0},"724":{"tf":1.0},"731":{"tf":1.0},"745":{"tf":2.449489742783178},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"987":{"tf":1.7320508075688772}}}},"df":3,"docs":{"879":{"tf":1.0},"881":{"tf":1.0},"988":{"tf":1.0}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":38,"docs":{"116":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":2.23606797749979},"1403":{"tf":1.0},"1404":{"tf":1.7320508075688772},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.7320508075688772},"1464":{"tf":1.7320508075688772},"1475":{"tf":1.4142135623730951},"1481":{"tf":1.7320508075688772},"1484":{"tf":1.4142135623730951},"1495":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.4142135623730951},"351":{"tf":1.7320508075688772},"366":{"tf":1.0},"371":{"tf":1.0},"384":{"tf":1.4142135623730951},"465":{"tf":1.0},"583":{"tf":1.4142135623730951},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"618":{"tf":1.4142135623730951},"678":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"837":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"152":{"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":{"1441":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":10,"docs":{"0":{"tf":1.0},"1262":{"tf":1.0},"1264":{"tf":1.7320508075688772},"13":{"tf":1.0},"20":{"tf":1.0},"39":{"tf":1.0},"454":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"848":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"934":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"758":{"tf":1.0},"879":{"tf":1.0}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"37":{"tf":1.0},"856":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1103":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":3,"docs":{"1161":{"tf":1.0},"918":{"tf":1.0},"976":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"2":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1522":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"75":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1361":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":48,"docs":{"1055":{"tf":1.0},"1056":{"tf":1.0},"1057":{"tf":1.4142135623730951},"1058":{"tf":1.0},"1089":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":2.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1461":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.4142135623730951},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.7320508075688772},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1115":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}},"l":{"df":29,"docs":{"109":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1214":{"tf":1.0},"1251":{"tf":1.0},"1296":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1436":{"tf":1.0},"2":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"320":{"tf":1.0},"332":{"tf":1.0},"369":{"tf":1.0},"379":{"tf":1.0},"4":{"tf":1.0},"544":{"tf":1.0},"603":{"tf":1.0},"612":{"tf":1.0},"776":{"tf":1.0},"861":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"956":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":6,"docs":{"1144":{"tf":1.0},"152":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"753":{"tf":1.0},"82":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":63,"docs":{"1164":{"tf":1.0},"1174":{"tf":1.0},"1182":{"tf":1.0},"1273":{"tf":1.0},"1278":{"tf":1.0},"1288":{"tf":1.0},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1522":{"tf":1.0},"259":{"tf":1.0},"286":{"tf":1.0},"292":{"tf":1.0},"303":{"tf":1.0},"327":{"tf":1.0},"332":{"tf":1.0},"370":{"tf":1.0},"416":{"tf":1.4142135623730951},"420":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"474":{"tf":1.4142135623730951},"491":{"tf":1.0},"500":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":1.0},"534":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"604":{"tf":1.0},"650":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.7320508075688772},"711":{"tf":1.7320508075688772},"911":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1103":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"=":{"1":{"0":{"0":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"1138":{"tf":1.4142135623730951},"146":{"tf":1.0},"386":{"tf":1.0},"40":{"tf":1.0},"620":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"1014":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1254":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.4142135623730951},"934":{"tf":1.4142135623730951},"960":{"tf":1.0},"994":{"tf":1.0},"996":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.7320508075688772},"1165":{"tf":2.8284271247461903},"1166":{"tf":2.0}}}}}},"g":{"a":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"1215":{"tf":1.0},"97":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":4,"docs":{"1243":{"tf":1.0},"1400":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"g":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"p":{"df":2,"docs":{"1111":{"tf":1.0},"742":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":4,"docs":{"1228":{"tf":1.0},"1253":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}}},"df":74,"docs":{"1004":{"tf":1.7320508075688772},"1015":{"tf":1.0},"1020":{"tf":1.0},"1041":{"tf":1.0},"1043":{"tf":1.7320508075688772},"1047":{"tf":1.4142135623730951},"1052":{"tf":1.0},"11":{"tf":1.0},"1154":{"tf":1.0},"1158":{"tf":1.4142135623730951},"119":{"tf":1.0},"1209":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1235":{"tf":1.7320508075688772},"1250":{"tf":1.4142135623730951},"129":{"tf":1.0},"13":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1339":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1429":{"tf":1.0},"1439":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"1464":{"tf":1.0},"1505":{"tf":1.0},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"159":{"tf":1.0},"167":{"tf":1.7320508075688772},"181":{"tf":1.0},"182":{"tf":1.0},"23":{"tf":1.0},"234":{"tf":1.7320508075688772},"235":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"255":{"tf":1.0},"36":{"tf":1.0},"42":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"68":{"tf":1.0},"752":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.0},"780":{"tf":1.0},"80":{"tf":1.4142135623730951},"803":{"tf":1.0},"81":{"tf":1.0},"831":{"tf":1.4142135623730951},"836":{"tf":1.0},"837":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"851":{"tf":1.0},"884":{"tf":1.0},"89":{"tf":1.0},"899":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.7320508075688772},"926":{"tf":1.0},"934":{"tf":1.0},"960":{"tf":1.0},"968":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"1069":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1384":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1375":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1103":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":6,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{")":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"b":{"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":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"286":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"884":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.4142135623730951}}}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1305":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1314":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"b":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1305":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":10,"docs":{"1003":{"tf":1.0},"1161":{"tf":1.0},"119":{"tf":1.4142135623730951},"1195":{"tf":1.4142135623730951},"1196":{"tf":1.4142135623730951},"1319":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"547":{"tf":1.0},"727":{"tf":1.0},"909":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"262":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"500":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"262":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.4142135623730951}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":1,"docs":{"1300":{"tf":1.4142135623730951}}},"t":{"df":5,"docs":{"104":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"64":{"tf":1.0},"70":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1158":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":3,"docs":{"1158":{"tf":1.4142135623730951},"19":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"962":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"1":{"tf":1.0}},"n":{"df":2,"docs":{"1423":{"tf":1.0},"94":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":14,"docs":{"1102":{"tf":1.0},"1160":{"tf":1.0},"1281":{"tf":1.0},"1378":{"tf":1.0},"1408":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"368":{"tf":1.0},"497":{"tf":1.7320508075688772},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"873":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":9,"docs":{"733":{"tf":1.0},"766":{"tf":1.0},"852":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.4142135623730951},"872":{"tf":1.0},"873":{"tf":1.0}}}},"df":6,"docs":{"450":{"tf":1.0},"82":{"tf":1.0},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772},"978":{"tf":1.0}},"e":{"df":2,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0}}},"o":{"d":{"df":3,"docs":{"1312":{"tf":1.0},"884":{"tf":1.0},"964":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"64":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1032":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"i":{"d":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1050":{"tf":1.0},"1177":{"tf":1.0},"424":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"477":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"446":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"1439":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"359":{"tf":1.0},"593":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"31":{"tf":1.0},"732":{"tf":1.0}},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":3,"docs":{"1330":{"tf":1.0},"583":{"tf":1.0},"979":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1117":{"tf":1.4142135623730951},"1277":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":5,"docs":{"1278":{"tf":1.0},"21":{"tf":1.0},"491":{"tf":1.0},"914":{"tf":1.0},"954":{"tf":1.4142135623730951}}}}}},"d":{"df":3,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1168":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1194":{"tf":1.0}}},"df":0,"docs":{}}},"df":48,"docs":{"1040":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1112":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"1502":{"tf":2.0},"1503":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.0},"1509":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"1514":{"tf":1.0},"1515":{"tf":1.0},"1516":{"tf":1.0},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"1527":{"tf":1.0},"1528":{"tf":1.0},"1529":{"tf":1.0},"1530":{"tf":1.0},"1531":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"38":{"tf":1.0},"68":{"tf":1.7320508075688772},"773":{"tf":1.0},"799":{"tf":1.0},"909":{"tf":1.4142135623730951},"92":{"tf":1.0},"925":{"tf":1.0},"99":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"985":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"838":{"tf":1.0}}}}}},"h":{"[":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"i":{"'":{"df":1,"docs":{"1208":{"tf":1.0}}},".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":68,"docs":{"1112":{"tf":1.0},"1127":{"tf":1.0},"1140":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1290":{"tf":1.0},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1348":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"321":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.7320508075688772},"332":{"tf":1.0},"335":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"353":{"tf":1.4142135623730951},"388":{"tf":1.0},"391":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"5":{"tf":1.4142135623730951},"505":{"tf":1.0},"513":{"tf":1.0},"514":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.4142135623730951},"738":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"770":{"tf":1.0},"794":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.0},"96":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":22,"docs":{"1148":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"331":{"tf":1.7320508075688772},"461":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"497":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"507":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":17,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.7320508075688772},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"357":{"tf":1.0},"916":{"tf":1.0}}}}}}}},"@":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1510":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":11,"docs":{"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"373":{"tf":1.0},"937":{"tf":1.7320508075688772},"939":{"tf":2.23606797749979},"941":{"tf":1.7320508075688772},"942":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"977":{"tf":1.4142135623730951},"978":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"373":{"tf":1.0},"96":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"911":{"tf":1.0},"930":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"1454":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1452":{"tf":1.0},"1455":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":20,"docs":{"1055":{"tf":1.7320508075688772},"1073":{"tf":2.23606797749979},"1074":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"1207":{"tf":1.4142135623730951},"1208":{"tf":1.7320508075688772},"1214":{"tf":1.4142135623730951},"1436":{"tf":1.4142135623730951},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.7320508075688772},"1454":{"tf":1.4142135623730951},"1455":{"tf":1.0},"739":{"tf":1.7320508075688772},"792":{"tf":1.7320508075688772},"893":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"38":{"tf":1.0},"67":{"tf":1.0}},"l":{"df":46,"docs":{"1011":{"tf":1.0},"1161":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1169":{"tf":1.7320508075688772},"1171":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1268":{"tf":1.0},"1280":{"tf":1.4142135623730951},"1282":{"tf":1.0},"1295":{"tf":1.0},"1314":{"tf":1.4142135623730951},"1344":{"tf":1.4142135623730951},"1346":{"tf":1.4142135623730951},"1366":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1393":{"tf":1.4142135623730951},"1394":{"tf":2.0},"14":{"tf":1.0},"1401":{"tf":1.0},"228":{"tf":1.0},"286":{"tf":1.4142135623730951},"359":{"tf":1.0},"384":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"434":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"477":{"tf":2.0},"482":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.4142135623730951},"492":{"tf":1.4142135623730951},"496":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"546":{"tf":1.7320508075688772},"593":{"tf":1.0},"618":{"tf":1.4142135623730951},"653":{"tf":1.4142135623730951},"677":{"tf":1.4142135623730951},"723":{"tf":1.7320508075688772},"949":{"tf":1.0},"963":{"tf":1.4142135623730951},"973":{"tf":1.0}},"e":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1270":{"tf":1.0}}}}}}}}}},"df":1,"docs":{"1271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1267":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"497":{"tf":1.7320508075688772},"498":{"tf":1.0},"507":{"tf":1.0},"833":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"91":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1048":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"{":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"1":{"df":1,"docs":{"1003":{"tf":1.0}}},"2":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":2,"docs":{"557":{"tf":1.0},"651":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":84,"docs":{"1001":{"tf":1.7320508075688772},"1046":{"tf":2.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1092":{"tf":1.0},"1186":{"tf":1.0},"1245":{"tf":1.0},"1251":{"tf":1.0},"1255":{"tf":1.0},"1333":{"tf":1.0},"1403":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1429":{"tf":1.0},"167":{"tf":1.4142135623730951},"174":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"224":{"tf":1.4142135623730951},"227":{"tf":2.23606797749979},"236":{"tf":1.0},"24":{"tf":1.0},"277":{"tf":1.4142135623730951},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"332":{"tf":1.0},"364":{"tf":1.0},"366":{"tf":1.0},"370":{"tf":1.0},"381":{"tf":1.4142135623730951},"397":{"tf":1.0},"417":{"tf":2.449489742783178},"420":{"tf":1.4142135623730951},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"520":{"tf":1.0},"53":{"tf":1.0},"531":{"tf":1.0},"535":{"tf":2.449489742783178},"544":{"tf":1.0},"557":{"tf":1.0},"58":{"tf":1.7320508075688772},"59":{"tf":1.0},"598":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"614":{"tf":1.4142135623730951},"631":{"tf":1.0},"651":{"tf":2.0},"654":{"tf":1.4142135623730951},"697":{"tf":1.0},"708":{"tf":1.0},"739":{"tf":1.4142135623730951},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"776":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.7320508075688772},"785":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"816":{"tf":2.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.4142135623730951},"914":{"tf":1.4142135623730951},"918":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"950":{"tf":1.7320508075688772},"951":{"tf":1.0},"953":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.4142135623730951},"996":{"tf":1.0},"997":{"tf":3.1622776601683795}},"m":{"a":{"df":0,"docs":{},"p":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"303":{"tf":1.4142135623730951},"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":6,"docs":{"332":{"tf":1.0},"417":{"tf":1.0},"420":{"tf":1.0},"515":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"417":{"tf":1.0},"535":{"tf":1.0},"544":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"332":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":4,"docs":{"1260":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"188":{"tf":1.0}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":2,"docs":{"1194":{"tf":1.0},"248":{"tf":1.0}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"831":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0}},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"729":{"tf":1.0},"740":{"tf":1.0},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":47,"docs":{"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1136":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"1437":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":2.0},"1442":{"tf":2.449489742783178},"1445":{"tf":1.0},"173":{"tf":1.0},"176":{"tf":1.0},"181":{"tf":1.4142135623730951},"28":{"tf":1.0},"284":{"tf":2.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"306":{"tf":1.0},"307":{"tf":1.4142135623730951},"314":{"tf":1.4142135623730951},"315":{"tf":2.23606797749979},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"729":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"744":{"tf":1.0},"747":{"tf":1.0},"752":{"tf":1.0},"756":{"tf":1.7320508075688772},"773":{"tf":1.0},"774":{"tf":1.0},"776":{"tf":1.0},"803":{"tf":1.0},"807":{"tf":1.7320508075688772},"832":{"tf":1.0},"858":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"899":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"{":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1402":{"tf":1.4142135623730951},"369":{"tf":1.0},"507":{"tf":1.0},"603":{"tf":1.0},"760":{"tf":1.4142135623730951}},"i":{"df":3,"docs":{"1401":{"tf":1.0},"1402":{"tf":1.0},"507":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":25,"docs":{"1148":{"tf":1.0},"1237":{"tf":1.0},"1248":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"197":{"tf":1.0},"268":{"tf":1.0},"349":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"474":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.0},"519":{"tf":1.0},"576":{"tf":1.0},"656":{"tf":1.0},"667":{"tf":1.0},"696":{"tf":1.0},"884":{"tf":1.0},"956":{"tf":1.0}}}},"p":{"df":15,"docs":{"105":{"tf":1.0},"1162":{"tf":1.0},"119":{"tf":2.8284271247461903},"1411":{"tf":2.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"739":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"108":{"tf":1.0},"1220":{"tf":1.0},"1278":{"tf":1.0},"259":{"tf":1.4142135623730951},"292":{"tf":1.0},"491":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"1328":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1161":{"tf":1.0},"1276":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1442":{"tf":1.0},"180":{"tf":1.7320508075688772},"370":{"tf":1.0},"45":{"tf":1.4142135623730951},"486":{"tf":1.0},"604":{"tf":1.0},"679":{"tf":1.0},"794":{"tf":1.4142135623730951},"798":{"tf":1.0},"845":{"tf":1.0},"884":{"tf":1.0},"921":{"tf":1.0}}}},"x":{"a":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"535":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"46":{"tf":1.0}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"729":{"tf":1.0}},"i":{"df":3,"docs":{"1124":{"tf":1.0},"871":{"tf":1.4142135623730951},"873":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":14,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.0},"1089":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0},"1336":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"37":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.0},"959":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"322":{"tf":1.0},"549":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.4142135623730951},"725":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"291":{"tf":1.0},"303":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"991":{"tf":1.4142135623730951}},"i":{"df":14,"docs":{"1006":{"tf":1.0},"1314":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1403":{"tf":1.0},"199":{"tf":1.7320508075688772},"2":{"tf":1.0},"62":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.4142135623730951},"882":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.0},"996":{"tf":1.0},"998":{"tf":1.7320508075688772}}}}}}}},"m":{"a":{"c":{"df":1,"docs":{"925":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"1162":{"tf":1.0},"261":{"tf":1.0},"857":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"147":{"tf":1.0},"995":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.6457513110645907}}}},"o":{"df":0,"docs":{},"k":{"df":9,"docs":{"1209":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"237":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"1307":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"252":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.7320508075688772},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1154":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},":":{"/":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{"4":{"3":{"1":{"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"}":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"1":{"4":{"2":{"6":{"8":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1356":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"3":{"1":{"7":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"284":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1439":{"tf":1.0},"1440":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0}}},"8":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":5,"docs":{"298":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"667":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"0":{"9":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":0,"docs":{},"s":{":":{"9":{"0":{"9":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":65,"docs":{"1020":{"tf":1.0},"110":{"tf":1.0},"1149":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1262":{"tf":1.0},"1268":{"tf":1.0},"1272":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1284":{"tf":1.0},"1294":{"tf":1.0},"1354":{"tf":1.4142135623730951},"1356":{"tf":1.7320508075688772},"1370":{"tf":1.4142135623730951},"1377":{"tf":1.4142135623730951},"1379":{"tf":1.7320508075688772},"1406":{"tf":1.0},"1493":{"tf":1.0},"1525":{"tf":1.4142135623730951},"311":{"tf":1.0},"331":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"453":{"tf":2.23606797749979},"454":{"tf":1.7320508075688772},"455":{"tf":1.0},"456":{"tf":1.0},"457":{"tf":1.7320508075688772},"458":{"tf":2.0},"459":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"5":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"65":{"tf":1.0},"664":{"tf":1.0},"734":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.4142135623730951},"955":{"tf":1.0},"964":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1378":{"tf":1.0},"1402":{"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":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":2,"docs":{"1378":{"tf":2.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"s":{":":{"/":{"/":{"a":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"758":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}}},"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1133":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":{},"o":{"df":1,"docs":{"758":{"tf":1.0}}}}},"df":1,"docs":{"157":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"104":{"tf":1.0},"554":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"734":{"tf":1.0},"736":{"tf":1.0},"741":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"830":{"tf":1.0},"832":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"853":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"734":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1124":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"180":{"tf":1.0},"734":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"775":{"tf":1.0},"778":{"tf":1.0},"791":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1139":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1437":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"734":{"tf":1.0},"737":{"tf":1.0},"888":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"197":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"801":{"tf":1.0},"816":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"803":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"872":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"941":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}}}},"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":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"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":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{},"g":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{":":{"4":{"3":{"1":{"7":{"df":1,"docs":{"1445":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1445":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1112":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"1":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"757":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"19":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":24,"docs":{"1227":{"tf":1.0},"152":{"tf":1.7320508075688772},"154":{"tf":1.7320508075688772},"157":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"370":{"tf":1.4142135623730951},"51":{"tf":1.0},"604":{"tf":1.4142135623730951},"66":{"tf":1.0},"746":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":2.23606797749979},"754":{"tf":1.7320508075688772},"761":{"tf":1.0},"766":{"tf":1.7320508075688772},"767":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":15,"docs":{"1015":{"tf":1.0},"1034":{"tf":1.7320508075688772},"152":{"tf":1.0},"157":{"tf":1.0},"345":{"tf":1.7320508075688772},"370":{"tf":1.4142135623730951},"572":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"746":{"tf":1.0},"751":{"tf":1.4142135623730951},"752":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.4142135623730951},"761":{"tf":1.0},"960":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"197":{"tf":1.0}}}},":":{"0":{"3":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1070":{"tf":1.0},"1071":{"tf":1.4142135623730951},"1455":{"tf":1.0},"1490":{"tf":1.0}}}},"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"265":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"142":{"tf":1.0},"1484":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1047":{"tf":1.0},"1515":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":16,"docs":{"1188":{"tf":1.0},"1189":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"400":{"tf":1.0},"522":{"tf":1.0},"634":{"tf":1.0},"672":{"tf":1.0},"699":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"979":{"tf":1.0}}}}}}},"]":{",":{"[":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":127,"docs":{"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1133":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1230":{"tf":1.0},"1241":{"tf":1.0},"1255":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.0},"1301":{"tf":2.0},"1302":{"tf":2.0},"1306":{"tf":2.23606797749979},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1315":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1365":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1405":{"tf":2.0},"142":{"tf":1.0},"1436":{"tf":1.0},"1481":{"tf":1.4142135623730951},"1484":{"tf":1.0},"1522":{"tf":1.7320508075688772},"174":{"tf":1.0},"234":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.0},"415":{"tf":1.4142135623730951},"418":{"tf":1.0},"439":{"tf":1.0},"447":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"478":{"tf":1.0},"49":{"tf":1.0},"503":{"tf":1.0},"51":{"tf":1.0},"523":{"tf":1.0},"53":{"tf":1.0},"530":{"tf":1.4142135623730951},"536":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"592":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.4142135623730951},"612":{"tf":1.0},"649":{"tf":1.4142135623730951},"656":{"tf":1.0},"657":{"tf":1.0},"700":{"tf":1.0},"707":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"737":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"77":{"tf":1.4142135623730951},"770":{"tf":1.0},"776":{"tf":1.0},"782":{"tf":1.0},"783":{"tf":1.0},"792":{"tf":1.0},"803":{"tf":1.0},"809":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951},"832":{"tf":1.0},"853":{"tf":1.0},"856":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":1.0},"881":{"tf":1.0},"884":{"tf":1.0},"894":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"950":{"tf":1.4142135623730951},"989":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"758":{"tf":1.0},"759":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}},"df":2,"docs":{"11":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"933":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":59,"docs":{"1013":{"tf":1.0},"1175":{"tf":1.0},"1189":{"tf":1.0},"1196":{"tf":1.4142135623730951},"1208":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1214":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1225":{"tf":1.7320508075688772},"1226":{"tf":1.0},"1227":{"tf":1.0},"1231":{"tf":1.0},"1258":{"tf":1.0},"1285":{"tf":1.0},"1333":{"tf":1.4142135623730951},"1415":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"205":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"24":{"tf":1.0},"261":{"tf":1.0},"27":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.4142135623730951},"42":{"tf":1.0},"423":{"tf":1.0},"44":{"tf":1.0},"456":{"tf":1.0},"47":{"tf":1.0},"59":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"760":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"894":{"tf":1.4142135623730951},"90":{"tf":1.0},"913":{"tf":1.7320508075688772},"918":{"tf":1.0},"922":{"tf":1.0},"937":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.4142135623730951},"977":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":4,"docs":{"1441":{"tf":1.0},"760":{"tf":1.0},"776":{"tf":1.0},"778":{"tf":1.4142135623730951}},"i":{"df":21,"docs":{"1111":{"tf":1.0},"1441":{"tf":1.0},"155":{"tf":1.0},"232":{"tf":1.0},"262":{"tf":1.0},"41":{"tf":1.0},"445":{"tf":1.0},"46":{"tf":1.4142135623730951},"51":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":2.0},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"760":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.7320508075688772},"831":{"tf":1.0},"879":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"987":{"tf":1.0}}}}}}}},"x":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1300":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1300":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":0,"docs":{}},"}":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1059":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1067":{"tf":1.4142135623730951}}}}}}},"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1063":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1082":{"tf":1.0},"128":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"242":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"1419":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1426":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"787":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1082":{"tf":1.0},"61":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.7320508075688772},"914":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"918":{"tf":1.0}}}}}}},"l":{"df":2,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":37,"docs":{"1017":{"tf":1.0},"1094":{"tf":1.0},"1103":{"tf":1.0},"1158":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1204":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.4142135623730951},"356":{"tf":1.0},"359":{"tf":1.0},"36":{"tf":1.4142135623730951},"38":{"tf":1.0},"383":{"tf":1.0},"4":{"tf":1.0},"446":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"617":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"69":{"tf":1.7320508075688772},"7":{"tf":1.0},"816":{"tf":1.7320508075688772},"822":{"tf":1.0},"833":{"tf":1.0},"910":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0},"981":{"tf":1.0}}}}}}},"i":{"c":{"df":2,"docs":{"1194":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":188,"docs":{"10":{"tf":1.0},"1021":{"tf":1.4142135623730951},"1063":{"tf":1.4142135623730951},"1072":{"tf":1.7320508075688772},"1094":{"tf":1.7320508075688772},"1095":{"tf":1.0},"1103":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1126":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1140":{"tf":3.3166247903554},"1142":{"tf":1.7320508075688772},"1145":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1151":{"tf":1.4142135623730951},"1179":{"tf":2.0},"1180":{"tf":2.0},"1191":{"tf":1.4142135623730951},"1192":{"tf":2.0},"1199":{"tf":1.0},"1205":{"tf":1.0},"1217":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"1270":{"tf":2.23606797749979},"1271":{"tf":1.7320508075688772},"1273":{"tf":1.0},"1274":{"tf":1.7320508075688772},"1290":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":2.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1367":{"tf":1.0},"1369":{"tf":2.0},"1372":{"tf":1.0},"1374":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"1376":{"tf":1.4142135623730951},"1378":{"tf":2.23606797749979},"1379":{"tf":1.7320508075688772},"1381":{"tf":2.0},"1382":{"tf":1.7320508075688772},"1384":{"tf":1.4142135623730951},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.4142135623730951},"1388":{"tf":2.23606797749979},"1390":{"tf":2.0},"1392":{"tf":2.449489742783178},"1394":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1401":{"tf":2.6457513110645907},"1402":{"tf":2.6457513110645907},"1403":{"tf":1.7320508075688772},"1404":{"tf":2.23606797749979},"1405":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"327":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"388":{"tf":1.0},"391":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":2.0},"427":{"tf":1.7320508075688772},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.7320508075688772},"434":{"tf":1.7320508075688772},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.7320508075688772},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"483":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"501":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"515":{"tf":1.0},"527":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"545":{"tf":1.4142135623730951},"555":{"tf":1.0},"557":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"576":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"588":{"tf":1.7320508075688772},"592":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"618":{"tf":1.4142135623730951},"622":{"tf":1.0},"625":{"tf":1.4142135623730951},"638":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.7320508075688772},"666":{"tf":2.449489742783178},"667":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"670":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.4142135623730951},"679":{"tf":1.0},"681":{"tf":1.4142135623730951},"684":{"tf":2.449489742783178},"686":{"tf":1.4142135623730951},"687":{"tf":1.0},"692":{"tf":1.4142135623730951},"704":{"tf":1.0},"712":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.0},"725":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"75":{"tf":1.4142135623730951},"769":{"tf":1.4142135623730951},"770":{"tf":1.0},"79":{"tf":1.7320508075688772},"794":{"tf":1.7320508075688772},"82":{"tf":1.0},"822":{"tf":1.4142135623730951},"83":{"tf":1.0},"831":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"9":{"tf":1.0},"905":{"tf":1.0},"906":{"tf":1.0},"916":{"tf":1.4142135623730951},"921":{"tf":1.4142135623730951},"925":{"tf":1.0},"97":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"992":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"23":{"tf":1.0}}}}}}},"n":{"a":{"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1227":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":3,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0},"1404":{"tf":2.23606797749979}},"i":{"d":{"df":1,"docs":{"1010":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"u":{"d":{"df":53,"docs":{"100":{"tf":1.0},"1006":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1114":{"tf":1.0},"1137":{"tf":1.0},"1194":{"tf":1.0},"1219":{"tf":1.0},"125":{"tf":1.0},"1255":{"tf":1.0},"1295":{"tf":1.0},"1324":{"tf":1.0},"1490":{"tf":1.0},"1522":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"204":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.0},"28":{"tf":1.0},"290":{"tf":1.0},"317":{"tf":1.0},"328":{"tf":1.0},"33":{"tf":1.0},"332":{"tf":1.0},"386":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.4142135623730951},"544":{"tf":1.0},"620":{"tf":1.0},"634":{"tf":1.0},"736":{"tf":1.0},"739":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"787":{"tf":1.0},"789":{"tf":1.0},"792":{"tf":1.4142135623730951},"813":{"tf":1.0},"911":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"956":{"tf":1.0},"994":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"932":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":18,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"1340":{"tf":1.0},"1493":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"688":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"760":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1200":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1200":{"tf":1.0},"1482":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":3,"docs":{"1027":{"tf":1.0},"1515":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":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":{"192":{"tf":1.0},"303":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"2":{"df":3,"docs":{"1404":{"tf":1.4142135623730951},"79":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"1163":{"tf":1.0},"199":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"857":{"tf":1.0},"915":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":9,"docs":{"1080":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1300":{"tf":2.6457513110645907},"1304":{"tf":2.0},"1306":{"tf":1.4142135623730951},"1308":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951}}}},"i":{"c":{"df":3,"docs":{"182":{"tf":1.0},"780":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":4,"docs":{"152":{"tf":1.0},"51":{"tf":1.0},"753":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1022":{"tf":1.0},"56":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"!":{"(":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"299":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"295":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"595":{"tf":1.0},"597":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"361":{"tf":1.0},"363":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"595":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"a":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"b":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1145":{"tf":1.0}}},"df":21,"docs":{"1324":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"297":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"363":{"tf":1.4142135623730951},"442":{"tf":1.0},"595":{"tf":1.0},"597":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"884":{"tf":1.0},"899":{"tf":1.4142135623730951},"902":{"tf":1.0},"966":{"tf":1.0},"979":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":23,"docs":{"120":{"tf":1.0},"1381":{"tf":1.0},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1428":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"363":{"tf":1.0},"47":{"tf":1.0},"597":{"tf":1.0},"66":{"tf":1.0},"733":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":2.0},"761":{"tf":1.0},"899":{"tf":1.4142135623730951},"994":{"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":7,"docs":{"1042":{"tf":1.0},"1054":{"tf":1.0},"1075":{"tf":1.0},"1298":{"tf":1.0},"232":{"tf":1.4142135623730951},"248":{"tf":1.0},"919":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"34":{"tf":1.0}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":5,"docs":{"1109":{"tf":1.0},"1123":{"tf":1.4142135623730951},"308":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"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":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"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":2,"docs":{"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}}}},"df":21,"docs":{"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"1165":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.0},"1225":{"tf":1.0},"1248":{"tf":1.0},"1258":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.7320508075688772},"1425":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.4142135623730951},"149":{"tf":1.0},"580":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"8":{"tf":1.0},"925":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":74,"docs":{"1107":{"tf":1.0},"111":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1180":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1225":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":1.0},"1349":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"141":{"tf":1.0},"1410":{"tf":1.0},"1425":{"tf":1.0},"1460":{"tf":1.0},"1476":{"tf":1.0},"149":{"tf":1.4142135623730951},"209":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"283":{"tf":1.4142135623730951},"288":{"tf":1.0},"386":{"tf":1.0},"387":{"tf":1.4142135623730951},"42":{"tf":1.0},"420":{"tf":1.0},"451":{"tf":1.0},"463":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"54":{"tf":1.0},"580":{"tf":1.0},"620":{"tf":1.0},"621":{"tf":1.4142135623730951},"654":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"71":{"tf":1.4142135623730951}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.0},"845":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}}},"=":{"$":{"1":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"\"":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1338":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"1":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":16,"docs":{"1162":{"tf":1.0},"1166":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1381":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1432":{"tf":1.4142135623730951},"210":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0},"72":{"tf":1.0},"911":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"939":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1082":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":2,"docs":{"45":{"tf":1.0},"989":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"372":{"tf":1.4142135623730951},"606":{"tf":1.4142135623730951},"66":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":125,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.0},"1165":{"tf":1.4142135623730951},"117":{"tf":1.0},"1223":{"tf":2.0},"1349":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1409":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"321":{"tf":1.7320508075688772},"322":{"tf":1.0},"323":{"tf":1.7320508075688772},"324":{"tf":1.4142135623730951},"325":{"tf":1.0},"326":{"tf":1.0},"327":{"tf":1.7320508075688772},"328":{"tf":1.0},"329":{"tf":1.0},"330":{"tf":1.0},"331":{"tf":1.0},"332":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"336":{"tf":1.0},"337":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"341":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"346":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"349":{"tf":1.0},"350":{"tf":1.0},"351":{"tf":1.4142135623730951},"352":{"tf":1.0},"353":{"tf":1.4142135623730951},"354":{"tf":1.0},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"5":{"tf":1.0},"514":{"tf":1.7320508075688772},"547":{"tf":1.0},"548":{"tf":1.7320508075688772},"549":{"tf":1.0},"550":{"tf":1.7320508075688772},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":1.0},"554":{"tf":2.23606797749979},"555":{"tf":1.7320508075688772},"556":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"564":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"568":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"573":{"tf":1.0},"574":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"577":{"tf":1.0},"578":{"tf":1.7320508075688772},"579":{"tf":1.7320508075688772},"580":{"tf":1.7320508075688772},"581":{"tf":1.7320508075688772},"582":{"tf":1.0},"583":{"tf":1.7320508075688772},"584":{"tf":1.0},"585":{"tf":1.7320508075688772},"586":{"tf":1.7320508075688772},"587":{"tf":1.0},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"590":{"tf":1.0},"6":{"tf":1.0},"682":{"tf":1.4142135623730951},"691":{"tf":1.7320508075688772},"70":{"tf":2.449489742783178},"727":{"tf":1.0},"74":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"8":{"tf":1.4142135623730951},"837":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":2.0}}},"n":{"c":{"df":16,"docs":{"332":{"tf":1.0},"388":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"542":{"tf":1.0},"545":{"tf":1.0},"558":{"tf":1.0},"587":{"tf":1.0},"622":{"tf":1.0},"686":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"718":{"tf":1.0},"726":{"tf":1.4142135623730951},"75":{"tf":1.0},"79":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"1367":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":13,"docs":{"1292":{"tf":1.0},"134":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1449":{"tf":1.0},"179":{"tf":1.0},"234":{"tf":1.0},"253":{"tf":1.0},"545":{"tf":1.0},"711":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"976":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"763":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"309":{"tf":1.0},"319":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"t":{"df":1,"docs":{"1180":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":7,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1306":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"742":{"tf":1.0},"901":{"tf":1.0}},"r":{"df":174,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1026":{"tf":1.0},"1042":{"tf":1.0},"107":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"108":{"tf":1.0},"1137":{"tf":1.0},"1147":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1154":{"tf":1.4142135623730951},"1157":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.4142135623730951},"1183":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1210":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1221":{"tf":1.7320508075688772},"1261":{"tf":1.0},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1266":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":2.0},"1299":{"tf":1.4142135623730951},"1303":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1396":{"tf":2.0},"1397":{"tf":1.0},"1398":{"tf":1.0},"1399":{"tf":1.0},"1400":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.7320508075688772},"1421":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1523":{"tf":1.4142135623730951},"16":{"tf":1.0},"17":{"tf":1.4142135623730951},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"255":{"tf":1.4142135623730951},"277":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.0},"321":{"tf":1.0},"330":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"356":{"tf":1.0},"364":{"tf":1.4142135623730951},"382":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"385":{"tf":1.0},"421":{"tf":1.4142135623730951},"422":{"tf":2.0},"423":{"tf":1.0},"424":{"tf":1.0},"425":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"428":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"435":{"tf":1.0},"436":{"tf":1.0},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.0},"441":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"444":{"tf":1.0},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"447":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.4142135623730951},"454":{"tf":1.0},"456":{"tf":1.0},"480":{"tf":1.4142135623730951},"481":{"tf":1.0},"482":{"tf":1.0},"5":{"tf":1.7320508075688772},"503":{"tf":1.4142135623730951},"512":{"tf":1.4142135623730951},"520":{"tf":1.0},"547":{"tf":1.4142135623730951},"548":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.4142135623730951},"59":{"tf":1.0},"590":{"tf":1.0},"598":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"664":{"tf":1.7320508075688772},"665":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.4142135623730951},"674":{"tf":1.7320508075688772},"675":{"tf":1.0},"676":{"tf":1.4142135623730951},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.0},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"688":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"697":{"tf":1.0},"725":{"tf":1.0},"727":{"tf":1.0},"767":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"846":{"tf":1.0},"851":{"tf":1.0},"86":{"tf":1.0},"871":{"tf":1.0},"882":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"910":{"tf":1.0},"914":{"tf":1.4142135623730951},"931":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1102":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0}}}}}},"n":{"d":{"df":2,"docs":{"1194":{"tf":1.0},"780":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1144":{"tf":1.0}}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":10,"docs":{"11":{"tf":1.0},"1225":{"tf":1.0},"1263":{"tf":1.0},"21":{"tf":1.0},"31":{"tf":1.0},"423":{"tf":1.0},"663":{"tf":1.0},"82":{"tf":1.7320508075688772},"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":4,"docs":{"1177":{"tf":1.0},"439":{"tf":1.0},"470":{"tf":1.0},"669":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1183":{"tf":1.0},"670":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}}}},"df":2,"docs":{"732":{"tf":1.0},"88":{"tf":1.0}},"f":{"a":{"c":{"df":11,"docs":{"118":{"tf":1.0},"1407":{"tf":1.0},"357":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"4":{"tf":1.0},"516":{"tf":1.0},"591":{"tf":1.0},"693":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"510":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":9,"docs":{"1268":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"287":{"tf":1.0},"497":{"tf":1.0},"507":{"tf":1.0},"688":{"tf":1.0},"726":{"tf":1.0},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"231":{"tf":1.0},"95":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1026":{"tf":1.0},"1145":{"tf":1.0},"1177":{"tf":1.0},"1197":{"tf":1.0},"1211":{"tf":2.0},"1212":{"tf":1.0},"1213":{"tf":1.7320508075688772},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.0},"446":{"tf":1.0},"728":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"856":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"0":{"tf":1.0},"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},"18":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1282":{"tf":1.0},"477":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1127":{"tf":1.0}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":38,"docs":{"1127":{"tf":1.0},"1148":{"tf":1.0},"1169":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1307":{"tf":1.0},"1345":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1355":{"tf":1.0},"1375":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"1458":{"tf":2.0},"1461":{"tf":1.7320508075688772},"1465":{"tf":1.7320508075688772},"1471":{"tf":1.7320508075688772},"1479":{"tf":2.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"221":{"tf":1.0},"227":{"tf":1.0},"380":{"tf":1.0},"482":{"tf":1.0},"490":{"tf":1.0},"507":{"tf":1.0},"595":{"tf":1.0},"613":{"tf":1.0},"724":{"tf":1.0},"758":{"tf":1.0},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"930":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":7,"docs":{"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"738":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"1111":{"tf":1.7320508075688772},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1323":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1390":{"tf":1.0},"1404":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1323":{"tf":2.23606797749979},"1324":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1346":{"tf":1.4142135623730951}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":8,"docs":{"1111":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"198":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}},"p":{"df":3,"docs":{"1288":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1194":{"tf":1.4142135623730951}}}}}}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"708":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"950":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"698":{"tf":1.0}}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"644":{"tf":1.0}}}}}},"df":27,"docs":{"1142":{"tf":2.449489742783178},"1302":{"tf":2.0},"1375":{"tf":1.7320508075688772},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":2.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":2.0},"1404":{"tf":1.4142135623730951},"1517":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.4142135623730951},"587":{"tf":1.0},"588":{"tf":1.0},"631":{"tf":1.4142135623730951},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.4142135623730951},"653":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"772":{"tf":1.4142135623730951},"795":{"tf":1.0},"87":{"tf":1.4142135623730951},"922":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"253":{"tf":1.0},"319":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":4,"docs":{"379":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.0}},"l":{"df":5,"docs":{"1139":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1168":{"tf":1.4142135623730951},"1404":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"531":{"tf":1.0},"772":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"u":{"df":15,"docs":{"1164":{"tf":1.0},"1200":{"tf":2.0},"1292":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"19":{"tf":1.0},"350":{"tf":1.4142135623730951},"354":{"tf":1.4142135623730951},"451":{"tf":1.7320508075688772},"509":{"tf":1.4142135623730951},"582":{"tf":1.4142135623730951},"586":{"tf":1.4142135623730951},"679":{"tf":1.0},"92":{"tf":1.0},"929":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}},"df":22,"docs":{"1301":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1315":{"tf":1.4142135623730951},"1352":{"tf":1.7320508075688772},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1401":{"tf":2.0},"1403":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"397":{"tf":1.4142135623730951},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.4142135623730951},"419":{"tf":1.0},"520":{"tf":1.4142135623730951},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"410":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"'":{"df":3,"docs":{"357":{"tf":1.0},"471":{"tf":1.0},"591":{"tf":1.0}}},"(":{"'":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":28,"docs":{"1112":{"tf":2.23606797749979},"1121":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1130":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"863":{"tf":1.4142135623730951},"864":{"tf":1.0},"865":{"tf":1.0},"867":{"tf":1.7320508075688772},"868":{"tf":1.4142135623730951},"869":{"tf":2.6457513110645907},"870":{"tf":1.7320508075688772},"871":{"tf":1.7320508075688772},"873":{"tf":1.4142135623730951},"874":{"tf":1.0},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"874":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"868":{"tf":1.0},"872":{"tf":1.4142135623730951}}}}}},"r":{"df":5,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.7320508075688772},"23":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}}}}},"j":{"a":{"c":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"=":{"<":{"4":{"4":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":577,"docs":{"0":{"tf":2.0},"1":{"tf":2.0},"10":{"tf":1.4142135623730951},"1004":{"tf":1.0},"1014":{"tf":1.0},"1017":{"tf":1.0},"1021":{"tf":1.0},"1023":{"tf":1.0},"103":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"105":{"tf":1.0},"1050":{"tf":1.0},"1054":{"tf":1.0},"106":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1065":{"tf":1.0},"1067":{"tf":1.0},"107":{"tf":2.449489742783178},"1071":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"109":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"11":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"111":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1112":{"tf":1.0},"112":{"tf":1.4142135623730951},"1126":{"tf":1.0},"113":{"tf":1.0},"1137":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1151":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1166":{"tf":1.7320508075688772},"117":{"tf":1.0},"1173":{"tf":1.0},"1175":{"tf":2.23606797749979},"1176":{"tf":1.4142135623730951},"1179":{"tf":1.4142135623730951},"118":{"tf":1.0},"1180":{"tf":2.0},"1181":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1189":{"tf":1.0},"119":{"tf":2.0},"1192":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.7320508075688772},"12":{"tf":1.4142135623730951},"120":{"tf":2.6457513110645907},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1211":{"tf":1.0},"1212":{"tf":1.7320508075688772},"1213":{"tf":1.0},"1214":{"tf":1.4142135623730951},"122":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.7320508075688772},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1234":{"tf":1.0},"1235":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"124":{"tf":1.0},"1241":{"tf":1.0},"1244":{"tf":1.0},"1248":{"tf":1.4142135623730951},"125":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.7320508075688772},"1258":{"tf":2.0},"1262":{"tf":1.0},"1263":{"tf":1.0},"1265":{"tf":1.0},"1267":{"tf":1.7320508075688772},"1268":{"tf":1.4142135623730951},"127":{"tf":1.7320508075688772},"1270":{"tf":2.0},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.7320508075688772},"1277":{"tf":1.0},"1278":{"tf":1.4142135623730951},"1279":{"tf":1.0},"128":{"tf":2.449489742783178},"1281":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1288":{"tf":1.4142135623730951},"129":{"tf":2.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1298":{"tf":1.4142135623730951},"13":{"tf":1.0},"130":{"tf":1.7320508075688772},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1312":{"tf":1.0},"1316":{"tf":1.0},"1317":{"tf":1.0},"1318":{"tf":2.449489742783178},"132":{"tf":1.7320508075688772},"1320":{"tf":2.23606797749979},"1321":{"tf":1.4142135623730951},"1323":{"tf":2.6457513110645907},"1324":{"tf":2.0},"1325":{"tf":1.7320508075688772},"1326":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":2.0},"1330":{"tf":2.6457513110645907},"1332":{"tf":1.4142135623730951},"1333":{"tf":2.8284271247461903},"1334":{"tf":2.449489742783178},"1336":{"tf":1.4142135623730951},"1338":{"tf":1.0},"1339":{"tf":1.4142135623730951},"134":{"tf":2.6457513110645907},"1340":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1343":{"tf":3.1622776601683795},"1345":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1349":{"tf":1.0},"135":{"tf":1.7320508075688772},"1355":{"tf":2.23606797749979},"1358":{"tf":2.0},"1359":{"tf":1.7320508075688772},"136":{"tf":2.0},"1367":{"tf":1.4142135623730951},"1369":{"tf":1.0},"137":{"tf":1.4142135623730951},"1371":{"tf":1.0},"1372":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"138":{"tf":1.7320508075688772},"1381":{"tf":2.8284271247461903},"1382":{"tf":2.23606797749979},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"139":{"tf":1.7320508075688772},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.7320508075688772},"1396":{"tf":1.0},"14":{"tf":1.0},"1401":{"tf":2.449489742783178},"1402":{"tf":2.6457513110645907},"1404":{"tf":1.7320508075688772},"1405":{"tf":2.23606797749979},"1407":{"tf":1.0},"1409":{"tf":2.0},"141":{"tf":1.7320508075688772},"1410":{"tf":2.23606797749979},"1411":{"tf":2.0},"1413":{"tf":2.0},"1415":{"tf":2.0},"1417":{"tf":2.0},"1418":{"tf":1.0},"1419":{"tf":3.1622776601683795},"142":{"tf":2.0},"1420":{"tf":2.6457513110645907},"1421":{"tf":2.449489742783178},"1422":{"tf":2.23606797749979},"1423":{"tf":2.6457513110645907},"1425":{"tf":2.449489742783178},"1426":{"tf":1.7320508075688772},"1427":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1432":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":1.0},"1445":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1454":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"146":{"tf":1.0},"1460":{"tf":2.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"147":{"tf":1.0},"1470":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1484":{"tf":1.0},"149":{"tf":1.4142135623730951},"1493":{"tf":1.4142135623730951},"1494":{"tf":1.4142135623730951},"1495":{"tf":1.0},"1497":{"tf":1.0},"1498":{"tf":1.0},"1499":{"tf":1.0},"150":{"tf":1.4142135623730951},"1500":{"tf":1.0},"1502":{"tf":1.0},"1503":{"tf":1.4142135623730951},"1505":{"tf":1.0},"151":{"tf":1.0},"1510":{"tf":1.4142135623730951},"1512":{"tf":2.23606797749979},"1513":{"tf":1.4142135623730951},"1515":{"tf":1.0},"152":{"tf":1.0},"1524":{"tf":2.0},"1526":{"tf":2.0},"1529":{"tf":2.23606797749979},"1530":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.4142135623730951},"17":{"tf":1.0},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"185":{"tf":1.4142135623730951},"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.4142135623730951},"196":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.7320508075688772},"21":{"tf":1.7320508075688772},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"216":{"tf":1.0},"219":{"tf":1.0},"22":{"tf":1.7320508075688772},"220":{"tf":1.0},"223":{"tf":1.0},"226":{"tf":2.23606797749979},"23":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.23606797749979},"236":{"tf":1.4142135623730951},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"242":{"tf":2.23606797749979},"25":{"tf":1.4142135623730951},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"257":{"tf":1.4142135623730951},"258":{"tf":2.0},"259":{"tf":1.0},"26":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"29":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.0},"295":{"tf":1.0},"299":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"306":{"tf":1.0},"31":{"tf":1.7320508075688772},"310":{"tf":1.0},"315":{"tf":1.0},"32":{"tf":1.0},"321":{"tf":1.7320508075688772},"33":{"tf":1.0},"336":{"tf":1.0},"34":{"tf":1.0},"347":{"tf":1.0},"348":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.7320508075688772},"357":{"tf":1.0},"358":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.0},"368":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"386":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"414":{"tf":1.0},"422":{"tf":1.4142135623730951},"423":{"tf":1.0},"424":{"tf":2.0},"426":{"tf":2.23606797749979},"427":{"tf":2.6457513110645907},"429":{"tf":1.0},"43":{"tf":1.0},"431":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"445":{"tf":1.0},"446":{"tf":2.0},"447":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"453":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"46":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.0},"463":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"470":{"tf":1.7320508075688772},"471":{"tf":1.7320508075688772},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"478":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":2.0},"487":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"509":{"tf":1.0},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"516":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"548":{"tf":2.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"555":{"tf":1.0},"556":{"tf":1.4142135623730951},"557":{"tf":1.0},"56":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"574":{"tf":1.0},"576":{"tf":1.0},"578":{"tf":2.23606797749979},"579":{"tf":2.0},"580":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"583":{"tf":2.23606797749979},"585":{"tf":1.4142135623730951},"586":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"589":{"tf":1.4142135623730951},"591":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0},"6":{"tf":1.4142135623730951},"60":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"620":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"63":{"tf":1.0},"648":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"666":{"tf":2.8284271247461903},"667":{"tf":2.23606797749979},"669":{"tf":1.7320508075688772},"67":{"tf":1.0},"672":{"tf":1.4142135623730951},"673":{"tf":1.4142135623730951},"675":{"tf":2.0},"676":{"tf":1.0},"678":{"tf":1.0},"68":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.4142135623730951},"687":{"tf":1.4142135623730951},"690":{"tf":1.0},"691":{"tf":1.0},"692":{"tf":1.4142135623730951},"693":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"70":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"71":{"tf":1.7320508075688772},"712":{"tf":1.0},"718":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"72":{"tf":2.0},"725":{"tf":1.0},"726":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"73":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"738":{"tf":1.0},"739":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":1.0},"769":{"tf":1.0},"771":{"tf":1.4142135623730951},"774":{"tf":1.4142135623730951},"779":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"8":{"tf":2.23606797749979},"800":{"tf":1.0},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.0},"841":{"tf":1.7320508075688772},"850":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"88":{"tf":2.23606797749979},"887":{"tf":1.0},"89":{"tf":1.0},"898":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"905":{"tf":1.0},"907":{"tf":1.0},"910":{"tf":1.0},"913":{"tf":1.0},"916":{"tf":1.7320508075688772},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"93":{"tf":1.4142135623730951},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"94":{"tf":1.0},"943":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"956":{"tf":1.0},"96":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.4142135623730951},"979":{"tf":1.7320508075688772},"981":{"tf":1.0},"986":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":2.0}},"s":{"'":{"df":1,"docs":{"1447":{"tf":1.0}}},".":{"a":{"2":{"a":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"369":{"tf":1.0},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"443":{"tf":1.0},"667":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"1510":{"tf":1.0},"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":73,"docs":{"113":{"tf":1.0},"1140":{"tf":1.0},"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.4142135623730951},"122":{"tf":1.0},"1228":{"tf":1.0},"124":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1276":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1320":{"tf":1.0},"1355":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1510":{"tf":1.0},"1518":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"160":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"337":{"tf":1.0},"347":{"tf":1.0},"361":{"tf":1.4142135623730951},"389":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"436":{"tf":1.0},"462":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"497":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"560":{"tf":1.0},"564":{"tf":1.0},"574":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.4142135623730951},"623":{"tf":1.0},"666":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"907":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"731":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.4142135623730951}},"e":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"557":{"tf":1.0},"562":{"tf":1.0},"652":{"tf":1.0},"661":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"609":{"tf":1.0},"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"(":{")":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"383":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"376":{"tf":1.0},"382":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"651":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"1264":{"tf":1.4142135623730951}}}}}},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":64,"docs":{"10":{"tf":1.0},"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1112":{"tf":1.0},"1126":{"tf":1.0},"1140":{"tf":1.0},"1149":{"tf":1.0},"1180":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1372":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1404":{"tf":1.7320508075688772},"555":{"tf":1.0},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.4142135623730951},"588":{"tf":1.0},"622":{"tf":1.0},"625":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"659":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"673":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"681":{"tf":1.0},"684":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"723":{"tf":1.0},"738":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.0},"921":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"618":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1273":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"545":{"tf":1.0},"712":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"384":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1301":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":18,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1437":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1437":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"473":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"616":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"618":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"599":{"tf":1.0},"617":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"{":{"\"":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"592":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"605":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"713":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}},"df":0,"docs":{}},"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":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"670":{"tf":1.0},"676":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"715":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951}}}}}}}},"{":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"715":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"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":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"382":{"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"384":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"371":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"439":{"tf":1.0}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1290":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.4142135623730951},"474":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"467":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"469":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":8,"docs":{"1145":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"82":{"tf":1.0},"916":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1139":{"tf":1.0},"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1277":{"tf":1.0},"487":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"618":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"384":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"592":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"714":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"714":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"669":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"670":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"688":{"tf":1.0},"716":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"716":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"676":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1313":{"tf":1.0},"1315":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1301":{"tf":1.0}}}},"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":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"440":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"463":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":2,"docs":{"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":5,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"364":{"tf":1.0},"382":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"368":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"71":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"104":{"tf":1.0},"70":{"tf":1.0}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"963":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"734":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":1,"docs":{"929":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},":":{"a":{"2":{"a":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"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":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"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":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"&":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"265":{"tf":1.0},"268":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"283":{"tf":1.0},"294":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"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":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"{":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{":":{":":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"860":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"873":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"285":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"{":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1084":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"274":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"1530":{"tf":1.0}}}}}}}},"df":0,"docs":{}},">":{"=":{"0":{".":{"1":{".":{"0":{"df":1,"docs":{"575":{"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":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"df":2,"docs":{"1392":{"tf":2.23606797749979},"684":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1392":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1430":{"tf":1.0}}}}},"i":{"d":{"=":{"<":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1250":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1003":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":19,"docs":{"1047":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1204":{"tf":1.0},"1419":{"tf":1.0},"1515":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"=":{"\"":{"df":0,"docs":{},"r":{"df":5,"docs":{"336":{"tf":1.0},"557":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"r":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":45,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1042":{"tf":2.0},"1047":{"tf":1.4142135623730951},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1461":{"tf":1.0},"1515":{"tf":1.4142135623730951},"160":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":12,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"1520":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":11,"docs":{"1139":{"tf":1.0},"1437":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1095":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"$":{"(":{"d":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1329":{"tf":1.0},"142":{"tf":1.0},"220":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1330":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1460":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"682":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"113":{"tf":1.0},"116":{"tf":1.0},"1430":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":2,"docs":{"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"/":{"*":{"*":{"/":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"141":{"tf":1.0},"87":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1063":{"tf":1.0},"1510":{"tf":1.0},"1513":{"tf":1.0},"1522":{"tf":1.0},"1530":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"[":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"]":{"/":{"[":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"]":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1063":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"/":{"[":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1326":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1430":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":42,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1106":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0},"903":{"tf":1.4142135623730951},"911":{"tf":1.0}}},"y":{"=":{"\"":{".":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"557":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"562":{"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":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1342":{"tf":1.0}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"s":{"=":{"3":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"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":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"0":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"=":{"1":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"=":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1296":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"o":{"df":0,"docs":{},"r":{"d":{"@":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"5":{"4":{"3":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1079":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":41,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1095":{"tf":1.0},"1097":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1105":{"tf":1.0},"113":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"893":{"tf":1.0},"902":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1497":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":44,"docs":{"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":2.0},"1454":{"tf":1.7320508075688772},"1456":{"tf":1.0},"1461":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"389":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":1.4142135623730951},"902":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"f":{"df":4,"docs":{"336":{"tf":1.0},"562":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}},"'":{"df":0,"docs":{},"f":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"896":{"tf":1.4142135623730951},"946":{"tf":1.0},"965":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"896":{"tf":1.4142135623730951},"902":{"tf":1.0},"908":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":2.0},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1310":{"tf":2.0},"1312":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"304":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1300":{"tf":1.0},"1306":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1452":{"tf":1.0}},"e":{"=":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"1454":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"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":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"965":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1248":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1239":{"tf":1.7320508075688772},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"i":{"d":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"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":34,"docs":{"113":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1461":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"890":{"tf":1.0},"902":{"tf":1.0},"903":{"tf":1.4142135623730951}}},"y":{"=":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"562":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"557":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":3,"docs":{"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"652":{"tf":1.0},"661":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"139":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1342":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1214":{"tf":1.0},"1436":{"tf":1.0},"97":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1215":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1215":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":2,"docs":{"1436":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"o":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"t":{"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":{"995":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":44,"docs":{"1043":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1285":{"tf":1.4142135623730951},"1320":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.4142135623730951},"1518":{"tf":1.0},"1530":{"tf":1.0},"161":{"tf":1.4142135623730951},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"347":{"tf":1.0},"352":{"tf":1.4142135623730951},"389":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"574":{"tf":1.0},"584":{"tf":1.4142135623730951},"623":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"889":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.4142135623730951}},"s":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1530":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"/":{"*":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1520":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1520":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":4,"docs":{"1520":{"tf":2.0},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"o":{"a":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"m":{"a":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1507":{"tf":1.0},"918":{"tf":1.0},"932":{"tf":1.0}},"s":{"=":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"7":{"7":{"7":{"6":{"0":{"0":{"0":{"df":1,"docs":{"933":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1208":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1199":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"684":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"$":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"963":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"903":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1215":{"tf":1.0},"1466":{"tf":1.0},"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"1448":{"tf":1.0},"1455":{"tf":1.0},"332":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"969":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"1507":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"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":{"911":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1310":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":3,"docs":{"740":{"tf":1.0},"895":{"tf":1.0},"902":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"304":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1237":{"tf":1.7320508075688772},"1247":{"tf":1.0},"1248":{"tf":1.0},"98":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":4,"docs":{"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"969":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"=":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1159":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"1":{"df":1,"docs":{"1159":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"1081":{"tf":1.0},"262":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":8,"docs":{"113":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1507":{"tf":1.0},"332":{"tf":1.0},"418":{"tf":1.0},"897":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.7320508075688772}}},"y":{"_":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":2,"docs":{"95":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1209":{"tf":1.0},"847":{"tf":1.0}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1248":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1240":{"tf":1.7320508075688772},"1247":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":2,"docs":{"1081":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951}}}}}}},"a":{"2":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1218":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1217":{"tf":1.0},"1218":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":54,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1349":{"tf":1.4142135623730951},"1351":{"tf":1.4142135623730951},"1352":{"tf":1.4142135623730951},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1361":{"tf":1.4142135623730951},"1362":{"tf":1.4142135623730951},"1363":{"tf":1.4142135623730951},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"327":{"tf":1.4142135623730951},"329":{"tf":1.0},"332":{"tf":1.7320508075688772},"335":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951},"359":{"tf":1.0},"385":{"tf":1.4142135623730951},"388":{"tf":1.4142135623730951},"391":{"tf":1.4142135623730951},"419":{"tf":1.4142135623730951},"420":{"tf":1.4142135623730951},"515":{"tf":1.0},"516":{"tf":1.7320508075688772},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"544":{"tf":1.7320508075688772},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.4142135623730951},"593":{"tf":1.0},"619":{"tf":1.4142135623730951},"692":{"tf":1.0},"693":{"tf":1.7320508075688772},"694":{"tf":1.4142135623730951},"711":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.7320508075688772},"738":{"tf":1.4142135623730951},"75":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"151":{"tf":1.0},"167":{"tf":1.0},"244":{"tf":1.4142135623730951},"757":{"tf":1.0},"763":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"941":{"tf":1.0},"976":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"536":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"843":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"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":3,"docs":{"836":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"836":{"tf":1.0},"841":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"832":{"tf":1.4142135623730951},"835":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"836":{"tf":1.0},"842":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":17,"docs":{"1332":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"741":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"757":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}}}}}}}},"r":{"df":21,"docs":{"1143":{"tf":1.0},"1484":{"tf":1.0},"217":{"tf":1.0},"221":{"tf":1.0},"224":{"tf":1.4142135623730951},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"523":{"tf":1.4142135623730951},"524":{"tf":1.4142135623730951},"525":{"tf":1.0},"53":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.4142135623730951},"702":{"tf":1.0},"785":{"tf":1.4142135623730951},"858":{"tf":1.0},"953":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1486":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}},"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":2,"docs":{"217":{"tf":1.0},"224":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":7,"docs":{"1046":{"tf":1.0},"224":{"tf":1.0},"227":{"tf":1.0},"53":{"tf":1.0},"785":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.4142135623730951}}}}}}}}}}}}}}}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"779":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"885":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"854":{"tf":1.0},"859":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"856":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"856":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1084":{"tf":1.0},"854":{"tf":1.0},"859":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"856":{"tf":1.0},"857":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"856":{"tf":1.0},"859":{"tf":1.0}}}}},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":3,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"329":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"154":{"tf":1.0},"157":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"997":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"536":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"1305":{"tf":1.0},"262":{"tf":2.0},"329":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":1,"docs":{"1305":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1309":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1309":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"?":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":1,"docs":{"1309":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1309":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1309":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1309":{"tf":1.0}}}}}},"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"789":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"815":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"615":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1367":{"tf":2.6457513110645907},"1394":{"tf":2.449489742783178},"329":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.7320508075688772}}}}}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":32,"docs":{"1148":{"tf":1.4142135623730951},"1267":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.4142135623730951},"1495":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"479":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.4142135623730951},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"509":{"tf":1.4142135623730951},"510":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.4142135623730951},"538":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":5,"docs":{"1091":{"tf":1.0},"186":{"tf":1.4142135623730951},"787":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"186":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"186":{"tf":1.0}}}}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"186":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"186":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"96":{"tf":1.0},"97":{"tf":1.0}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"445":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"331":{"tf":1.0}}}}}}}}}},"i":{"d":{"df":50,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1314":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.4142135623730951},"167":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"192":{"tf":1.0},"224":{"tf":1.4142135623730951},"244":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.0},"468":{"tf":1.0},"605":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"783":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.0}}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"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":{"536":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"997":{"tf":1.0}}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1268":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"537":{"tf":1.0},"539":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":28,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"780":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"874":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":6,"docs":{"1382":{"tf":1.0},"670":{"tf":1.0},"678":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0},"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"964":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1203":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"1148":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1382":{"tf":1.0},"667":{"tf":1.0},"670":{"tf":2.0},"678":{"tf":1.0},"687":{"tf":1.0},"717":{"tf":1.0},"719":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":14,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"330":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":2.0},"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"(":{"\"":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1381":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1180":{"tf":1.0},"1402":{"tf":1.0}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"b":{"df":1,"docs":{"1192":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}}}}},"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":4,"docs":{"675":{"tf":1.0},"684":{"tf":1.0},"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":1.0},"883":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"197":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"97":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":12,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"199":{"tf":1.0},"46":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"798":{"tf":1.4142135623730951},"816":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"i":{"df":4,"docs":{"1183":{"tf":1.4142135623730951},"1371":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":9,"docs":{"192":{"tf":1.0},"199":{"tf":1.4142135623730951},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"779":{"tf":1.4142135623730951},"798":{"tf":1.0},"861":{"tf":1.0},"987":{"tf":1.4142135623730951}}}}}}}}}}}},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"536":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"783":{"tf":1.4142135623730951}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":12,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"244":{"tf":1.0},"741":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"938":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"a":{"df":0,"docs":{},"m":{"df":6,"docs":{"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"151":{"tf":1.0},"155":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"h":{"a":{"2":{"5":{"6":{"df":13,"docs":{"1046":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1196":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"784":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"921":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":32,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1140":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1186":{"tf":1.0},"1196":{"tf":1.0},"1374":{"tf":1.0},"1392":{"tf":1.0},"1470":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"398":{"tf":1.0},"439":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"521":{"tf":1.0},"632":{"tf":1.0},"698":{"tf":1.0},"729":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"913":{"tf":1.0},"921":{"tf":1.0},"934":{"tf":1.0},"990":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"814":{"tf":1.0},"816":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":4,"docs":{"808":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"823":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"808":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"819":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"49":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"809":{"tf":1.0},"820":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"225":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":2.0},"822":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"d":{"df":2,"docs":{"808":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"804":{"tf":1.0},"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}},"u":{"b":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":2,"docs":{"809":{"tf":1.0},"818":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"808":{"tf":1.0},"816":{"tf":1.0},"822":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"866":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"865":{"tf":1.0},"867":{"tf":1.0},"872":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"865":{"tf":1.0},"872":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":5,"docs":{"1182":{"tf":1.0},"429":{"tf":2.0},"540":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"541":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":32,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"778":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"853":{"tf":1.0},"859":{"tf":1.0},"864":{"tf":1.0},"872":{"tf":1.0},"877":{"tf":1.0},"883":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"536":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"498":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"498":{"tf":1.4142135623730951}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"938":{"tf":1.4142135623730951},"940":{"tf":1.0},"976":{"tf":2.0},"979":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":41,"docs":{"1045":{"tf":1.0},"1109":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1217":{"tf":1.0},"1304":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1309":{"tf":1.0},"1392":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"180":{"tf":1.0},"181":{"tf":1.0},"192":{"tf":1.0},"400":{"tf":1.0},"41":{"tf":1.4142135623730951},"411":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"634":{"tf":1.4142135623730951},"645":{"tf":1.0},"729":{"tf":1.0},"736":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"798":{"tf":1.0},"816":{"tf":1.0},"836":{"tf":1.0},"861":{"tf":1.0},"911":{"tf":1.0},"987":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":15,"docs":{"167":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"779":{"tf":1.4142135623730951},"791":{"tf":1.0},"792":{"tf":1.0},"816":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{":":{"1":{"4":{"2":{"5":{"0":{"df":1,"docs":{"311":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1439":{"tf":1.0},"307":{"tf":1.0},"311":{"tf":1.4142135623730951}}}}}},"n":{"df":0,"docs":{},"e":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"761":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"761":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"321":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"n":{"(":{")":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"1140":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}}}}},"o":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"@":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"154":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":3,"docs":{"1404":{"tf":1.0},"154":{"tf":1.0},"766":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"601":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"1480":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1216":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"79":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":7,"docs":{"1112":{"tf":1.0},"1126":{"tf":1.0},"1151":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1302":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"1142":{"tf":1.0},"1171":{"tf":1.0}}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"634":{"tf":1.0},"635":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"{":{"\"":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"'":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"738":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"696":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1088":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"696":{"tf":1.0},"797":{"tf":1.0}}}}}}},"*":{"*":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"f":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{},"s":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"709":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"695":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"1143":{"tf":1.0},"769":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1384":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"1":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"2":{")":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":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":{"1392":{"tf":1.0}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"1302":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.0},"1171":{"tf":1.0},"725":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"604":{"tf":1.0},"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":12,"docs":{"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"588":{"tf":1.0},"656":{"tf":1.0},"699":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"642":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"605":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":6,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"532":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"372":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{")":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"518":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"770":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1361":{"tf":1.0},"1399":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1140":{"tf":1.0},"1401":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":7,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1352":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"'":{".":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"370":{"tf":1.0},"382":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1151":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"522":{"tf":1.0},"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"408":{"tf":1.0}},"s":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"371":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":12,"docs":{"1088":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1151":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"349":{"tf":1.0},"519":{"tf":1.7320508075688772},"522":{"tf":1.0},"738":{"tf":1.0},"797":{"tf":1.0}}},"y":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0},"75":{"tf":1.0}}}}},"t":{"df":4,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1399":{"tf":1.0}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1312":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1312":{"tf":1.0},"1369":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":4,"docs":{"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1353":{"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":{"a":{"df":0,"docs":{},"l":{"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"367":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"400":{"tf":1.0},"401":{"tf":1.0}}},"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":1,"docs":{"1403":{"tf":1.0}}}}},"df":0,"docs":{}},"{":{".":{".":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"796":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"b":{"df":1,"docs":{"64":{"tf":1.0}}},"df":0,"docs":{}}}}}},"b":{"df":12,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":2.0},"1081":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1300":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"df":182,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"1021":{"tf":1.0},"1057":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1080":{"tf":1.0},"1094":{"tf":1.0},"1112":{"tf":1.0},"1126":{"tf":1.0},"1136":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1149":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1169":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1231":{"tf":1.0},"127":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1287":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1302":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1340":{"tf":1.0},"136":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1394":{"tf":1.0},"1402":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":2.23606797749979},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1432":{"tf":1.7320508075688772},"1433":{"tf":1.0},"1479":{"tf":2.23606797749979},"16":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.7320508075688772},"178":{"tf":1.0},"181":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"262":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"288":{"tf":1.0},"36":{"tf":1.4142135623730951},"365":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"375":{"tf":1.0},"379":{"tf":1.0},"384":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"418":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.4142135623730951},"433":{"tf":1.0},"439":{"tf":1.0},"44":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"450":{"tf":1.0},"46":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"476":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772},"511":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.7320508075688772},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.4142135623730951},"523":{"tf":1.4142135623730951},"524":{"tf":1.0},"525":{"tf":1.4142135623730951},"528":{"tf":1.0},"532":{"tf":1.0},"536":{"tf":1.4142135623730951},"562":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"599":{"tf":1.4142135623730951},"601":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.4142135623730951},"606":{"tf":1.0},"608":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"618":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"64":{"tf":1.0},"652":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"66":{"tf":1.0},"661":{"tf":1.0},"669":{"tf":1.4142135623730951},"695":{"tf":1.0},"696":{"tf":1.7320508075688772},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"709":{"tf":1.0},"72":{"tf":1.0},"725":{"tf":1.0},"728":{"tf":2.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"736":{"tf":1.0},"737":{"tf":1.0},"738":{"tf":1.4142135623730951},"739":{"tf":1.0},"740":{"tf":1.0},"741":{"tf":1.4142135623730951},"742":{"tf":1.0},"743":{"tf":1.0},"744":{"tf":1.0},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"747":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.0},"794":{"tf":1.0},"822":{"tf":1.0},"828":{"tf":1.0},"842":{"tf":1.0},"851":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"921":{"tf":1.0},"94":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"p":{"c":{"df":2,"docs":{"1186":{"tf":1.0},"439":{"tf":1.0}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":3,"docs":{"581":{"tf":2.449489742783178},"590":{"tf":1.0},"6":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1219":{"tf":1.0},"1220":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1217":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"816":{"tf":1.0}}}}},"k":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"k":{"a":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"b":{"df":3,"docs":{"1015":{"tf":2.0},"1030":{"tf":1.7320508075688772},"1036":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":15,"docs":{"1047":{"tf":1.0},"1191":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1526":{"tf":1.0},"161":{"tf":1.0},"171":{"tf":1.4142135623730951},"204":{"tf":1.0},"433":{"tf":1.0},"908":{"tf":1.0},"924":{"tf":1.0},"95":{"tf":1.0},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}},"y":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"'":{"_":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1392":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1140":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1404":{"tf":1.0},"281":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"280":{"tf":1.0},"602":{"tf":1.0},"916":{"tf":1.0}}},"y":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"999":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":3,"docs":{"1217":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1145":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":269,"docs":{"1000":{"tf":2.0},"1001":{"tf":2.449489742783178},"1002":{"tf":2.0},"1003":{"tf":2.0},"1004":{"tf":1.7320508075688772},"1005":{"tf":1.0},"1006":{"tf":2.449489742783178},"1007":{"tf":2.23606797749979},"1008":{"tf":2.0},"1009":{"tf":1.0},"1010":{"tf":1.0},"1011":{"tf":1.4142135623730951},"1012":{"tf":2.0},"1013":{"tf":1.0},"1015":{"tf":1.0},"1018":{"tf":1.7320508075688772},"1023":{"tf":1.0},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.7320508075688772},"1033":{"tf":1.0},"1036":{"tf":1.0},"1043":{"tf":2.23606797749979},"1044":{"tf":2.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.7320508075688772},"1048":{"tf":1.0},"1052":{"tf":2.0},"1053":{"tf":1.0},"1066":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1085":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1163":{"tf":2.0},"1177":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1194":{"tf":1.0},"120":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1202":{"tf":1.4142135623730951},"1204":{"tf":1.7320508075688772},"1206":{"tf":1.0},"1208":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":2.6457513110645907},"1219":{"tf":1.0},"122":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1225":{"tf":1.7320508075688772},"1228":{"tf":1.4142135623730951},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.4142135623730951},"1253":{"tf":2.23606797749979},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.0},"127":{"tf":2.449489742783178},"1285":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1297":{"tf":1.0},"130":{"tf":1.0},"1300":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.0},"1332":{"tf":2.0},"1333":{"tf":1.0},"1342":{"tf":1.4142135623730951},"1369":{"tf":1.0},"139":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":2.6457513110645907},"1404":{"tf":1.0},"1410":{"tf":1.0},"1432":{"tf":1.0},"1436":{"tf":2.23606797749979},"1437":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.7320508075688772},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1455":{"tf":1.7320508075688772},"1462":{"tf":2.0},"1464":{"tf":2.6457513110645907},"1465":{"tf":2.6457513110645907},"1466":{"tf":2.0},"1467":{"tf":2.0},"147":{"tf":1.0},"149":{"tf":1.0},"1493":{"tf":1.0},"150":{"tf":1.4142135623730951},"1505":{"tf":2.0},"151":{"tf":1.0},"1512":{"tf":1.0},"1515":{"tf":1.0},"1519":{"tf":1.4142135623730951},"1520":{"tf":2.0},"1522":{"tf":1.0},"1528":{"tf":2.23606797749979},"1530":{"tf":1.0},"158":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"161":{"tf":2.449489742783178},"166":{"tf":1.0},"167":{"tf":1.0},"169":{"tf":2.0},"171":{"tf":1.4142135623730951},"180":{"tf":1.0},"192":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.4142135623730951},"250":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"261":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"276":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":2.0},"281":{"tf":1.0},"31":{"tf":1.0},"334":{"tf":1.0},"368":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"39":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"41":{"tf":1.7320508075688772},"418":{"tf":2.0},"42":{"tf":1.4142135623730951},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"447":{"tf":1.7320508075688772},"45":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"478":{"tf":2.0},"522":{"tf":1.4142135623730951},"526":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.4142135623730951},"536":{"tf":2.449489742783178},"544":{"tf":1.0},"58":{"tf":1.4142135623730951},"59":{"tf":3.1622776601683795},"608":{"tf":1.0},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"634":{"tf":1.0},"638":{"tf":1.0},"657":{"tf":2.0},"681":{"tf":2.0},"682":{"tf":1.0},"699":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.4142135623730951},"71":{"tf":1.0},"710":{"tf":1.4142135623730951},"72":{"tf":1.4142135623730951},"722":{"tf":1.7320508075688772},"724":{"tf":1.0},"76":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0},"816":{"tf":1.7320508075688772},"84":{"tf":1.4142135623730951},"847":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.7320508075688772},"892":{"tf":2.6457513110645907},"896":{"tf":1.0},"90":{"tf":1.7320508075688772},"908":{"tf":2.0},"91":{"tf":1.0},"911":{"tf":2.23606797749979},"913":{"tf":2.23606797749979},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.4142135623730951},"919":{"tf":1.0},"92":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.4142135623730951},"924":{"tf":2.6457513110645907},"925":{"tf":2.449489742783178},"926":{"tf":2.449489742783178},"939":{"tf":2.0},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.0},"950":{"tf":2.23606797749979},"951":{"tf":1.0},"962":{"tf":1.7320508075688772},"968":{"tf":1.7320508075688772},"969":{"tf":2.449489742783178},"97":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.7320508075688772},"976":{"tf":1.7320508075688772},"981":{"tf":2.8284271247461903},"982":{"tf":1.7320508075688772},"983":{"tf":2.449489742783178},"984":{"tf":1.4142135623730951},"985":{"tf":2.0},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":2.23606797749979},"989":{"tf":1.4142135623730951},"990":{"tf":1.4142135623730951},"991":{"tf":2.6457513110645907},"992":{"tf":2.23606797749979},"993":{"tf":1.7320508075688772},"994":{"tf":2.449489742783178},"995":{"tf":2.0},"996":{"tf":3.1622776601683795},"997":{"tf":2.23606797749979},"998":{"tf":1.4142135623730951},"999":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1505":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1436":{"tf":1.0},"368":{"tf":1.4142135623730951},"43":{"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":1,"docs":{"1307":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1085":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"745":{"tf":1.0}}},"df":0,"docs":{}}}}}},"m":{"df":1,"docs":{"1106":{"tf":1.0}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"62":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":3,"docs":{"77":{"tf":1.0},"81":{"tf":1.0},"833":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":8,"docs":{"1213":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1213":{"tf":1.0},"1217":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":9,"docs":{"1212":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"375":{"tf":1.0},"608":{"tf":1.0},"911":{"tf":1.0},"992":{"tf":1.0}}}}}},"o":{"a":{"df":7,"docs":{"1264":{"tf":1.0},"1268":{"tf":2.23606797749979},"454":{"tf":1.0},"464":{"tf":1.4142135623730951},"465":{"tf":2.8284271247461903},"471":{"tf":1.0},"539":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.7320508075688772},"719":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"l":{"a":{"b":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"1175":{"tf":1.0},"21":{"tf":1.0}}}},"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"831":{"tf":1.0},"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"1181":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1264":{"tf":1.0},"1310":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0},"3":{"tf":1.0},"43":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":7,"docs":{"1068":{"tf":1.0},"1169":{"tf":1.0},"1426":{"tf":1.4142135623730951},"206":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"818":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":6,"docs":{"1023":{"tf":1.0},"1027":{"tf":1.4142135623730951},"1033":{"tf":1.0},"185":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1039":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}},"df":2,"docs":{"1001":{"tf":1.0},"762":{"tf":1.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1070":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":8,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"115":{"tf":1.0},"1194":{"tf":1.0},"1477":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"934":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1084":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1482":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1015":{"tf":1.0},"1029":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"49":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1051":{"tf":1.0},"1175":{"tf":1.0},"871":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":1,"docs":{"1154":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":7,"docs":{"117":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"589":{"tf":1.0},"6":{"tf":1.0},"91":{"tf":1.0},"95":{"tf":1.0}}}},"v":{"df":1,"docs":{"1276":{"tf":1.0}}}},"d":{"df":1,"docs":{"885":{"tf":1.0}}},"df":0,"docs":{},"g":{"a":{"c":{"df":0,"docs":{},"i":{"df":6,"docs":{"1015":{"tf":1.0},"1026":{"tf":1.0},"1041":{"tf":1.0},"159":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}},"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1042":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":8,"docs":{"1130":{"tf":1.7320508075688772},"1175":{"tf":1.0},"1194":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"87":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"]":{"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1143":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"[":{"'":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1021":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"458":{"tf":1.0},"925":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1033":{"tf":1.0}}}},"t":{"'":{"df":4,"docs":{"19":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.0}}}}}},"df":45,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1103":{"tf":1.0},"1208":{"tf":1.0},"1276":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1509":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"204":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.7320508075688772},"310":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":1.0},"357":{"tf":1.0},"500":{"tf":1.4142135623730951},"545":{"tf":1.0},"591":{"tf":1.0},"676":{"tf":1.0},"711":{"tf":1.4142135623730951},"744":{"tf":1.0},"756":{"tf":1.0},"780":{"tf":1.7320508075688772},"853":{"tf":1.0},"864":{"tf":1.0},"877":{"tf":1.0},"899":{"tf":1.7320508075688772},"902":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"946":{"tf":1.4142135623730951},"959":{"tf":1.0},"966":{"tf":1.0},"976":{"tf":1.7320508075688772},"977":{"tf":1.7320508075688772},"978":{"tf":1.0}}}}}},"i":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1194":{"tf":1.0}}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":46,"docs":{"1017":{"tf":1.0},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"117":{"tf":1.4142135623730951},"18":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"4":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"57":{"tf":1.0},"841":{"tf":1.0},"99":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"115":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"759":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":7,"docs":{"1425":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"854":{"tf":1.0},"855":{"tf":1.4142135623730951},"981":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":3,"docs":{"368":{"tf":1.0},"43":{"tf":1.0},"602":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":9,"docs":{"1062":{"tf":1.0},"1083":{"tf":1.7320508075688772},"109":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1306":{"tf":1.0},"248":{"tf":1.0},"501":{"tf":2.23606797749979},"51":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":12,"docs":{"1154":{"tf":1.4142135623730951},"118":{"tf":1.0},"1403":{"tf":1.0},"1406":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"1479":{"tf":1.0},"374":{"tf":1.0},"4":{"tf":1.0},"607":{"tf":1.0},"67":{"tf":1.0},"762":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"742":{"tf":1.0}}}}}},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"k":{"df":12,"docs":{"1298":{"tf":1.0},"192":{"tf":1.0},"763":{"tf":1.0},"776":{"tf":1.0},"85":{"tf":1.0},"852":{"tf":1.0},"857":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.7320508075688772},"93":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1479":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"578":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"1154":{"tf":1.4142135623730951},"322":{"tf":1.0},"549":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"[":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"613":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1388":{"tf":1.0},"613":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1209":{"tf":1.0},"1255":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.4142135623730951},"1423":{"tf":1.0},"1436":{"tf":1.0},"1486":{"tf":1.7320508075688772},"270":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"583":{"tf":1.0},"599":{"tf":1.0},"605":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"732":{"tf":1.0},"747":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":2.0},"864":{"tf":1.0},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":3.1622776601683795},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"886":{"tf":1.0},"916":{"tf":1.4142135623730951},"996":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"1292":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"507":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":4,"docs":{"1038":{"tf":1.0},"129":{"tf":1.0},"234":{"tf":1.0},"96":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"m":{"df":2,"docs":{"789":{"tf":1.0},"790":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"1154":{"tf":3.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":2,"docs":{"43":{"tf":1.0},"97":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":104,"docs":{"1047":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1209":{"tf":1.0},"1273":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"1436":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.0},"266":{"tf":1.0},"270":{"tf":1.7320508075688772},"278":{"tf":1.0},"280":{"tf":1.7320508075688772},"286":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"358":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.4142135623730951},"364":{"tf":1.4142135623730951},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.4142135623730951},"378":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"388":{"tf":1.7320508075688772},"410":{"tf":1.0},"419":{"tf":1.0},"43":{"tf":2.23606797749979},"431":{"tf":1.0},"458":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.7320508075688772},"531":{"tf":1.0},"536":{"tf":1.0},"543":{"tf":1.0},"545":{"tf":1.0},"555":{"tf":1.7320508075688772},"557":{"tf":1.0},"558":{"tf":1.0},"561":{"tf":1.7320508075688772},"576":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.4142135623730951},"598":{"tf":1.4142135623730951},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.4142135623730951},"611":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"622":{"tf":1.7320508075688772},"644":{"tf":1.0},"653":{"tf":1.0},"659":{"tf":1.4142135623730951},"661":{"tf":1.0},"673":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.7320508075688772},"708":{"tf":1.0},"712":{"tf":1.0},"724":{"tf":1.0},"75":{"tf":1.0},"769":{"tf":1.0},"772":{"tf":1.4142135623730951},"79":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"892":{"tf":1.0},"894":{"tf":1.0},"904":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{",":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"1436":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1297":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":27,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1057":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1333":{"tf":1.0},"1346":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1440":{"tf":1.0},"1451":{"tf":2.0},"1452":{"tf":1.4142135623730951},"243":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"734":{"tf":1.0},"788":{"tf":1.0},"893":{"tf":1.0},"911":{"tf":1.4142135623730951},"930":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0},"992":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"458":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.0}}}}}}},"t":{"df":15,"docs":{"1095":{"tf":1.0},"1131":{"tf":1.0},"1430":{"tf":1.4142135623730951},"1452":{"tf":1.0},"734":{"tf":1.4142135623730951},"750":{"tf":1.4142135623730951},"762":{"tf":1.0},"775":{"tf":1.4142135623730951},"788":{"tf":1.0},"801":{"tf":1.4142135623730951},"830":{"tf":1.4142135623730951},"841":{"tf":1.0},"887":{"tf":1.0},"888":{"tf":1.4142135623730951},"929":{"tf":1.0}}}},"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"351":{"tf":1.0}}}}}}},"df":4,"docs":{"1046":{"tf":1.0},"1487":{"tf":1.4142135623730951},"726":{"tf":1.0},"954":{"tf":1.0}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":4,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"298":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"284":{"tf":1.0},"298":{"tf":1.0},"315":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":3,"docs":{"295":{"tf":1.0},"298":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":53,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1106":{"tf":1.0},"1191":{"tf":1.0},"1199":{"tf":1.7320508075688772},"1205":{"tf":2.0},"1288":{"tf":1.7320508075688772},"1293":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1438":{"tf":1.0},"1439":{"tf":3.7416573867739413},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.4142135623730951},"297":{"tf":1.7320508075688772},"298":{"tf":2.6457513110645907},"299":{"tf":1.7320508075688772},"306":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":1.7320508075688772},"314":{"tf":1.0},"315":{"tf":1.0},"317":{"tf":2.449489742783178},"36":{"tf":1.0},"4":{"tf":1.0},"433":{"tf":1.0},"437":{"tf":1.0},"449":{"tf":1.7320508075688772},"450":{"tf":1.0},"502":{"tf":1.7320508075688772},"679":{"tf":1.7320508075688772},"898":{"tf":1.0},"899":{"tf":2.23606797749979},"902":{"tf":1.0},"908":{"tf":1.0},"942":{"tf":1.0},"951":{"tf":1.0},"966":{"tf":1.7320508075688772},"969":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"1199":{"tf":1.0},"1293":{"tf":1.0},"679":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1205":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"\"":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"1205":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"28":{"tf":1.0},"929":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":1,"docs":{"816":{"tf":1.7320508075688772}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}}}}},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"298":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"317":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":5,"docs":{"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"250":{"tf":1.0},"55":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1131":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"k":{"df":11,"docs":{"1001":{"tf":1.4142135623730951},"1233":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"241":{"tf":1.7320508075688772},"759":{"tf":1.4142135623730951},"991":{"tf":1.0},"997":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"1077":{"tf":1.0},"1233":{"tf":1.7320508075688772},"1241":{"tf":1.0},"1251":{"tf":1.7320508075688772},"1256":{"tf":1.0},"130":{"tf":2.449489742783178},"1333":{"tf":1.4142135623730951},"143":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.7320508075688772},"241":{"tf":1.7320508075688772},"939":{"tf":1.0},"950":{"tf":1.0},"992":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"1312":{"tf":1.0}}},"t":{"df":1,"docs":{"1452":{"tf":1.0}}}},"w":{"df":3,"docs":{"76":{"tf":1.0},"80":{"tf":1.0},"869":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"82":{"tf":1.0},"925":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"976":{"tf":1.0},"978":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"977":{"tf":1.0}}}}}}},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}},"m":{"[":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1452":{"tf":1.0},"6":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}},"o":{"df":4,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1006":{"tf":1.0},"62":{"tf":1.0},"915":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"762":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"762":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":3,"docs":{"761":{"tf":1.0},"762":{"tf":1.0},"767":{"tf":1.0}}}}}},"n":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"1356":{"tf":1.0},"1359":{"tf":1.0},"420":{"tf":1.0},"443":{"tf":1.0},"474":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":30,"docs":{"1356":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.4142135623730951},"1382":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"458":{"tf":1.4142135623730951},"474":{"tf":1.0},"576":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"667":{"tf":1.0},"761":{"tf":1.0}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"1047":{"tf":1.0},"1314":{"tf":1.0},"1325":{"tf":1.0},"1503":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"21":{"tf":1.0},"42":{"tf":1.0},"516":{"tf":1.0},"59":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"798":{"tf":1.0},"947":{"tf":1.0},"983":{"tf":1.0},"998":{"tf":1.0}}}}},"df":0,"docs":{}}}},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1181":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":8,"docs":{"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"209":{"tf":1.0},"228":{"tf":1.0},"321":{"tf":1.0},"548":{"tf":1.0},"882":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1471":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":39,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1055":{"tf":1.0},"1073":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":2.0},"1209":{"tf":1.0},"1335":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"1441":{"tf":1.0},"146":{"tf":1.0},"257":{"tf":1.0},"322":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"420":{"tf":1.0},"447":{"tf":1.4142135623730951},"549":{"tf":1.0},"59":{"tf":1.4142135623730951},"590":{"tf":1.0},"61":{"tf":1.4142135623730951},"654":{"tf":1.0},"658":{"tf":1.4142135623730951},"681":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"802":{"tf":1.0},"816":{"tf":1.4142135623730951},"91":{"tf":1.0},"923":{"tf":1.4142135623730951},"947":{"tf":1.7320508075688772},"981":{"tf":1.0},"985":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1026":{"tf":1.0},"985":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"939":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"918":{"tf":1.0}},"i":{"df":4,"docs":{"1162":{"tf":1.0},"308":{"tf":1.0},"746":{"tf":1.0},"985":{"tf":1.0}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":9,"docs":{"1095":{"tf":1.0},"112":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1456":{"tf":1.0},"150":{"tf":1.4142135623730951},"238":{"tf":1.0},"36":{"tf":1.4142135623730951},"463":{"tf":2.23606797749979},"676":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"p":{"(":{"df":0,"docs":{},"f":{"df":1,"docs":{"1365":{"tf":1.0}}}},"df":3,"docs":{"1399":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"859":{"tf":1.0}}}},"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":2,"docs":{"1006":{"tf":1.0},"1214":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"41":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1001":{"tf":1.0},"1161":{"tf":1.0},"1200":{"tf":1.0},"1219":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1251":{"tf":1.0},"1260":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1528":{"tf":1.0},"188":{"tf":1.0},"204":{"tf":1.0},"252":{"tf":1.0},"286":{"tf":1.0},"939":{"tf":1.7320508075688772},"950":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"974":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1175":{"tf":1.0},"1286":{"tf":1.4142135623730951},"982":{"tf":1.4142135623730951}}}}}},"x":{"df":6,"docs":{"1036":{"tf":1.0},"1084":{"tf":1.0},"308":{"tf":1.0},"501":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":7,"docs":{"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1116":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1507":{"tf":1.0},"245":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}},"b":{"df":1,"docs":{"1512":{"tf":1.0}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"666":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{":":{"/":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1381":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"442":{"tf":1.4142135623730951},"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":5,"docs":{"1180":{"tf":1.0},"1192":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":6,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"617":{"tf":1.4142135623730951},"666":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}}}},"df":148,"docs":{"1020":{"tf":1.0},"1042":{"tf":1.0},"108":{"tf":1.0},"1148":{"tf":2.23606797749979},"1152":{"tf":1.7320508075688772},"1173":{"tf":2.23606797749979},"1174":{"tf":2.0},"1175":{"tf":2.8284271247461903},"1176":{"tf":2.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.7320508075688772},"1180":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1182":{"tf":1.7320508075688772},"1183":{"tf":1.4142135623730951},"1184":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":1.4142135623730951},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.4142135623730951},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.7320508075688772},"1193":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.4142135623730951},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.7320508075688772},"1207":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":2.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1357":{"tf":1.4142135623730951},"1358":{"tf":2.0},"1359":{"tf":2.23606797749979},"1370":{"tf":1.4142135623730951},"1380":{"tf":1.4142135623730951},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":2.0},"1402":{"tf":2.0},"1406":{"tf":1.4142135623730951},"1523":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"2":{"tf":1.0},"330":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"359":{"tf":1.0},"383":{"tf":1.7320508075688772},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":2.23606797749979},"423":{"tf":2.449489742783178},"424":{"tf":2.0},"425":{"tf":1.0},"426":{"tf":2.23606797749979},"427":{"tf":2.23606797749979},"428":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"431":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"435":{"tf":1.0},"436":{"tf":1.4142135623730951},"437":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.7320508075688772},"440":{"tf":1.4142135623730951},"441":{"tf":1.0},"442":{"tf":2.0},"443":{"tf":1.7320508075688772},"444":{"tf":1.0},"445":{"tf":1.0},"446":{"tf":1.4142135623730951},"447":{"tf":1.4142135623730951},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.4142135623730951},"452":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"540":{"tf":1.4142135623730951},"541":{"tf":1.4142135623730951},"542":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.4142135623730951},"593":{"tf":1.0},"6":{"tf":1.4142135623730951},"617":{"tf":1.7320508075688772},"619":{"tf":1.0},"662":{"tf":1.4142135623730951},"663":{"tf":2.23606797749979},"664":{"tf":2.0},"665":{"tf":1.0},"666":{"tf":2.23606797749979},"667":{"tf":1.7320508075688772},"668":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"673":{"tf":1.7320508075688772},"674":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"679":{"tf":1.4142135623730951},"680":{"tf":1.0},"681":{"tf":1.0},"682":{"tf":1.4142135623730951},"683":{"tf":1.0},"684":{"tf":1.7320508075688772},"685":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.4142135623730951},"688":{"tf":1.4142135623730951},"689":{"tf":1.0},"717":{"tf":1.4142135623730951},"719":{"tf":1.0},"727":{"tf":1.0},"847":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"916":{"tf":1.0},"955":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1401":{"tf":1.7320508075688772},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951}}}}}}}}}},"df":3,"docs":{"1340":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"n":{"df":3,"docs":{"144":{"tf":1.0},"837":{"tf":1.0},"855":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1114":{"tf":1.4142135623730951},"170":{"tf":1.0}}}}},"t":{"df":2,"docs":{"182":{"tf":1.0},"780":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"733":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":5,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"65":{"tf":1.4142135623730951},"858":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.7320508075688772}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"869":{"tf":1.0},"872":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"62":{"tf":1.0},"766":{"tf":1.0},"941":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":0,"docs":{},"i":{"df":21,"docs":{"1088":{"tf":1.4142135623730951},"1089":{"tf":1.0},"113":{"tf":1.0},"1209":{"tf":1.0},"1451":{"tf":1.7320508075688772},"1452":{"tf":1.7320508075688772},"285":{"tf":1.0},"340":{"tf":1.7320508075688772},"536":{"tf":1.0},"567":{"tf":1.7320508075688772},"722":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.0},"835":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":2.23606797749979},"845":{"tf":1.7320508075688772},"848":{"tf":2.23606797749979},"973":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"m":{"d":{"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"df":0,"docs":{}}},"df":3,"docs":{"831":{"tf":1.0},"833":{"tf":1.0},"838":{"tf":1.0}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"833":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"\\":{"df":0,"docs":{},"n":{"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"848":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":3,"docs":{"1219":{"tf":1.0},"802":{"tf":1.0},"820":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":91,"docs":{"1020":{"tf":1.0},"1021":{"tf":1.0},"1148":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1177":{"tf":2.23606797749979},"1184":{"tf":1.4142135623730951},"1186":{"tf":1.7320508075688772},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1212":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1237":{"tf":1.4142135623730951},"1248":{"tf":1.4142135623730951},"1263":{"tf":1.0},"1278":{"tf":1.0},"1281":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.4142135623730951},"1382":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"1457":{"tf":1.0},"197":{"tf":2.23606797749979},"358":{"tf":1.0},"380":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":2.0},"427":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"438":{"tf":1.4142135623730951},"439":{"tf":2.23606797749979},"440":{"tf":2.0},"442":{"tf":2.0},"443":{"tf":1.0},"445":{"tf":1.7320508075688772},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"474":{"tf":1.0},"49":{"tf":1.0},"491":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"503":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"592":{"tf":1.0},"613":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"65":{"tf":1.0},"664":{"tf":1.0},"670":{"tf":2.0},"703":{"tf":1.0},"704":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"774":{"tf":1.0},"862":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.7320508075688772},"877":{"tf":1.0},"878":{"tf":1.4142135623730951},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":2.449489742783178},"882":{"tf":1.4142135623730951},"883":{"tf":1.0},"925":{"tf":1.4142135623730951},"929":{"tf":1.0},"93":{"tf":1.0},"941":{"tf":1.7320508075688772},"95":{"tf":1.0},"98":{"tf":2.23606797749979},"995":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":15,"docs":{"1008":{"tf":1.0},"1045":{"tf":1.0},"1122":{"tf":1.0},"1403":{"tf":2.0},"1420":{"tf":1.0},"1433":{"tf":1.0},"174":{"tf":1.0},"382":{"tf":1.4142135623730951},"47":{"tf":1.0},"495":{"tf":1.0},"616":{"tf":1.4142135623730951},"739":{"tf":1.0},"792":{"tf":1.0},"845":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"739":{"tf":1.0},"792":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":31,"docs":{"1045":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1186":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1297":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.4142135623730951},"262":{"tf":1.0},"276":{"tf":1.0},"414":{"tf":1.0},"439":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"467":{"tf":1.0},"474":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"558":{"tf":1.4142135623730951},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"956":{"tf":1.0}},"s":{"=":{"[":{"\"":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1271":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":36,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1438":{"tf":1.0},"1440":{"tf":3.3166247903554},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1453":{"tf":1.0},"1509":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"284":{"tf":1.0},"289":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"300":{"tf":1.4142135623730951},"301":{"tf":1.4142135623730951},"302":{"tf":2.23606797749979},"303":{"tf":1.7320508075688772},"304":{"tf":1.4142135623730951},"306":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"318":{"tf":2.0},"34":{"tf":1.0},"4":{"tf":1.0},"898":{"tf":1.0},"900":{"tf":2.0},"902":{"tf":1.0},"908":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"318":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"1440":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"301":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"302":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":3,"docs":{"301":{"tf":1.0},"302":{"tf":1.0},"315":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"r":{"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":{},"u":{"df":2,"docs":{"284":{"tf":1.0},"302":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"295":{"tf":1.0},"302":{"tf":1.0},"314":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":2,"docs":{"284":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"37":{"tf":1.0}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"918":{"tf":1.0}},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":71,"docs":{"1148":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1192":{"tf":1.0},"1262":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.4142135623730951},"1275":{"tf":1.4142135623730951},"1278":{"tf":1.4142135623730951},"1286":{"tf":1.7320508075688772},"1288":{"tf":1.0},"1292":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1355":{"tf":1.0},"1381":{"tf":1.0},"1495":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":2.23606797749979},"462":{"tf":1.4142135623730951},"465":{"tf":2.0},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.0},"479":{"tf":1.7320508075688772},"480":{"tf":1.0},"481":{"tf":1.7320508075688772},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"484":{"tf":1.7320508075688772},"485":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.0},"488":{"tf":1.0},"489":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"492":{"tf":1.0},"493":{"tf":1.4142135623730951},"494":{"tf":1.0},"495":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"499":{"tf":1.0},"500":{"tf":1.7320508075688772},"501":{"tf":2.23606797749979},"502":{"tf":2.0},"503":{"tf":1.4142135623730951},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"508":{"tf":1.0},"509":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951},"511":{"tf":1.0},"512":{"tf":1.0},"538":{"tf":1.4142135623730951},"539":{"tf":1.4142135623730951},"547":{"tf":1.0},"666":{"tf":1.0},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"686":{"tf":1.4142135623730951},"718":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":40,"docs":{"1047":{"tf":1.7320508075688772},"1061":{"tf":1.0},"1084":{"tf":1.0},"1093":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1135":{"tf":1.7320508075688772},"1456":{"tf":1.7320508075688772},"1502":{"tf":2.23606797749979},"1503":{"tf":1.0},"1504":{"tf":1.7320508075688772},"1505":{"tf":1.7320508075688772},"1506":{"tf":1.0},"1507":{"tf":1.0},"1508":{"tf":1.7320508075688772},"1509":{"tf":1.0},"1510":{"tf":1.7320508075688772},"1511":{"tf":1.7320508075688772},"1512":{"tf":1.7320508075688772},"1513":{"tf":1.0},"1514":{"tf":1.7320508075688772},"1515":{"tf":1.4142135623730951},"1516":{"tf":1.7320508075688772},"1517":{"tf":1.0},"1518":{"tf":1.0},"1519":{"tf":1.7320508075688772},"1520":{"tf":1.0},"1521":{"tf":1.7320508075688772},"1522":{"tf":1.4142135623730951},"1523":{"tf":1.7320508075688772},"1524":{"tf":1.0},"1525":{"tf":1.7320508075688772},"1526":{"tf":1.0},"1527":{"tf":1.7320508075688772},"1528":{"tf":1.7320508075688772},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"1531":{"tf":1.0},"446":{"tf":1.0},"545":{"tf":1.0},"984":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"614":{"tf":1.0}}}}}},"df":5,"docs":{"1432":{"tf":1.0},"381":{"tf":1.0},"614":{"tf":1.0},"788":{"tf":1.0},"836":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":7,"docs":{"1358":{"tf":1.0},"381":{"tf":1.0},"442":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0}}}}}}},"n":{"df":2,"docs":{"1084":{"tf":1.0},"934":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"264":{"tf":1.4142135623730951},"664":{"tf":1.0},"840":{"tf":1.4142135623730951},"845":{"tf":1.0},"889":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":8,"docs":{"1071":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1116":{"tf":1.0},"1439":{"tf":1.0},"742":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"1112":{"tf":1.0},"1121":{"tf":1.0},"1130":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"18":{"tf":1.0},"357":{"tf":1.0},"501":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"932":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"o":{"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":{"916":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"1292":{"tf":1.0},"1429":{"tf":1.0},"1467":{"tf":1.4142135623730951},"1482":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951},"976":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":21,"docs":{"1126":{"tf":1.4142135623730951},"115":{"tf":1.0},"1220":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1363":{"tf":1.0},"1374":{"tf":1.0},"1386":{"tf":1.0},"1460":{"tf":1.4142135623730951},"1461":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1475":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.4142135623730951},"1507":{"tf":1.0},"319":{"tf":1.4142135623730951},"461":{"tf":1.0},"465":{"tf":1.0},"490":{"tf":1.4142135623730951},"916":{"tf":1.0}}}},"x":{"df":2,"docs":{"1287":{"tf":1.0},"925":{"tf":1.0}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1320":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"682":{"tf":1.0}}}}},"df":0,"docs":{}},"l":{"df":4,"docs":{"1254":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0},"82":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"h":{"a":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1151":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":{"1151":{"tf":1.0}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1151":{"tf":1.0}}},"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":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1151":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":5,"docs":{"1137":{"tf":1.0},"1150":{"tf":1.4142135623730951},"1151":{"tf":4.123105625617661},"1152":{"tf":2.23606797749979},"506":{"tf":1.7320508075688772}},"j":{"a":{"c":{"df":1,"docs":{"506":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.7320508075688772}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"e":{"df":13,"docs":{"1197":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"1497":{"tf":1.0},"206":{"tf":1.0},"243":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"440":{"tf":1.0},"446":{"tf":1.4142135623730951},"554":{"tf":1.0},"930":{"tf":1.0},"946":{"tf":1.0},"969":{"tf":1.0}},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"j":{"df":7,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1358":{"tf":1.0},"426":{"tf":1.0},"433":{"tf":1.0},"442":{"tf":1.0},"542":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"1349":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":146,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"108":{"tf":1.0},"1082":{"tf":1.4142135623730951},"1107":{"tf":1.0},"1172":{"tf":1.0},"1173":{"tf":2.0},"1174":{"tf":2.23606797749979},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.7320508075688772},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.0},"1501":{"tf":1.0},"2":{"tf":1.0},"229":{"tf":1.0},"248":{"tf":1.4142135623730951},"256":{"tf":1.0},"355":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.4142135623730951},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"603":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"790":{"tf":1.0},"851":{"tf":1.0},"881":{"tf":1.4142135623730951},"910":{"tf":2.0},"911":{"tf":1.7320508075688772},"912":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"917":{"tf":1.7320508075688772},"918":{"tf":1.0},"919":{"tf":1.0},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.0},"951":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.0},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"961":{"tf":1.0},"962":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"965":{"tf":1.0},"966":{"tf":1.0},"967":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"971":{"tf":1.0},"972":{"tf":1.0},"973":{"tf":1.0},"974":{"tf":1.0},"975":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.0},"986":{"tf":1.0}}},"r":{"df":1,"docs":{"1030":{"tf":1.0}}}},"i":{"df":0,"docs":{},"f":{"df":9,"docs":{"1":{"tf":1.0},"1008":{"tf":1.0},"1255":{"tf":1.0},"2":{"tf":1.0},"227":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}},"i":{"df":25,"docs":{"1160":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1260":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.0},"1469":{"tf":1.0},"1487":{"tf":1.4142135623730951},"166":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.4142135623730951},"400":{"tf":1.0},"522":{"tf":1.4142135623730951},"532":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.4142135623730951},"634":{"tf":1.0},"699":{"tf":1.4142135623730951},"709":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":20,"docs":{"1264":{"tf":1.0},"1349":{"tf":1.0},"328":{"tf":1.0},"329":{"tf":1.4142135623730951},"348":{"tf":1.0},"351":{"tf":1.7320508075688772},"353":{"tf":1.0},"357":{"tf":1.0},"515":{"tf":1.4142135623730951},"537":{"tf":1.4142135623730951},"540":{"tf":1.4142135623730951},"545":{"tf":1.0},"557":{"tf":1.4142135623730951},"583":{"tf":1.7320508075688772},"591":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"692":{"tf":1.4142135623730951},"711":{"tf":1.4142135623730951},"717":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"583":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"354":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":2,"docs":{"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":5,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1303":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1305":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1304":{"tf":1.0},"1305":{"tf":1.4142135623730951}},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1304":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}},"y":{"[":{"`":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1305":{"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":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"1340":{"tf":1.0},"171":{"tf":1.0},"249":{"tf":1.0},"291":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"935":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"21":{"tf":1.0},"295":{"tf":1.0},"463":{"tf":1.0},"480":{"tf":1.0},"689":{"tf":1.0},"727":{"tf":1.0},"858":{"tf":1.0},"932":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":1.4142135623730951},"21":{"tf":1.0}}}}},"s":{"df":1,"docs":{"1048":{"tf":1.0}},"g":{"1":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":43,"docs":{"1":{"tf":1.0},"1003":{"tf":1.4142135623730951},"1050":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.4142135623730951},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1261":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1397":{"tf":1.4142135623730951},"1404":{"tf":1.7320508075688772},"142":{"tf":1.4142135623730951},"1423":{"tf":1.0},"145":{"tf":1.0},"17":{"tf":1.0},"172":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"212":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"359":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"593":{"tf":1.0},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"799":{"tf":1.0},"858":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"980":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":44,"docs":{"1":{"tf":1.0},"1002":{"tf":1.0},"1014":{"tf":1.0},"1054":{"tf":1.0},"1161":{"tf":1.0},"1206":{"tf":1.0},"1242":{"tf":1.0},"1262":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1326":{"tf":1.0},"1328":{"tf":1.0},"1343":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1396":{"tf":1.0},"1397":{"tf":1.0},"14":{"tf":1.0},"1423":{"tf":1.0},"1426":{"tf":1.0},"159":{"tf":1.0},"177":{"tf":1.0},"194":{"tf":1.0},"2":{"tf":1.0},"200":{"tf":1.4142135623730951},"206":{"tf":1.0},"210":{"tf":1.4142135623730951},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"285":{"tf":1.0},"291":{"tf":1.0},"30":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"406":{"tf":1.0},"487":{"tf":1.4142135623730951},"501":{"tf":1.0},"516":{"tf":1.0},"523":{"tf":1.0},"593":{"tf":1.0},"640":{"tf":1.0},"693":{"tf":1.0},"700":{"tf":1.0},"726":{"tf":1.4142135623730951},"992":{"tf":1.0}},"i":{"df":10,"docs":{"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"3":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"285":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"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":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"t":{"df":10,"docs":{"1216":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.4142135623730951},"287":{"tf":1.0},"288":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"845":{"tf":1.0},"873":{"tf":1.0}},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"287":{"tf":1.4142135623730951}}}}}},"v":{"df":2,"docs":{"1340":{"tf":1.4142135623730951},"1520":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"669":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"676":{"tf":1.0}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":15,"docs":{"1333":{"tf":2.23606797749979},"151":{"tf":1.0},"167":{"tf":1.0},"234":{"tf":2.0},"235":{"tf":2.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"244":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"902":{"tf":1.0},"938":{"tf":1.0},"945":{"tf":1.0},"976":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}},"df":97,"docs":{"1112":{"tf":2.0},"1122":{"tf":1.0},"1127":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1146":{"tf":1.0},"1158":{"tf":2.449489742783178},"1179":{"tf":1.0},"1186":{"tf":1.0},"1219":{"tf":1.0},"1227":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1276":{"tf":1.0},"132":{"tf":2.23606797749979},"1324":{"tf":1.0},"1332":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.7320508075688772},"1381":{"tf":1.0},"1399":{"tf":1.7320508075688772},"1401":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1475":{"tf":1.0},"1506":{"tf":1.0},"151":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"232":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"309":{"tf":1.0},"348":{"tf":1.0},"378":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"398":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"41":{"tf":1.0},"411":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.4142135623730951},"439":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.7320508075688772},"486":{"tf":1.0},"49":{"tf":1.0},"507":{"tf":2.0},"51":{"tf":1.4142135623730951},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"583":{"tf":1.0},"632":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"645":{"tf":1.4142135623730951},"676":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"73":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"762":{"tf":2.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951},"808":{"tf":1.0},"81":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"822":{"tf":1.0},"835":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"865":{"tf":1.0},"88":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"956":{"tf":1.0},"999":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":11,"docs":{"1181":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1452":{"tf":1.0},"2":{"tf":1.0},"353":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"422":{"tf":1.0},"5":{"tf":1.0},"664":{"tf":1.0}}}}}},"df":18,"docs":{"132":{"tf":2.0},"1325":{"tf":1.0},"1336":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":2.0},"138":{"tf":1.0},"1403":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":2.0},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"209":{"tf":1.4142135623730951},"226":{"tf":1.0},"579":{"tf":1.0},"73":{"tf":1.0},"999":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":40,"docs":{"101":{"tf":1.0},"1027":{"tf":1.0},"1070":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"11":{"tf":1.4142135623730951},"1189":{"tf":1.0},"1285":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.4142135623730951},"1425":{"tf":1.4142135623730951},"1449":{"tf":1.0},"1456":{"tf":1.0},"1485":{"tf":1.0},"1487":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":1.0},"1524":{"tf":1.0},"206":{"tf":1.0},"21":{"tf":1.0},"223":{"tf":1.0},"368":{"tf":1.0},"43":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"544":{"tf":1.0},"583":{"tf":1.0},"586":{"tf":1.0},"602":{"tf":1.0},"69":{"tf":1.0},"759":{"tf":1.0},"760":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"827":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":14,"docs":{"1061":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1200":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1477":{"tf":1.0},"1491":{"tf":1.0},"681":{"tf":1.4142135623730951},"911":{"tf":1.0},"927":{"tf":1.0},"939":{"tf":1.0},"942":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":12,"docs":{"1085":{"tf":1.0},"147":{"tf":1.0},"169":{"tf":1.0},"61":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"95":{"tf":1.0},"962":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.0},"987":{"tf":1.0}}}}},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1095":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1420":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1047":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1376":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.7320508075688772}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":3,"docs":{"1515":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.7320508075688772}}}}}}}}}}},"df":0,"docs":{}}},"df":155,"docs":{"1007":{"tf":1.7320508075688772},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.449489742783178},"1052":{"tf":1.4142135623730951},"1082":{"tf":1.4142135623730951},"1095":{"tf":1.0},"1112":{"tf":1.0},"1127":{"tf":1.0},"1135":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1152":{"tf":1.0},"1161":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1191":{"tf":1.0},"1192":{"tf":1.0},"1209":{"tf":1.0},"1218":{"tf":1.0},"124":{"tf":1.0},"1268":{"tf":1.0},"127":{"tf":1.4142135623730951},"1281":{"tf":1.0},"1288":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1318":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1325":{"tf":1.4142135623730951},"1332":{"tf":1.0},"1340":{"tf":2.23606797749979},"1349":{"tf":1.0},"135":{"tf":2.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.7320508075688772},"1355":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":2.449489742783178},"1369":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1399":{"tf":3.0},"1401":{"tf":2.23606797749979},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":2.0},"1419":{"tf":1.0},"1420":{"tf":2.449489742783178},"1456":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1487":{"tf":1.0},"150":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1507":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"1515":{"tf":2.6457513110645907},"1522":{"tf":1.0},"1524":{"tf":1.7320508075688772},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"261":{"tf":1.0},"271":{"tf":1.4142135623730951},"327":{"tf":1.0},"332":{"tf":1.0},"335":{"tf":1.0},"349":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"382":{"tf":1.0},"388":{"tf":1.4142135623730951},"391":{"tf":1.0},"401":{"tf":2.0},"414":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"426":{"tf":1.4142135623730951},"427":{"tf":1.4142135623730951},"429":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"473":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.0},"517":{"tf":1.7320508075688772},"518":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"528":{"tf":1.0},"532":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.7320508075688772},"546":{"tf":1.0},"558":{"tf":1.0},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"622":{"tf":1.0},"635":{"tf":2.0},"694":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0},"709":{"tf":1.0},"711":{"tf":1.0},"73":{"tf":1.0},"738":{"tf":1.0},"75":{"tf":1.0},"77":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"794":{"tf":1.0},"81":{"tf":1.0},"847":{"tf":1.0},"855":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"88":{"tf":1.0},"882":{"tf":1.0},"884":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0},"926":{"tf":2.0},"942":{"tf":1.0},"976":{"tf":1.7320508075688772},"983":{"tf":1.0},"986":{"tf":1.0},"994":{"tf":2.0},"995":{"tf":1.0},"997":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1000":{"tf":1.0},"1033":{"tf":1.0},"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"345":{"tf":1.0},"572":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0}}}}}}}},"df":34,"docs":{"117":{"tf":1.4142135623730951},"1261":{"tf":1.4142135623730951},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.4142135623730951},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.0},"145":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"355":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"491":{"tf":1.4142135623730951},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.4142135623730951},"506":{"tf":1.4142135623730951},"507":{"tf":1.7320508075688772},"512":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"827":{"tf":1.0},"88":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1165":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"57":{"tf":1.0},"985":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":5,"docs":{"1088":{"tf":1.0},"1089":{"tf":1.0},"628":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":3,"docs":{"1088":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":75,"docs":{"1127":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1156":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1172":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1182":{"tf":2.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1264":{"tf":1.4142135623730951},"1266":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1348":{"tf":2.0},"1349":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1370":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"321":{"tf":2.0},"322":{"tf":1.0},"327":{"tf":1.0},"349":{"tf":1.0},"351":{"tf":1.0},"38":{"tf":1.0},"386":{"tf":1.0},"5":{"tf":1.4142135623730951},"513":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.4142135623730951},"770":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"906":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0}}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"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":{"3":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"351":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1158":{"tf":1.0},"1213":{"tf":1.0},"1219":{"tf":1.0},"1359":{"tf":1.0},"1451":{"tf":1.0},"1524":{"tf":1.0},"327":{"tf":1.0},"348":{"tf":1.4142135623730951},"351":{"tf":1.0},"354":{"tf":1.0},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"732":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":18,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"1197":{"tf":1.0},"1228":{"tf":1.0},"1287":{"tf":1.0},"1298":{"tf":1.0},"1451":{"tf":1.0},"1526":{"tf":1.0},"242":{"tf":1.0},"446":{"tf":1.0},"456":{"tf":1.0},"486":{"tf":1.0},"510":{"tf":1.0},"82":{"tf":1.4142135623730951},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.4142135623730951},"976":{"tf":1.0}},"e":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":45,"docs":{"1001":{"tf":1.0},"1140":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1169":{"tf":1.0},"1216":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1404":{"tf":1.0},"1441":{"tf":1.0},"1452":{"tf":1.7320508075688772},"243":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":1.0},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"284":{"tf":2.23606797749979},"288":{"tf":2.8284271247461903},"295":{"tf":2.0},"298":{"tf":1.0},"301":{"tf":1.4142135623730951},"302":{"tf":1.4142135623730951},"303":{"tf":1.0},"306":{"tf":1.4142135623730951},"307":{"tf":1.4142135623730951},"314":{"tf":2.0},"315":{"tf":1.4142135623730951},"597":{"tf":1.0},"611":{"tf":1.0},"614":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.4142135623730951},"79":{"tf":1.0},"845":{"tf":1.4142135623730951},"846":{"tf":1.4142135623730951},"88":{"tf":1.0},"937":{"tf":1.0},"977":{"tf":1.0}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1080":{"tf":1.0},"669":{"tf":1.0},"911":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"/":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"911":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"v":{"df":3,"docs":{"371":{"tf":1.0},"394":{"tf":1.0},"519":{"tf":2.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"581":{"tf":2.449489742783178},"590":{"tf":1.0},"6":{"tf":1.0}}}}}},"df":18,"docs":{"1085":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.0},"302":{"tf":1.0},"371":{"tf":1.0},"450":{"tf":1.4142135623730951},"605":{"tf":1.0},"82":{"tf":1.0},"845":{"tf":1.0},"850":{"tf":1.4142135623730951},"996":{"tf":1.0}}},"h":{"df":2,"docs":{"1082":{"tf":1.0},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}},"i":{"df":3,"docs":{"1006":{"tf":1.0},"1011":{"tf":1.0},"1405":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"(":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"w":{"df":11,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1506":{"tf":1.0},"1522":{"tf":1.0},"355":{"tf":1.0},"589":{"tf":1.0},"67":{"tf":1.0},"673":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0},"921":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1129":{"tf":1.0}}},"m":{"df":17,"docs":{"1156":{"tf":1.0},"1158":{"tf":1.4142135623730951},"1349":{"tf":1.0},"1510":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"1530":{"tf":1.0},"322":{"tf":1.0},"324":{"tf":1.7320508075688772},"351":{"tf":1.0},"353":{"tf":1.7320508075688772},"5":{"tf":1.0},"514":{"tf":1.0},"74":{"tf":1.0},"9":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"935":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":33,"docs":{"1081":{"tf":2.449489742783178},"1088":{"tf":1.4142135623730951},"1200":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1305":{"tf":1.0},"1306":{"tf":2.0},"1307":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1439":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"298":{"tf":1.0},"334":{"tf":1.0},"363":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.4142135623730951},"451":{"tf":1.0},"46":{"tf":1.0},"506":{"tf":1.4142135623730951},"519":{"tf":2.0},"75":{"tf":1.4142135623730951},"797":{"tf":1.4142135623730951},"88":{"tf":1.7320508075688772},"881":{"tf":1.0},"899":{"tf":1.4142135623730951},"911":{"tf":1.0},"950":{"tf":1.0},"999":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.4142135623730951},"1124":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1180":{"tf":1.0},"1390":{"tf":1.0},"1441":{"tf":1.0},"374":{"tf":1.0},"426":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"790":{"tf":1.0},"901":{"tf":1.0},"916":{"tf":1.0},"925":{"tf":1.0}}}}},"df":0,"docs":{}}},"y":{"df":1,"docs":{"767":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"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":{"1403":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":57,"docs":{"1055":{"tf":1.0},"1064":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1117":{"tf":1.4142135623730951},"1119":{"tf":1.0},"1120":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1292":{"tf":1.0},"1297":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.7320508075688772},"1451":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"28":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.4142135623730951},"368":{"tf":1.0},"369":{"tf":1.7320508075688772},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"375":{"tf":1.4142135623730951},"44":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"493":{"tf":1.4142135623730951},"511":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"608":{"tf":1.0},"64":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"756":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":2.0},"811":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"867":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.4142135623730951}},"|":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"370":{"tf":1.0},"371":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1509":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":5,"docs":{"284":{"tf":1.4142135623730951},"295":{"tf":1.4142135623730951},"306":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":60,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"14":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":2.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1453":{"tf":1.4142135623730951},"1509":{"tf":1.0},"1510":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":2.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"284":{"tf":1.4142135623730951},"289":{"tf":1.0},"290":{"tf":2.0},"291":{"tf":1.4142135623730951},"292":{"tf":2.449489742783178},"293":{"tf":1.0},"294":{"tf":1.4142135623730951},"295":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.4142135623730951},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"308":{"tf":1.0},"309":{"tf":1.0},"310":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"313":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"316":{"tf":1.0},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"320":{"tf":1.4142135623730951},"4":{"tf":1.0},"887":{"tf":1.0},"898":{"tf":1.7320508075688772},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.0},"909":{"tf":1.0},"966":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"836":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1458":{"tf":1.0},"83":{"tf":1.0},"932":{"tf":1.0}}}}},"df":0,"docs":{}},"df":14,"docs":{"1323":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.4142135623730951},"1329":{"tf":1.4142135623730951},"1330":{"tf":2.0},"1338":{"tf":1.0},"134":{"tf":1.4142135623730951},"1346":{"tf":1.0},"135":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.4142135623730951},"179":{"tf":1.0},"208":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"41":{"tf":1.0},"751":{"tf":1.0},"758":{"tf":1.0}}}},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"/":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1083":{"tf":1.7320508075688772}}}}}}},"k":{"df":21,"docs":{"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0}}},"l":{"d":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"2":{"5":{"6":{"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1515":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1515":{"tf":1.0}}},"df":0,"docs":{}}},"df":14,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1007":{"tf":1.7320508075688772},"1008":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1047":{"tf":2.23606797749979},"1135":{"tf":1.0},"1506":{"tf":1.0},"1515":{"tf":1.7320508075688772},"545":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951},"997":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1503":{"tf":1.4142135623730951},"984":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"c":{"df":9,"docs":{"1082":{"tf":1.0},"1194":{"tf":1.0},"177":{"tf":1.0},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0},"877":{"tf":1.0},"882":{"tf":1.0},"942":{"tf":1.0}}},"df":18,"docs":{"1035":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"1342":{"tf":1.0},"1436":{"tf":1.0},"1448":{"tf":1.0},"359":{"tf":1.0},"43":{"tf":1.0},"593":{"tf":1.0},"71":{"tf":1.0},"809":{"tf":1.0},"855":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"916":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0},"984":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1517":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"661":{"tf":1.0},"79":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"'":{"df":2,"docs":{"1222":{"tf":1.0},"1243":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1228":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1223":{"tf":1.0}},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1225":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"95":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1226":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":43,"docs":{"1221":{"tf":2.23606797749979},"1222":{"tf":1.7320508075688772},"1223":{"tf":1.7320508075688772},"1224":{"tf":1.0},"1225":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1227":{"tf":1.0},"1228":{"tf":1.4142135623730951},"1229":{"tf":1.0},"1230":{"tf":1.4142135623730951},"1231":{"tf":1.4142135623730951},"1232":{"tf":1.4142135623730951},"1233":{"tf":1.4142135623730951},"1234":{"tf":1.4142135623730951},"1235":{"tf":1.4142135623730951},"1236":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1250":{"tf":1.4142135623730951},"1251":{"tf":1.4142135623730951},"1252":{"tf":1.0},"1253":{"tf":1.0},"1254":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.0},"1257":{"tf":1.0},"1258":{"tf":1.4142135623730951},"1259":{"tf":1.0},"1260":{"tf":1.0},"1261":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":3,"docs":{"1154":{"tf":1.4142135623730951},"1155":{"tf":1.0},"1174":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"115":{"tf":1.0},"1520":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":11,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"1439":{"tf":1.0},"1440":{"tf":1.0},"259":{"tf":1.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"311":{"tf":1.7320508075688772},"4":{"tf":1.0},"899":{"tf":1.0}}}}}}}}}}}},"r":{"df":71,"docs":{"1046":{"tf":1.0},"1082":{"tf":1.0},"1088":{"tf":1.0},"110":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1200":{"tf":1.0},"1207":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1313":{"tf":1.0},"1322":{"tf":1.4142135623730951},"1331":{"tf":1.4142135623730951},"1350":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":2.0},"1359":{"tf":1.0},"1369":{"tf":1.0},"1373":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1382":{"tf":1.0},"1401":{"tf":1.0},"1448":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1484":{"tf":1.0},"171":{"tf":1.4142135623730951},"268":{"tf":1.0},"287":{"tf":1.0},"292":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"322":{"tf":1.0},"355":{"tf":1.0},"357":{"tf":1.0},"361":{"tf":1.0},"386":{"tf":1.0},"409":{"tf":1.4142135623730951},"42":{"tf":1.0},"423":{"tf":1.0},"451":{"tf":1.0},"473":{"tf":2.0},"474":{"tf":1.0},"516":{"tf":1.0},"549":{"tf":1.0},"558":{"tf":1.4142135623730951},"589":{"tf":1.0},"591":{"tf":1.0},"595":{"tf":1.0},"615":{"tf":1.0},"620":{"tf":1.0},"643":{"tf":1.4142135623730951},"673":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"724":{"tf":1.0},"739":{"tf":1.0},"767":{"tf":1.0},"799":{"tf":1.0},"847":{"tf":1.0},"851":{"tf":1.0},"911":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.4142135623730951},"981":{"tf":1.0},"983":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1048":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"940":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":3,"docs":{"1100":{"tf":1.4142135623730951},"1102":{"tf":1.0},"871":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"<":{"&":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"a":{"df":0,"docs":{},"l":{"[":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"614":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1388":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"611":{"tf":1.0},"613":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":89,"docs":{"107":{"tf":1.7320508075688772},"1079":{"tf":1.7320508075688772},"1107":{"tf":1.0},"1196":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1247":{"tf":1.0},"127":{"tf":1.4142135623730951},"128":{"tf":2.0},"129":{"tf":1.7320508075688772},"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0},"132":{"tf":1.7320508075688772},"134":{"tf":1.4142135623730951},"1347":{"tf":1.0},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.4142135623730951},"1423":{"tf":1.7320508075688772},"1428":{"tf":1.7320508075688772},"1438":{"tf":1.0},"1449":{"tf":1.0},"1452":{"tf":1.0},"1501":{"tf":1.0},"1515":{"tf":1.0},"1531":{"tf":1.4142135623730951},"179":{"tf":1.4142135623730951},"244":{"tf":1.0},"271":{"tf":1.0},"320":{"tf":1.0},"334":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.4142135623730951},"368":{"tf":2.0},"369":{"tf":1.7320508075688772},"371":{"tf":1.4142135623730951},"373":{"tf":1.4142135623730951},"374":{"tf":1.0},"43":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"458":{"tf":1.0},"46":{"tf":1.0},"519":{"tf":2.23606797749979},"521":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"523":{"tf":1.7320508075688772},"524":{"tf":1.0},"525":{"tf":1.0},"531":{"tf":1.0},"536":{"tf":3.0},"595":{"tf":1.0},"600":{"tf":1.4142135623730951},"602":{"tf":1.4142135623730951},"603":{"tf":1.0},"605":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"698":{"tf":1.4142135623730951},"699":{"tf":1.4142135623730951},"700":{"tf":1.7320508075688772},"701":{"tf":1.0},"702":{"tf":1.0},"708":{"tf":1.0},"722":{"tf":1.4142135623730951},"740":{"tf":1.0},"751":{"tf":1.0},"836":{"tf":1.4142135623730951},"852":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.0},"866":{"tf":1.4142135623730951},"869":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"887":{"tf":1.0},"891":{"tf":1.4142135623730951},"901":{"tf":1.0},"916":{"tf":2.0},"918":{"tf":1.0},"922":{"tf":1.0},"932":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.7320508075688772}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"538":{"tf":1.0},"539":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":3,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"d":{"df":3,"docs":{"1112":{"tf":1.7320508075688772},"1126":{"tf":1.0},"1127":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}}},"df":22,"docs":{"1080":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.0},"1214":{"tf":1.0},"1220":{"tf":1.0},"1286":{"tf":2.23606797749979},"1292":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1314":{"tf":1.0},"1436":{"tf":1.0},"24":{"tf":1.0},"43":{"tf":1.0},"479":{"tf":1.7320508075688772},"500":{"tf":1.0},"501":{"tf":1.0},"61":{"tf":1.0},"747":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0}},"i":{"d":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"1075":{"tf":1.0},"1076":{"tf":1.0},"1089":{"tf":1.0},"152":{"tf":1.0},"37":{"tf":1.0},"753":{"tf":1.0},"767":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"751":{"tf":1.0}}}}}},"df":7,"docs":{"152":{"tf":1.0},"370":{"tf":1.0},"604":{"tf":1.0},"746":{"tf":1.0},"753":{"tf":1.4142135623730951},"754":{"tf":1.0},"767":{"tf":1.0}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1425":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0}}}}}}},"[":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}},"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1376":{"tf":1.4142135623730951}}},"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":{"1394":{"tf":2.0}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.7320508075688772}}}}}},"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1353":{"tf":1.4142135623730951}}},"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":{"1367":{"tf":2.0}}}}}}}}},"df":41,"docs":{"1142":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1403":{"tf":1.0},"1420":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1433":{"tf":1.0},"1469":{"tf":1.0},"1520":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"371":{"tf":1.4142135623730951},"381":{"tf":1.0},"400":{"tf":1.0},"404":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.0},"46":{"tf":1.4142135623730951},"527":{"tf":1.0},"605":{"tf":1.4142135623730951},"614":{"tf":1.0},"634":{"tf":1.0},"638":{"tf":1.0},"704":{"tf":1.0},"798":{"tf":1.0},"819":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.7320508075688772},"850":{"tf":1.0},"915":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.0},"988":{"tf":1.4142135623730951}}}}}}},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"[":{"'":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1072":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1072":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1072":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"681":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"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":{},"k":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"79":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1140":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":12,"docs":{"1072":{"tf":1.0},"1094":{"tf":1.0},"1140":{"tf":1.7320508075688772},"1145":{"tf":1.0},"1369":{"tf":1.4142135623730951},"1388":{"tf":1.0},"1404":{"tf":1.0},"661":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"79":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"311":{"tf":1.0}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"1276":{"tf":1.0},"376":{"tf":1.0},"609":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"p":{"df":16,"docs":{"107":{"tf":2.449489742783178},"108":{"tf":1.7320508075688772},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"292":{"tf":2.449489742783178},"298":{"tf":1.4142135623730951},"302":{"tf":1.7320508075688772},"307":{"tf":1.0},"310":{"tf":1.4142135623730951},"311":{"tf":2.0},"318":{"tf":1.0},"319":{"tf":1.0},"899":{"tf":1.4142135623730951},"900":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1227":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"802":{"tf":1.0},"93":{"tf":1.0}}}}},"df":7,"docs":{"1452":{"tf":1.0},"1477":{"tf":1.0},"1520":{"tf":1.0},"356":{"tf":1.0},"590":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":9,"docs":{"1176":{"tf":1.0},"1177":{"tf":1.0},"1263":{"tf":1.0},"424":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"461":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"393":{"tf":1.0},"627":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"179":{"tf":1.0}}}}}}},"=":{"$":{"2":{"df":1,"docs":{"1346":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1338":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"2":{"df":1,"docs":{"1338":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"1338":{"tf":1.4142135623730951},"1390":{"tf":1.0}}}}},"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":3,"docs":{"1088":{"tf":1.0},"696":{"tf":1.0},"797":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1385":{"tf":1.0},"1390":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":43,"docs":{"1154":{"tf":1.0},"1219":{"tf":1.0},"1250":{"tf":1.0},"129":{"tf":1.4142135623730951},"1321":{"tf":1.0},"1323":{"tf":1.7320508075688772},"1324":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1329":{"tf":1.4142135623730951},"1333":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":2.0},"1346":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.7320508075688772},"1421":{"tf":1.0},"1428":{"tf":1.0},"1433":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1497":{"tf":1.4142135623730951},"179":{"tf":1.7320508075688772},"182":{"tf":1.0},"191":{"tf":1.4142135623730951},"237":{"tf":1.0},"239":{"tf":1.0},"273":{"tf":1.0},"302":{"tf":1.0},"393":{"tf":1.7320508075688772},"394":{"tf":1.0},"395":{"tf":1.0},"449":{"tf":1.0},"627":{"tf":1.7320508075688772},"628":{"tf":1.0},"629":{"tf":1.0},"97":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0}},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":4,"docs":{"16":{"tf":1.0},"36":{"tf":1.4142135623730951},"453":{"tf":1.0},"914":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"1441":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"903":{"tf":1.0}}}}},"df":9,"docs":{"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.4142135623730951},"277":{"tf":1.0},"336":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":23,"docs":{"1017":{"tf":1.4142135623730951},"1023":{"tf":1.4142135623730951},"1029":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1109":{"tf":1.4142135623730951},"1136":{"tf":1.0},"120":{"tf":1.4142135623730951},"1222":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1398":{"tf":1.4142135623730951},"1435":{"tf":1.4142135623730951},"231":{"tf":1.4142135623730951},"291":{"tf":1.4142135623730951},"454":{"tf":1.4142135623730951},"482":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951},"751":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"802":{"tf":1.4142135623730951},"828":{"tf":1.0},"831":{"tf":1.4142135623730951},"851":{"tf":1.0},"909":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"995":{"tf":1.0}}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":2,"docs":{"1222":{"tf":1.0},"1246":{"tf":1.4142135623730951}}}},"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"0":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"1219":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"18":{"tf":1.4142135623730951},"321":{"tf":1.0},"322":{"tf":1.0},"328":{"tf":1.7320508075688772},"332":{"tf":1.0},"351":{"tf":1.0},"5":{"tf":1.0},"513":{"tf":1.0},"544":{"tf":1.0},"548":{"tf":1.0},"549":{"tf":1.0},"556":{"tf":1.7320508075688772},"6":{"tf":1.0},"690":{"tf":1.0},"725":{"tf":1.0},"74":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"972":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"347":{"tf":1.0},"348":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"1022":{"tf":1.0},"892":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1407":{"tf":1.0},"93":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":4,"docs":{"1077":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0}}}}},"i":{"d":{"df":3,"docs":{"1353":{"tf":1.0},"1376":{"tf":1.0},"758":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":13,"docs":{"1052":{"tf":1.0},"1206":{"tf":1.0},"1225":{"tf":1.0},"149":{"tf":1.0},"41":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"924":{"tf":1.0},"926":{"tf":1.0},"994":{"tf":1.0}}}},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1160":{"tf":1.0},"1161":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"m":{"df":12,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1306":{"tf":1.0},"439":{"tf":1.0},"467":{"tf":1.0},"528":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"713":{"tf":1.0},"82":{"tf":1.0},"956":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":68,"docs":{"1237":{"tf":1.0},"1238":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.0},"1241":{"tf":1.0},"1242":{"tf":1.0},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"414":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"595":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"648":{"tf":1.0},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1039":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1212":{"tf":1.0},"1441":{"tf":1.0},"308":{"tf":1.0},"809":{"tf":1.0},"818":{"tf":1.0},"871":{"tf":1.0},"901":{"tf":1.0},"976":{"tf":1.0}}}}},"s":{"df":30,"docs":{"1140":{"tf":2.0},"1142":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1164":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1171":{"tf":1.0},"1197":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1419":{"tf":1.0},"1465":{"tf":1.0},"1479":{"tf":1.0},"372":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"483":{"tf":1.0},"501":{"tf":1.0},"509":{"tf":1.4142135623730951},"522":{"tf":1.0},"588":{"tf":1.7320508075688772},"606":{"tf":1.0},"656":{"tf":2.0},"657":{"tf":1.0},"699":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"870":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"656":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"656":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"656":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":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":{"1392":{"tf":1.0}}},"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1402":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1142":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"657":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"'":{"]":{"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"657":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.4142135623730951},"510":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"109":{"tf":1.0},"1144":{"tf":1.4142135623730951},"370":{"tf":1.0},"604":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":5,"docs":{"214":{"tf":1.0},"30":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"749":{"tf":1.0}}}}},"df":36,"docs":{"1130":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1242":{"tf":1.0},"1305":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"1404":{"tf":1.0},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"227":{"tf":1.0},"23":{"tf":1.0},"30":{"tf":1.0},"36":{"tf":1.0},"47":{"tf":1.0},"52":{"tf":1.0},"54":{"tf":1.4142135623730951},"733":{"tf":1.0},"776":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"799":{"tf":1.0},"802":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"855":{"tf":1.0},"90":{"tf":1.0},"952":{"tf":1.0},"954":{"tf":1.4142135623730951},"980":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1333":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1333":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1144":{"tf":1.0},"1148":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1219":{"tf":1.0},"1339":{"tf":2.0},"370":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"440":{"tf":1.0},"604":{"tf":1.0},"615":{"tf":1.4142135623730951},"687":{"tf":1.0},"719":{"tf":1.0},"849":{"tf":1.0}},"e":{"d":{"=":{"0":{"df":1,"docs":{"1339":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":2,"docs":{"1197":{"tf":1.4142135623730951},"446":{"tf":1.4142135623730951}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"=":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"@":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":20,"docs":{"1145":{"tf":1.4142135623730951},"1215":{"tf":1.0},"1253":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":2.23606797749979},"1520":{"tf":1.7320508075688772},"1528":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":2.0},"892":{"tf":1.7320508075688772},"903":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":3.605551275463989},"963":{"tf":1.7320508075688772},"969":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":2,"docs":{"1000":{"tf":1.0},"1256":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{},"h":{"(":{"_":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"_":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"a":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"666":{"tf":1.0},"667":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"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":1,"docs":{"1390":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.7320508075688772},"1369":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"128":{"tf":1.0},"164":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":95,"docs":{"104":{"tf":1.0},"1092":{"tf":1.0},"1114":{"tf":1.0},"113":{"tf":1.0},"1133":{"tf":1.4142135623730951},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1154":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1219":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"1288":{"tf":1.0},"132":{"tf":1.4142135623730951},"1323":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.7320508075688772},"136":{"tf":2.0},"1365":{"tf":1.7320508075688772},"1369":{"tf":1.4142135623730951},"138":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":2.23606797749979},"1420":{"tf":2.23606797749979},"1421":{"tf":2.0},"1422":{"tf":2.23606797749979},"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1446":{"tf":1.4142135623730951},"1460":{"tf":1.0},"1495":{"tf":1.0},"1522":{"tf":1.0},"1528":{"tf":1.0},"280":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"361":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"378":{"tf":1.4142135623730951},"392":{"tf":1.0},"395":{"tf":1.0},"414":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.7320508075688772},"462":{"tf":1.0},"485":{"tf":1.0},"502":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.4142135623730951},"522":{"tf":1.0},"528":{"tf":1.0},"531":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"611":{"tf":1.4142135623730951},"626":{"tf":1.0},"629":{"tf":1.0},"648":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"681":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.4142135623730951},"699":{"tf":1.0},"70":{"tf":1.0},"705":{"tf":1.0},"708":{"tf":1.0},"740":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.4142135623730951},"791":{"tf":1.0},"838":{"tf":1.0},"890":{"tf":1.4142135623730951},"893":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"902":{"tf":1.0},"911":{"tf":2.6457513110645907},"916":{"tf":1.7320508075688772},"950":{"tf":3.0}},"l":{"df":0,"docs":{},"i":{"b":{"df":6,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":32,"docs":{"1112":{"tf":1.0},"1116":{"tf":1.0},"1119":{"tf":1.0},"1122":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.7320508075688772},"1176":{"tf":1.0},"1182":{"tf":1.0},"1275":{"tf":1.4142135623730951},"1294":{"tf":1.0},"13":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1424":{"tf":1.4142135623730951},"1443":{"tf":1.4142135623730951},"23":{"tf":1.0},"422":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"499":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"6":{"tf":1.0},"67":{"tf":1.0},"674":{"tf":1.4142135623730951},"689":{"tf":1.0},"727":{"tf":1.0},"729":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.0},"856":{"tf":1.0},"91":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1122":{"tf":1.0}}}}}}}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"'":{"a":{"df":1,"docs":{"1378":{"tf":1.0}}},"b":{"df":1,"docs":{"1378":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1378":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":57,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.4142135623730951},"1185":{"tf":1.0},"1186":{"tf":1.0},"1220":{"tf":1.0},"1267":{"tf":2.0},"1268":{"tf":1.7320508075688772},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.0},"1284":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1526":{"tf":1.7320508075688772},"424":{"tf":1.0},"440":{"tf":1.0},"456":{"tf":1.4142135623730951},"458":{"tf":1.7320508075688772},"459":{"tf":1.4142135623730951},"461":{"tf":2.8284271247461903},"463":{"tf":1.0},"465":{"tf":2.6457513110645907},"468":{"tf":1.7320508075688772},"470":{"tf":1.0},"471":{"tf":1.0},"473":{"tf":1.4142135623730951},"474":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.7320508075688772},"489":{"tf":2.0},"490":{"tf":1.7320508075688772},"495":{"tf":1.0},"497":{"tf":1.0},"503":{"tf":1.4142135623730951},"505":{"tf":1.0},"506":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":2.23606797749979},"530":{"tf":1.4142135623730951},"538":{"tf":1.0},"539":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":2.23606797749979},"707":{"tf":1.4142135623730951},"714":{"tf":1.0},"716":{"tf":1.0},"94":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1399":{"tf":1.0},"382":{"tf":1.4142135623730951},"616":{"tf":1.4142135623730951},"760":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1119":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}}}},"b":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"f":{"2":{"df":4,"docs":{"1253":{"tf":1.0},"1505":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"985":{"tf":1.0}}}},"d":{"df":0,"docs":{},"f":{"df":3,"docs":{"1323":{"tf":1.0},"156":{"tf":1.0},"859":{"tf":1.0}}}},"df":6,"docs":{"1158":{"tf":1.0},"116":{"tf":1.0},"1338":{"tf":1.0},"1462":{"tf":1.0},"506":{"tf":1.0},"682":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1006":{"tf":1.0}}}},"m":{"df":4,"docs":{"1044":{"tf":2.8284271247461903},"1465":{"tf":1.0},"376":{"tf":1.7320508075688772},"609":{"tf":1.7320508075688772}}},"n":{"d":{"df":12,"docs":{"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1329":{"tf":1.0},"1362":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.4142135623730951},"312":{"tf":1.0},"371":{"tf":1.0},"605":{"tf":1.0},"855":{"tf":1.4142135623730951},"868":{"tf":1.0},"872":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"1328":{"tf":1.0},"1329":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"152":{"tf":1.0},"753":{"tf":1.0}}}}},"r":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"901":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":6,"docs":{"1404":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"486":{"tf":1.4142135623730951},"501":{"tf":1.0},"901":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":16,"docs":{"1041":{"tf":1.0},"1048":{"tf":1.7320508075688772},"1086":{"tf":1.0},"1100":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1381":{"tf":1.0},"206":{"tf":1.4142135623730951},"29":{"tf":1.0},"4":{"tf":1.4142135623730951},"47":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"871":{"tf":1.0},"925":{"tf":1.0},"948":{"tf":1.0},"996":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":9,"docs":{"1000":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1315":{"tf":1.0},"1403":{"tf":1.4142135623730951},"169":{"tf":1.0},"856":{"tf":1.0},"951":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"1194":{"tf":1.7320508075688772},"181":{"tf":1.0},"41":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":15,"docs":{"1071":{"tf":1.0},"1105":{"tf":1.0},"116":{"tf":1.4142135623730951},"1253":{"tf":1.0},"1455":{"tf":1.4142135623730951},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1528":{"tf":1.0},"352":{"tf":2.23606797749979},"55":{"tf":1.0},"584":{"tf":2.23606797749979},"908":{"tf":1.0},"925":{"tf":1.0},"962":{"tf":1.0},"969":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1054":{"tf":1.0},"1088":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"43":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1221":{"tf":1.0},"1226":{"tf":1.0},"152":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0}}}}}}},"g":{"df":1,"docs":{"1301":{"tf":1.0}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"814":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"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":{"22":{"tf":1.4142135623730951}}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1116":{"tf":1.0},"157":{"tf":1.0},"760":{"tf":1.7320508075688772},"761":{"tf":1.0},"762":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"760":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"759":{"tf":1.0},"760":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":1,"docs":{"760":{"tf":1.7320508075688772}}},"p":{"df":18,"docs":{"10":{"tf":1.0},"1372":{"tf":1.0},"1510":{"tf":1.0},"1530":{"tf":1.0},"549":{"tf":1.0},"551":{"tf":1.7320508075688772},"554":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"581":{"tf":1.0},"583":{"tf":1.7320508075688772},"585":{"tf":2.23606797749979},"6":{"tf":1.0},"682":{"tf":1.0},"691":{"tf":1.0},"78":{"tf":1.0},"911":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":6,"docs":{"255":{"tf":1.0},"311":{"tf":1.0},"33":{"tf":1.4142135623730951},"590":{"tf":1.0},"6":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"k":{"=":{"<":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"1333":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"s":{"#":{"8":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":1,"docs":{"115":{"tf":1.0}}},"i":{"df":3,"docs":{"1026":{"tf":1.0},"1042":{"tf":1.0},"98":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"276":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"1177":{"tf":1.0},"1197":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"235":{"tf":1.4142135623730951},"424":{"tf":1.0},"440":{"tf":1.0},"446":{"tf":1.0},"511":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1402":{"tf":1.0}},"e":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"$":{"1":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"n":{"df":18,"docs":{"1011":{"tf":1.0},"1209":{"tf":1.0},"1325":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.7320508075688772},"835":{"tf":1.0},"974":{"tf":1.0},"996":{"tf":1.7320508075688772}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":13,"docs":{"109":{"tf":2.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.0},"1221":{"tf":1.0},"1437":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1516":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.7320508075688772},"36":{"tf":1.0},"93":{"tf":1.0}}}}}}},"z":{"a":{"df":1,"docs":{"767":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}},"u":{"df":1,"docs":{"807":{"tf":1.0}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1222":{"tf":1.4142135623730951},"1223":{"tf":1.4142135623730951},"1226":{"tf":1.4142135623730951},"1228":{"tf":1.0},"1236":{"tf":1.0},"1243":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"98":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.7320508075688772},"580":{"tf":2.6457513110645907}}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1062":{"tf":1.0},"1161":{"tf":1.0},"478":{"tf":1.0},"798":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":9,"docs":{"1071":{"tf":1.4142135623730951},"1106":{"tf":1.0},"1490":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"911":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"969":{"tf":1.0},"985":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.0},"1314":{"tf":1.0},"1315":{"tf":1.0},"1522":{"tf":1.0}}},"y":{"(":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1301":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"1301":{"tf":1.7320508075688772},"1522":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"t":{"=":{"8":{"0":{"0":{"0":{"df":7,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1426":{"tf":1.0},"366":{"tf":1.0},"600":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.7320508075688772},"1405":{"tf":1.7320508075688772},"458":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"473":{"tf":1.0},"507":{"tf":1.7320508075688772}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1507":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"913":{"tf":1.0}}}}},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1006":{"tf":1.0},"1419":{"tf":1.0},"36":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"(":{"'":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1117":{"tf":1.4142135623730951},"1120":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"760":{"tf":1.0},"762":{"tf":1.0}}}},"df":36,"docs":{"1012":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"1038":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1273":{"tf":1.0},"1279":{"tf":1.0},"1356":{"tf":1.0},"1405":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.7320508075688772},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.4142135623730951},"345":{"tf":1.4142135623730951},"41":{"tf":1.0},"434":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"465":{"tf":1.4142135623730951},"474":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.4142135623730951},"572":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"984":{"tf":1.0},"996":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"d":{"b":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"1055":{"tf":1.4142135623730951},"1077":{"tf":1.7320508075688772},"1080":{"tf":1.0},"1087":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.7320508075688772},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1299":{"tf":1.4142135623730951},"1310":{"tf":1.0}}}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1164":{"tf":1.0}}}}}}}},"q":{"2":{"0":{"2":{"5":{"\"":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":1,"docs":{"82":{"tf":1.0}}}}}}},"df":0,"docs":{}},"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"/":{"df":0,"docs":{},"e":{"c":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":22,"docs":{"1015":{"tf":1.4142135623730951},"1034":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1037":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1254":{"tf":1.0},"1472":{"tf":1.0},"345":{"tf":1.7320508075688772},"572":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"82":{"tf":1.7320508075688772},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":24,"docs":{"1015":{"tf":1.0},"1028":{"tf":1.4142135623730951},"1031":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1048":{"tf":1.0},"110":{"tf":1.0},"113":{"tf":1.0},"1227":{"tf":1.0},"1472":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.0},"344":{"tf":1.7320508075688772},"57":{"tf":1.0},"571":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"82":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":18,"docs":{"1009":{"tf":1.4142135623730951},"1113":{"tf":1.4142135623730951},"1167":{"tf":1.4142135623730951},"1201":{"tf":1.4142135623730951},"1283":{"tf":1.4142135623730951},"1311":{"tf":1.4142135623730951},"1317":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"168":{"tf":1.4142135623730951},"203":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"313":{"tf":1.4142135623730951},"681":{"tf":1.4142135623730951},"908":{"tf":1.4142135623730951},"951":{"tf":1.4142135623730951},"961":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"196":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"925":{"tf":1.0}}}},"df":0,"docs":{}}},"df":6,"docs":{"1011":{"tf":1.4142135623730951},"1174":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.0},"833":{"tf":1.0},"934":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"169":{"tf":1.0},"833":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"236":{"tf":1.0},"666":{"tf":1.0},"911":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1351":{"tf":1.0},"1374":{"tf":1.0},"1485":{"tf":1.0},"946":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":10,"docs":{"1077":{"tf":1.0},"1080":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1312":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"911":{"tf":1.0},"981":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"884":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":12,"docs":{"1144":{"tf":1.0},"1161":{"tf":1.0},"1255":{"tf":1.0},"227":{"tf":1.0},"450":{"tf":1.0},"451":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.0},"911":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"373":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":15,"docs":{"1003":{"tf":1.0},"192":{"tf":1.0},"197":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"61":{"tf":1.0},"776":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"981":{"tf":1.0},"988":{"tf":1.0}},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"881":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"759":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":7,"docs":{"1081":{"tf":1.0},"1300":{"tf":1.0},"1306":{"tf":1.0},"1522":{"tf":1.0},"516":{"tf":1.0},"693":{"tf":1.0},"762":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"1154":{"tf":1.4142135623730951},"1449":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"56":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"912":{"tf":1.4142135623730951},"936":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"598":{"tf":1.0},"616":{"tf":1.0}},"r":{"df":3,"docs":{"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"581":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1379":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":1,"docs":{"581":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1402":{"tf":1.0}}}}},"df":0,"docs":{}},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1381":{"tf":1.0},"666":{"tf":1.0}}}}},"df":0,"docs":{}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"555":{"tf":1.0},"644":{"tf":1.0},"695":{"tf":1.0}},"r":{"df":2,"docs":{"642":{"tf":1.0},"654":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"652":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"576":{"tf":1.0},"631":{"tf":1.0},"653":{"tf":1.0},"656":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"651":{"tf":1.0}}}}},"df":0,"docs":{}},"j":{"a":{"c":{"df":2,"docs":{"555":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"649":{"tf":1.0}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"637":{"tf":1.0},"656":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0}}}}}},"df":3,"docs":{"625":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"654":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"706":{"tf":1.0}}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"606":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{"df":6,"docs":{"595":{"tf":1.0},"597":{"tf":1.0},"606":{"tf":1.0},"769":{"tf":1.4142135623730951},"82":{"tf":1.0},"949":{"tf":1.0}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}}}}}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"595":{"tf":1.0},"618":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"678":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":4,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"u":{"df":5,"docs":{"1374":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"592":{"tf":1.0},"599":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"598":{"tf":1.0},"667":{"tf":1.0}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"618":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"601":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"678":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"1376":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0}}}},"o":{"df":1,"docs":{"618":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":2,"docs":{"604":{"tf":1.0},"605":{"tf":1.0}}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"599":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1384":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"667":{"tf":1.0}}},"df":0,"docs":{}}}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1382":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"1021":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0}}}}}},"df":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"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":2,"docs":{"599":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1394":{"tf":1.0},"678":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"p":{"d":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1126":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"592":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"616":{"tf":1.0},"618":{"tf":1.0}}}},"s":{"df":1,"docs":{"1374":{"tf":1.0}}}}}}},"'":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"80":{"tf":1.0},"87":{"tf":1.0}},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"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":{"723":{"tf":1.0}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"576":{"tf":1.0},"87":{"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":{"555":{"tf":1.0}}}}}}},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"653":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"723":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"81":{"tf":1.0},"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"653":{"tf":1.0}}}}}}}},"df":2,"docs":{"1375":{"tf":1.4142135623730951},"1386":{"tf":2.0}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"609":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"616":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":16,"docs":{"1154":{"tf":1.0},"120":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"1375":{"tf":1.4142135623730951},"138":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1409":{"tf":1.0},"1411":{"tf":1.0},"1419":{"tf":1.7320508075688772},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.0},"1440":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0}},"l":{"df":0,"docs":{},"n":{"!":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"286":{"tf":1.0}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"288":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"268":{"tf":1.0},"288":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":2,"docs":{"274":{"tf":1.0},"288":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"916":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"987":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":5,"docs":{"1166":{"tf":1.4142135623730951},"1336":{"tf":1.0},"869":{"tf":1.0},"872":{"tf":1.4142135623730951},"992":{"tf":1.4142135623730951}}}}}}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"759":{"tf":1.0}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"767":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":47,"docs":{"1008":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1106":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1253":{"tf":1.0},"1320":{"tf":1.0},"1448":{"tf":1.0},"1464":{"tf":2.0},"1465":{"tf":1.0},"1466":{"tf":1.4142135623730951},"1528":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"280":{"tf":1.4142135623730951},"31":{"tf":1.0},"418":{"tf":1.4142135623730951},"526":{"tf":1.0},"536":{"tf":1.7320508075688772},"58":{"tf":1.0},"681":{"tf":1.0},"703":{"tf":1.0},"722":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.0},"886":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"919":{"tf":1.0},"921":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.4142135623730951},"968":{"tf":1.0},"969":{"tf":1.0},"983":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":15,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1518":{"tf":1.0},"1520":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"1206":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"913":{"tf":1.0}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"b":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1022":{"tf":1.0},"57":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":2.23606797749979}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1530":{"tf":1.4142135623730951},"974":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"213":{"tf":1.0},"30":{"tf":1.0},"47":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"d":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1301":{"tf":1.0},"1522":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"1293":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"82":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"507":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"1":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"299":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1281":{"tf":1.0},"497":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":41,"docs":{"11":{"tf":1.0},"1112":{"tf":1.0},"1115":{"tf":1.0},"1149":{"tf":1.0},"1265":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1332":{"tf":1.7320508075688772},"1338":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1389":{"tf":1.4142135623730951},"1421":{"tf":1.0},"1422":{"tf":1.4142135623730951},"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"177":{"tf":1.0},"192":{"tf":1.0},"206":{"tf":1.0},"210":{"tf":1.4142135623730951},"228":{"tf":1.0},"34":{"tf":1.7320508075688772},"359":{"tf":1.0},"43":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.4142135623730951},"489":{"tf":1.0},"490":{"tf":1.0},"516":{"tf":1.0},"54":{"tf":1.4142135623730951},"55":{"tf":1.0},"58":{"tf":1.4142135623730951},"593":{"tf":1.0},"675":{"tf":1.4142135623730951},"693":{"tf":1.0},"765":{"tf":1.0},"920":{"tf":1.4142135623730951},"981":{"tf":1.0},"991":{"tf":1.4142135623730951},"993":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"'":{".":{"/":{"b":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":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":{"1390":{"tf":1.0},"311":{"tf":2.0}},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"495":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"d":{"=":{"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{".":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"d":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1343":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":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":{"1343":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0}},"u":{"c":{"df":6,"docs":{"1163":{"tf":1.0},"1170":{"tf":1.0},"176":{"tf":1.0},"837":{"tf":1.0},"856":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":42,"docs":{"1068":{"tf":1.0},"1086":{"tf":1.0},"1139":{"tf":1.0},"1144":{"tf":1.0},"1205":{"tf":1.0},"1284":{"tf":1.7320508075688772},"1343":{"tf":1.0},"1396":{"tf":1.0},"14":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1445":{"tf":1.7320508075688772},"1451":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.4142135623730951},"169":{"tf":1.0},"2":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"315":{"tf":1.7320508075688772},"49":{"tf":1.0},"680":{"tf":1.4142135623730951},"681":{"tf":1.0},"73":{"tf":1.4142135623730951},"76":{"tf":1.4142135623730951},"77":{"tf":2.6457513110645907},"80":{"tf":1.4142135623730951},"81":{"tf":2.6457513110645907},"892":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"908":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.7320508075688772},"930":{"tf":1.0},"935":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"976":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"569":{"tf":1.0},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"759":{"tf":1.0},"871":{"tf":1.0}}},"t":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"732":{"tf":1.0},"94":{"tf":2.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"257":{"tf":1.0},"280":{"tf":1.0},"418":{"tf":1.0},"536":{"tf":1.0},"562":{"tf":1.7320508075688772},"652":{"tf":1.0},"661":{"tf":1.7320508075688772},"82":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"804":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}}}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":22,"docs":{"1202":{"tf":1.0},"1285":{"tf":1.0},"1320":{"tf":1.7320508075688772},"1325":{"tf":2.449489742783178},"1365":{"tf":1.0},"1388":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.4142135623730951},"321":{"tf":1.0},"347":{"tf":1.7320508075688772},"391":{"tf":1.0},"548":{"tf":1.0},"574":{"tf":1.7320508075688772},"580":{"tf":1.0},"625":{"tf":1.0},"766":{"tf":1.0},"814":{"tf":1.0},"840":{"tf":1.0},"841":{"tf":1.7320508075688772},"845":{"tf":1.0},"848":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":8,"docs":{"1437":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1445":{"tf":1.0},"302":{"tf":1.4142135623730951},"311":{"tf":1.4142135623730951},"900":{"tf":1.7320508075688772},"902":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"543":{"tf":1.0}},"e":{"(":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1174":{"tf":1.4142135623730951},"1195":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"82":{"tf":1.0},"856":{"tf":1.0},"925":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"f":{"df":12,"docs":{"1014":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1403":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"174":{"tf":1.0},"456":{"tf":1.0},"62":{"tf":1.0},"663":{"tf":1.0},"915":{"tf":1.0},"960":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"_":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"!":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1163":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{")":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1011":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.7320508075688772},"252":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"976":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1455":{"tf":1.4142135623730951},"929":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1149":{"tf":1.0},"1499":{"tf":1.0},"319":{"tf":1.0},"451":{"tf":1.0},"87":{"tf":1.0},"92":{"tf":1.0},"949":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":29,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.7320508075688772},"1119":{"tf":1.7320508075688772},"1120":{"tf":1.4142135623730951},"1121":{"tf":1.0},"1122":{"tf":1.7320508075688772},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1134":{"tf":1.0},"1162":{"tf":1.7320508075688772},"1163":{"tf":1.4142135623730951},"1170":{"tf":1.4142135623730951},"41":{"tf":1.0},"739":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.4142135623730951},"752":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.4142135623730951},"792":{"tf":1.0},"803":{"tf":1.0},"806":{"tf":1.4142135623730951},"832":{"tf":1.0},"834":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"208":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"df":12,"docs":{"1145":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"288":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"804":{"tf":1.7320508075688772},"805":{"tf":1.0},"827":{"tf":1.7320508075688772},"883":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{":":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":2,"docs":{"1162":{"tf":1.0},"1163":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":21,"docs":{"1008":{"tf":1.0},"1032":{"tf":1.0},"1042":{"tf":1.0},"1253":{"tf":1.4142135623730951},"1254":{"tf":1.0},"1276":{"tf":2.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"169":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"760":{"tf":1.0},"918":{"tf":1.7320508075688772},"925":{"tf":1.4142135623730951},"93":{"tf":1.0},"934":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":62,"docs":{"108":{"tf":2.0},"1173":{"tf":2.0},"1174":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1178":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1181":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1184":{"tf":1.0},"1185":{"tf":1.0},"1186":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1190":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1193":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1198":{"tf":1.0},"1199":{"tf":1.0},"1200":{"tf":1.0},"1201":{"tf":1.0},"1202":{"tf":1.0},"1203":{"tf":1.0},"1204":{"tf":1.0},"1205":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.0},"1261":{"tf":1.0},"1294":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"16":{"tf":1.0},"2":{"tf":1.0},"298":{"tf":1.0},"311":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.0},"385":{"tf":1.0},"421":{"tf":1.0},"422":{"tf":1.7320508075688772},"423":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"619":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"727":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1060":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"147":{"tf":1.0},"24":{"tf":1.0},"93":{"tf":1.4142135623730951},"936":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951},"995":{"tf":1.4142135623730951}},"n":{"df":10,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.0},"1237":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"837":{"tf":1.0},"850":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"i":{"d":{"df":81,"docs":{"1":{"tf":1.0},"1014":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1051":{"tf":1.0},"1073":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.0},"1129":{"tf":1.4142135623730951},"1173":{"tf":1.0},"118":{"tf":1.0},"1181":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.0},"1236":{"tf":1.0},"1250":{"tf":1.0},"1254":{"tf":1.0},"1256":{"tf":1.0},"1262":{"tf":1.0},"129":{"tf":1.7320508075688772},"1317":{"tf":1.0},"1333":{"tf":2.0},"1336":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1400":{"tf":1.0},"1407":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.4142135623730951},"1466":{"tf":1.0},"147":{"tf":1.0},"1476":{"tf":1.0},"225":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"235":{"tf":2.6457513110645907},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"245":{"tf":1.4142135623730951},"255":{"tf":1.0},"257":{"tf":1.0},"268":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.0},"303":{"tf":1.0},"321":{"tf":1.0},"357":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":1.0},"461":{"tf":1.0},"482":{"tf":1.0},"50":{"tf":2.0},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"591":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"72":{"tf":1.0},"728":{"tf":1.0},"749":{"tf":1.0},"754":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"776":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.4142135623730951},"861":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"952":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"55":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"i":{"df":12,"docs":{"1176":{"tf":1.4142135623730951},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1197":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"429":{"tf":1.0},"430":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"542":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"951":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":24,"docs":{"1015":{"tf":1.4142135623730951},"1022":{"tf":1.4142135623730951},"1023":{"tf":1.0},"1025":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"343":{"tf":1.7320508075688772},"57":{"tf":1.0},"570":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"2":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"1154":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"262":{"tf":2.23606797749979}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"1213":{"tf":1.0},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.0},"608":{"tf":1.0}}}}}}},"_":{"a":{"df":1,"docs":{"1248":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":13,"docs":{"1043":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"1518":{"tf":1.0},"334":{"tf":1.0},"347":{"tf":1.0},"574":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"889":{"tf":1.0},"892":{"tf":1.0},"902":{"tf":1.0},"924":{"tf":1.0}}}}}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"_":{"b":{"6":{"4":{"df":1,"docs":{"1217":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":4,"docs":{"638":{"tf":1.0},"646":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.7320508075688772},"710":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"948":{"tf":1.0},"999":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"611":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}},"df":5,"docs":{"277":{"tf":1.0},"616":{"tf":1.0},"704":{"tf":1.7320508075688772},"710":{"tf":1.7320508075688772},"991":{"tf":1.4142135623730951}}}}}},"df":87,"docs":{"1001":{"tf":1.4142135623730951},"1008":{"tf":1.0},"1018":{"tf":1.0},"1030":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1046":{"tf":1.0},"1047":{"tf":1.0},"1053":{"tf":1.0},"1145":{"tf":1.0},"1208":{"tf":1.0},"1212":{"tf":1.0},"1228":{"tf":1.0},"1233":{"tf":1.0},"1239":{"tf":1.0},"1240":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1276":{"tf":1.4142135623730951},"130":{"tf":1.0},"1320":{"tf":1.0},"1333":{"tf":1.0},"1436":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"231":{"tf":1.4142135623730951},"236":{"tf":1.0},"24":{"tf":1.0},"248":{"tf":1.0},"254":{"tf":1.0},"272":{"tf":1.7320508075688772},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"376":{"tf":2.0},"378":{"tf":1.0},"382":{"tf":1.4142135623730951},"404":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"45":{"tf":1.0},"486":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0},"536":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"609":{"tf":2.0},"611":{"tf":1.0},"616":{"tf":1.4142135623730951},"638":{"tf":1.0},"704":{"tf":1.0},"710":{"tf":1.0},"722":{"tf":1.0},"763":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"84":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"896":{"tf":1.0},"911":{"tf":1.0},"913":{"tf":1.7320508075688772},"915":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.0},"924":{"tf":1.0},"939":{"tf":1.7320508075688772},"944":{"tf":1.4142135623730951},"948":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.0},"990":{"tf":1.0},"991":{"tf":1.0},"994":{"tf":1.0},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":4,"docs":{"404":{"tf":1.0},"412":{"tf":1.0},"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":7,"docs":{"1240":{"tf":1.0},"1245":{"tf":1.0},"375":{"tf":1.0},"382":{"tf":1.0},"527":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"608":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":19,"docs":{"1045":{"tf":1.0},"1046":{"tf":1.0},"1245":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"375":{"tf":1.0},"45":{"tf":1.0},"608":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"911":{"tf":1.0},"913":{"tf":1.0},"950":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"378":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":17,"docs":{"1222":{"tf":1.0},"1235":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1249":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1476":{"tf":1.0},"172":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"233":{"tf":1.4142135623730951},"33":{"tf":1.0},"944":{"tf":1.0},"95":{"tf":1.0},"976":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}}}}},"df":3,"docs":{"274":{"tf":1.0},"420":{"tf":1.0},"654":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":16,"docs":{"1015":{"tf":1.0},"1041":{"tf":1.0},"1209":{"tf":1.0},"13":{"tf":1.0},"182":{"tf":1.0},"204":{"tf":1.0},"228":{"tf":1.0},"23":{"tf":1.0},"46":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"831":{"tf":1.0},"843":{"tf":1.4142135623730951},"845":{"tf":1.0},"916":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1158":{"tf":1.0}}}},"t":{"df":3,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0},"1292":{"tf":1.0}}}},"y":{"d":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{">":{"=":{"2":{".":{"0":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"3":{"df":1,"docs":{"587":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"6":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1392":{"tf":1.0},"684":{"tf":1.4142135623730951}}}}}}}},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{".":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"1148":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"1145":{"tf":1.4142135623730951},"1169":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"1140":{"tf":1.4142135623730951},"1142":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1149":{"tf":1.0},"1155":{"tf":1.0},"1392":{"tf":1.7320508075688772},"684":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{"3":{".":{"1":{"1":{"df":1,"docs":{"682":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"3":{".":{"1":{"1":{"df":1,"docs":{"579":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":83,"docs":{"10":{"tf":1.4142135623730951},"1126":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1145":{"tf":1.0},"1148":{"tf":1.0},"1151":{"tf":1.0},"1155":{"tf":1.4142135623730951},"1172":{"tf":1.0},"1180":{"tf":1.4142135623730951},"1183":{"tf":2.0},"1192":{"tf":1.0},"1199":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1213":{"tf":1.0},"1217":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1269":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1302":{"tf":1.4142135623730951},"1371":{"tf":2.0},"1372":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1379":{"tf":1.0},"1380":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0},"1391":{"tf":1.0},"1392":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1395":{"tf":2.0},"1402":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1510":{"tf":1.0},"1517":{"tf":1.7320508075688772},"1518":{"tf":1.0},"1530":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"38":{"tf":1.0},"548":{"tf":2.23606797749979},"549":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.4142135623730951},"556":{"tf":1.0},"561":{"tf":1.4142135623730951},"576":{"tf":1.0},"578":{"tf":1.0},"583":{"tf":1.4142135623730951},"587":{"tf":1.0},"6":{"tf":1.4142135623730951},"610":{"tf":1.0},"620":{"tf":1.0},"67":{"tf":1.0},"682":{"tf":1.0},"690":{"tf":1.0},"769":{"tf":1.4142135623730951},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"905":{"tf":1.4142135623730951},"91":{"tf":1.0},"911":{"tf":1.0},"916":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}}}},"q":{"1":{"df":17,"docs":{"1403":{"tf":1.4142135623730951},"176":{"tf":1.0},"180":{"tf":1.0},"217":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"616":{"tf":1.0},"640":{"tf":1.0},"785":{"tf":1.0},"843":{"tf":1.0},"859":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0},"883":{"tf":1.0}}},"4":{"df":1,"docs":{"45":{"tf":1.0}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":6,"docs":{"151":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"34":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":8,"docs":{"1112":{"tf":2.0},"1116":{"tf":1.0},"1127":{"tf":1.0},"1323":{"tf":1.0},"1351":{"tf":1.0},"1374":{"tf":1.0},"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"m":{"df":32,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.4142135623730951},"1030":{"tf":1.0},"1032":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"1222":{"tf":1.0},"1254":{"tf":2.0},"15":{"tf":1.0},"1515":{"tf":1.7320508075688772},"159":{"tf":1.0},"169":{"tf":1.0},"2":{"tf":1.0},"25":{"tf":1.0},"344":{"tf":1.7320508075688772},"345":{"tf":1.4142135623730951},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"571":{"tf":1.7320508075688772},"572":{"tf":1.4142135623730951},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"984":{"tf":1.0},"996":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"1449":{"tf":1.0},"1507":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"916":{"tf":1.0}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"916":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":7,"docs":{"1010":{"tf":1.0},"226":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"625":{"tf":1.0},"634":{"tf":1.0},"843":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":28,"docs":{"1055":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.0},"1083":{"tf":2.23606797749979},"1084":{"tf":1.4142135623730951},"1086":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1251":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.0},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.0},"1305":{"tf":1.4142135623730951},"1306":{"tf":1.7320508075688772},"1309":{"tf":1.0},"35":{"tf":1.0},"414":{"tf":1.0},"459":{"tf":1.0},"528":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"871":{"tf":1.0},"944":{"tf":1.0}}},"y":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1083":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1083":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"1384":{"tf":1.0}}}},"df":0,"docs":{}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"1143":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"1143":{"tf":1.0},"700":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.4142135623730951}}}}}},"df":16,"docs":{"1242":{"tf":1.0},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"221":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":2.0},"53":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.4142135623730951},"785":{"tf":1.0},"786":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.0},"856":{"tf":1.7320508075688772},"88":{"tf":1.7320508075688772}}}}}}},"u":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":45,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"18":{"tf":1.0},"293":{"tf":1.4142135623730951},"358":{"tf":1.4142135623730951},"359":{"tf":1.0},"38":{"tf":1.0},"425":{"tf":1.4142135623730951},"483":{"tf":1.4142135623730951},"592":{"tf":1.4142135623730951},"593":{"tf":1.0},"665":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.4142135623730951},"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.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"979":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1479":{"tf":1.0}}}}}},"r":{"#":{"\"":{"df":0,"docs":{},"{":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"268":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"[":{"'":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"b":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":3,"docs":{"1160":{"tf":1.7320508075688772},"1161":{"tf":1.0},"1168":{"tf":1.0}}},"s":{"df":18,"docs":{"1378":{"tf":2.0},"1379":{"tf":1.0},"1394":{"tf":2.23606797749979},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"595":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"723":{"tf":1.0},"725":{"tf":1.0}}}},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1162":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"93":{"tf":1.0}},"e":{"(":{"1":{"0":{"df":1,"docs":{"726":{"tf":1.0}}},"df":1,"docs":{"1390":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"k":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"501":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"o":{"df":10,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.0},"1445":{"tf":1.0},"306":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":1.0}}}}},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1080":{"tf":1.0},"1081":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":17,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.0},"1378":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"379":{"tf":1.0},"46":{"tf":1.0},"465":{"tf":1.0},"471":{"tf":1.0},"476":{"tf":1.0},"612":{"tf":1.0},"744":{"tf":1.0},"746":{"tf":1.0},"780":{"tf":1.4142135623730951},"877":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.0}}}},"df":10,"docs":{"1375":{"tf":1.0},"1376":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1517":{"tf":1.0},"1530":{"tf":1.0},"682":{"tf":1.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1276":{"tf":1.0},"41":{"tf":1.0},"486":{"tf":1.0},"751":{"tf":1.0}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":10,"docs":{"1227":{"tf":1.0},"204":{"tf":1.0},"232":{"tf":1.0},"51":{"tf":1.0},"66":{"tf":1.0},"808":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0}}}},"df":0,"docs":{}},"df":34,"docs":{"1094":{"tf":1.0},"1131":{"tf":1.7320508075688772},"1174":{"tf":1.0},"1194":{"tf":1.0},"125":{"tf":1.7320508075688772},"1270":{"tf":1.0},"1271":{"tf":1.0},"1321":{"tf":1.0},"1330":{"tf":1.0},"1340":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":1.0},"1382":{"tf":1.0},"1385":{"tf":1.0},"1422":{"tf":1.0},"1498":{"tf":1.0},"1529":{"tf":1.0},"192":{"tf":1.0},"336":{"tf":1.0},"339":{"tf":1.0},"369":{"tf":1.0},"465":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"563":{"tf":1.0},"566":{"tf":1.0},"603":{"tf":1.0},"660":{"tf":1.0},"667":{"tf":1.0},"916":{"tf":1.0}},"i":{"df":9,"docs":{"1396":{"tf":1.0},"14":{"tf":1.7320508075688772},"19":{"tf":1.0},"349":{"tf":1.0},"38":{"tf":1.0},"454":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"673":{"tf":1.0}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1131":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":7,"docs":{"1042":{"tf":1.0},"1211":{"tf":1.0},"32":{"tf":1.4142135623730951},"37":{"tf":1.0},"506":{"tf":1.0},"67":{"tf":1.0},"91":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1403":{"tf":1.0},"856":{"tf":1.0},"934":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"353":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":19,"docs":{"1152":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1286":{"tf":1.0},"31":{"tf":1.0},"311":{"tf":2.0},"440":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"483":{"tf":1.0},"525":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"702":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1083":{"tf":1.0},"916":{"tf":1.4142135623730951}},"n":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"208":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.4142135623730951},"599":{"tf":1.0},"616":{"tf":1.4142135623730951},"879":{"tf":1.0},"95":{"tf":1.0},"98":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":23,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.0},"103":{"tf":1.4142135623730951},"1035":{"tf":1.0},"1041":{"tf":1.0},"1089":{"tf":1.0},"1154":{"tf":1.0},"1162":{"tf":1.0},"1164":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1295":{"tf":1.0},"149":{"tf":1.4142135623730951},"159":{"tf":1.0},"241":{"tf":1.0},"342":{"tf":1.4142135623730951},"437":{"tf":1.0},"545":{"tf":1.0},"569":{"tf":1.4142135623730951},"57":{"tf":1.0},"892":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"922":{"tf":1.0}}}}}},"r":{"d":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1129":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"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":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"303":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":44,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.7320508075688772},"1004":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1129":{"tf":1.7320508075688772},"1235":{"tf":2.0},"1247":{"tf":1.0},"1250":{"tf":1.7320508075688772},"1251":{"tf":1.0},"129":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":2.449489742783178},"1476":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.7320508075688772},"237":{"tf":1.0},"243":{"tf":1.0},"249":{"tf":1.4142135623730951},"252":{"tf":2.0},"253":{"tf":1.0},"254":{"tf":1.4142135623730951},"292":{"tf":1.0},"303":{"tf":1.7320508075688772},"304":{"tf":1.0},"31":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0},"732":{"tf":1.0},"763":{"tf":1.0},"831":{"tf":1.0},"915":{"tf":1.0},"932":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"954":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":2.0},"977":{"tf":1.0},"979":{"tf":1.0},"994":{"tf":1.0}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1129":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1096":{"tf":1.4142135623730951},"1099":{"tf":1.0},"974":{"tf":1.7320508075688772},"983":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"856":{"tf":1.0}}},"s":{"df":5,"docs":{"1140":{"tf":1.0},"1145":{"tf":1.7320508075688772},"1365":{"tf":1.0},"1369":{"tf":1.0},"1403":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1307":{"tf":2.0}},"s":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1069":{"tf":1.0}}},"df":0,"docs":{}}}},"df":50,"docs":{"1052":{"tf":1.0},"1094":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1355":{"tf":2.449489742783178},"1401":{"tf":2.8284271247461903},"1405":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1471":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1515":{"tf":1.7320508075688772},"1526":{"tf":1.4142135623730951},"166":{"tf":1.0},"192":{"tf":1.0},"370":{"tf":2.0},"371":{"tf":1.0},"434":{"tf":2.0},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.4142135623730951},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"502":{"tf":1.0},"503":{"tf":1.4142135623730951},"506":{"tf":1.0},"507":{"tf":2.449489742783178},"538":{"tf":1.0},"604":{"tf":2.0},"605":{"tf":1.0},"847":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"883":{"tf":1.0},"916":{"tf":1.4142135623730951}},"f":{"df":13,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1119":{"tf":1.0},"1120":{"tf":1.4142135623730951},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":172,"docs":{"1092":{"tf":1.0},"1172":{"tf":1.4142135623730951},"1318":{"tf":1.4142135623730951},"1347":{"tf":1.7320508075688772},"1370":{"tf":1.0},"1395":{"tf":1.0},"1407":{"tf":2.0},"1408":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1412":{"tf":1.0},"1413":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.0},"1424":{"tf":1.0},"1425":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1427":{"tf":1.0},"1428":{"tf":1.0},"1429":{"tf":1.0},"1430":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1434":{"tf":1.7320508075688772},"1435":{"tf":1.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1442":{"tf":1.0},"1443":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1453":{"tf":1.0},"1454":{"tf":1.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1457":{"tf":1.0},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.0},"181":{"tf":1.0},"185":{"tf":1.7320508075688772},"262":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"360":{"tf":1.4142135623730951},"366":{"tf":1.0},"385":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"428":{"tf":1.4142135623730951},"452":{"tf":1.0},"46":{"tf":1.0},"466":{"tf":1.4142135623730951},"480":{"tf":1.0},"512":{"tf":1.0},"513":{"tf":1.7320508075688772},"514":{"tf":1.0},"515":{"tf":1.0},"516":{"tf":1.0},"517":{"tf":1.0},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"534":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"537":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"540":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"544":{"tf":1.0},"545":{"tf":1.0},"546":{"tf":1.0},"547":{"tf":1.0},"589":{"tf":1.0},"594":{"tf":1.4142135623730951},"600":{"tf":1.0},"619":{"tf":1.0},"654":{"tf":1.0},"662":{"tf":1.0},"685":{"tf":1.4142135623730951},"689":{"tf":1.0},"690":{"tf":1.7320508075688772},"691":{"tf":1.0},"692":{"tf":1.0},"693":{"tf":1.0},"694":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"711":{"tf":1.0},"712":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"717":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"723":{"tf":1.0},"724":{"tf":1.0},"725":{"tf":1.0},"726":{"tf":1.0},"727":{"tf":1.0},"737":{"tf":1.0},"744":{"tf":1.0},"747":{"tf":1.4142135623730951},"748":{"tf":1.0},"776":{"tf":1.0},"798":{"tf":1.0},"838":{"tf":1.7320508075688772},"845":{"tf":1.0},"856":{"tf":1.4142135623730951},"857":{"tf":1.7320508075688772},"860":{"tf":1.0},"870":{"tf":1.7320508075688772},"873":{"tf":1.0},"881":{"tf":1.0},"885":{"tf":1.4142135623730951},"977":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":5,"docs":{"1419":{"tf":1.0},"870":{"tf":1.0},"874":{"tf":1.0},"882":{"tf":1.0},"885":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"870":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"1292":{"tf":1.0},"1491":{"tf":1.0}}}}},"g":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1455":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1465":{"tf":1.0},"1467":{"tf":1.0},"254":{"tf":1.0},"976":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"1099":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1154":{"tf":1.0},"1437":{"tf":1.0},"1452":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1179":{"tf":1.0},"1208":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1405":{"tf":1.4142135623730951},"373":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"816":{"tf":1.0},"93":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"941":{"tf":1.4142135623730951},"96":{"tf":2.0},"976":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"96":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"1474":{"tf":1.4142135623730951},"245":{"tf":1.4142135623730951},"253":{"tf":1.0},"783":{"tf":2.0},"976":{"tf":1.0}}}},"df":16,"docs":{"1208":{"tf":1.7320508075688772},"1230":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"533":{"tf":1.0},"646":{"tf":1.0},"710":{"tf":1.0},"783":{"tf":1.7320508075688772},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"911":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"96":{"tf":1.0},"977":{"tf":1.0}},"i":{"df":3,"docs":{"1075":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":4,"docs":{"1010":{"tf":1.0},"1097":{"tf":1.0},"169":{"tf":1.0},"985":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"951":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"312":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"351":{"tf":1.0},"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"458":{"tf":1.0}}}}}},"df":16,"docs":{"1171":{"tf":1.0},"1290":{"tf":1.0},"1340":{"tf":1.4142135623730951},"1507":{"tf":1.0},"221":{"tf":1.0},"458":{"tf":1.4142135623730951},"505":{"tf":1.0},"782":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.7320508075688772},"929":{"tf":1.0},"930":{"tf":1.0},"932":{"tf":1.4142135623730951},"950":{"tf":2.449489742783178},"954":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"t":{"df":5,"docs":{"1117":{"tf":1.4142135623730951},"1298":{"tf":1.0},"748":{"tf":1.0},"869":{"tf":1.0},"885":{"tf":1.0}},"e":{"d":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"872":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"869":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":6,"docs":{"1194":{"tf":1.0},"802":{"tf":1.0},"809":{"tf":1.4142135623730951},"817":{"tf":1.4142135623730951},"871":{"tf":1.0},"947":{"tf":1.0}}}}}}}}}},"x":{"df":2,"docs":{"937":{"tf":1.0},"942":{"tf":1.0}}}},"df":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"871":{"tf":1.0},"996":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1160":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"1007":{"tf":1.0},"1047":{"tf":1.0},"15":{"tf":1.0},"1515":{"tf":1.0},"166":{"tf":1.0},"874":{"tf":1.0},"911":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":9,"docs":{"110":{"tf":1.0},"1214":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1442":{"tf":1.0},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.0},"1455":{"tf":1.0},"1491":{"tf":1.0}}},"v":{"df":7,"docs":{"1094":{"tf":1.0},"1403":{"tf":1.0},"1470":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"451":{"tf":1.0},"874":{"tf":1.0}},"e":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"805":{"tf":1.0},"855":{"tf":1.4142135623730951}}}}}}}},"p":{"df":0,"docs":{},"l":{"a":{"c":{"df":8,"docs":{"1310":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1507":{"tf":1.0},"237":{"tf":1.0},"855":{"tf":1.0},"981":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":3,"docs":{"918":{"tf":1.0},"931":{"tf":1.0},"934":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":2.0}}},"df":1,"docs":{"884":{"tf":1.0}}}},"o":{"df":1,"docs":{"93":{"tf":1.0}},"r":{"df":0,"docs":{},"t":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1323":{"tf":1.0}}}}}},"p":{"d":{"df":0,"docs":{},"f":{"df":6,"docs":{"184":{"tf":1.0},"186":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"635":{"tf":1.0},"797":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1339":{"tf":1.0}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}}},"=":{"\"":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1339":{"tf":1.0}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"1155":{"tf":1.0}}}}}}},"df":22,"docs":{"1091":{"tf":1.0},"1092":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1206":{"tf":1.0},"1339":{"tf":3.605551275463989},"182":{"tf":1.0},"19":{"tf":1.0},"226":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"519":{"tf":1.4142135623730951},"696":{"tf":1.0},"797":{"tf":1.4142135623730951},"833":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.4142135623730951},"849":{"tf":1.0},"859":{"tf":1.4142135623730951},"916":{"tf":1.0},"921":{"tf":1.0},"94":{"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":3,"docs":{"554":{"tf":1.0},"64":{"tf":1.0},"93":{"tf":1.0}}},"y":{"'":{"df":1,"docs":{"1213":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":7,"docs":{"1194":{"tf":1.0},"262":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"749":{"tf":1.0},"800":{"tf":1.0},"852":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"732":{"tf":1.0}}}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1175":{"tf":1.0},"1194":{"tf":1.0},"456":{"tf":1.0},"850":{"tf":1.0},"910":{"tf":1.0},"915":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"q":{".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":6,"docs":{"1401":{"tf":1.0},"1405":{"tf":1.0},"1526":{"tf":1.0},"434":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":26,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.4142135623730951},"1278":{"tf":1.7320508075688772},"1281":{"tf":1.0},"1288":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1526":{"tf":1.0},"461":{"tf":1.7320508075688772},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":1.7320508075688772},"490":{"tf":1.4142135623730951},"491":{"tf":1.7320508075688772},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"502":{"tf":1.4142135623730951},"503":{"tf":1.0},"506":{"tf":1.0},"507":{"tf":2.0},"509":{"tf":1.0},"538":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"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":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1288":{"tf":1.0},"502":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"503":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":29,"docs":{"1148":{"tf":1.0},"1192":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1355":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1526":{"tf":1.4142135623730951},"434":{"tf":1.4142135623730951},"458":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"498":{"tf":1.4142135623730951},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.23606797749979},"538":{"tf":1.0}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},".":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"(":{"a":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1271":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":15,"docs":{"1020":{"tf":1.0},"1146":{"tf":1.4142135623730951},"1262":{"tf":1.0},"1265":{"tf":1.4142135623730951},"413":{"tf":1.4142135623730951},"453":{"tf":1.0},"456":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"470":{"tf":1.0},"471":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"647":{"tf":1.4142135623730951},"676":{"tf":1.4142135623730951},"955":{"tf":1.4142135623730951}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"617":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":70,"docs":{"1146":{"tf":1.4142135623730951},"1148":{"tf":2.0},"1149":{"tf":1.0},"1185":{"tf":1.0},"1195":{"tf":1.7320508075688772},"1206":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1265":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":2.23606797749979},"1271":{"tf":2.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.7320508075688772},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":2.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.4142135623730951},"1378":{"tf":2.8284271247461903},"1379":{"tf":1.7320508075688772},"1400":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":2.23606797749979},"1405":{"tf":1.0},"1441":{"tf":1.0},"1474":{"tf":1.0},"1493":{"tf":2.23606797749979},"151":{"tf":1.0},"19":{"tf":1.0},"274":{"tf":1.0},"291":{"tf":1.0},"383":{"tf":1.0},"414":{"tf":1.7320508075688772},"420":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.7320508075688772},"467":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.4142135623730951},"476":{"tf":1.0},"482":{"tf":1.4142135623730951},"486":{"tf":1.0},"488":{"tf":1.4142135623730951},"490":{"tf":1.0},"491":{"tf":1.0},"498":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":2.0},"507":{"tf":1.0},"528":{"tf":1.7320508075688772},"617":{"tf":1.0},"648":{"tf":1.7320508075688772},"654":{"tf":1.0},"663":{"tf":1.0},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"705":{"tf":1.7320508075688772},"713":{"tf":1.0},"714":{"tf":1.0},"804":{"tf":1.0},"956":{"tf":1.7320508075688772}},"i":{"d":{"df":2,"docs":{"383":{"tf":1.0},"495":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"r":{"df":164,"docs":{"100":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1033":{"tf":1.0},"1038":{"tf":1.0},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1055":{"tf":1.0},"1068":{"tf":1.0},"1070":{"tf":1.0},"1071":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.0},"1084":{"tf":1.0},"1086":{"tf":1.0},"1087":{"tf":1.4142135623730951},"11":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.7320508075688772},"1119":{"tf":1.4142135623730951},"1120":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1144":{"tf":1.0},"1148":{"tf":1.0},"115":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1208":{"tf":1.0},"1213":{"tf":1.0},"1222":{"tf":1.0},"1242":{"tf":1.0},"127":{"tf":1.0},"1276":{"tf":1.0},"128":{"tf":2.449489742783178},"1304":{"tf":1.7320508075688772},"132":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1333":{"tf":1.4142135623730951},"1334":{"tf":2.23606797749979},"1336":{"tf":1.0},"135":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1386":{"tf":1.0},"1399":{"tf":1.0},"1420":{"tf":1.0},"1423":{"tf":1.0},"143":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1448":{"tf":2.0},"1452":{"tf":2.0},"1455":{"tf":1.0},"1456":{"tf":1.0},"1461":{"tf":1.7320508075688772},"1466":{"tf":1.7320508075688772},"1476":{"tf":1.7320508075688772},"1480":{"tf":1.7320508075688772},"1490":{"tf":1.0},"1515":{"tf":1.0},"152":{"tf":1.0},"157":{"tf":1.0},"165":{"tf":2.0},"173":{"tf":1.0},"181":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"213":{"tf":1.0},"214":{"tf":1.4142135623730951},"216":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"242":{"tf":2.449489742783178},"243":{"tf":2.23606797749979},"245":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951},"255":{"tf":1.0},"298":{"tf":1.0},"30":{"tf":1.0},"302":{"tf":1.4142135623730951},"31":{"tf":1.0},"322":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"342":{"tf":1.0},"369":{"tf":1.0},"37":{"tf":1.0},"373":{"tf":1.0},"39":{"tf":1.0},"406":{"tf":1.4142135623730951},"43":{"tf":1.0},"446":{"tf":1.0},"46":{"tf":1.4142135623730951},"462":{"tf":1.0},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"483":{"tf":1.0},"485":{"tf":1.0},"498":{"tf":1.0},"50":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.0},"51":{"tf":1.7320508075688772},"523":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"549":{"tf":1.4142135623730951},"569":{"tf":1.0},"588":{"tf":1.0},"603":{"tf":1.0},"615":{"tf":1.0},"62":{"tf":1.0},"640":{"tf":1.4142135623730951},"70":{"tf":1.0},"700":{"tf":1.4142135623730951},"742":{"tf":1.4142135623730951},"744":{"tf":1.7320508075688772},"754":{"tf":1.7320508075688772},"756":{"tf":1.0},"757":{"tf":1.4142135623730951},"759":{"tf":1.0},"766":{"tf":1.0},"778":{"tf":1.0},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.4142135623730951},"788":{"tf":1.0},"790":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.4142135623730951},"82":{"tf":1.0},"832":{"tf":1.0},"835":{"tf":1.4142135623730951},"852":{"tf":1.0},"854":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"879":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"896":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"925":{"tf":1.0},"933":{"tf":1.0},"936":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.7320508075688772},"94":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.4142135623730951},"946":{"tf":1.0},"960":{"tf":1.0},"970":{"tf":1.0},"977":{"tf":1.0},"98":{"tf":1.0},"985":{"tf":2.0}},"e":{"(":{"'":{"@":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"/":{"a":{"2":{"a":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"358":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"384":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"k":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":1,"docs":{"1522":{"tf":1.0}}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"1522":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"f":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"503":{"tf":1.0}}}}}},"df":1,"docs":{"503":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"498":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}}}}},"df":2,"docs":{"1278":{"tf":1.0},"491":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"574":{"tf":1.0},"575":{"tf":1.4142135623730951},"682":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":2,"docs":{"1355":{"tf":1.0},"507":{"tf":1.0}}}}}},"df":2,"docs":{"1355":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1355":{"tf":1.0},"1401":{"tf":1.0},"1405":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"(":{"'":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"1292":{"tf":1.0},"511":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"495":{"tf":1.0}}}}}}}}}},"df":25,"docs":{"1148":{"tf":1.0},"1267":{"tf":1.0},"1276":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1281":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"461":{"tf":1.4142135623730951},"470":{"tf":1.0},"473":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.7320508075688772},"489":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.0},"500":{"tf":1.4142135623730951},"503":{"tf":1.0},"507":{"tf":2.0},"511":{"tf":1.0},"538":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"4":{"0":{"0":{")":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1278":{"tf":1.0},"1355":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"463":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":1,"docs":{"461":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":6,"docs":{"1267":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1405":{"tf":1.0},"473":{"tf":1.0},"507":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"503":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"1281":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"497":{"tf":1.0},"507":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"458":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"'":{")":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"(":{"'":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"494":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"463":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":7,"docs":{"1035":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"37":{"tf":1.0},"49":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"t":{"_":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"312":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"312":{"tf":2.0},"506":{"tf":1.0}}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1254":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":5,"docs":{"1212":{"tf":1.0},"1220":{"tf":1.0},"1436":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}}}},"v":{"df":5,"docs":{"1145":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1436":{"tf":1.0},"43":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":18,"docs":{"1071":{"tf":1.0},"1174":{"tf":1.0},"1195":{"tf":1.0},"1358":{"tf":1.0},"1382":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1445":{"tf":1.0},"237":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"442":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.7320508075688772},"803":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"237":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"1206":{"tf":1.4142135623730951}},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"113":{"tf":1.0},"139":{"tf":1.0},"1441":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1378":{"tf":1.0},"1477":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":67,"docs":{"1010":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1185":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1200":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1263":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1279":{"tf":1.0},"1282":{"tf":1.0},"1290":{"tf":1.7320508075688772},"1292":{"tf":1.0},"1356":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1474":{"tf":1.0},"1494":{"tf":2.23606797749979},"221":{"tf":2.23606797749979},"231":{"tf":1.0},"232":{"tf":1.0},"250":{"tf":1.0},"415":{"tf":1.7320508075688772},"451":{"tf":1.0},"454":{"tf":2.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.4142135623730951},"461":{"tf":1.4142135623730951},"463":{"tf":1.0},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"492":{"tf":1.4142135623730951},"494":{"tf":2.0},"495":{"tf":1.7320508075688772},"505":{"tf":1.7320508075688772},"506":{"tf":1.0},"511":{"tf":1.7320508075688772},"529":{"tf":1.4142135623730951},"530":{"tf":1.4142135623730951},"649":{"tf":1.7320508075688772},"669":{"tf":1.4142135623730951},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.4142135623730951},"715":{"tf":1.0},"716":{"tf":1.0},"782":{"tf":1.4142135623730951},"944":{"tf":1.0},"954":{"tf":1.0},"957":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":3,"docs":{"1356":{"tf":1.0},"1405":{"tf":1.0},"459":{"tf":1.0}},"s":{"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":2,"docs":{"1149":{"tf":1.0},"1379":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":4,"docs":{"1273":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":6,"docs":{"221":{"tf":1.0},"224":{"tf":1.0},"782":{"tf":1.0},"785":{"tf":1.0},"816":{"tf":1.4142135623730951},"953":{"tf":1.0}}}}}}}}}},"t":{"df":8,"docs":{"1106":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"65":{"tf":1.0},"810":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1161":{"tf":2.0},"1530":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1105":{"tf":1.0},"1253":{"tf":1.0},"51":{"tf":1.0},"908":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"530":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"427":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"364":{"tf":1.0},"384":{"tf":1.0},"598":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1149":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"957":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"706":{"tf":1.0},"716":{"tf":1.0},"957":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"135":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"468":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":0,"docs":{},"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":2,"docs":{"369":{"tf":1.0},"916":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"w":{"df":3,"docs":{"1301":{"tf":1.0},"1310":{"tf":1.0},"1314":{"tf":1.0}},"s":{"[":{"0":{"df":1,"docs":{"1301":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"601":{"tf":1.0},"617":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"367":{"tf":1.0},"368":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"t":{"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":2,"docs":{"367":{"tf":1.0},"601":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":9,"docs":{"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"384":{"tf":1.4142135623730951},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"<":{"df":0,"docs":{},"t":{"df":1,"docs":{"286":{"tf":1.0}}}},"[":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":2,"docs":{"603":{"tf":1.0},"916":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"707":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"649":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":83,"docs":{"1146":{"tf":1.7320508075688772},"1149":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1216":{"tf":1.0},"1218":{"tf":1.0},"1256":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1281":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1310":{"tf":1.0},"1314":{"tf":1.0},"1324":{"tf":1.0},"1351":{"tf":1.0},"1355":{"tf":2.449489742783178},"1358":{"tf":2.449489742783178},"1365":{"tf":1.0},"1374":{"tf":1.0},"1378":{"tf":2.8284271247461903},"1381":{"tf":2.23606797749979},"1388":{"tf":1.0},"1390":{"tf":2.449489742783178},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.4142135623730951},"182":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"304":{"tf":1.0},"309":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"384":{"tf":1.0},"415":{"tf":1.4142135623730951},"427":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.4142135623730951},"459":{"tf":1.0},"463":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":2.449489742783178},"474":{"tf":1.4142135623730951},"493":{"tf":1.0},"495":{"tf":1.0},"497":{"tf":1.4142135623730951},"50":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.0},"601":{"tf":1.0},"603":{"tf":1.0},"617":{"tf":1.0},"618":{"tf":1.0},"649":{"tf":1.4142135623730951},"667":{"tf":1.7320508075688772},"670":{"tf":1.0},"678":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"687":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"716":{"tf":1.0},"719":{"tf":1.0},"916":{"tf":1.7320508075688772},"925":{"tf":1.0},"942":{"tf":1.0},"957":{"tf":1.0},"991":{"tf":1.0}},"s":{".":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1390":{"tf":2.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"415":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":3,"docs":{"1080":{"tf":1.0},"1214":{"tf":1.0},"1313":{"tf":1.7320508075688772}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":163,"docs":{"1103":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.7320508075688772},"1151":{"tf":1.4142135623730951},"1152":{"tf":1.0},"1179":{"tf":1.0},"1180":{"tf":1.0},"1192":{"tf":1.0},"1214":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.0},"1274":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1301":{"tf":2.449489742783178},"1302":{"tf":2.449489742783178},"1305":{"tf":2.0},"1306":{"tf":1.7320508075688772},"1307":{"tf":1.7320508075688772},"1309":{"tf":1.0},"1310":{"tf":1.7320508075688772},"1313":{"tf":1.4142135623730951},"1314":{"tf":1.0},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"1355":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":2.449489742783178},"1367":{"tf":1.4142135623730951},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1378":{"tf":2.0},"1379":{"tf":1.0},"1381":{"tf":2.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"1388":{"tf":2.449489742783178},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951},"1399":{"tf":2.449489742783178},"1401":{"tf":2.449489742783178},"1402":{"tf":2.449489742783178},"1403":{"tf":2.449489742783178},"1404":{"tf":3.4641016151377544},"1405":{"tf":1.0},"1436":{"tf":1.0},"262":{"tf":2.0},"286":{"tf":1.0},"31":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.4142135623730951},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.4142135623730951},"375":{"tf":1.4142135623730951},"376":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"431":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"473":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"500":{"tf":1.0},"503":{"tf":1.0},"507":{"tf":1.4142135623730951},"518":{"tf":1.0},"519":{"tf":1.0},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.0},"527":{"tf":1.0},"528":{"tf":1.0},"529":{"tf":1.0},"530":{"tf":1.4142135623730951},"531":{"tf":1.0},"532":{"tf":1.0},"533":{"tf":1.0},"535":{"tf":1.0},"536":{"tf":1.0},"538":{"tf":1.0},"539":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0},"576":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.4142135623730951},"608":{"tf":1.4142135623730951},"609":{"tf":1.0},"617":{"tf":1.4142135623730951},"666":{"tf":1.7320508075688772},"669":{"tf":1.0},"675":{"tf":1.0},"678":{"tf":1.0},"684":{"tf":1.7320508075688772},"686":{"tf":1.0},"687":{"tf":1.0},"695":{"tf":1.0},"696":{"tf":1.0},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.4142135623730951},"708":{"tf":1.0},"709":{"tf":1.0},"710":{"tf":1.0},"718":{"tf":1.0},"719":{"tf":1.0},"725":{"tf":1.7320508075688772},"726":{"tf":1.0},"916":{"tf":1.0},"950":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"1120":{"tf":1.4142135623730951},"1278":{"tf":1.0},"491":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":2,"docs":{"1403":{"tf":1.4142135623730951},"843":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":21,"docs":{"1336":{"tf":2.0},"154":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"214":{"tf":1.0},"225":{"tf":1.0},"228":{"tf":1.0},"274":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"33":{"tf":1.0},"420":{"tf":1.4142135623730951},"54":{"tf":1.4142135623730951},"654":{"tf":1.4142135623730951},"765":{"tf":1.7320508075688772},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"815":{"tf":1.0},"825":{"tf":1.0},"827":{"tf":1.4142135623730951},"88":{"tf":2.8284271247461903},"92":{"tf":1.0},"951":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"'":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":2,"docs":{"400":{"tf":1.0},"634":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.7320508075688772}}},"df":0,"docs":{},"k":{"df":7,"docs":{"1000":{"tf":1.0},"1006":{"tf":1.4142135623730951},"1052":{"tf":1.0},"855":{"tf":1.4142135623730951},"856":{"tf":1.0},"983":{"tf":1.0},"996":{"tf":1.4142135623730951}}}}}},"f":{"c":{"df":2,"docs":{"25":{"tf":1.0},"46":{"tf":1.4142135623730951}}},"df":1,"docs":{"351":{"tf":1.0}},"p":{"df":3,"docs":{"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.7320508075688772}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"759":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":69,"docs":{"1015":{"tf":1.0},"1016":{"tf":1.4142135623730951},"1017":{"tf":1.0},"1019":{"tf":1.0},"1021":{"tf":1.0},"1041":{"tf":1.7320508075688772},"1042":{"tf":1.0},"1044":{"tf":1.0},"1045":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.4142135623730951},"1139":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1145":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1369":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.0},"1461":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"310":{"tf":1.0},"332":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"342":{"tf":1.7320508075688772},"389":{"tf":1.0},"404":{"tf":1.0},"412":{"tf":1.0},"418":{"tf":1.0},"436":{"tf":1.0},"45":{"tf":1.0},"527":{"tf":1.4142135623730951},"533":{"tf":1.0},"536":{"tf":1.0},"560":{"tf":1.0},"569":{"tf":1.7320508075688772},"57":{"tf":1.4142135623730951},"623":{"tf":1.0},"638":{"tf":1.0},"646":{"tf":1.0},"672":{"tf":1.0},"704":{"tf":1.4142135623730951},"710":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"746":{"tf":1.0},"75":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"79":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"889":{"tf":1.0},"892":{"tf":1.4142135623730951},"902":{"tf":1.0},"913":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"k":{"df":3,"docs":{"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"916":{"tf":1.4142135623730951}}}}},"m":{"df":3,"docs":{"1346":{"tf":1.0},"1520":{"tf":1.0},"351":{"tf":1.0}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1394":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"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":{"c":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"678":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1367":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}},"df":0,"docs":{}}},"df":3,"docs":{"1346":{"tf":1.0},"1367":{"tf":1.4142135623730951},"1394":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":7,"docs":{"1130":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.7320508075688772},"543":{"tf":1.4142135623730951}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"1145":{"tf":1.0},"248":{"tf":1.0},"911":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"t":{"df":45,"docs":{"1000":{"tf":1.4142135623730951},"1001":{"tf":1.0},"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1005":{"tf":1.0},"1006":{"tf":1.0},"1007":{"tf":1.4142135623730951},"1008":{"tf":1.4142135623730951},"1009":{"tf":1.0},"1010":{"tf":2.0},"1011":{"tf":1.7320508075688772},"1012":{"tf":1.7320508075688772},"1013":{"tf":1.0},"1204":{"tf":1.7320508075688772},"1439":{"tf":1.0},"169":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"294":{"tf":1.0},"298":{"tf":1.4142135623730951},"59":{"tf":1.0},"681":{"tf":1.4142135623730951},"918":{"tf":1.0},"926":{"tf":1.7320508075688772},"969":{"tf":1.0},"981":{"tf":2.0},"982":{"tf":1.7320508075688772},"983":{"tf":1.0},"984":{"tf":1.4142135623730951},"985":{"tf":1.7320508075688772},"986":{"tf":1.4142135623730951},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.4142135623730951},"990":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0},"993":{"tf":1.7320508075688772},"994":{"tf":1.7320508075688772},"995":{"tf":1.4142135623730951},"996":{"tf":2.449489742783178},"997":{"tf":2.449489742783178},"998":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1163":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":22,"docs":{"1267":{"tf":1.0},"1276":{"tf":2.23606797749979},"1277":{"tf":1.7320508075688772},"1278":{"tf":1.0},"1287":{"tf":1.7320508075688772},"1355":{"tf":1.0},"1401":{"tf":1.0},"1526":{"tf":2.0},"235":{"tf":1.0},"237":{"tf":1.7320508075688772},"302":{"tf":1.0},"311":{"tf":1.0},"461":{"tf":1.4142135623730951},"465":{"tf":1.0},"473":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":2.23606797749979},"487":{"tf":1.7320508075688772},"491":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.4142135623730951},"510":{"tf":1.7320508075688772}},"e":{"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":1,"docs":{"500":{"tf":2.6457513110645907}}}}}},"w":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1301":{"tf":1.0},"1315":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"[":{"0":{"]":{".":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1313":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1313":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"[":{"'":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1302":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":7,"docs":{"1082":{"tf":1.4142135623730951},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1306":{"tf":2.0},"1310":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.0}}}},"p":{"c":{"df":11,"docs":{"1177":{"tf":1.0},"1185":{"tf":1.0},"1191":{"tf":1.0},"1195":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"433":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"450":{"tf":1.0},"669":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"s":{"a":{"df":31,"docs":{"1015":{"tf":1.7320508075688772},"1022":{"tf":1.7320508075688772},"1023":{"tf":1.4142135623730951},"1025":{"tf":1.0},"1026":{"tf":1.0},"1030":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1044":{"tf":1.0},"1048":{"tf":1.0},"113":{"tf":1.0},"1217":{"tf":1.0},"1227":{"tf":1.0},"1437":{"tf":1.0},"1449":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"159":{"tf":1.4142135623730951},"2":{"tf":1.0},"25":{"tf":1.0},"343":{"tf":1.7320508075688772},"41":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.7320508075688772},"722":{"tf":1.0},"746":{"tf":1.0},"782":{"tf":1.0},"892":{"tf":1.4142135623730951},"959":{"tf":1.4142135623730951},"960":{"tf":1.0}}},"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"1097":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"1491":{"tf":1.0},"728":{"tf":1.0},"743":{"tf":1.4142135623730951},"827":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"1403":{"tf":1.0}},"e":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"(":{")":{".":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}}},"df":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":{"1399":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":41,"docs":{"1078":{"tf":1.0},"1084":{"tf":1.0},"1140":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0},"1158":{"tf":2.23606797749979},"116":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1168":{"tf":1.0},"1200":{"tf":1.0},"1243":{"tf":1.0},"1258":{"tf":1.0},"1292":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1410":{"tf":1.0},"1462":{"tf":1.0},"1476":{"tf":1.0},"18":{"tf":1.0},"239":{"tf":1.0},"327":{"tf":1.0},"369":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"473":{"tf":1.0},"555":{"tf":1.0},"603":{"tf":1.0},"675":{"tf":1.0},"68":{"tf":1.0},"682":{"tf":1.7320508075688772},"871":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.4142135623730951},"96":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":5,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0},"116":{"tf":1.4142135623730951},"1215":{"tf":1.4142135623730951},"91":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"724":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"c":{"df":1,"docs":{"101":{"tf":1.4142135623730951}}},"df":73,"docs":{"100":{"tf":1.4142135623730951},"101":{"tf":1.7320508075688772},"1084":{"tf":1.4142135623730951},"115":{"tf":1.0},"1154":{"tf":1.7320508075688772},"1160":{"tf":1.7320508075688772},"1162":{"tf":1.0},"1168":{"tf":1.0},"117":{"tf":1.0},"1213":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1219":{"tf":1.0},"1347":{"tf":1.0},"18":{"tf":1.0},"2":{"tf":1.0},"257":{"tf":2.23606797749979},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":1.0},"288":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"321":{"tf":1.0},"38":{"tf":1.0},"4":{"tf":1.7320508075688772},"548":{"tf":1.0},"556":{"tf":1.0},"587":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"82":{"tf":1.0},"841":{"tf":1.4142135623730951},"844":{"tf":1.4142135623730951},"845":{"tf":1.0},"860":{"tf":1.4142135623730951},"87":{"tf":1.0},"873":{"tf":1.4142135623730951},"88":{"tf":1.0},"884":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"911":{"tf":1.0},"916":{"tf":1.0},"99":{"tf":1.0},"996":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"101":{"tf":1.0},"115":{"tf":1.0}}}}}}}},"s":{"3":{":":{"/":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"1065":{"tf":1.0},"1106":{"tf":1.0},"1512":{"tf":2.0},"1513":{"tf":1.0}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1071":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"1490":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1094":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"s":{"3":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":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":{"1094":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1098":{"tf":1.0},"1099":{"tf":1.0}}}}},"df":22,"docs":{"1055":{"tf":1.4142135623730951},"1064":{"tf":1.7320508075688772},"1072":{"tf":1.0},"1094":{"tf":2.0},"1098":{"tf":1.7320508075688772},"1099":{"tf":1.0},"1102":{"tf":1.7320508075688772},"1106":{"tf":1.7320508075688772},"1451":{"tf":1.4142135623730951},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.0},"1455":{"tf":1.0},"1490":{"tf":1.7320508075688772},"1512":{"tf":2.23606797749979},"1513":{"tf":1.7320508075688772},"285":{"tf":1.0},"339":{"tf":2.0},"536":{"tf":1.0},"566":{"tf":2.0},"64":{"tf":1.0},"722":{"tf":1.0},"893":{"tf":1.0}}},"[":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"31":{"tf":1.0}}}}}}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":5,"docs":{"1108":{"tf":1.0},"287":{"tf":1.0},"726":{"tf":1.7320508075688772},"911":{"tf":1.0},"950":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":4,"docs":{"1161":{"tf":1.4142135623730951},"287":{"tf":1.4142135623730951},"726":{"tf":1.4142135623730951},"911":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"1330":{"tf":1.0},"226":{"tf":1.0},"45":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"df":17,"docs":{"1024":{"tf":1.0},"1080":{"tf":1.0},"1265":{"tf":1.0},"1517":{"tf":1.4142135623730951},"1518":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"227":{"tf":1.0},"368":{"tf":1.0},"516":{"tf":1.0},"543":{"tf":1.0},"693":{"tf":1.0},"726":{"tf":1.0},"798":{"tf":1.0},"881":{"tf":1.0},"954":{"tf":1.0},"978":{"tf":1.4142135623730951}}},"p":{"df":0,"docs":{},"l":{"df":12,"docs":{"1437":{"tf":1.0},"1441":{"tf":2.8284271247461903},"1445":{"tf":1.0},"1529":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"308":{"tf":2.23606797749979},"310":{"tf":1.0},"315":{"tf":1.4142135623730951},"319":{"tf":1.0},"791":{"tf":1.0},"901":{"tf":2.0},"902":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":31,"docs":{"1063":{"tf":1.4142135623730951},"1072":{"tf":1.0},"1088":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1323":{"tf":2.0},"134":{"tf":2.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"138":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.0},"1419":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1426":{"tf":1.0},"179":{"tf":1.7320508075688772},"264":{"tf":1.0},"273":{"tf":1.7320508075688772},"288":{"tf":1.0},"371":{"tf":1.4142135623730951},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"519":{"tf":1.7320508075688772},"605":{"tf":1.4142135623730951},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"696":{"tf":1.7320508075688772},"75":{"tf":1.0},"79":{"tf":1.0}}}}},"c":{"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1069":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":13,"docs":{"1089":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1452":{"tf":1.0},"1502":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"974":{"tf":1.0},"976":{"tf":1.0},"98":{"tf":1.0}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"1010":{"tf":1.4142135623730951},"985":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"'":{"df":1,"docs":{"741":{"tf":1.0}}},".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":8,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"1419":{"tf":1.0},"1421":{"tf":1.0},"1427":{"tf":1.4142135623730951},"1480":{"tf":1.0},"189":{"tf":1.0},"803":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":11,"docs":{"1111":{"tf":1.0},"1112":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":263,"docs":{"1081":{"tf":1.4142135623730951},"1108":{"tf":2.23606797749979},"1109":{"tf":1.4142135623730951},"1110":{"tf":1.7320508075688772},"1111":{"tf":1.7320508075688772},"1112":{"tf":2.0},"1113":{"tf":1.7320508075688772},"1114":{"tf":1.4142135623730951},"1115":{"tf":1.0},"1116":{"tf":1.0},"1117":{"tf":1.0},"1118":{"tf":1.7320508075688772},"1119":{"tf":1.0},"1120":{"tf":1.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1123":{"tf":1.7320508075688772},"1124":{"tf":2.449489742783178},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1128":{"tf":1.7320508075688772},"1129":{"tf":1.4142135623730951},"1130":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1132":{"tf":1.7320508075688772},"1133":{"tf":1.0},"1134":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1136":{"tf":2.23606797749979},"1139":{"tf":1.0},"1166":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1209":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1304":{"tf":1.0},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"1419":{"tf":2.0},"1420":{"tf":1.7320508075688772},"1421":{"tf":2.449489742783178},"1422":{"tf":1.7320508075688772},"1427":{"tf":2.0},"1429":{"tf":1.0},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1480":{"tf":2.23606797749979},"151":{"tf":1.0},"1522":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"167":{"tf":1.0},"178":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"2":{"tf":1.0},"205":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"229":{"tf":1.0},"25":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"278":{"tf":2.0},"287":{"tf":1.0},"289":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"36":{"tf":1.4142135623730951},"389":{"tf":1.0},"392":{"tf":2.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"436":{"tf":1.0},"451":{"tf":1.0},"46":{"tf":1.7320508075688772},"519":{"tf":1.4142135623730951},"560":{"tf":1.0},"623":{"tf":1.0},"626":{"tf":2.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"66":{"tf":1.0},"672":{"tf":1.0},"696":{"tf":1.4142135623730951},"721":{"tf":1.0},"728":{"tf":2.23606797749979},"729":{"tf":2.6457513110645907},"730":{"tf":1.7320508075688772},"731":{"tf":2.0},"732":{"tf":2.0},"733":{"tf":2.0},"734":{"tf":2.23606797749979},"735":{"tf":1.7320508075688772},"736":{"tf":1.7320508075688772},"737":{"tf":1.7320508075688772},"738":{"tf":2.449489742783178},"739":{"tf":1.4142135623730951},"740":{"tf":2.0},"741":{"tf":2.23606797749979},"742":{"tf":2.449489742783178},"743":{"tf":1.0},"744":{"tf":1.7320508075688772},"745":{"tf":1.4142135623730951},"746":{"tf":1.0},"747":{"tf":3.3166247903554},"748":{"tf":2.0},"749":{"tf":2.0},"750":{"tf":1.7320508075688772},"751":{"tf":1.0},"752":{"tf":2.8284271247461903},"753":{"tf":1.0},"754":{"tf":1.0},"755":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.7320508075688772},"760":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.7320508075688772},"763":{"tf":1.0},"764":{"tf":1.0},"765":{"tf":1.4142135623730951},"766":{"tf":1.4142135623730951},"767":{"tf":1.4142135623730951},"768":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"771":{"tf":1.0},"772":{"tf":1.0},"773":{"tf":2.0},"774":{"tf":2.449489742783178},"775":{"tf":1.7320508075688772},"776":{"tf":1.4142135623730951},"777":{"tf":1.0},"778":{"tf":2.0},"779":{"tf":1.0},"780":{"tf":1.0},"781":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"784":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.7320508075688772},"787":{"tf":1.0},"788":{"tf":1.7320508075688772},"789":{"tf":1.0},"790":{"tf":1.7320508075688772},"791":{"tf":1.4142135623730951},"792":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"797":{"tf":1.0},"798":{"tf":1.0},"799":{"tf":1.7320508075688772},"800":{"tf":2.0},"801":{"tf":1.7320508075688772},"802":{"tf":1.0},"803":{"tf":2.6457513110645907},"804":{"tf":1.0},"805":{"tf":1.0},"806":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.7320508075688772},"812":{"tf":2.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.4142135623730951},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":2.23606797749979},"829":{"tf":2.0},"830":{"tf":1.7320508075688772},"831":{"tf":1.0},"832":{"tf":2.449489742783178},"833":{"tf":1.0},"834":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"837":{"tf":1.0},"838":{"tf":1.0},"839":{"tf":1.0},"840":{"tf":1.4142135623730951},"841":{"tf":1.4142135623730951},"842":{"tf":2.0},"843":{"tf":1.4142135623730951},"844":{"tf":1.0},"845":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.0},"851":{"tf":1.7320508075688772},"852":{"tf":1.7320508075688772},"853":{"tf":1.7320508075688772},"854":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"859":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"862":{"tf":2.0},"863":{"tf":1.7320508075688772},"864":{"tf":1.7320508075688772},"865":{"tf":1.0},"866":{"tf":1.0},"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"875":{"tf":2.0},"876":{"tf":2.23606797749979},"877":{"tf":1.7320508075688772},"878":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"881":{"tf":1.0},"882":{"tf":1.0},"883":{"tf":1.4142135623730951},"884":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":2.0},"888":{"tf":1.4142135623730951},"889":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.0},"909":{"tf":1.4142135623730951},"911":{"tf":1.7320508075688772}},"s":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"1124":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":4,"docs":{"1324":{"tf":1.0},"278":{"tf":1.0},"519":{"tf":1.0},"738":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1127":{"tf":1.0},"1323":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"178":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1134":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":5,"docs":{"1017":{"tf":1.0},"1022":{"tf":1.0},"1029":{"tf":1.0},"1034":{"tf":1.0},"57":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"548":{"tf":1.0},"6":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":7,"docs":{"1337":{"tf":1.4142135623730951},"1456":{"tf":1.0},"348":{"tf":1.0},"359":{"tf":1.0},"593":{"tf":1.0},"82":{"tf":1.0},"925":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"k":{"df":3,"docs":{"1176":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0}}}},"df":12,"docs":{"1302":{"tf":3.4641016151377544},"1323":{"tf":1.0},"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1427":{"tf":1.4142135623730951},"178":{"tf":1.0},"189":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"482":{"tf":1.0},"663":{"tf":1.0}}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":6,"docs":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1310":{"tf":2.23606797749979},"776":{"tf":1.0},"789":{"tf":1.0},"836":{"tf":1.0}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1084":{"tf":1.0},"129":{"tf":1.0},"1329":{"tf":1.0},"142":{"tf":1.0},"1441":{"tf":1.4142135623730951},"308":{"tf":1.0},"88":{"tf":2.23606797749979},"901":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"t":{"df":10,"docs":{"1066":{"tf":1.0},"1072":{"tf":1.0},"1405":{"tf":1.7320508075688772},"1437":{"tf":1.0},"1452":{"tf":1.0},"1512":{"tf":1.0},"908":{"tf":1.0},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"969":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1423":{"tf":1.0},"1510":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":171,"docs":{"1":{"tf":1.0},"1005":{"tf":1.4142135623730951},"1008":{"tf":1.7320508075688772},"1012":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1018":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1032":{"tf":1.4142135623730951},"1035":{"tf":1.4142135623730951},"1036":{"tf":1.0},"1038":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1042":{"tf":1.0},"1049":{"tf":1.4142135623730951},"1053":{"tf":1.4142135623730951},"1085":{"tf":1.4142135623730951},"11":{"tf":1.0},"1104":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"113":{"tf":1.0},"1164":{"tf":1.0},"1170":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1175":{"tf":1.0},"1179":{"tf":1.0},"1193":{"tf":1.4142135623730951},"1205":{"tf":1.4142135623730951},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1252":{"tf":1.4142135623730951},"1276":{"tf":1.0},"1283":{"tf":1.4142135623730951},"1288":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1316":{"tf":1.4142135623730951},"1400":{"tf":1.4142135623730951},"1401":{"tf":1.0},"1455":{"tf":1.7320508075688772},"15":{"tf":1.7320508075688772},"1501":{"tf":1.4142135623730951},"1515":{"tf":1.0},"1520":{"tf":1.0},"154":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"169":{"tf":1.4142135623730951},"171":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"231":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"247":{"tf":1.4142135623730951},"248":{"tf":1.0},"256":{"tf":1.4142135623730951},"320":{"tf":1.0},"342":{"tf":1.0},"343":{"tf":1.0},"369":{"tf":1.7320508075688772},"39":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"442":{"tf":1.0},"444":{"tf":1.4142135623730951},"446":{"tf":1.0},"453":{"tf":1.0},"458":{"tf":1.0},"475":{"tf":1.4142135623730951},"486":{"tf":1.0},"536":{"tf":1.0},"56":{"tf":1.7320508075688772},"569":{"tf":1.0},"570":{"tf":1.0},"59":{"tf":1.0},"603":{"tf":1.7320508075688772},"664":{"tf":1.0},"681":{"tf":2.0},"682":{"tf":1.0},"748":{"tf":1.4142135623730951},"758":{"tf":1.0},"760":{"tf":1.0},"816":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"850":{"tf":1.7320508075688772},"851":{"tf":1.0},"897":{"tf":1.7320508075688772},"908":{"tf":1.4142135623730951},"91":{"tf":1.0},"910":{"tf":2.0},"911":{"tf":1.7320508075688772},"912":{"tf":1.7320508075688772},"913":{"tf":1.0},"914":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":2.0},"917":{"tf":1.0},"918":{"tf":1.0},"919":{"tf":1.4142135623730951},"920":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.4142135623730951},"925":{"tf":1.0},"926":{"tf":1.0},"927":{"tf":1.4142135623730951},"928":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.7320508075688772},"931":{"tf":1.0},"932":{"tf":1.0},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.4142135623730951},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.4142135623730951},"942":{"tf":1.7320508075688772},"943":{"tf":1.0},"944":{"tf":1.0},"945":{"tf":1.0},"946":{"tf":1.7320508075688772},"947":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"950":{"tf":1.7320508075688772},"951":{"tf":1.4142135623730951},"952":{"tf":2.0},"953":{"tf":1.0},"954":{"tf":1.0},"955":{"tf":1.7320508075688772},"956":{"tf":1.0},"957":{"tf":1.0},"958":{"tf":1.7320508075688772},"959":{"tf":1.4142135623730951},"960":{"tf":1.4142135623730951},"961":{"tf":1.7320508075688772},"962":{"tf":1.4142135623730951},"963":{"tf":1.0},"964":{"tf":1.7320508075688772},"965":{"tf":1.0},"966":{"tf":1.4142135623730951},"967":{"tf":1.7320508075688772},"968":{"tf":1.0},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"971":{"tf":1.7320508075688772},"972":{"tf":1.0},"973":{"tf":1.4142135623730951},"974":{"tf":1.4142135623730951},"975":{"tf":1.0},"976":{"tf":1.4142135623730951},"977":{"tf":1.4142135623730951},"978":{"tf":1.0},"979":{"tf":1.0},"980":{"tf":1.4142135623730951},"981":{"tf":1.0},"985":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"682":{"tf":1.4142135623730951}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"675":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"434":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":17,"docs":{"1179":{"tf":1.0},"1191":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"430":{"tf":1.0},"431":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"542":{"tf":1.0},"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"df":49,"docs":{"1013":{"tf":1.4142135623730951},"1053":{"tf":1.4142135623730951},"1107":{"tf":1.4142135623730951},"1136":{"tf":1.4142135623730951},"1172":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.0},"1209":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1268":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1347":{"tf":1.4142135623730951},"1370":{"tf":1.4142135623730951},"1395":{"tf":1.4142135623730951},"1406":{"tf":1.4142135623730951},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"1501":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"196":{"tf":1.0},"369":{"tf":1.0},"385":{"tf":1.4142135623730951},"547":{"tf":1.4142135623730951},"603":{"tf":1.0},"619":{"tf":1.4142135623730951},"67":{"tf":1.0},"727":{"tf":1.4142135623730951},"748":{"tf":1.4142135623730951},"763":{"tf":1.0},"773":{"tf":1.4142135623730951},"799":{"tf":1.4142135623730951},"828":{"tf":1.4142135623730951},"851":{"tf":1.4142135623730951},"862":{"tf":1.4142135623730951},"875":{"tf":1.4142135623730951},"886":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"91":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"980":{"tf":1.4142135623730951}},"k":{"df":1,"docs":{"804":{"tf":1.0}}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"911":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":15,"docs":{"1029":{"tf":1.0},"1040":{"tf":1.4142135623730951},"1089":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1310":{"tf":1.0},"1313":{"tf":1.0},"1314":{"tf":1.0},"206":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.0},"921":{"tf":1.0},"960":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"f":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1388":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"588":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"588":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"[":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"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":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"588":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1404":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1394":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1302":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"n":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.7320508075688772}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1302":{"tf":1.4142135623730951}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"(":{"'":{"*":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1388":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1388":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1388":{"tf":2.0}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1394":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1302":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"(":{"df":0,"docs":{},"|":{"df":1,"docs":{"1001":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1001":{"tf":1.0}}}}}}}}},"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":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"_":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"616":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":1,"docs":{"382":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":13,"docs":{"1161":{"tf":1.7320508075688772},"147":{"tf":1.0},"185":{"tf":1.0},"277":{"tf":1.0},"47":{"tf":1.0},"66":{"tf":1.0},"84":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.0},"950":{"tf":1.0},"977":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1399":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"$":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1330":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"=":{"$":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1330":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":3,"docs":{"1330":{"tf":2.449489742783178},"1398":{"tf":1.0},"1399":{"tf":3.0}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1144":{"tf":1.4142135623730951},"776":{"tf":1.0},"789":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"506":{"tf":1.0}}}}}},"{":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.0},"505":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1274":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"1274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":19,"docs":{"1248":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1292":{"tf":1.0},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"1439":{"tf":1.0},"31":{"tf":1.0},"439":{"tf":1.4142135623730951},"454":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"494":{"tf":1.7320508075688772},"495":{"tf":1.0},"511":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"456":{"tf":1.0},"879":{"tf":1.0}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{":":{"/":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"3":{"0":{"0":{"0":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1284":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"1273":{"tf":1.0},"459":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"458":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"458":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1449":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":5,"docs":{"1228":{"tf":1.0},"1313":{"tf":1.0},"681":{"tf":1.0},"759":{"tf":1.0},"921":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.7320508075688772}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1131":{"tf":1.4142135623730951}}}}}}}},"t":{"df":7,"docs":{"1192":{"tf":1.4142135623730951},"1439":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"664":{"tf":1.0},"93":{"tf":1.0},"98":{"tf":1.4142135623730951}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1101":{"tf":1.0},"112":{"tf":1.0},"1145":{"tf":2.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1202":{"tf":1.4142135623730951},"1285":{"tf":1.4142135623730951},"138":{"tf":1.0},"1436":{"tf":1.0},"1453":{"tf":1.0},"185":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"968":{"tf":1.0}}}},"df":0,"docs":{}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"876":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"!":{"(":{"df":0,"docs":{},"{":{"\"":{"b":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"860":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":3,"docs":{"1216":{"tf":1.0},"276":{"tf":1.0},"288":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"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":{"262":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1161":{"tf":1.0}}}}}}},"df":5,"docs":{"1161":{"tf":1.4142135623730951},"1200":{"tf":1.0},"439":{"tf":1.0},"705":{"tf":1.0},"921":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"df":3,"docs":{"1243":{"tf":1.0},"1248":{"tf":1.0},"1259":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"1179":{"tf":1.0},"1192":{"tf":1.0},"1358":{"tf":1.0},"1524":{"tf":1.0},"426":{"tf":1.0},"434":{"tf":1.0},"442":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1524":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"j":{"df":4,"docs":{"1359":{"tf":1.0},"1524":{"tf":1.0},"427":{"tf":1.0},"473":{"tf":1.4142135623730951}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"383":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"\"":{"a":{"d":{"d":{"df":3,"docs":{"1179":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1358":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"1148":{"tf":1.0},"424":{"tf":1.0},"436":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1381":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"667":{"tf":1.0}}}}}},"df":147,"docs":{"1060":{"tf":1.0},"108":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1089":{"tf":1.0},"1148":{"tf":1.4142135623730951},"1173":{"tf":1.0},"1179":{"tf":2.0},"1180":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1185":{"tf":1.4142135623730951},"1188":{"tf":1.7320508075688772},"1191":{"tf":1.0},"1192":{"tf":2.23606797749979},"1200":{"tf":1.0},"1202":{"tf":1.7320508075688772},"1206":{"tf":1.4142135623730951},"1207":{"tf":1.7320508075688772},"1262":{"tf":2.0},"1263":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.4142135623730951},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1280":{"tf":1.0},"1281":{"tf":2.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":2.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.7320508075688772},"1293":{"tf":1.0},"1294":{"tf":1.4142135623730951},"1354":{"tf":1.4142135623730951},"1355":{"tf":2.0},"1356":{"tf":1.0},"1358":{"tf":3.0},"1359":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1377":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"1381":{"tf":2.6457513110645907},"1401":{"tf":2.0},"1402":{"tf":1.0},"1405":{"tf":1.0},"1406":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.7320508075688772},"1524":{"tf":1.7320508075688772},"248":{"tf":1.0},"321":{"tf":1.0},"331":{"tf":1.4142135623730951},"355":{"tf":1.0},"356":{"tf":1.0},"383":{"tf":1.0},"421":{"tf":1.0},"426":{"tf":2.6457513110645907},"427":{"tf":1.0},"429":{"tf":1.0},"430":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.7320508075688772},"442":{"tf":3.0},"443":{"tf":1.4142135623730951},"447":{"tf":1.0},"451":{"tf":1.0},"452":{"tf":1.0},"453":{"tf":2.0},"454":{"tf":1.4142135623730951},"455":{"tf":1.0},"456":{"tf":1.4142135623730951},"457":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"460":{"tf":1.7320508075688772},"461":{"tf":1.7320508075688772},"462":{"tf":1.0},"463":{"tf":1.0},"464":{"tf":1.7320508075688772},"465":{"tf":1.7320508075688772},"466":{"tf":1.0},"467":{"tf":1.0},"468":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"472":{"tf":1.0},"473":{"tf":1.7320508075688772},"474":{"tf":1.4142135623730951},"475":{"tf":1.0},"476":{"tf":1.0},"477":{"tf":1.0},"478":{"tf":1.4142135623730951},"479":{"tf":1.0},"480":{"tf":1.0},"481":{"tf":1.0},"497":{"tf":1.0},"5":{"tf":1.7320508075688772},"507":{"tf":1.7320508075688772},"512":{"tf":1.0},"541":{"tf":1.0},"542":{"tf":1.4142135623730951},"543":{"tf":1.0},"547":{"tf":1.0},"575":{"tf":1.0},"589":{"tf":1.0},"590":{"tf":1.0},"6":{"tf":1.0},"617":{"tf":1.0},"662":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.4142135623730951},"666":{"tf":2.449489742783178},"669":{"tf":1.7320508075688772},"672":{"tf":1.0},"675":{"tf":2.0},"682":{"tf":1.0},"684":{"tf":1.4142135623730951},"686":{"tf":2.23606797749979},"687":{"tf":1.0},"718":{"tf":2.23606797749979},"719":{"tf":1.0},"82":{"tf":1.0},"851":{"tf":1.0},"91":{"tf":1.0},"925":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":4,"docs":{"1355":{"tf":1.0},"1378":{"tf":1.0},"473":{"tf":1.0},"495":{"tf":1.0}}}}}}},"i":{"c":{"df":54,"docs":{"1076":{"tf":1.0},"1143":{"tf":1.0},"1154":{"tf":1.0},"1174":{"tf":1.0},"1208":{"tf":1.0},"1214":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1332":{"tf":1.0},"1336":{"tf":1.0},"1361":{"tf":1.4142135623730951},"1384":{"tf":1.4142135623730951},"1404":{"tf":2.0},"1436":{"tf":1.0},"1437":{"tf":1.0},"1441":{"tf":2.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"147":{"tf":1.0},"155":{"tf":2.6457513110645907},"156":{"tf":1.4142135623730951},"170":{"tf":1.0},"171":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"310":{"tf":1.0},"311":{"tf":1.0},"382":{"tf":1.0},"406":{"tf":1.0},"41":{"tf":1.0},"423":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"523":{"tf":1.0},"55":{"tf":1.4142135623730951},"616":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"733":{"tf":1.0},"749":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"758":{"tf":2.0},"759":{"tf":2.23606797749979},"76":{"tf":1.4142135623730951},"760":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"785":{"tf":1.0},"80":{"tf":1.0},"94":{"tf":1.0}},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"\"":{"a":{"c":{"df":0,"docs":{},"m":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1404":{"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":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":3,"docs":{"1328":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":8,"docs":{"1437":{"tf":1.0},"1441":{"tf":1.0},"1445":{"tf":1.0},"306":{"tf":1.0},"310":{"tf":1.0},"315":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":2,"docs":{"1401":{"tf":2.0},"816":{"tf":1.7320508075688772}},"i":{"d":{"df":1,"docs":{"1401":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"505":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.0}},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"303":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":58,"docs":{"1056":{"tf":1.0},"1072":{"tf":1.0},"1140":{"tf":1.0},"1148":{"tf":1.0},"1159":{"tf":1.0},"116":{"tf":1.0},"124":{"tf":1.0},"1247":{"tf":1.0},"1258":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1315":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1410":{"tf":1.0},"1413":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":1.0},"1507":{"tf":1.0},"1512":{"tf":1.0},"1520":{"tf":1.0},"1528":{"tf":1.0},"182":{"tf":1.0},"234":{"tf":1.0},"237":{"tf":1.7320508075688772},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"303":{"tf":1.0},"336":{"tf":1.0},"465":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"682":{"tf":1.0},"756":{"tf":1.0},"773":{"tf":1.0},"82":{"tf":1.0},"833":{"tf":1.0},"845":{"tf":1.4142135623730951},"88":{"tf":1.0},"887":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"928":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"940":{"tf":1.0},"941":{"tf":1.0},"942":{"tf":1.0},"96":{"tf":1.0},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"p":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":39,"docs":{"1061":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1107":{"tf":1.0},"1139":{"tf":1.4142135623730951},"1158":{"tf":1.4142135623730951},"1161":{"tf":1.4142135623730951},"1205":{"tf":1.0},"1222":{"tf":1.0},"1224":{"tf":1.4142135623730951},"1225":{"tf":1.0},"1261":{"tf":1.0},"1320":{"tf":1.4142135623730951},"1321":{"tf":1.4142135623730951},"1349":{"tf":1.4142135623730951},"1369":{"tf":1.4142135623730951},"1370":{"tf":1.0},"1372":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951},"1395":{"tf":1.0},"1454":{"tf":1.4142135623730951},"1476":{"tf":1.0},"289":{"tf":1.0},"311":{"tf":1.4142135623730951},"346":{"tf":1.4142135623730951},"348":{"tf":1.4142135623730951},"573":{"tf":1.4142135623730951},"575":{"tf":1.4142135623730951},"577":{"tf":1.4142135623730951},"581":{"tf":1.4142135623730951},"588":{"tf":1.4142135623730951},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.4142135623730951},"763":{"tf":1.0},"769":{"tf":1.0},"79":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"851":{"tf":1.0},"97":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"107":{"tf":1.0},"328":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"h":{"a":{"2":{"5":{"6":{"df":12,"docs":{"1045":{"tf":1.0},"1245":{"tf":1.0},"1421":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.0},"787":{"tf":1.4142135623730951},"788":{"tf":1.0},"791":{"tf":1.0},"838":{"tf":1.0},"913":{"tf":1.0},"925":{"tf":1.0},"990":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":15,"docs":{"1046":{"tf":1.0},"381":{"tf":1.0},"417":{"tf":1.0},"46":{"tf":1.0},"535":{"tf":1.0},"58":{"tf":1.0},"614":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"86":{"tf":1.0},"913":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":2,"docs":{"1213":{"tf":1.0},"368":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1228":{"tf":1.0}}}},"df":0,"docs":{}},"df":28,"docs":{"1075":{"tf":1.0},"1086":{"tf":1.0},"1089":{"tf":1.0},"1145":{"tf":2.23606797749979},"1518":{"tf":1.7320508075688772},"161":{"tf":1.0},"169":{"tf":1.0},"208":{"tf":1.7320508075688772},"21":{"tf":1.0},"214":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0},"606":{"tf":1.0},"609":{"tf":1.0},"616":{"tf":1.0},"65":{"tf":1.0},"732":{"tf":1.0},"741":{"tf":1.0},"747":{"tf":1.0},"798":{"tf":1.0},"852":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"881":{"tf":1.0},"924":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"580":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"1112":{"tf":1.0},"1115":{"tf":1.0},"1117":{"tf":1.0},"1296":{"tf":1.0},"871":{"tf":1.0},"872":{"tf":1.0},"873":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1120":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"127":{"tf":1.0},"128":{"tf":1.0},"132":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.0},"21":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"925":{"tf":1.0}}}},"w":{"df":8,"docs":{"101":{"tf":1.0},"1230":{"tf":1.0},"1323":{"tf":1.0},"1428":{"tf":1.0},"223":{"tf":1.0},"771":{"tf":1.0},"907":{"tf":1.0},"963":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"1279":{"tf":1.4142135623730951},"1281":{"tf":1.4142135623730951},"1282":{"tf":1.4142135623730951},"454":{"tf":1.0},"950":{"tf":1.0},"973":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"g":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"991":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"991":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"1":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"1170":{"tf":1.4142135623730951},"1392":{"tf":1.4142135623730951}}},"df":2,"docs":{"1151":{"tf":1.4142135623730951},"991":{"tf":1.4142135623730951}},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1338":{"tf":1.0}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1385":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1346":{"tf":1.4142135623730951},"309":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"309":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"94":{"tf":1.0}},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"97":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"r":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1362":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":220,"docs":{"1":{"tf":1.0},"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1006":{"tf":1.0},"1014":{"tf":1.0},"1015":{"tf":1.0},"1017":{"tf":1.0},"1018":{"tf":1.0},"1021":{"tf":1.0},"1022":{"tf":1.0},"1023":{"tf":1.0},"1024":{"tf":1.0},"1027":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1030":{"tf":1.0},"1033":{"tf":1.0},"1036":{"tf":1.4142135623730951},"1039":{"tf":1.0},"1041":{"tf":1.0},"1045":{"tf":2.23606797749979},"1047":{"tf":1.0},"1051":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1094":{"tf":1.0},"1142":{"tf":1.0},"1151":{"tf":1.7320508075688772},"1163":{"tf":1.0},"1166":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.4142135623730951},"1177":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1194":{"tf":2.0},"1196":{"tf":1.0},"1209":{"tf":1.0},"1212":{"tf":1.0},"1214":{"tf":1.0},"1219":{"tf":1.0},"1220":{"tf":1.7320508075688772},"1242":{"tf":1.0},"1248":{"tf":1.0},"1255":{"tf":1.7320508075688772},"1260":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1312":{"tf":1.4142135623730951},"1313":{"tf":1.4142135623730951},"1318":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.4142135623730951},"1345":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1361":{"tf":1.0},"1375":{"tf":1.7320508075688772},"138":{"tf":1.0},"1384":{"tf":1.0},"1399":{"tf":1.4142135623730951},"1402":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1423":{"tf":1.4142135623730951},"1429":{"tf":1.0},"1433":{"tf":1.0},"144":{"tf":1.0},"1453":{"tf":1.0},"1458":{"tf":1.7320508075688772},"1468":{"tf":1.4142135623730951},"1469":{"tf":1.0},"1470":{"tf":1.7320508075688772},"1471":{"tf":2.0},"1485":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1507":{"tf":1.0},"1515":{"tf":1.4142135623730951},"159":{"tf":1.7320508075688772},"167":{"tf":1.4142135623730951},"171":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"205":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"216":{"tf":1.0},"221":{"tf":1.7320508075688772},"224":{"tf":1.7320508075688772},"227":{"tf":1.4142135623730951},"24":{"tf":1.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.0},"28":{"tf":1.0},"30":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"364":{"tf":1.0},"373":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"397":{"tf":1.7320508075688772},"398":{"tf":2.0},"403":{"tf":1.4142135623730951},"404":{"tf":1.4142135623730951},"406":{"tf":1.0},"410":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"49":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":2.449489742783178},"523":{"tf":1.0},"524":{"tf":1.0},"526":{"tf":1.7320508075688772},"527":{"tf":1.7320508075688772},"53":{"tf":2.0},"531":{"tf":1.0},"533":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.0},"569":{"tf":1.0},"57":{"tf":1.7320508075688772},"570":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0},"58":{"tf":1.7320508075688772},"588":{"tf":1.0},"598":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"631":{"tf":1.7320508075688772},"632":{"tf":2.0},"637":{"tf":1.4142135623730951},"638":{"tf":1.4142135623730951},"640":{"tf":1.0},"644":{"tf":1.0},"646":{"tf":1.0},"654":{"tf":1.0},"697":{"tf":1.4142135623730951},"698":{"tf":2.449489742783178},"700":{"tf":1.0},"701":{"tf":1.0},"703":{"tf":1.7320508075688772},"704":{"tf":1.7320508075688772},"708":{"tf":1.0},"710":{"tf":1.0},"733":{"tf":1.0},"739":{"tf":1.4142135623730951},"740":{"tf":1.0},"756":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.4142135623730951},"765":{"tf":1.4142135623730951},"776":{"tf":1.4142135623730951},"782":{"tf":3.1622776601683795},"783":{"tf":1.7320508075688772},"785":{"tf":1.4142135623730951},"786":{"tf":1.4142135623730951},"791":{"tf":1.4142135623730951},"792":{"tf":1.4142135623730951},"808":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":3.0},"823":{"tf":1.0},"847":{"tf":1.0},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"87":{"tf":3.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"914":{"tf":1.4142135623730951},"915":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"92":{"tf":1.0},"920":{"tf":1.4142135623730951},"921":{"tf":1.0},"922":{"tf":1.4142135623730951},"931":{"tf":1.7320508075688772},"932":{"tf":2.0},"933":{"tf":1.7320508075688772},"934":{"tf":1.7320508075688772},"950":{"tf":1.0},"953":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.0},"960":{"tf":1.0},"969":{"tf":1.0},"970":{"tf":1.0},"973":{"tf":1.0},"98":{"tf":1.0},"984":{"tf":1.0},"989":{"tf":1.0},"990":{"tf":2.0},"991":{"tf":1.7320508075688772},"994":{"tf":1.0},"995":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"729":{"tf":1.0},"740":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"638":{"tf":1.0},"704":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"698":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1300":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1306":{"tf":1.0},"1315":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":2,"docs":{"404":{"tf":1.0},"527":{"tf":2.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1304":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":328,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"1000":{"tf":1.0},"1007":{"tf":1.0},"1012":{"tf":1.0},"1018":{"tf":1.0},"1020":{"tf":1.7320508075688772},"1021":{"tf":1.0},"1042":{"tf":1.0},"1048":{"tf":1.0},"1050":{"tf":1.0},"1052":{"tf":1.0},"1083":{"tf":1.0},"1085":{"tf":1.0},"1094":{"tf":1.0},"1111":{"tf":1.0},"1140":{"tf":1.0},"1143":{"tf":1.4142135623730951},"1144":{"tf":1.7320508075688772},"1146":{"tf":2.449489742783178},"1149":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1163":{"tf":1.7320508075688772},"1173":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1183":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1186":{"tf":2.0},"1194":{"tf":3.3166247903554},"1195":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1209":{"tf":2.23606797749979},"1210":{"tf":1.0},"1212":{"tf":1.0},"1220":{"tf":1.0},"1221":{"tf":1.0},"1222":{"tf":1.0},"1227":{"tf":1.7320508075688772},"1231":{"tf":2.0},"1232":{"tf":1.0},"1237":{"tf":1.0},"1238":{"tf":1.4142135623730951},"1240":{"tf":1.0},"1247":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1255":{"tf":1.0},"1256":{"tf":1.4142135623730951},"1260":{"tf":1.0},"1262":{"tf":1.0},"1263":{"tf":1.7320508075688772},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1290":{"tf":1.0},"1292":{"tf":1.0},"13":{"tf":1.0},"1318":{"tf":1.7320508075688772},"1323":{"tf":1.4142135623730951},"1324":{"tf":1.7320508075688772},"1328":{"tf":1.0},"1329":{"tf":3.0},"1330":{"tf":2.449489742783178},"1332":{"tf":1.0},"1338":{"tf":2.449489742783178},"1346":{"tf":1.7320508075688772},"1351":{"tf":1.7320508075688772},"1352":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1356":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":2.0},"1363":{"tf":1.0},"1369":{"tf":1.0},"1374":{"tf":1.7320508075688772},"1375":{"tf":1.4142135623730951},"1378":{"tf":1.4142135623730951},"1379":{"tf":1.0},"138":{"tf":1.4142135623730951},"1384":{"tf":1.0},"1385":{"tf":2.0},"1386":{"tf":1.0},"1390":{"tf":1.0},"1397":{"tf":1.7320508075688772},"1398":{"tf":1.0},"1399":{"tf":2.23606797749979},"1402":{"tf":1.0},"1405":{"tf":1.4142135623730951},"141":{"tf":1.7320508075688772},"1415":{"tf":1.0},"142":{"tf":2.0},"1421":{"tf":1.0},"1423":{"tf":2.0},"1436":{"tf":1.0},"146":{"tf":1.0},"1469":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"1470":{"tf":1.4142135623730951},"1471":{"tf":1.0},"1472":{"tf":2.0},"1485":{"tf":2.23606797749979},"1486":{"tf":1.4142135623730951},"1493":{"tf":1.0},"1494":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1503":{"tf":1.0},"1515":{"tf":2.0},"166":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"176":{"tf":1.4142135623730951},"180":{"tf":1.0},"188":{"tf":1.0},"192":{"tf":1.0},"201":{"tf":1.4142135623730951},"205":{"tf":1.0},"208":{"tf":1.7320508075688772},"210":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.7320508075688772},"218":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"220":{"tf":1.7320508075688772},"221":{"tf":1.7320508075688772},"223":{"tf":1.4142135623730951},"226":{"tf":2.0},"227":{"tf":1.0},"228":{"tf":1.4142135623730951},"23":{"tf":1.0},"245":{"tf":1.0},"262":{"tf":1.0},"27":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"33":{"tf":1.0},"334":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"365":{"tf":1.7320508075688772},"366":{"tf":1.7320508075688772},"367":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"370":{"tf":1.7320508075688772},"371":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.4142135623730951},"382":{"tf":2.23606797749979},"383":{"tf":1.4142135623730951},"386":{"tf":1.0},"40":{"tf":1.0},"402":{"tf":1.4142135623730951},"403":{"tf":2.0},"404":{"tf":1.0},"407":{"tf":1.7320508075688772},"408":{"tf":1.0},"412":{"tf":1.7320508075688772},"413":{"tf":1.4142135623730951},"414":{"tf":1.7320508075688772},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.4142135623730951},"422":{"tf":1.0},"424":{"tf":1.0},"427":{"tf":1.0},"43":{"tf":1.4142135623730951},"438":{"tf":1.4142135623730951},"439":{"tf":1.4142135623730951},"445":{"tf":1.0},"449":{"tf":1.0},"453":{"tf":1.0},"454":{"tf":2.23606797749979},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.4142135623730951},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"467":{"tf":1.4142135623730951},"468":{"tf":1.0},"469":{"tf":1.4142135623730951},"47":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"486":{"tf":1.0},"491":{"tf":1.0},"493":{"tf":2.0},"494":{"tf":1.4142135623730951},"495":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.0},"511":{"tf":2.23606797749979},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0},"526":{"tf":1.4142135623730951},"528":{"tf":1.4142135623730951},"529":{"tf":1.4142135623730951},"53":{"tf":1.0},"530":{"tf":1.0},"533":{"tf":1.7320508075688772},"536":{"tf":1.0},"54":{"tf":1.4142135623730951},"558":{"tf":1.4142135623730951},"58":{"tf":1.7320508075688772},"591":{"tf":1.0},"592":{"tf":1.4142135623730951},"599":{"tf":1.7320508075688772},"600":{"tf":1.7320508075688772},"601":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.7320508075688772},"605":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.4142135623730951},"616":{"tf":2.23606797749979},"617":{"tf":1.4142135623730951},"620":{"tf":1.0},"636":{"tf":1.4142135623730951},"637":{"tf":2.0},"638":{"tf":1.0},"641":{"tf":1.7320508075688772},"642":{"tf":1.0},"646":{"tf":1.7320508075688772},"647":{"tf":1.4142135623730951},"648":{"tf":1.7320508075688772},"649":{"tf":1.0},"654":{"tf":1.4142135623730951},"656":{"tf":2.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"675":{"tf":1.0},"676":{"tf":1.7320508075688772},"688":{"tf":1.4142135623730951},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0},"703":{"tf":1.4142135623730951},"705":{"tf":1.4142135623730951},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"710":{"tf":1.7320508075688772},"713":{"tf":1.4142135623730951},"715":{"tf":1.4142135623730951},"722":{"tf":1.0},"725":{"tf":1.0},"73":{"tf":1.7320508075688772},"732":{"tf":1.7320508075688772},"747":{"tf":1.0},"749":{"tf":1.0},"758":{"tf":2.0},"77":{"tf":1.0},"782":{"tf":1.7320508075688772},"81":{"tf":1.0},"811":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.7320508075688772},"825":{"tf":1.0},"826":{"tf":1.0},"829":{"tf":1.4142135623730951},"831":{"tf":2.0},"833":{"tf":1.0},"837":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"843":{"tf":1.7320508075688772},"845":{"tf":1.0},"846":{"tf":1.7320508075688772},"847":{"tf":1.7320508075688772},"848":{"tf":1.4142135623730951},"849":{"tf":1.4142135623730951},"850":{"tf":1.0},"852":{"tf":1.0},"858":{"tf":1.0},"86":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.7320508075688772},"874":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"88":{"tf":2.449489742783178},"882":{"tf":1.0},"886":{"tf":1.0},"89":{"tf":1.0},"890":{"tf":1.0},"892":{"tf":1.0},"915":{"tf":1.0},"92":{"tf":1.0},"921":{"tf":2.449489742783178},"926":{"tf":1.0},"928":{"tf":1.0},"929":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"954":{"tf":1.0},"956":{"tf":1.7320508075688772},"957":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.0},"997":{"tf":1.4142135623730951}},"e":{"d":{".":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"592":{"tf":1.0},"599":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"358":{"tf":1.0},"365":{"tf":1.0},"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1330":{"tf":2.23606797749979},"1362":{"tf":1.0},"1385":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"w":{"df":4,"docs":{"365":{"tf":1.0},"383":{"tf":1.0},"599":{"tf":1.0},"617":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"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":2,"docs":{"365":{"tf":1.0},"599":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"710":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"646":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"r":{"df":5,"docs":{"1385":{"tf":1.0},"641":{"tf":1.0},"654":{"tf":1.0},"701":{"tf":1.0},"88":{"tf":1.0}}}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"617":{"tf":1.0}}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1384":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":15,"docs":{"1248":{"tf":1.7320508075688772},"1374":{"tf":1.0},"1378":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.7320508075688772},"1394":{"tf":1.0},"1402":{"tf":1.4142135623730951},"1404":{"tf":1.0},"558":{"tf":1.0},"576":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.4142135623730951},"656":{"tf":1.0},"846":{"tf":1.0}},"u":{"df":6,"docs":{"601":{"tf":1.0},"625":{"tf":1.4142135623730951},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"632":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"648":{"tf":1.0},"676":{"tf":1.0},"705":{"tf":1.0},"956":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":4,"docs":{"1270":{"tf":1.0},"1271":{"tf":1.4142135623730951},"1378":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"[":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"'":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":2,"docs":{"654":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"412":{"tf":1.0}}}}}}}}},"r":{"df":6,"docs":{"1362":{"tf":1.4142135623730951},"1399":{"tf":1.7320508075688772},"407":{"tf":1.0},"420":{"tf":1.0},"524":{"tf":1.0},"88":{"tf":1.0}}}}},"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"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":2,"docs":{"1361":{"tf":1.4142135623730951},"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":11,"docs":{"1351":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1399":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"1517":{"tf":1.4142135623730951},"349":{"tf":1.4142135623730951}},"u":{"df":15,"docs":{"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"379":{"tf":1.7320508075688772},"391":{"tf":1.4142135623730951},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"612":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"398":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1405":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"1148":{"tf":1.0},"1273":{"tf":1.4142135623730951},"1279":{"tf":1.0},"1290":{"tf":1.0},"1356":{"tf":1.4142135623730951},"414":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"467":{"tf":1.0},"474":{"tf":1.4142135623730951},"505":{"tf":1.0},"528":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"463":{"tf":1.0},"469":{"tf":1.0}}}}}}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"77":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"420":{"tf":1.4142135623730951},"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"'":{"df":5,"docs":{"1255":{"tf":1.0},"415":{"tf":1.0},"530":{"tf":1.0},"649":{"tf":1.0},"707":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"613":{"tf":1.0}}},"df":0,"docs":{}}},"df":15,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.7320508075688772},"1212":{"tf":1.0},"1220":{"tf":1.4142135623730951},"1248":{"tf":1.0},"1260":{"tf":1.0},"1324":{"tf":1.0},"1384":{"tf":1.0},"406":{"tf":1.0},"525":{"tf":1.0},"617":{"tf":1.0},"640":{"tf":1.0},"702":{"tf":1.0},"786":{"tf":1.0},"97":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"380":{"tf":1.0}}},"df":0,"docs":{}},"’":{"df":2,"docs":{"1436":{"tf":1.4142135623730951},"43":{"tf":1.0}}}}},"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1086":{"tf":1.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1346":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"1039":{"tf":1.0},"1148":{"tf":1.0},"1182":{"tf":1.0}}}}}}}},"\\":{"df":0,"docs":{},"n":{"df":1,"docs":{"841":{"tf":1.0}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"999":{"tf":1.4142135623730951}}}}}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":14,"docs":{"1045":{"tf":1.4142135623730951},"1186":{"tf":1.0},"1507":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"224":{"tf":1.0},"45":{"tf":1.0},"765":{"tf":1.0},"782":{"tf":1.4142135623730951},"783":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.7320508075688772},"913":{"tf":1.0},"990":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":5,"docs":{"1151":{"tf":1.0},"1176":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"545":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"1185":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1082":{"tf":1.0},"1214":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"1154":{"tf":1.0},"935":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":15,"docs":{"1061":{"tf":1.0},"1145":{"tf":1.0},"1336":{"tf":1.0},"1351":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1388":{"tf":1.4142135623730951},"17":{"tf":1.0},"176":{"tf":1.0},"327":{"tf":1.0},"37":{"tf":1.0},"555":{"tf":1.0},"581":{"tf":1.0},"6":{"tf":1.0},"64":{"tf":1.0},"97":{"tf":1.0}},"e":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"\"":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"a":{"1":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"a":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{")":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":1,"docs":{"1145":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"82":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{":":{":":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"'":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1145":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"y":{"a":{"df":1,"docs":{"1145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"294":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":58,"docs":{"357":{"tf":2.0},"358":{"tf":1.0},"359":{"tf":2.0},"360":{"tf":1.0},"361":{"tf":1.0},"362":{"tf":1.0},"363":{"tf":1.0},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"369":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"373":{"tf":1.0},"374":{"tf":1.0},"375":{"tf":1.0},"376":{"tf":1.0},"377":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.4142135623730951},"384":{"tf":1.0},"385":{"tf":1.0},"591":{"tf":2.0},"592":{"tf":1.0},"593":{"tf":2.0},"594":{"tf":1.0},"595":{"tf":1.0},"596":{"tf":1.0},"597":{"tf":1.0},"598":{"tf":1.0},"599":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"603":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"608":{"tf":1.0},"609":{"tf":1.0},"610":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"615":{"tf":1.0},"616":{"tf":1.0},"617":{"tf":1.4142135623730951},"618":{"tf":1.0},"619":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"df":2,"docs":{"382":{"tf":1.0},"616":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":17,"docs":{"1060":{"tf":1.0},"1062":{"tf":1.0},"1089":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"184":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"593":{"tf":1.0},"856":{"tf":1.0},"863":{"tf":1.0},"911":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"969":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"711":{"tf":1.0}}}}}}}}},"t":{"df":1,"docs":{"424":{"tf":1.0}}},"x":{"df":1,"docs":{"847":{"tf":1.0}}},"z":{"df":0,"docs":{},"e":{"df":6,"docs":{"1015":{"tf":1.4142135623730951},"1018":{"tf":1.4142135623730951},"1024":{"tf":1.7320508075688772},"1027":{"tf":1.0},"1030":{"tf":1.4142135623730951},"1036":{"tf":1.4142135623730951}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"934":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":9,"docs":{"1209":{"tf":1.0},"1256":{"tf":1.7320508075688772},"732":{"tf":1.0},"829":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.0},"833":{"tf":1.4142135623730951},"835":{"tf":1.0},"842":{"tf":1.7320508075688772}},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"845":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"p":{"df":4,"docs":{"130":{"tf":1.0},"1334":{"tf":1.0},"241":{"tf":1.0},"243":{"tf":1.0}}}},"u":{"df":2,"docs":{"1112":{"tf":2.0},"1127":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"255":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"682":{"tf":1.0}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"1024":{"tf":1.0},"1027":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1039":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"1426":{"tf":1.4142135623730951},"342":{"tf":1.0},"569":{"tf":1.0},"960":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"185":{"tf":1.0},"818":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1041":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"766":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":4,"docs":{"1112":{"tf":1.4142135623730951},"154":{"tf":1.0},"761":{"tf":1.0},"766":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"o":{"c":{"df":1,"docs":{"985":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"760":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"154":{"tf":1.0},"767":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":36,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1467":{"tf":1.0},"1469":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"1472":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1479":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"1482":{"tf":1.0},"1484":{"tf":1.0},"1485":{"tf":1.0},"1486":{"tf":1.0},"1487":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0},"511":{"tf":1.0},"767":{"tf":1.0},"976":{"tf":2.6457513110645907}}}},"v":{"df":2,"docs":{"20":{"tf":1.0},"21":{"tf":1.4142135623730951}}}},"m":{"df":0,"docs":{},"e":{"(":{"\"":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"1":{".":{"0":{".":{"0":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"306":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"845":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"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":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"\"":{")":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"288":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":2,"docs":{"277":{"tf":1.0},"280":{"tf":1.0}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"&":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"1":{"0":{"0":{"0":{"df":1,"docs":{"315":{"tf":1.0}}},"df":1,"docs":{"308":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"df":1,"docs":{"1084":{"tf":1.0}}},"3":{"0":{"df":4,"docs":{"1084":{"tf":1.0},"284":{"tf":1.0},"301":{"tf":1.0},"315":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"315":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"!":{"(":{"\"":{"c":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"k":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"\"":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"315":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.4142135623730951}}}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1001":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"303":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"306":{"tf":1.0},"315":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"u":{"df":2,"docs":{"269":{"tf":1.0},"273":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"c":{"!":{"[":{"\"":{".":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":2.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"21":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"1305":{"tf":1.0},"58":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"884":{"tf":1.0},"919":{"tf":1.0}}},"df":0,"docs":{}},"r":{"c":{"df":12,"docs":{"104":{"tf":1.4142135623730951},"1154":{"tf":1.0},"1174":{"tf":1.0},"1436":{"tf":1.7320508075688772},"182":{"tf":1.0},"204":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"70":{"tf":1.0},"809":{"tf":1.0},"972":{"tf":1.0},"992":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":3,"docs":{"1062":{"tf":1.0},"1426":{"tf":1.0},"1489":{"tf":1.0}}}},"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"901":{"tf":1.0}}},".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"309":{"tf":1.0}}}}}},"df":2,"docs":{"309":{"tf":2.23606797749979},"319":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"1423":{"tf":1.0},"151":{"tf":1.0},"196":{"tf":1.0},"29":{"tf":1.0},"41":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"88":{"tf":1.4142135623730951},"950":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":55,"docs":{"0":{"tf":1.0},"1001":{"tf":1.0},"1043":{"tf":1.4142135623730951},"1108":{"tf":1.0},"1109":{"tf":1.0},"1154":{"tf":1.0},"119":{"tf":1.0},"1210":{"tf":1.4142135623730951},"1276":{"tf":1.0},"128":{"tf":1.0},"1294":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"13":{"tf":1.0},"1309":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1427":{"tf":1.0},"1452":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"170":{"tf":1.0},"179":{"tf":1.0},"201":{"tf":1.0},"229":{"tf":1.0},"23":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"398":{"tf":1.4142135623730951},"410":{"tf":1.0},"43":{"tf":1.0},"486":{"tf":1.0},"51":{"tf":1.0},"510":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"632":{"tf":1.4142135623730951},"644":{"tf":1.0},"741":{"tf":1.4142135623730951},"747":{"tf":1.0},"757":{"tf":1.4142135623730951},"807":{"tf":1.0},"808":{"tf":1.4142135623730951},"868":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":23,"docs":{"1323":{"tf":1.0},"138":{"tf":1.0},"1419":{"tf":1.0},"1428":{"tf":1.0},"1430":{"tf":1.0},"1439":{"tf":1.0},"1442":{"tf":1.0},"1452":{"tf":1.0},"1458":{"tf":1.0},"1460":{"tf":1.0},"1462":{"tf":1.0},"1480":{"tf":1.0},"1481":{"tf":1.0},"188":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"740":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"895":{"tf":1.0},"914":{"tf":1.0},"976":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":6,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0},"1297":{"tf":1.0},"1307":{"tf":1.0}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"1044":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"872":{"tf":1.0}}}}}}},"q":{"df":1,"docs":{"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"3":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":3,"docs":{"1297":{"tf":1.4142135623730951},"1298":{"tf":1.0},"1306":{"tf":1.4142135623730951}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"r":{"c":{"/":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"j":{"df":2,"docs":{"348":{"tf":1.4142135623730951},"349":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"576":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}},"df":0,"docs":{}},"s":{"d":{"df":1,"docs":{"1101":{"tf":1.0}}},"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":15,"docs":{"1106":{"tf":1.4142135623730951},"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.4142135623730951},"1203":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"424":{"tf":1.0},"429":{"tf":1.0},"434":{"tf":1.4142135623730951},"541":{"tf":1.0},"664":{"tf":1.0},"687":{"tf":1.0},"719":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"'":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1192":{"tf":1.0},"1401":{"tf":1.0},"434":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"249":{"tf":1.0},"250":{"tf":1.0}}}},"l":{"df":5,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"868":{"tf":1.0},"874":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":2,"docs":{"1441":{"tf":1.0},"930":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"852":{"tf":1.0}}}}},"r":{"d":{"df":25,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"1022":{"tf":1.0},"1028":{"tf":1.0},"1029":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":2.0},"291":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"339":{"tf":1.0},"423":{"tf":1.0},"56":{"tf":1.0},"566":{"tf":1.0},"57":{"tf":1.4142135623730951},"858":{"tf":1.0},"911":{"tf":1.0},"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"884":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":66,"docs":{"1107":{"tf":1.0},"1178":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"1319":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1359":{"tf":1.0},"1401":{"tf":1.0},"18":{"tf":1.7320508075688772},"19":{"tf":1.0},"225":{"tf":1.4142135623730951},"293":{"tf":1.4142135623730951},"348":{"tf":1.0},"358":{"tf":1.4142135623730951},"38":{"tf":1.0},"425":{"tf":1.4142135623730951},"442":{"tf":1.0},"443":{"tf":1.0},"483":{"tf":1.4142135623730951},"507":{"tf":1.0},"547":{"tf":1.0},"581":{"tf":1.0},"592":{"tf":1.4142135623730951},"665":{"tf":1.4142135623730951},"67":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":1.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"727":{"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},"802":{"tf":1.0},"804":{"tf":1.4142135623730951},"805":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.4142135623730951},"816":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"824":{"tf":1.7320508075688772},"827":{"tf":1.7320508075688772},"83":{"tf":1.4142135623730951},"84":{"tf":1.0},"85":{"tf":1.0},"855":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"884":{"tf":1.0},"889":{"tf":1.4142135623730951},"89":{"tf":1.0},"90":{"tf":1.0},"909":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"976":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":4,"docs":{"1378":{"tf":1.4142135623730951},"383":{"tf":1.0},"463":{"tf":1.0},"617":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"762":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":3,"docs":{"1209":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}}}},"df":47,"docs":{"1011":{"tf":1.0},"1144":{"tf":1.0},"1160":{"tf":1.0},"1209":{"tf":3.1622776601683795},"1230":{"tf":1.0},"312":{"tf":1.0},"369":{"tf":1.0},"43":{"tf":1.0},"516":{"tf":1.0},"603":{"tf":1.0},"693":{"tf":1.0},"732":{"tf":1.4142135623730951},"747":{"tf":1.4142135623730951},"800":{"tf":1.0},"802":{"tf":1.0},"803":{"tf":1.0},"804":{"tf":2.0},"805":{"tf":1.4142135623730951},"808":{"tf":1.0},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":2.0},"829":{"tf":2.449489742783178},"830":{"tf":1.0},"831":{"tf":2.23606797749979},"832":{"tf":1.7320508075688772},"833":{"tf":1.7320508075688772},"834":{"tf":1.0},"835":{"tf":1.7320508075688772},"836":{"tf":1.4142135623730951},"837":{"tf":1.4142135623730951},"838":{"tf":1.4142135623730951},"839":{"tf":1.0},"840":{"tf":1.7320508075688772},"841":{"tf":1.0},"842":{"tf":1.0},"843":{"tf":1.0},"844":{"tf":1.0},"845":{"tf":2.0},"846":{"tf":1.0},"847":{"tf":2.8284271247461903},"848":{"tf":1.0},"849":{"tf":1.0},"850":{"tf":1.4142135623730951},"851":{"tf":1.0},"916":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1071":{"tf":1.0},"317":{"tf":1.0}}}}}}},"u":{"df":61,"docs":{"1000":{"tf":1.7320508075688772},"1006":{"tf":1.0},"1112":{"tf":2.0},"1115":{"tf":1.4142135623730951},"1126":{"tf":1.0},"1127":{"tf":1.0},"1143":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1149":{"tf":1.4142135623730951},"1208":{"tf":1.0},"1214":{"tf":1.0},"1230":{"tf":2.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1276":{"tf":1.0},"1302":{"tf":1.0},"1309":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.7320508075688772},"1330":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1355":{"tf":1.0},"1362":{"tf":1.7320508075688772},"1363":{"tf":2.23606797749979},"1376":{"tf":1.0},"1378":{"tf":1.0},"138":{"tf":1.0},"1385":{"tf":1.7320508075688772},"1386":{"tf":2.23606797749979},"1399":{"tf":2.23606797749979},"1401":{"tf":1.0},"1402":{"tf":1.0},"1403":{"tf":1.0},"222":{"tf":1.4142135623730951},"246":{"tf":1.4142135623730951},"369":{"tf":1.0},"371":{"tf":1.0},"408":{"tf":2.0},"420":{"tf":1.7320508075688772},"483":{"tf":1.0},"486":{"tf":1.0},"507":{"tf":1.0},"525":{"tf":1.7320508075688772},"603":{"tf":1.0},"642":{"tf":2.0},"654":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"849":{"tf":1.0},"854":{"tf":1.0},"855":{"tf":1.7320508075688772},"856":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.0},"868":{"tf":1.0},"872":{"tf":1.4142135623730951},"916":{"tf":1.4142135623730951},"940":{"tf":1.0},"997":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"1145":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.4142135623730951},"525":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1385":{"tf":1.0},"1386":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1386":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1386":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"1363":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"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":1,"docs":{"1362":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"525":{"tf":1.0}},"e":{"d":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"1363":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"=":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1098":{"tf":1.0}}}}},"[":{"'":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1143":{"tf":1.0},"702":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"702":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"=":{"4":{"0":{"0":{"df":1,"docs":{"1270":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1143":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"702":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1362":{"tf":1.0},"1363":{"tf":1.0},"1399":{"tf":1.0},"525":{"tf":1.0}}}}}}}}},"y":{"df":2,"docs":{"950":{"tf":1.0},"97":{"tf":1.0}}}},"d":{":":{":":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{":":{":":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"303":{"tf":1.0},"306":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{":":{":":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"(":{"\"":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":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":{"1161":{"tf":1.0}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":11,"docs":{"261":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"274":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"288":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{":":{":":{"df":0,"docs":{},"{":{"a":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"287":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{":":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"287":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":7,"docs":{"1191":{"tf":1.0},"1439":{"tf":1.4142135623730951},"1444":{"tf":1.0},"298":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"899":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"1359":{"tf":1.4142135623730951},"1524":{"tf":1.0},"427":{"tf":1.4142135623730951},"443":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}},"df":11,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1191":{"tf":1.4142135623730951},"424":{"tf":1.0},"426":{"tf":1.0},"429":{"tf":1.0},"433":{"tf":1.7320508075688772},"437":{"tf":1.0},"450":{"tf":1.7320508075688772},"541":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":8,"docs":{"1179":{"tf":1.4142135623730951},"1191":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"433":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{}}}}}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":14,"docs":{"1154":{"tf":1.0},"1191":{"tf":1.0},"1323":{"tf":1.0},"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1440":{"tf":1.4142135623730951},"1444":{"tf":1.0},"179":{"tf":1.0},"302":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0},"900":{"tf":1.4142135623730951}}}}}},"df":1,"docs":{"761":{"tf":1.0}},"e":{"df":0,"docs":{},"p":{"df":32,"docs":{"111":{"tf":1.0},"1112":{"tf":2.0},"1158":{"tf":1.0},"117":{"tf":1.4142135623730951},"122":{"tf":1.0},"1261":{"tf":1.4142135623730951},"1330":{"tf":2.6457513110645907},"145":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"211":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951},"289":{"tf":1.4142135623730951},"320":{"tf":1.4142135623730951},"34":{"tf":1.0},"35":{"tf":1.0},"355":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"421":{"tf":1.4142135623730951},"452":{"tf":1.4142135623730951},"480":{"tf":1.4142135623730951},"51":{"tf":1.0},"512":{"tf":1.4142135623730951},"589":{"tf":1.4142135623730951},"662":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"689":{"tf":1.4142135623730951},"71":{"tf":1.0},"8":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"994":{"tf":2.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"1000":{"tf":1.0},"1003":{"tf":1.0},"1012":{"tf":1.0},"1144":{"tf":1.0},"1506":{"tf":1.0},"223":{"tf":1.0},"997":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"t":{".":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{")":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{".":{".":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1306":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"1306":{"tf":1.0}}}}}},"df":1,"docs":{"1306":{"tf":1.7320508075688772}}}},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"1452":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":107,"docs":{"1054":{"tf":2.0},"1055":{"tf":2.0},"1056":{"tf":1.4142135623730951},"1057":{"tf":2.0},"1058":{"tf":1.0},"1059":{"tf":1.0},"1060":{"tf":1.0},"1061":{"tf":1.0},"1062":{"tf":1.0},"1063":{"tf":1.4142135623730951},"1064":{"tf":2.0},"1065":{"tf":1.0},"1066":{"tf":1.0},"1067":{"tf":1.0},"1068":{"tf":1.0},"1069":{"tf":1.4142135623730951},"1070":{"tf":1.4142135623730951},"1071":{"tf":1.0},"1072":{"tf":1.0},"1073":{"tf":2.0},"1074":{"tf":1.0},"1075":{"tf":1.0},"1076":{"tf":1.0},"1077":{"tf":2.0},"1078":{"tf":1.0},"1079":{"tf":1.0},"1080":{"tf":1.0},"1081":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.0},"1084":{"tf":1.7320508075688772},"1085":{"tf":1.4142135623730951},"1086":{"tf":1.0},"1087":{"tf":1.0},"1088":{"tf":1.7320508075688772},"1089":{"tf":1.7320508075688772},"109":{"tf":1.0},"1090":{"tf":1.7320508075688772},"1091":{"tf":1.0},"1092":{"tf":1.0},"1093":{"tf":1.0},"1094":{"tf":1.0},"1095":{"tf":1.0},"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0},"1099":{"tf":1.0},"110":{"tf":1.0},"1100":{"tf":1.0},"1101":{"tf":1.4142135623730951},"1102":{"tf":1.0},"1103":{"tf":1.0},"1104":{"tf":1.0},"1105":{"tf":1.0},"1106":{"tf":1.0},"1107":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"1295":{"tf":1.4142135623730951},"1296":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1309":{"tf":1.0},"1316":{"tf":1.4142135623730951},"1320":{"tf":1.0},"14":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.4142135623730951},"1451":{"tf":2.6457513110645907},"1452":{"tf":2.23606797749979},"1453":{"tf":1.7320508075688772},"1455":{"tf":1.0},"1456":{"tf":2.0},"1481":{"tf":1.4142135623730951},"1488":{"tf":1.4142135623730951},"1489":{"tf":2.23606797749979},"1491":{"tf":1.4142135623730951},"1511":{"tf":1.4142135623730951},"1522":{"tf":1.7320508075688772},"1528":{"tf":1.4142135623730951},"1531":{"tf":1.4142135623730951},"161":{"tf":1.4142135623730951},"261":{"tf":1.0},"280":{"tf":1.0},"285":{"tf":3.0},"287":{"tf":1.0},"289":{"tf":1.4142135623730951},"334":{"tf":1.0},"337":{"tf":1.7320508075688772},"339":{"tf":1.4142135623730951},"34":{"tf":1.0},"340":{"tf":1.4142135623730951},"418":{"tf":1.0},"519":{"tf":1.0},"536":{"tf":2.0},"564":{"tf":1.7320508075688772},"566":{"tf":1.4142135623730951},"567":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":2.0},"696":{"tf":1.0},"722":{"tf":1.7320508075688772},"85":{"tf":1.0},"887":{"tf":1.0},"890":{"tf":1.0},"893":{"tf":2.0},"916":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1084":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"_":{"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"1084":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"(":{"\"":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1084":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1084":{"tf":1.0}}},"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":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1084":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"c":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"n":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1302":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1305":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":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":{"1301":{"tf":1.0},"1302":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"{":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1301":{"tf":1.0},"1305":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":60,"docs":{"1057":{"tf":1.0},"1077":{"tf":1.0},"1080":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1084":{"tf":1.0},"1085":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1209":{"tf":1.0},"1222":{"tf":1.0},"1225":{"tf":1.0},"1226":{"tf":1.0},"1253":{"tf":1.0},"1297":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":1.7320508075688772},"1305":{"tf":1.7320508075688772},"1312":{"tf":2.0},"1315":{"tf":1.0},"1364":{"tf":1.4142135623730951},"1365":{"tf":1.7320508075688772},"1387":{"tf":1.4142135623730951},"1388":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1449":{"tf":1.4142135623730951},"1450":{"tf":1.0},"1453":{"tf":1.7320508075688772},"16":{"tf":1.0},"161":{"tf":1.0},"185":{"tf":1.0},"270":{"tf":1.0},"334":{"tf":1.4142135623730951},"366":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"600":{"tf":1.0},"64":{"tf":1.0},"681":{"tf":1.0},"831":{"tf":1.0},"838":{"tf":1.0},"84":{"tf":1.0},"846":{"tf":1.0},"850":{"tf":1.0},"885":{"tf":1.4142135623730951},"890":{"tf":1.4142135623730951},"892":{"tf":1.0},"893":{"tf":1.4142135623730951},"908":{"tf":1.0},"911":{"tf":2.0},"916":{"tf":1.0},"92":{"tf":1.0},"925":{"tf":1.0},"947":{"tf":1.7320508075688772},"949":{"tf":1.4142135623730951},"950":{"tf":2.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"998":{"tf":1.7320508075688772}}}}},"r":{"(":{"a":{"df":1,"docs":{"1180":{"tf":1.0}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"1378":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":3,"docs":{"1390":{"tf":1.4142135623730951},"1394":{"tf":2.0},"1402":{"tf":1.0}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1388":{"tf":1.0},"1390":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"1392":{"tf":1.0},"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":6,"docs":{"1080":{"tf":1.0},"1135":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1296":{"tf":1.0},"1308":{"tf":1.4142135623730951},"833":{"tf":1.0}}}}}}},"df":51,"docs":{"1001":{"tf":1.4142135623730951},"1148":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1180":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1379":{"tf":1.0},"1381":{"tf":2.23606797749979},"1385":{"tf":1.4142135623730951},"1386":{"tf":1.0},"1388":{"tf":2.0},"1390":{"tf":1.7320508075688772},"1394":{"tf":2.23606797749979},"1402":{"tf":2.0},"1404":{"tf":3.4641016151377544},"587":{"tf":1.0},"588":{"tf":1.0},"595":{"tf":1.0},"600":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.7320508075688772},"604":{"tf":1.0},"605":{"tf":1.0},"606":{"tf":1.0},"607":{"tf":1.0},"609":{"tf":1.0},"611":{"tf":1.4142135623730951},"612":{"tf":2.0},"614":{"tf":1.7320508075688772},"617":{"tf":1.4142135623730951},"666":{"tf":2.23606797749979},"669":{"tf":1.4142135623730951},"675":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"695":{"tf":1.4142135623730951},"696":{"tf":2.23606797749979},"697":{"tf":1.0},"698":{"tf":1.4142135623730951},"699":{"tf":1.7320508075688772},"700":{"tf":2.23606797749979},"701":{"tf":1.7320508075688772},"702":{"tf":1.7320508075688772},"703":{"tf":1.4142135623730951},"704":{"tf":1.7320508075688772},"705":{"tf":1.0},"706":{"tf":1.0},"707":{"tf":1.0},"708":{"tf":1.0},"709":{"tf":1.4142135623730951},"710":{"tf":1.7320508075688772},"725":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1182":{"tf":1.0},"1439":{"tf":1.0},"37":{"tf":1.0},"450":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"357":{"tf":1.0},"591":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"1120":{"tf":1.4142135623730951},"762":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"3":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":25,"docs":{"1144":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1476":{"tf":1.0},"165":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"205":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.7320508075688772},"243":{"tf":1.4142135623730951},"245":{"tf":1.0},"249":{"tf":1.0},"253":{"tf":1.0},"266":{"tf":2.0},"897":{"tf":1.0},"929":{"tf":1.0},"930":{"tf":1.0},"937":{"tf":1.4142135623730951},"939":{"tf":1.4142135623730951},"969":{"tf":1.0},"976":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":124,"docs":{"1111":{"tf":1.4142135623730951},"1112":{"tf":2.23606797749979},"1115":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1117":{"tf":2.8284271247461903},"1119":{"tf":1.4142135623730951},"1120":{"tf":2.0},"1121":{"tf":1.0},"1122":{"tf":1.0},"1124":{"tf":2.0},"1129":{"tf":2.449489742783178},"1130":{"tf":2.8284271247461903},"1131":{"tf":2.0},"1134":{"tf":1.0},"1227":{"tf":2.0},"1279":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1304":{"tf":2.0},"1401":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":1.7320508075688772},"1471":{"tf":1.0},"262":{"tf":1.7320508075688772},"270":{"tf":1.0},"332":{"tf":1.7320508075688772},"361":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.4142135623730951},"368":{"tf":1.0},"370":{"tf":1.4142135623730951},"371":{"tf":1.7320508075688772},"372":{"tf":1.0},"374":{"tf":1.4142135623730951},"376":{"tf":1.0},"378":{"tf":2.0},"379":{"tf":2.0},"380":{"tf":1.7320508075688772},"381":{"tf":1.7320508075688772},"403":{"tf":1.0},"404":{"tf":1.0},"417":{"tf":1.7320508075688772},"418":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"467":{"tf":1.0},"469":{"tf":1.0},"470":{"tf":1.4142135623730951},"471":{"tf":1.0},"476":{"tf":1.0},"479":{"tf":1.0},"494":{"tf":1.4142135623730951},"511":{"tf":1.0},"518":{"tf":1.4142135623730951},"519":{"tf":2.6457513110645907},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"522":{"tf":2.23606797749979},"523":{"tf":2.6457513110645907},"524":{"tf":2.0},"525":{"tf":2.23606797749979},"526":{"tf":1.7320508075688772},"527":{"tf":2.0},"528":{"tf":1.4142135623730951},"529":{"tf":1.0},"530":{"tf":1.0},"531":{"tf":1.0},"532":{"tf":1.7320508075688772},"533":{"tf":1.7320508075688772},"535":{"tf":2.23606797749979},"536":{"tf":3.4641016151377544},"538":{"tf":1.0},"539":{"tf":1.0},"541":{"tf":1.4142135623730951},"542":{"tf":1.4142135623730951},"544":{"tf":1.4142135623730951},"562":{"tf":1.0},"588":{"tf":1.0},"599":{"tf":1.0},"601":{"tf":1.0},"604":{"tf":1.0},"605":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"651":{"tf":1.7320508075688772},"652":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.4142135623730951},"700":{"tf":1.4142135623730951},"701":{"tf":1.0},"702":{"tf":1.4142135623730951},"703":{"tf":1.0},"704":{"tf":1.0},"705":{"tf":1.0},"709":{"tf":1.0},"722":{"tf":2.6457513110645907},"742":{"tf":1.7320508075688772},"753":{"tf":1.0},"756":{"tf":2.8284271247461903},"757":{"tf":1.4142135623730951},"759":{"tf":3.1622776601683795},"762":{"tf":3.3166247903554},"778":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":3.0},"786":{"tf":1.4142135623730951},"788":{"tf":2.0},"790":{"tf":1.0},"808":{"tf":2.23606797749979},"811":{"tf":1.4142135623730951},"832":{"tf":1.4142135623730951},"835":{"tf":1.4142135623730951},"836":{"tf":2.8284271247461903},"854":{"tf":1.0},"856":{"tf":2.449489742783178},"865":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"879":{"tf":1.4142135623730951},"880":{"tf":1.0},"890":{"tf":2.449489742783178}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"1215":{"tf":1.0},"169":{"tf":1.0},"969":{"tf":1.0},"97":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1010":{"tf":1.0},"925":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"1161":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951},"287":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":53,"docs":{"1043":{"tf":1.0},"1045":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1111":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1186":{"tf":1.4142135623730951},"1228":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1298":{"tf":1.0},"1417":{"tf":1.0},"1421":{"tf":1.0},"1423":{"tf":1.0},"1528":{"tf":1.0},"167":{"tf":1.4142135623730951},"173":{"tf":1.0},"180":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"2":{"tf":1.0},"211":{"tf":1.0},"224":{"tf":1.4142135623730951},"236":{"tf":1.4142135623730951},"25":{"tf":1.0},"291":{"tf":1.0},"328":{"tf":1.4142135623730951},"347":{"tf":1.4142135623730951},"36":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951},"556":{"tf":1.4142135623730951},"574":{"tf":1.4142135623730951},"66":{"tf":1.0},"71":{"tf":1.0},"728":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"752":{"tf":1.4142135623730951},"774":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":1.0},"803":{"tf":1.4142135623730951},"828":{"tf":1.0},"829":{"tf":1.0},"832":{"tf":1.4142135623730951},"856":{"tf":1.4142135623730951},"86":{"tf":1.0},"860":{"tf":1.0},"916":{"tf":1.0},"953":{"tf":1.4142135623730951},"956":{"tf":1.0},"990":{"tf":1.4142135623730951},"999":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"|":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"1145":{"tf":1.0}}}}}},"u":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"1413":{"tf":1.4142135623730951},"1415":{"tf":1.4142135623730951},"1417":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"236":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":3,"docs":{"802":{"tf":1.0},"818":{"tf":1.4142135623730951},"869":{"tf":1.0}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"883":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"804":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1182":{"tf":1.0},"1191":{"tf":1.0},"433":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"820":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":2,"docs":{"1163":{"tf":1.0},"997":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"29":{"tf":1.0},"47":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":28,"docs":{"1149":{"tf":1.0},"1321":{"tf":1.0},"1345":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1405":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0},"155":{"tf":1.0},"264":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"49":{"tf":1.0},"490":{"tf":1.0},"493":{"tf":1.0},"495":{"tf":1.0},"51":{"tf":1.4142135623730951},"715":{"tf":1.0},"759":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"80":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"1324":{"tf":1.0},"1338":{"tf":1.0},"1346":{"tf":1.0},"1458":{"tf":1.0},"286":{"tf":1.0},"288":{"tf":1.0},"327":{"tf":1.4142135623730951},"555":{"tf":1.4142135623730951},"855":{"tf":1.0},"89":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"1062":{"tf":1.0},"1175":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1166":{"tf":1.0}}}},"m":{"(":{"1":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"156":{"tf":1.0},"93":{"tf":1.0}},"i":{"df":13,"docs":{"1154":{"tf":1.0},"1339":{"tf":1.0},"156":{"tf":1.0},"182":{"tf":1.0},"369":{"tf":1.4142135623730951},"603":{"tf":1.0},"843":{"tf":1.0},"916":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"_":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"_":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1394":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1000":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"1148":{"tf":1.0},"1290":{"tf":1.7320508075688772},"505":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":67,"docs":{"1002":{"tf":1.4142135623730951},"1014":{"tf":1.0},"1015":{"tf":1.4142135623730951},"1054":{"tf":1.0},"1069":{"tf":1.0},"107":{"tf":1.0},"1078":{"tf":1.4142135623730951},"109":{"tf":2.6457513110645907},"1135":{"tf":1.0},"1154":{"tf":1.4142135623730951},"1181":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1264":{"tf":1.4142135623730951},"1294":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.0},"1428":{"tf":1.0},"1438":{"tf":1.0},"1472":{"tf":1.0},"15":{"tf":1.0},"152":{"tf":1.0},"159":{"tf":1.0},"19":{"tf":1.4142135623730951},"2":{"tf":1.7320508075688772},"21":{"tf":1.0},"225":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"245":{"tf":1.0},"285":{"tf":1.0},"292":{"tf":2.0},"297":{"tf":1.0},"332":{"tf":1.4142135623730951},"342":{"tf":1.0},"343":{"tf":1.0},"355":{"tf":1.0},"36":{"tf":1.4142135623730951},"4":{"tf":1.0},"421":{"tf":1.0},"47":{"tf":1.0},"480":{"tf":1.0},"5":{"tf":1.0},"512":{"tf":1.0},"544":{"tf":1.4142135623730951},"569":{"tf":1.0},"57":{"tf":1.4142135623730951},"570":{"tf":1.0},"587":{"tf":1.4142135623730951},"589":{"tf":1.0},"6":{"tf":1.0},"662":{"tf":1.0},"664":{"tf":1.4142135623730951},"725":{"tf":1.0},"737":{"tf":1.0},"776":{"tf":1.4142135623730951},"82":{"tf":1.0},"871":{"tf":1.0},"898":{"tf":1.0},"91":{"tf":1.0},"911":{"tf":1.0},"93":{"tf":1.0},"943":{"tf":1.0},"95":{"tf":1.0},"954":{"tf":1.0},"959":{"tf":1.4142135623730951},"960":{"tf":1.0},"981":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":2,"docs":{"108":{"tf":1.0},"916":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1010":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1042":{"tf":1.0}}},"df":0,"docs":{}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1355":{"tf":1.0},"1358":{"tf":1.0},"473":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"925":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"c":{"df":2,"docs":{"1512":{"tf":1.0},"1513":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"1479":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"j":{"df":1,"docs":{"1399":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"y":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"1399":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1399":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}}},"df":52,"docs":{"1":{"tf":1.4142135623730951},"1011":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.0},"1062":{"tf":1.0},"1068":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"1160":{"tf":1.0},"1175":{"tf":1.4142135623730951},"1194":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.4142135623730951},"1211":{"tf":1.0},"1222":{"tf":1.0},"1298":{"tf":1.0},"1397":{"tf":1.4142135623730951},"1399":{"tf":1.0},"14":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1405":{"tf":1.7320508075688772},"1441":{"tf":1.0},"1447":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"322":{"tf":1.0},"338":{"tf":1.4142135623730951},"37":{"tf":1.7320508075688772},"422":{"tf":1.0},"549":{"tf":1.0},"55":{"tf":1.0},"565":{"tf":1.4142135623730951},"64":{"tf":1.0},"66":{"tf":1.0},"728":{"tf":1.0},"758":{"tf":1.0},"816":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"960":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"t":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"726":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"726":{"tf":1.0}}}}},"df":0,"docs":{}}}},"0":{"df":1,"docs":{"997":{"tf":1.0}}},"1":{"df":1,"docs":{"997":{"tf":1.0}}},"2":{"df":1,"docs":{"997":{"tf":1.0}}},"3":{"df":1,"docs":{"997":{"tf":1.0}}},"4":{"df":1,"docs":{"997":{"tf":1.0}}},"[":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"1081":{"tf":1.7320508075688772},"1084":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1306":{"tf":1.0},"1310":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":8,"docs":{"1121":{"tf":1.0},"1309":{"tf":1.0},"303":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"848":{"tf":1.0},"869":{"tf":1.4142135623730951},"872":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":3,"docs":{"1475":{"tf":1.0},"252":{"tf":1.0},"976":{"tf":1.0}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"&":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1163":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1163":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":1,"docs":{"1163":{"tf":1.4142135623730951}}}}},"df":12,"docs":{"1142":{"tf":2.0},"1163":{"tf":1.4142135623730951},"1175":{"tf":1.0},"1263":{"tf":1.0},"1369":{"tf":1.7320508075688772},"1392":{"tf":1.4142135623730951},"1469":{"tf":1.0},"456":{"tf":1.0},"663":{"tf":1.0},"831":{"tf":1.0},"850":{"tf":1.0},"918":{"tf":1.0}},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1392":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1369":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"df":2,"docs":{"1095":{"tf":1.4142135623730951},"1097":{"tf":1.0}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"110":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.7320508075688772},"1213":{"tf":1.0},"759":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1154":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"226":{"tf":2.0}}}}}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"729":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"654":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"873":{"tf":2.0}}},"df":0,"docs":{}},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"274":{"tf":1.4142135623730951}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"654":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":103,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"11":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.4142135623730951},"1212":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.4142135623730951},"1256":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"132":{"tf":3.605551275463989},"1335":{"tf":1.4142135623730951},"1336":{"tf":2.8284271247461903},"1416":{"tf":1.4142135623730951},"1417":{"tf":2.23606797749979},"196":{"tf":2.23606797749979},"197":{"tf":1.0},"2":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.4142135623730951},"225":{"tf":2.449489742783178},"226":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951},"23":{"tf":1.0},"274":{"tf":1.7320508075688772},"288":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"31":{"tf":2.0},"33":{"tf":1.0},"347":{"tf":1.0},"35":{"tf":1.0},"356":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"420":{"tf":2.23606797749979},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.7320508075688772},"49":{"tf":1.7320508075688772},"50":{"tf":2.23606797749979},"51":{"tf":2.0},"53":{"tf":1.7320508075688772},"55":{"tf":1.0},"574":{"tf":1.0},"590":{"tf":1.0},"654":{"tf":2.23606797749979},"68":{"tf":1.0},"73":{"tf":2.23606797749979},"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.7320508075688772},"77":{"tf":2.23606797749979},"773":{"tf":1.4142135623730951},"774":{"tf":1.0},"778":{"tf":1.0},"799":{"tf":1.4142135623730951},"800":{"tf":2.449489742783178},"801":{"tf":1.0},"802":{"tf":1.7320508075688772},"803":{"tf":1.7320508075688772},"804":{"tf":2.449489742783178},"805":{"tf":1.0},"806":{"tf":1.7320508075688772},"807":{"tf":1.7320508075688772},"808":{"tf":2.0},"809":{"tf":2.0},"81":{"tf":2.23606797749979},"810":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"813":{"tf":1.4142135623730951},"814":{"tf":1.0},"815":{"tf":1.0},"816":{"tf":1.7320508075688772},"817":{"tf":1.7320508075688772},"818":{"tf":2.23606797749979},"819":{"tf":2.0},"820":{"tf":2.0},"821":{"tf":1.7320508075688772},"822":{"tf":2.0},"823":{"tf":1.4142135623730951},"824":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"827":{"tf":1.0},"828":{"tf":1.0},"852":{"tf":1.4142135623730951},"856":{"tf":1.0},"857":{"tf":1.4142135623730951},"86":{"tf":1.7320508075688772},"862":{"tf":1.0},"863":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"87":{"tf":1.4142135623730951},"871":{"tf":2.0},"872":{"tf":1.0},"873":{"tf":1.0},"88":{"tf":2.0},"886":{"tf":1.0}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"420":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"1218":{"tf":1.0}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"347":{"tf":1.0}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"87":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"420":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":2,"docs":{"31":{"tf":2.0},"726":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"1336":{"tf":1.0},"1403":{"tf":1.0},"1437":{"tf":1.0},"901":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"766":{"tf":1.0},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}},"m":{"df":0,"docs":{},"p":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"(":{")":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"(":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1161":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":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":{"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1392":{"tf":1.0}}}},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"(":{")":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":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":{"1140":{"tf":1.4142135623730951},"1161":{"tf":1.0},"1369":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1161":{"tf":1.4142135623730951},"1369":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},":":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1161":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"1174":{"tf":1.0},"1195":{"tf":1.0},"72":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":10,"docs":{"1088":{"tf":1.0},"1140":{"tf":1.0},"1145":{"tf":1.0},"1161":{"tf":1.0},"1168":{"tf":1.0},"1392":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"519":{"tf":1.0},"696":{"tf":1.0}}}}},"df":1,"docs":{"931":{"tf":1.0}}}}}},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"1":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"1404":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1404":{"tf":2.449489742783178}}}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":4.69041575982343}}},"df":0,"docs":{}}},"df":1,"docs":{"1404":{"tf":4.123105625617661}},"m":{"a":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"m":{"df":28,"docs":{"1032":{"tf":1.0},"1042":{"tf":1.0},"1130":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"1384":{"tf":1.7320508075688772},"1399":{"tf":1.4142135623730951},"217":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"30":{"tf":1.0},"406":{"tf":1.0},"523":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"640":{"tf":1.0},"700":{"tf":1.0},"759":{"tf":1.0},"785":{"tf":1.0},"804":{"tf":1.0},"855":{"tf":1.0},"856":{"tf":1.0},"860":{"tf":1.4142135623730951},"883":{"tf":1.0},"884":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"758":{"tf":1.0},"759":{"tf":1.0},"766":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"(":{"'":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"1140":{"tf":1.0},"1369":{"tf":1.0}}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1148":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"1151":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1369":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},".":{"df":0,"docs":{},"j":{"df":1,"docs":{"327":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1343":{"tf":1.0},"1500":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"555":{"tf":1.4142135623730951}}}}},"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"976":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"506":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"348":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1140":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1169":{"tf":1.0}}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":4,"docs":{"1140":{"tf":1.0},"1142":{"tf":1.7320508075688772},"1143":{"tf":1.4142135623730951},"1169":{"tf":1.0}},"s":{"(":{"df":0,"docs":{},"{":{"'":{"a":{"df":1,"docs":{"1170":{"tf":1.4142135623730951}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"1171":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"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":{},"o":{"a":{"d":{"(":{"'":{".":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1143":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"1146":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1171":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"1142":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1146":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1142":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"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":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1143":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"684":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1140":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"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":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"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":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"d":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1169":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"574":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"1139":{"tf":1.0},"1158":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"_":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"1148":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1139":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1146":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"588":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1170":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1142":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1146":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1171":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"1149":{"tf":1.0}}}}},"df":0,"docs":{}},"df":1,"docs":{"1149":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"1078":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"1392":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}}},"df":91,"docs":{"1012":{"tf":1.0},"1033":{"tf":1.0},"1060":{"tf":1.0},"1078":{"tf":1.7320508075688772},"1088":{"tf":1.0},"1089":{"tf":1.0},"1137":{"tf":2.449489742783178},"1138":{"tf":1.7320508075688772},"1139":{"tf":2.23606797749979},"1140":{"tf":3.605551275463989},"1141":{"tf":1.7320508075688772},"1142":{"tf":2.8284271247461903},"1143":{"tf":2.449489742783178},"1144":{"tf":1.4142135623730951},"1145":{"tf":1.7320508075688772},"1146":{"tf":2.0},"1147":{"tf":1.7320508075688772},"1148":{"tf":2.6457513110645907},"1149":{"tf":2.23606797749979},"1150":{"tf":1.0},"1151":{"tf":2.8284271247461903},"1152":{"tf":1.7320508075688772},"1153":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1155":{"tf":1.7320508075688772},"1156":{"tf":1.7320508075688772},"1157":{"tf":1.0},"1158":{"tf":2.6457513110645907},"1159":{"tf":2.0},"1160":{"tf":2.23606797749979},"1161":{"tf":3.1622776601683795},"1162":{"tf":2.0},"1163":{"tf":2.23606797749979},"1164":{"tf":1.4142135623730951},"1165":{"tf":1.0},"1166":{"tf":1.4142135623730951},"1167":{"tf":1.0},"1168":{"tf":2.449489742783178},"1169":{"tf":2.449489742783178},"1170":{"tf":1.7320508075688772},"1171":{"tf":2.23606797749979},"1172":{"tf":1.4142135623730951},"1210":{"tf":1.4142135623730951},"1219":{"tf":1.4142135623730951},"1289":{"tf":1.4142135623730951},"1290":{"tf":1.7320508075688772},"1316":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1367":{"tf":1.0},"1368":{"tf":1.4142135623730951},"1369":{"tf":2.6457513110645907},"1391":{"tf":1.4142135623730951},"1392":{"tf":2.23606797749979},"1394":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1500":{"tf":2.0},"1529":{"tf":1.4142135623730951},"302":{"tf":1.0},"312":{"tf":1.4142135623730951},"327":{"tf":1.7320508075688772},"340":{"tf":1.4142135623730951},"348":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"504":{"tf":1.4142135623730951},"505":{"tf":1.7320508075688772},"506":{"tf":2.449489742783178},"545":{"tf":1.4142135623730951},"546":{"tf":1.0},"555":{"tf":1.7320508075688772},"567":{"tf":1.4142135623730951},"574":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":2.23606797749979},"618":{"tf":1.0},"653":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"678":{"tf":1.0},"683":{"tf":1.4142135623730951},"684":{"tf":2.0},"723":{"tf":1.0},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0},"911":{"tf":1.0},"930":{"tf":1.4142135623730951},"96":{"tf":1.7320508075688772},"968":{"tf":1.0},"979":{"tf":1.0}},"j":{"a":{"c":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"588":{"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":{},"s":{"df":0,"docs":{},"s":{"1":{"2":{"3":{"df":1,"docs":{"1145":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1369":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"1392":{"tf":1.0},"588":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"x":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"836":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":16,"docs":{"1148":{"tf":1.4142135623730951},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1279":{"tf":1.4142135623730951},"1290":{"tf":1.4142135623730951},"1356":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.0},"442":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.0},"505":{"tf":1.4142135623730951},"845":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":29,"docs":{"1080":{"tf":1.4142135623730951},"1081":{"tf":2.23606797749979},"1148":{"tf":1.0},"1179":{"tf":1.4142135623730951},"1267":{"tf":1.0},"1279":{"tf":1.0},"1287":{"tf":1.0},"1296":{"tf":1.0},"1297":{"tf":1.7320508075688772},"1306":{"tf":2.449489742783178},"1310":{"tf":2.0},"1358":{"tf":2.23606797749979},"1401":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"235":{"tf":1.0},"383":{"tf":1.4142135623730951},"426":{"tf":1.4142135623730951},"442":{"tf":2.23606797749979},"483":{"tf":1.0},"494":{"tf":1.0},"501":{"tf":1.0},"510":{"tf":1.0},"666":{"tf":1.7320508075688772},"667":{"tf":1.0},"684":{"tf":1.0},"759":{"tf":1.4142135623730951},"782":{"tf":1.0},"789":{"tf":1.0},"956":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"845":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"83":{"tf":1.0}}}},"s":{".":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1365":{"tf":1.0}}}}}},"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":{},"o":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":2,"docs":{"1365":{"tf":1.0},"1403":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"s":{"[":{"0":{"df":1,"docs":{"1399":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1399":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1403":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1367":{"tf":1.0}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1301":{"tf":1.0},"1365":{"tf":1.0},"1403":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"1365":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"b":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"1306":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1367":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"1306":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"(":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"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":{}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1152":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":1,"docs":{"1152":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"1367":{"tf":1.0},"498":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"506":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}},"s":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"(":{".":{".":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1307":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"(":{"`":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{":":{"$":{"df":0,"docs":{},"{":{"d":{"df":0,"docs":{},"o":{"c":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"}":{":":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1307":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1307":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"498":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"1307":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"_":{"df":0,"docs":{},"i":{"d":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":1,"docs":{"884":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":15,"docs":{"287":{"tf":2.0},"47":{"tf":1.0},"726":{"tf":3.0},"747":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"875":{"tf":1.0},"876":{"tf":1.4142135623730951},"880":{"tf":1.4142135623730951},"881":{"tf":2.0},"884":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951}},"i":{"d":{"df":3,"docs":{"880":{"tf":1.0},"881":{"tf":2.0},"883":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"(":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"726":{"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{},"t":{"df":3,"docs":{"1014":{"tf":1.0},"917":{"tf":1.4142135623730951},"918":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":2,"docs":{"3":{"tf":1.0},"68":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":15,"docs":{"1177":{"tf":1.0},"1212":{"tf":1.0},"1438":{"tf":1.0},"1449":{"tf":1.0},"199":{"tf":1.0},"24":{"tf":1.4142135623730951},"302":{"tf":1.0},"311":{"tf":1.0},"424":{"tf":1.0},"59":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"898":{"tf":1.0},"918":{"tf":1.0},"951":{"tf":1.0}}}}},"w":{"df":20,"docs":{"1281":{"tf":1.0},"1313":{"tf":1.0},"1356":{"tf":1.0},"1367":{"tf":2.0},"1399":{"tf":2.23606797749979},"364":{"tf":1.0},"365":{"tf":1.0},"366":{"tf":1.0},"367":{"tf":1.0},"370":{"tf":1.0},"371":{"tf":1.0},"372":{"tf":1.0},"376":{"tf":1.0},"382":{"tf":1.0},"384":{"tf":1.0},"459":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"546":{"tf":1.0},"618":{"tf":1.0}}}}}},"i":{"d":{"df":1,"docs":{"884":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1102":{"tf":1.0},"758":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":32,"docs":{"1011":{"tf":1.0},"1042":{"tf":1.0},"1077":{"tf":1.0},"1078":{"tf":1.4142135623730951},"1087":{"tf":1.0},"1124":{"tf":1.0},"1131":{"tf":1.0},"1215":{"tf":1.0},"129":{"tf":1.0},"1296":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1320":{"tf":1.4142135623730951},"1342":{"tf":1.0},"1477":{"tf":1.4142135623730951},"1522":{"tf":1.0},"234":{"tf":1.0},"37":{"tf":1.0},"745":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"785":{"tf":1.0},"808":{"tf":1.4142135623730951},"811":{"tf":1.0},"838":{"tf":1.0},"856":{"tf":1.4142135623730951},"869":{"tf":1.0},"925":{"tf":1.0},"935":{"tf":1.0},"953":{"tf":1.0},"973":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0},"221":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"1084":{"tf":1.0},"1200":{"tf":1.0},"1477":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":49,"docs":{"1097":{"tf":1.0},"1124":{"tf":1.4142135623730951},"1131":{"tf":1.4142135623730951},"1166":{"tf":1.0},"1245":{"tf":1.0},"1255":{"tf":1.0},"1288":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1324":{"tf":1.0},"1355":{"tf":1.0},"1401":{"tf":1.0},"1403":{"tf":2.23606797749979},"1405":{"tf":1.4142135623730951},"1422":{"tf":1.0},"1522":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"379":{"tf":1.4142135623730951},"380":{"tf":1.0},"414":{"tf":1.0},"458":{"tf":1.0},"46":{"tf":1.7320508075688772},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"489":{"tf":1.7320508075688772},"493":{"tf":1.0},"502":{"tf":1.0},"528":{"tf":1.0},"61":{"tf":1.0},"612":{"tf":1.4142135623730951},"613":{"tf":1.0},"648":{"tf":1.0},"705":{"tf":1.0},"744":{"tf":1.4142135623730951},"756":{"tf":1.4142135623730951},"779":{"tf":1.4142135623730951},"782":{"tf":1.0},"915":{"tf":1.0},"918":{"tf":1.4142135623730951},"931":{"tf":1.7320508075688772},"932":{"tf":2.23606797749979},"934":{"tf":1.0},"935":{"tf":1.0},"954":{"tf":1.0},"956":{"tf":1.0},"969":{"tf":1.0}},"t":{"df":0,"docs":{},"z":{"df":1,"docs":{"1081":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"l":{"df":58,"docs":{"1063":{"tf":1.0},"1072":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1129":{"tf":1.0},"1130":{"tf":1.0},"1131":{"tf":1.0},"1140":{"tf":1.4142135623730951},"1149":{"tf":1.0},"1310":{"tf":1.0},"1325":{"tf":1.4142135623730951},"1328":{"tf":1.0},"1351":{"tf":1.0},"1353":{"tf":1.0},"1361":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1369":{"tf":2.0},"1374":{"tf":1.0},"1376":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.0},"1392":{"tf":2.0},"1394":{"tf":1.0},"176":{"tf":1.0},"180":{"tf":1.4142135623730951},"276":{"tf":1.0},"288":{"tf":1.0},"349":{"tf":1.0},"391":{"tf":1.0},"400":{"tf":1.0},"420":{"tf":1.0},"45":{"tf":1.4142135623730951},"49":{"tf":1.0},"507":{"tf":1.4142135623730951},"519":{"tf":1.4142135623730951},"522":{"tf":1.4142135623730951},"53":{"tf":1.0},"576":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.4142135623730951},"625":{"tf":1.0},"634":{"tf":1.0},"654":{"tf":1.0},"656":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.4142135623730951},"742":{"tf":1.0},"752":{"tf":1.0},"77":{"tf":1.0},"791":{"tf":1.4142135623730951},"794":{"tf":1.4142135623730951},"797":{"tf":1.0},"803":{"tf":1.0},"81":{"tf":1.0},"832":{"tf":1.0},"88":{"tf":1.4142135623730951},"921":{"tf":1.0}}}}},"l":{"df":12,"docs":{"1051":{"tf":1.0},"1203":{"tf":1.4142135623730951},"1284":{"tf":1.4142135623730951},"681":{"tf":1.0},"918":{"tf":1.0},"927":{"tf":1.7320508075688772},"928":{"tf":1.4142135623730951},"929":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"964":{"tf":1.0},"969":{"tf":1.0}}},"m":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1145":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"'":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1310":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"850":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"732":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":22,"docs":{"732":{"tf":1.0},"733":{"tf":1.0},"747":{"tf":1.0},"852":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"862":{"tf":1.0},"863":{"tf":2.0},"864":{"tf":1.4142135623730951},"865":{"tf":1.4142135623730951},"866":{"tf":1.4142135623730951},"867":{"tf":1.7320508075688772},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.4142135623730951},"871":{"tf":1.0},"872":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.4142135623730951},"875":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"864":{"tf":1.0},"867":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"39":{"tf":1.0},"995":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"1437":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1442":{"tf":2.0},"1445":{"tf":1.0},"816":{"tf":1.0},"899":{"tf":1.0}}}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"1084":{"tf":1.0},"1087":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"934":{"tf":1.0},"935":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":50,"docs":{"1":{"tf":1.0},"1148":{"tf":1.0},"1165":{"tf":1.4142135623730951},"1174":{"tf":1.4142135623730951},"1179":{"tf":1.0},"1182":{"tf":1.0},"1185":{"tf":2.0},"1191":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1195":{"tf":1.0},"1197":{"tf":1.0},"1206":{"tf":1.0},"1207":{"tf":1.7320508075688772},"1208":{"tf":1.7320508075688772},"1209":{"tf":2.0},"1236":{"tf":1.7320508075688772},"1358":{"tf":1.0},"1359":{"tf":2.0},"1381":{"tf":1.0},"1382":{"tf":1.4142135623730951},"1400":{"tf":1.7320508075688772},"1401":{"tf":1.4142135623730951},"17":{"tf":1.0},"246":{"tf":1.0},"359":{"tf":1.4142135623730951},"383":{"tf":1.4142135623730951},"4":{"tf":1.0},"423":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":2.23606797749979},"433":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":2.449489742783178},"446":{"tf":1.0},"586":{"tf":1.4142135623730951},"593":{"tf":1.4142135623730951},"617":{"tf":1.0},"663":{"tf":1.0},"667":{"tf":1.0},"675":{"tf":1.0},"684":{"tf":1.7320508075688772},"733":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.4142135623730951},"810":{"tf":1.0},"811":{"tf":1.4142135623730951},"847":{"tf":2.0},"848":{"tf":1.0},"849":{"tf":1.0},"916":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"(":{"df":0,"docs":{},"t":{"df":3,"docs":{"1359":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"/":{"c":{"a":{"df":0,"docs":{},"l":{"df":6,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"439":{"tf":1.0},"676":{"tf":1.0},"713":{"tf":1.0},"956":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"320":{"tf":1.0}}},"df":0,"docs":{}},"k":{"8":{"df":1,"docs":{"1520":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1112":{"tf":2.0},"1126":{"tf":1.0},"1127":{"tf":1.0}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":2,"docs":{"1330":{"tf":1.0},"1399":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"21":{"tf":1.0},"925":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":30,"docs":{"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1441":{"tf":3.605551275463989},"1445":{"tf":1.0},"1509":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"291":{"tf":1.4142135623730951},"292":{"tf":1.4142135623730951},"294":{"tf":1.0},"295":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"305":{"tf":1.4142135623730951},"306":{"tf":2.0},"307":{"tf":1.4142135623730951},"308":{"tf":1.4142135623730951},"309":{"tf":1.4142135623730951},"310":{"tf":1.0},"311":{"tf":1.0},"314":{"tf":1.0},"315":{"tf":1.0},"319":{"tf":2.0},"898":{"tf":1.0},"899":{"tf":1.0},"901":{"tf":2.23606797749979},"902":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{":":{":":{"df":0,"docs":{},"{":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"299":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":1,"docs":{"309":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{":":{":":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"307":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":1,"docs":{"307":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"306":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"k":{"df":32,"docs":{"1094":{"tf":1.0},"1263":{"tf":1.0},"1403":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"196":{"tf":1.0},"199":{"tf":1.0},"209":{"tf":1.4142135623730951},"213":{"tf":1.0},"23":{"tf":1.0},"29":{"tf":1.0},"30":{"tf":1.0},"34":{"tf":1.0},"37":{"tf":1.0},"445":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"64":{"tf":1.0},"747":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0},"837":{"tf":1.7320508075688772},"850":{"tf":1.0},"862":{"tf":1.0},"873":{"tf":1.0},"876":{"tf":1.0},"885":{"tf":1.0},"886":{"tf":1.0},"914":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"21":{"tf":1.0},"36":{"tf":1.0},"57":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"423":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1403":{"tf":1.0}}}},"df":21,"docs":{"1":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.0},"1263":{"tf":1.0},"1314":{"tf":1.0},"1403":{"tf":2.8284271247461903},"2":{"tf":1.0},"21":{"tf":1.4142135623730951},"213":{"tf":1.0},"36":{"tf":1.0},"37":{"tf":1.0},"423":{"tf":1.0},"60":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"861":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"942":{"tf":1.0},"988":{"tf":1.0},"995":{"tf":1.0}}},"t":{"df":2,"docs":{"1161":{"tf":1.0},"268":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"37":{"tf":1.0},"382":{"tf":1.7320508075688772},"616":{"tf":1.7320508075688772}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1124":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1124":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1102":{"tf":1.0},"365":{"tf":1.0},"599":{"tf":1.0},"65":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":14,"docs":{"1007":{"tf":1.0},"1010":{"tf":1.0},"1015":{"tf":1.0},"1034":{"tf":1.0},"1035":{"tf":1.0},"1038":{"tf":1.0},"1050":{"tf":1.0},"249":{"tf":1.0},"805":{"tf":1.4142135623730951},"959":{"tf":1.0},"960":{"tf":1.0},"984":{"tf":1.0},"994":{"tf":1.0},"995":{"tf":1.7320508075688772}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"16":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"423":{"tf":1.0},"664":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":32,"docs":{"1051":{"tf":1.0},"1152":{"tf":2.23606797749979},"1174":{"tf":1.0},"1176":{"tf":2.0},"1179":{"tf":1.0},"1182":{"tf":1.7320508075688772},"1190":{"tf":1.4142135623730951},"1203":{"tf":1.4142135623730951},"1358":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1524":{"tf":1.4142135623730951},"422":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.7320508075688772},"430":{"tf":1.4142135623730951},"432":{"tf":1.4142135623730951},"433":{"tf":1.7320508075688772},"434":{"tf":1.4142135623730951},"439":{"tf":1.0},"440":{"tf":1.0},"442":{"tf":1.0},"450":{"tf":1.0},"541":{"tf":1.7320508075688772},"542":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"65":{"tf":1.4142135623730951},"664":{"tf":1.4142135623730951},"681":{"tf":1.0},"964":{"tf":1.7320508075688772},"969":{"tf":1.0}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"98":{"tf":1.0}}},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"911":{"tf":1.0},"950":{"tf":2.23606797749979}}}}}}},"df":1,"docs":{"1330":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"940":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":37,"docs":{"1126":{"tf":1.0},"1127":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1355":{"tf":1.0},"1367":{"tf":2.23606797749979},"1378":{"tf":1.7320508075688772},"1390":{"tf":1.4142135623730951},"1394":{"tf":2.23606797749979},"1401":{"tf":2.23606797749979},"1402":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1405":{"tf":1.0},"1477":{"tf":1.0},"327":{"tf":1.0},"384":{"tf":1.7320508075688772},"419":{"tf":1.7320508075688772},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"555":{"tf":1.0},"618":{"tf":1.7320508075688772},"653":{"tf":1.7320508075688772},"667":{"tf":1.0},"67":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"949":{"tf":1.0},"976":{"tf":1.0},"992":{"tf":1.0}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1310":{"tf":1.7320508075688772},"833":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"1163":{"tf":1.0}}}},"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":10,"docs":{"114":{"tf":1.4142135623730951},"1220":{"tf":1.4142135623730951},"1257":{"tf":1.4142135623730951},"1291":{"tf":1.4142135623730951},"1527":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951},"316":{"tf":1.4142135623730951},"508":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":2,"docs":{"134":{"tf":1.0},"135":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":123,"docs":{"1088":{"tf":1.4142135623730951},"112":{"tf":1.0},"1121":{"tf":1.0},"1129":{"tf":1.0},"113":{"tf":1.0},"1140":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":2.23606797749979},"1151":{"tf":2.0},"1226":{"tf":1.0},"1248":{"tf":1.0},"127":{"tf":1.4142135623730951},"1293":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":3.0},"1323":{"tf":1.0},"1332":{"tf":1.0},"134":{"tf":1.0},"1342":{"tf":1.0},"1355":{"tf":1.0},"1365":{"tf":1.0},"1369":{"tf":1.0},"1378":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1401":{"tf":1.4142135623730951},"1402":{"tf":1.4142135623730951},"1403":{"tf":1.0},"1404":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1425":{"tf":1.0},"1426":{"tf":1.0},"1437":{"tf":2.0},"1441":{"tf":1.0},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.7320508075688772},"1446":{"tf":1.4142135623730951},"1464":{"tf":1.0},"1465":{"tf":1.0},"150":{"tf":1.0},"1500":{"tf":1.0},"1507":{"tf":1.0},"1509":{"tf":1.0},"151":{"tf":1.0},"1515":{"tf":1.0},"1529":{"tf":1.0},"160":{"tf":1.0},"185":{"tf":1.0},"255":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"284":{"tf":1.4142135623730951},"295":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.4142135623730951},"308":{"tf":1.0},"310":{"tf":2.0},"314":{"tf":1.0},"315":{"tf":2.0},"317":{"tf":1.0},"318":{"tf":1.0},"354":{"tf":1.4142135623730951},"366":{"tf":1.4142135623730951},"371":{"tf":1.4142135623730951},"380":{"tf":1.0},"381":{"tf":1.0},"382":{"tf":1.0},"394":{"tf":1.4142135623730951},"395":{"tf":1.0},"401":{"tf":1.0},"463":{"tf":1.0},"469":{"tf":1.0},"489":{"tf":1.0},"490":{"tf":1.0},"495":{"tf":1.0},"498":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":2.449489742783178},"520":{"tf":1.0},"521":{"tf":1.0},"522":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"600":{"tf":1.0},"605":{"tf":1.0},"613":{"tf":1.0},"614":{"tf":1.0},"628":{"tf":1.4142135623730951},"629":{"tf":1.0},"635":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"699":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"72":{"tf":1.4142135623730951},"761":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0},"8":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":1.4142135623730951},"822":{"tf":1.0},"838":{"tf":1.4142135623730951},"845":{"tf":1.0},"88":{"tf":1.0},"896":{"tf":1.7320508075688772},"897":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.4142135623730951},"902":{"tf":2.23606797749979},"945":{"tf":1.4142135623730951},"946":{"tf":1.7320508075688772},"965":{"tf":1.7320508075688772},"966":{"tf":1.0}}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1448":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":31,"docs":{"1":{"tf":1.0},"1000":{"tf":1.0},"1006":{"tf":1.0},"1052":{"tf":1.0},"11":{"tf":1.0},"1175":{"tf":1.0},"1194":{"tf":1.4142135623730951},"1214":{"tf":1.0},"1436":{"tf":1.0},"20":{"tf":1.0},"205":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"248":{"tf":2.23606797749979},"37":{"tf":1.0},"43":{"tf":1.0},"90":{"tf":1.0},"911":{"tf":1.7320508075688772},"916":{"tf":1.0},"919":{"tf":1.4142135623730951},"94":{"tf":1.0},"947":{"tf":2.0},"948":{"tf":2.0},"949":{"tf":1.7320508075688772},"950":{"tf":2.0},"951":{"tf":2.23606797749979},"969":{"tf":1.0},"970":{"tf":1.0},"983":{"tf":1.0},"992":{"tf":1.4142135623730951},"998":{"tf":2.0}},"e":{"d":{"_":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"999":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1001":{"tf":1.0},"999":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{":":{":":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"1161":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"1161":{"tf":2.449489742783178}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":3,"docs":{"1":{"tf":1.0},"19":{"tf":1.0},"919":{"tf":1.0}}}}}}}}}}},"y":{"/":{"c":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"546":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"723":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"s":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"354":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"129":{"tf":1.7320508075688772},"1307":{"tf":1.0},"1333":{"tf":1.4142135623730951},"234":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.7320508075688772},"374":{"tf":2.0},"607":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":8,"docs":{"1036":{"tf":1.0},"1145":{"tf":2.449489742783178},"1180":{"tf":1.0},"1328":{"tf":1.0},"216":{"tf":1.0},"43":{"tf":1.0},"858":{"tf":1.0},"881":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":28,"docs":{"1003":{"tf":1.7320508075688772},"1235":{"tf":1.0},"1247":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.7320508075688772},"1436":{"tf":1.0},"1474":{"tf":1.4142135623730951},"1475":{"tf":2.0},"1476":{"tf":1.4142135623730951},"230":{"tf":1.0},"231":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.4142135623730951},"237":{"tf":1.0},"238":{"tf":1.0},"246":{"tf":1.4142135623730951},"252":{"tf":1.0},"254":{"tf":1.0},"374":{"tf":1.4142135623730951},"607":{"tf":1.4142135623730951},"763":{"tf":1.0},"896":{"tf":1.0},"939":{"tf":1.0},"944":{"tf":1.0},"976":{"tf":1.0},"977":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":182,"docs":{"1015":{"tf":1.0},"1083":{"tf":2.0},"1084":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1111":{"tf":2.0},"1112":{"tf":3.4641016151377544},"1115":{"tf":1.0},"1116":{"tf":1.7320508075688772},"1117":{"tf":3.1622776601683795},"1119":{"tf":1.7320508075688772},"1120":{"tf":2.23606797749979},"1121":{"tf":1.4142135623730951},"1122":{"tf":1.4142135623730951},"1124":{"tf":2.6457513110645907},"1129":{"tf":3.0},"1130":{"tf":3.3166247903554},"1131":{"tf":3.0},"1134":{"tf":1.0},"1148":{"tf":1.7320508075688772},"1154":{"tf":1.0},"1179":{"tf":1.0},"1227":{"tf":1.0},"1267":{"tf":1.0},"1271":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.4142135623730951},"1279":{"tf":2.23606797749979},"1286":{"tf":1.4142135623730951},"1287":{"tf":1.0},"1288":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1297":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.0},"1304":{"tf":2.6457513110645907},"1305":{"tf":1.4142135623730951},"1323":{"tf":1.0},"1328":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1356":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1365":{"tf":1.0},"1379":{"tf":1.0},"1384":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.0},"1394":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":3.0},"1403":{"tf":2.23606797749979},"1404":{"tf":1.7320508075688772},"1405":{"tf":1.4142135623730951},"1432":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1439":{"tf":2.23606797749979},"1440":{"tf":2.23606797749979},"1441":{"tf":1.7320508075688772},"1444":{"tf":1.4142135623730951},"1445":{"tf":1.4142135623730951},"1446":{"tf":1.4142135623730951},"152":{"tf":2.0},"1526":{"tf":1.0},"174":{"tf":1.0},"181":{"tf":1.0},"195":{"tf":1.4142135623730951},"221":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"289":{"tf":1.0},"29":{"tf":1.0},"348":{"tf":1.0},"372":{"tf":1.0},"377":{"tf":1.4142135623730951},"381":{"tf":1.0},"382":{"tf":1.0},"383":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.4142135623730951},"458":{"tf":1.0},"459":{"tf":1.0},"46":{"tf":1.0},"461":{"tf":1.0},"463":{"tf":1.0},"47":{"tf":1.4142135623730951},"473":{"tf":1.0},"474":{"tf":1.0},"476":{"tf":1.7320508075688772},"479":{"tf":1.4142135623730951},"483":{"tf":1.0},"486":{"tf":1.0},"487":{"tf":1.4142135623730951},"497":{"tf":1.0},"498":{"tf":1.4142135623730951},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"503":{"tf":1.0},"505":{"tf":1.4142135623730951},"507":{"tf":1.0},"509":{"tf":1.4142135623730951},"51":{"tf":1.0},"510":{"tf":1.0},"538":{"tf":1.0},"544":{"tf":1.0},"55":{"tf":1.4142135623730951},"587":{"tf":1.4142135623730951},"606":{"tf":1.0},"610":{"tf":1.7320508075688772},"614":{"tf":1.0},"616":{"tf":1.0},"72":{"tf":1.0},"722":{"tf":1.0},"725":{"tf":1.7320508075688772},"741":{"tf":1.7320508075688772},"742":{"tf":3.0},"744":{"tf":1.0},"748":{"tf":1.0},"751":{"tf":1.0},"752":{"tf":1.0},"753":{"tf":2.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.4142135623730951},"76":{"tf":1.0},"760":{"tf":1.7320508075688772},"762":{"tf":1.0},"769":{"tf":1.0},"770":{"tf":1.0},"774":{"tf":1.0},"778":{"tf":1.4142135623730951},"779":{"tf":1.0},"782":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.4142135623730951},"790":{"tf":1.0},"80":{"tf":1.0},"803":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"831":{"tf":1.0},"832":{"tf":1.4142135623730951},"833":{"tf":1.7320508075688772},"835":{"tf":1.4142135623730951},"836":{"tf":1.4142135623730951},"838":{"tf":1.0},"843":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"857":{"tf":1.0},"864":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"870":{"tf":1.0},"877":{"tf":1.0},"879":{"tf":1.0},"880":{"tf":1.0},"885":{"tf":1.0},"890":{"tf":1.0},"899":{"tf":2.23606797749979},"900":{"tf":2.23606797749979},"901":{"tf":1.0},"902":{"tf":1.4142135623730951},"954":{"tf":1.0},"959":{"tf":1.0},"976":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.7320508075688772},"354":{"tf":1.7320508075688772},"544":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"i":{"c":{"df":1,"docs":{"1410":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"1158":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1489":{"tf":1.0},"151":{"tf":1.0},"49":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1401":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"171":{"tf":1.0},"249":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"110":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"1038":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1526":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":9,"docs":{"1292":{"tf":1.0},"1358":{"tf":1.0},"1381":{"tf":1.0},"332":{"tf":2.23606797749979},"418":{"tf":2.23606797749979},"490":{"tf":1.0},"509":{"tf":1.0},"536":{"tf":2.23606797749979},"544":{"tf":1.0}}}}},"r":{"df":4,"docs":{"357":{"tf":1.0},"591":{"tf":1.0},"68":{"tf":1.0},"869":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":4,"docs":{"1176":{"tf":1.0},"424":{"tf":1.0},"430":{"tf":1.0},"542":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"1194":{"tf":1.4142135623730951},"1345":{"tf":1.4142135623730951},"18":{"tf":1.0},"23":{"tf":1.0},"39":{"tf":1.0},"67":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"855":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"916":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"353":{"tf":1.0},"583":{"tf":1.0},"585":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":20,"docs":{"1111":{"tf":1.0},"1186":{"tf":1.0},"1304":{"tf":1.0},"147":{"tf":1.0},"174":{"tf":1.0},"27":{"tf":1.0},"445":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"51":{"tf":1.0},"59":{"tf":1.0},"742":{"tf":1.0},"744":{"tf":1.0},"751":{"tf":1.0},"756":{"tf":1.0},"776":{"tf":1.4142135623730951},"778":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.4142135623730951},"968":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"1300":{"tf":1.0},"1522":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"1121":{"tf":1.0}}}}}}}}},"t":{"/":{"df":0,"docs":{},"v":{"1":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"733":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":12,"docs":{"1131":{"tf":1.0},"1137":{"tf":1.0},"1141":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1452":{"tf":1.0},"505":{"tf":1.4142135623730951},"684":{"tf":1.4142135623730951},"733":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":2.23606797749979},"816":{"tf":1.7320508075688772},"818":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"1399":{"tf":1.0},"742":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"588":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1151":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"588":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.4142135623730951},"25":{"tf":1.0},"66":{"tf":1.0},"90":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":6,"docs":{"1345":{"tf":1.0},"1355":{"tf":1.0},"1472":{"tf":2.0},"202":{"tf":1.4142135623730951},"249":{"tf":1.0},"473":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":1,"docs":{"13":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"939":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"1219":{"tf":1.0}}}}}}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"1161":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":7,"docs":{"1144":{"tf":1.0},"1194":{"tf":1.0},"1290":{"tf":1.0},"1470":{"tf":1.0},"494":{"tf":1.4142135623730951},"505":{"tf":1.0},"837":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1458":{"tf":1.0}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1472":{"tf":1.0}}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1144":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"949":{"tf":1.0},"950":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"1166":{"tf":1.0},"911":{"tf":1.0},"949":{"tf":1.4142135623730951}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":7,"docs":{"1214":{"tf":1.0},"1220":{"tf":1.0},"937":{"tf":1.0},"940":{"tf":1.0},"976":{"tf":2.23606797749979},"977":{"tf":1.0},"978":{"tf":1.0}}}}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"860":{"tf":1.0},"884":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"p":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"1011":{"tf":1.0}}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":82,"docs":{"1006":{"tf":1.0},"101":{"tf":1.4142135623730951},"1012":{"tf":1.0},"1047":{"tf":1.4142135623730951},"1082":{"tf":1.0},"1135":{"tf":1.0},"115":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1209":{"tf":1.0},"1301":{"tf":1.4142135623730951},"1302":{"tf":1.4142135623730951},"1310":{"tf":1.4142135623730951},"1315":{"tf":1.0},"1325":{"tf":2.449489742783178},"135":{"tf":2.449489742783178},"1353":{"tf":2.0},"1376":{"tf":2.0},"1403":{"tf":2.449489742783178},"1420":{"tf":2.8284271247461903},"1425":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1467":{"tf":1.0},"1482":{"tf":1.4142135623730951},"1510":{"tf":1.7320508075688772},"1512":{"tf":1.0},"1513":{"tf":1.0},"1515":{"tf":1.0},"1520":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"166":{"tf":1.7320508075688772},"169":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"192":{"tf":2.23606797749979},"193":{"tf":1.7320508075688772},"209":{"tf":2.0},"249":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.7320508075688772},"271":{"tf":1.7320508075688772},"370":{"tf":2.23606797749979},"371":{"tf":2.449489742783178},"382":{"tf":1.4142135623730951},"399":{"tf":1.4142135623730951},"400":{"tf":1.7320508075688772},"401":{"tf":1.4142135623730951},"41":{"tf":1.0},"411":{"tf":2.23606797749979},"42":{"tf":1.0},"46":{"tf":1.0},"522":{"tf":2.0},"532":{"tf":1.7320508075688772},"55":{"tf":1.0},"585":{"tf":1.0},"59":{"tf":1.0},"604":{"tf":2.23606797749979},"605":{"tf":2.449489742783178},"61":{"tf":1.0},"616":{"tf":1.4142135623730951},"633":{"tf":1.4142135623730951},"634":{"tf":1.7320508075688772},"635":{"tf":1.4142135623730951},"645":{"tf":2.23606797749979},"657":{"tf":1.4142135623730951},"699":{"tf":2.0},"709":{"tf":1.7320508075688772},"780":{"tf":1.4142135623730951},"796":{"tf":2.449489742783178},"823":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"847":{"tf":1.0},"860":{"tf":1.0},"861":{"tf":1.4142135623730951},"874":{"tf":1.0},"926":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":1.0},"978":{"tf":1.0},"987":{"tf":1.0},"994":{"tf":1.4142135623730951}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"860":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1376":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1376":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1310":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"(":{"&":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"873":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{".":{"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"1325":{"tf":1.4142135623730951},"135":{"tf":1.7320508075688772},"1420":{"tf":1.0}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"616":{"tf":1.0},"709":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"645":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"1300":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"634":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":4,"docs":{"1376":{"tf":1.0},"271":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0}},"u":{"df":2,"docs":{"634":{"tf":1.4142135623730951},"635":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"382":{"tf":1.0},"532":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"411":{"tf":1.0}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"400":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":3,"docs":{"1353":{"tf":1.0},"1403":{"tf":1.0},"522":{"tf":1.0}},"u":{"df":2,"docs":{"400":{"tf":1.4142135623730951},"401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1353":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1353":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":27,"docs":{"1001":{"tf":1.4142135623730951},"1140":{"tf":1.0},"1148":{"tf":1.0},"1168":{"tf":1.0},"1233":{"tf":1.0},"1258":{"tf":1.0},"130":{"tf":1.0},"1333":{"tf":1.0},"1410":{"tf":1.0},"143":{"tf":1.0},"1474":{"tf":1.0},"1475":{"tf":1.0},"1505":{"tf":1.0},"18":{"tf":1.0},"237":{"tf":1.4142135623730951},"238":{"tf":1.4142135623730951},"239":{"tf":1.4142135623730951},"241":{"tf":1.7320508075688772},"252":{"tf":1.0},"256":{"tf":1.0},"283":{"tf":1.0},"294":{"tf":1.0},"68":{"tf":1.0},"773":{"tf":1.0},"976":{"tf":1.0},"991":{"tf":1.0},"997":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":8,"docs":{"1010":{"tf":1.0},"1505":{"tf":1.0},"1510":{"tf":1.0},"585":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"978":{"tf":1.7320508075688772},"984":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":3,"docs":{"1154":{"tf":1.0},"1158":{"tf":1.0},"1512":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1328":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}}}}},"df":4,"docs":{"1358":{"tf":1.4142135623730951},"442":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"836":{"tf":1.0}}},"l":{"df":12,"docs":{"1274":{"tf":1.0},"1379":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1491":{"tf":1.0},"262":{"tf":1.0},"46":{"tf":1.0},"687":{"tf":1.4142135623730951},"719":{"tf":1.4142135623730951},"734":{"tf":1.4142135623730951},"744":{"tf":1.0},"759":{"tf":1.4142135623730951},"778":{"tf":1.0}}}},"s":{"a":{"df":2,"docs":{"761":{"tf":1.0},"767":{"tf":1.0}},"g":{"df":144,"docs":{"107":{"tf":1.0},"1161":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.7320508075688772},"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},"1256":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"1346":{"tf":1.0},"1347":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1356":{"tf":1.0},"136":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"1399":{"tf":1.0},"140":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1419":{"tf":1.0},"142":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1423":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"1501":{"tf":1.0},"287":{"tf":1.0},"355":{"tf":1.0},"385":{"tf":1.4142135623730951},"386":{"tf":1.7320508075688772},"387":{"tf":1.0},"388":{"tf":1.0},"389":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"392":{"tf":1.0},"393":{"tf":1.0},"394":{"tf":1.0},"395":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"409":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"415":{"tf":1.0},"416":{"tf":1.0},"417":{"tf":1.0},"418":{"tf":1.0},"419":{"tf":1.0},"420":{"tf":1.0},"421":{"tf":1.0},"458":{"tf":1.4142135623730951},"459":{"tf":1.0},"500":{"tf":1.0},"547":{"tf":1.4142135623730951},"589":{"tf":1.0},"619":{"tf":1.4142135623730951},"620":{"tf":1.7320508075688772},"621":{"tf":1.0},"622":{"tf":1.0},"623":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"626":{"tf":1.0},"627":{"tf":1.0},"628":{"tf":1.0},"629":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"649":{"tf":1.0},"650":{"tf":1.0},"651":{"tf":1.0},"652":{"tf":1.0},"653":{"tf":1.0},"654":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"658":{"tf":1.0},"659":{"tf":1.0},"660":{"tf":1.0},"661":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.4142135623730951},"727":{"tf":1.4142135623730951},"758":{"tf":1.0},"759":{"tf":1.0}}}},"b":{"df":1,"docs":{"65":{"tf":1.0}}},"d":{"df":7,"docs":{"1111":{"tf":1.0},"198":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0},"742":{"tf":1.4142135623730951},"810":{"tf":1.0},"812":{"tf":1.0}}},"df":281,"docs":{"1000":{"tf":1.0},"1015":{"tf":1.0},"1016":{"tf":1.0},"1017":{"tf":1.4142135623730951},"1020":{"tf":1.4142135623730951},"1021":{"tf":1.0},"1023":{"tf":1.0},"1026":{"tf":1.4142135623730951},"1032":{"tf":1.4142135623730951},"1038":{"tf":1.4142135623730951},"1042":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1046":{"tf":1.0},"1051":{"tf":1.0},"106":{"tf":1.4142135623730951},"1060":{"tf":1.4142135623730951},"1063":{"tf":1.0},"1064":{"tf":1.0},"1068":{"tf":1.4142135623730951},"1076":{"tf":1.4142135623730951},"1080":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1085":{"tf":1.0},"1086":{"tf":1.4142135623730951},"11":{"tf":1.4142135623730951},"1101":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1108":{"tf":1.0},"1111":{"tf":1.0},"1112":{"tf":1.0},"1114":{"tf":1.4142135623730951},"1116":{"tf":1.4142135623730951},"1137":{"tf":1.0},"1145":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"1158":{"tf":1.7320508075688772},"1160":{"tf":1.0},"1161":{"tf":2.23606797749979},"1163":{"tf":1.0},"1168":{"tf":1.4142135623730951},"117":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.0},"1203":{"tf":1.7320508075688772},"1209":{"tf":1.0},"1213":{"tf":1.0},"1214":{"tf":1.0},"1215":{"tf":1.0},"1216":{"tf":1.4142135623730951},"1220":{"tf":1.0},"1222":{"tf":1.0},"1236":{"tf":1.0},"1240":{"tf":1.0},"1253":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"1279":{"tf":1.0},"1284":{"tf":1.7320508075688772},"129":{"tf":1.0},"1292":{"tf":1.0},"1295":{"tf":1.0},"1296":{"tf":1.0},"1298":{"tf":1.7320508075688772},"1300":{"tf":1.0},"1304":{"tf":1.0},"1307":{"tf":1.0},"1310":{"tf":1.0},"1317":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1332":{"tf":1.0},"1342":{"tf":1.7320508075688772},"1348":{"tf":1.0},"1371":{"tf":1.0},"139":{"tf":1.0},"1419":{"tf":1.4142135623730951},"142":{"tf":1.0},"1421":{"tf":1.0},"1430":{"tf":1.0},"1436":{"tf":1.7320508075688772},"1449":{"tf":1.4142135623730951},"1451":{"tf":1.0},"1453":{"tf":2.0},"1457":{"tf":1.0},"1472":{"tf":1.0},"1493":{"tf":1.0},"1503":{"tf":1.0},"1505":{"tf":1.4142135623730951},"1509":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1518":{"tf":1.4142135623730951},"159":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"182":{"tf":1.0},"201":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.4142135623730951},"212":{"tf":1.7320508075688772},"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.4142135623730951},"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.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.4142135623730951},"253":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"261":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"285":{"tf":1.0},"286":{"tf":1.0},"287":{"tf":2.0},"288":{"tf":1.7320508075688772},"290":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.4142135623730951},"298":{"tf":1.0},"299":{"tf":2.0},"302":{"tf":1.0},"303":{"tf":1.4142135623730951},"306":{"tf":1.4142135623730951},"309":{"tf":1.7320508075688772},"311":{"tf":1.0},"312":{"tf":1.0},"320":{"tf":1.0},"324":{"tf":1.4142135623730951},"325":{"tf":1.4142135623730951},"326":{"tf":1.4142135623730951},"332":{"tf":1.0},"359":{"tf":1.4142135623730951},"368":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"370":{"tf":1.0},"422":{"tf":1.0},"424":{"tf":1.4142135623730951},"43":{"tf":2.23606797749979},"433":{"tf":1.0},"440":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":1.7320508075688772},"465":{"tf":1.4142135623730951},"476":{"tf":1.0},"487":{"tf":1.0},"510":{"tf":1.4142135623730951},"516":{"tf":1.0},"535":{"tf":1.0},"545":{"tf":4.123105625617661},"546":{"tf":1.0},"55":{"tf":1.0},"551":{"tf":1.4142135623730951},"552":{"tf":1.4142135623730951},"553":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":1.0},"578":{"tf":1.4142135623730951},"579":{"tf":1.4142135623730951},"580":{"tf":1.4142135623730951},"581":{"tf":1.0},"586":{"tf":1.0},"593":{"tf":1.4142135623730951},"602":{"tf":1.0},"604":{"tf":1.0},"657":{"tf":1.0},"669":{"tf":1.4142135623730951},"670":{"tf":1.4142135623730951},"673":{"tf":1.0},"676":{"tf":1.0},"681":{"tf":1.4142135623730951},"688":{"tf":1.0},"693":{"tf":1.0},"711":{"tf":1.0},"713":{"tf":1.0},"714":{"tf":1.0},"715":{"tf":1.0},"716":{"tf":1.0},"723":{"tf":1.0},"726":{"tf":1.4142135623730951},"728":{"tf":1.0},"735":{"tf":1.4142135623730951},"740":{"tf":1.0},"741":{"tf":1.0},"745":{"tf":1.0},"748":{"tf":1.0},"752":{"tf":1.0},"780":{"tf":1.0},"782":{"tf":1.4142135623730951},"785":{"tf":1.0},"787":{"tf":1.0},"790":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"82":{"tf":1.4142135623730951},"831":{"tf":1.0},"836":{"tf":1.0},"838":{"tf":1.4142135623730951},"843":{"tf":1.0},"845":{"tf":1.0},"857":{"tf":1.0},"858":{"tf":1.4142135623730951},"860":{"tf":1.0},"861":{"tf":1.0},"870":{"tf":1.4142135623730951},"873":{"tf":1.0},"874":{"tf":1.0},"876":{"tf":1.0},"88":{"tf":1.4142135623730951},"882":{"tf":1.0},"884":{"tf":1.0},"892":{"tf":1.0},"895":{"tf":1.0},"908":{"tf":1.4142135623730951},"911":{"tf":1.4142135623730951},"916":{"tf":1.0},"919":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"93":{"tf":2.0},"930":{"tf":1.4142135623730951},"933":{"tf":1.0},"934":{"tf":1.0},"935":{"tf":1.0},"939":{"tf":1.0},"94":{"tf":1.4142135623730951},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"96":{"tf":1.4142135623730951},"960":{"tf":1.0},"963":{"tf":1.0},"964":{"tf":1.0},"968":{"tf":1.0},"969":{"tf":1.7320508075688772},"97":{"tf":2.0},"972":{"tf":1.0},"973":{"tf":1.0},"976":{"tf":2.23606797749979},"98":{"tf":1.4142135623730951},"986":{"tf":1.0},"991":{"tf":1.0},"996":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}},"df":0,"docs":{}}}},"c":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"d":{"df":6,"docs":{"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":10,"docs":{"1277":{"tf":1.4142135623730951},"487":{"tf":1.4142135623730951},"500":{"tf":1.0},"503":{"tf":1.7320508075688772},"506":{"tf":1.0},"507":{"tf":1.4142135623730951},"759":{"tf":1.0},"810":{"tf":1.0},"816":{"tf":2.0},"925":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"506":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":2,"docs":{"442":{"tf":1.0},"443":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"932":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":8,"docs":{"1352":{"tf":1.0},"1353":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1399":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1522":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1262":{"tf":1.0},"259":{"tf":1.0},"332":{"tf":1.0},"416":{"tf":1.4142135623730951},"453":{"tf":1.0},"534":{"tf":1.4142135623730951},"557":{"tf":1.0},"650":{"tf":1.4142135623730951}}}}},"u":{"df":0,"docs":{},"i":{"d":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"860":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},",":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"226":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"2":{"df":2,"docs":{"138":{"tf":1.0},"216":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},":":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"856":{"tf":1.0},"857":{"tf":1.0},"860":{"tf":1.0},"870":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"950":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":6,"docs":{"389":{"tf":1.0},"400":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"911":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"df":80,"docs":{"1130":{"tf":1.0},"1186":{"tf":1.0},"1242":{"tf":1.4142135623730951},"1245":{"tf":1.0},"1248":{"tf":1.0},"129":{"tf":1.4142135623730951},"1300":{"tf":1.7320508075688772},"1324":{"tf":1.0},"1328":{"tf":1.7320508075688772},"1329":{"tf":1.0},"1330":{"tf":1.0},"1361":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"1384":{"tf":1.7320508075688772},"147":{"tf":1.0},"1522":{"tf":1.4142135623730951},"180":{"tf":2.23606797749979},"181":{"tf":1.7320508075688772},"197":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.4142135623730951},"221":{"tf":1.4142135623730951},"224":{"tf":1.4142135623730951},"225":{"tf":2.0},"226":{"tf":1.0},"27":{"tf":1.0},"378":{"tf":1.0},"379":{"tf":1.0},"382":{"tf":1.0},"389":{"tf":1.0},"400":{"tf":1.7320508075688772},"406":{"tf":1.4142135623730951},"41":{"tf":1.4142135623730951},"411":{"tf":1.4142135623730951},"420":{"tf":1.7320508075688772},"436":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.449489742783178},"49":{"tf":1.0},"523":{"tf":1.7320508075688772},"53":{"tf":2.8284271247461903},"560":{"tf":1.0},"611":{"tf":1.0},"612":{"tf":1.0},"616":{"tf":1.0},"623":{"tf":1.0},"634":{"tf":1.7320508075688772},"640":{"tf":1.4142135623730951},"645":{"tf":1.4142135623730951},"654":{"tf":1.7320508075688772},"700":{"tf":1.7320508075688772},"744":{"tf":1.4142135623730951},"745":{"tf":1.4142135623730951},"756":{"tf":1.7320508075688772},"778":{"tf":1.0},"779":{"tf":2.0},"782":{"tf":1.4142135623730951},"785":{"tf":2.0},"798":{"tf":1.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":3.1622776601683795},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.4142135623730951},"84":{"tf":1.0},"856":{"tf":1.7320508075688772},"857":{"tf":1.7320508075688772},"866":{"tf":1.4142135623730951},"868":{"tf":1.4142135623730951},"869":{"tf":2.0},"870":{"tf":1.0},"880":{"tf":1.7320508075688772},"883":{"tf":1.4142135623730951},"885":{"tf":1.4142135623730951},"913":{"tf":1.0},"941":{"tf":1.0},"950":{"tf":2.23606797749979},"987":{"tf":1.4142135623730951},"997":{"tf":2.23606797749979}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"(":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":6,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"675":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"666":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},">":{"=":{"0":{".":{"2":{"3":{".":{"0":{"df":1,"docs":{"575":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"1180":{"tf":1.0},"1270":{"tf":1.0},"1372":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1402":{"tf":1.0},"666":{"tf":1.0},"675":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"v":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"1403":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"0":{".":{"4":{".":{"0":{"df":2,"docs":{"1213":{"tf":1.0},"1244":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"0":{"df":3,"docs":{"82":{"tf":1.7320508075688772},"911":{"tf":1.4142135623730951},"950":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1325":{"tf":1.4142135623730951},"1353":{"tf":1.0},"1376":{"tf":1.0},"209":{"tf":1.4142135623730951}}}}}}},"df":8,"docs":{"1405":{"tf":1.0},"1482":{"tf":1.0},"740":{"tf":2.449489742783178},"798":{"tf":1.0},"895":{"tf":1.7320508075688772},"902":{"tf":1.7320508075688772},"988":{"tf":1.0},"997":{"tf":1.7320508075688772}}},"2":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1325":{"tf":1.4142135623730951},"209":{"tf":1.4142135623730951}}}}}}},"df":5,"docs":{"1482":{"tf":1.0},"1520":{"tf":1.0},"798":{"tf":1.0},"988":{"tf":1.0},"997":{"tf":1.4142135623730951}}},"3":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"209":{"tf":1.0}}}}}}},"df":2,"docs":{"798":{"tf":1.0},"988":{"tf":1.0}}},"4":{"df":4,"docs":{"46":{"tf":2.0},"744":{"tf":1.4142135623730951},"745":{"tf":1.0},"987":{"tf":1.0}}},"=":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"df":4,"docs":{"1003":{"tf":1.4142135623730951},"1250":{"tf":1.0},"374":{"tf":1.0},"607":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}},"}":{"/":{"df":0,"docs":{},"{":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"(":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"=":{"2":{"0":{"2":{"5":{"df":1,"docs":{"1003":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"696":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":145,"docs":{"1000":{"tf":1.4142135623730951},"1003":{"tf":1.0},"1007":{"tf":1.0},"1042":{"tf":1.0},"1047":{"tf":1.0},"1108":{"tf":1.0},"1109":{"tf":1.0},"1116":{"tf":1.4142135623730951},"1119":{"tf":1.4142135623730951},"1125":{"tf":1.4142135623730951},"1126":{"tf":1.7320508075688772},"1127":{"tf":1.4142135623730951},"1148":{"tf":1.0},"1166":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1214":{"tf":1.0},"1227":{"tf":1.0},"1248":{"tf":1.0},"1263":{"tf":1.0},"1278":{"tf":2.23606797749979},"128":{"tf":2.23606797749979},"1290":{"tf":1.0},"130":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1333":{"tf":1.0},"1334":{"tf":1.0},"1352":{"tf":1.0},"1355":{"tf":1.4142135623730951},"136":{"tf":1.0},"1365":{"tf":1.4142135623730951},"1367":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.0},"1388":{"tf":1.4142135623730951},"1390":{"tf":1.4142135623730951},"1394":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.0},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.0},"1421":{"tf":1.7320508075688772},"1422":{"tf":1.0},"1427":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1432":{"tf":1.0},"1474":{"tf":1.7320508075688772},"1479":{"tf":1.0},"1480":{"tf":1.7320508075688772},"1507":{"tf":1.0},"1515":{"tf":1.0},"165":{"tf":1.0},"178":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"241":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":2.0},"245":{"tf":1.0},"246":{"tf":1.0},"249":{"tf":1.0},"25":{"tf":1.0},"253":{"tf":1.4142135623730951},"261":{"tf":1.0},"278":{"tf":1.7320508075688772},"287":{"tf":1.0},"34":{"tf":1.0},"349":{"tf":1.0},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"380":{"tf":1.0},"392":{"tf":1.0},"397":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"42":{"tf":1.0},"420":{"tf":1.0},"440":{"tf":1.4142135623730951},"446":{"tf":1.0},"451":{"tf":1.4142135623730951},"454":{"tf":1.0},"491":{"tf":2.23606797749979},"498":{"tf":1.0},"505":{"tf":1.0},"507":{"tf":1.0},"519":{"tf":1.4142135623730951},"520":{"tf":1.0},"521":{"tf":1.0},"527":{"tf":1.0},"531":{"tf":1.0},"575":{"tf":1.0},"576":{"tf":1.0},"588":{"tf":1.4142135623730951},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"613":{"tf":1.0},"617":{"tf":1.0},"626":{"tf":1.0},"631":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"654":{"tf":1.0},"66":{"tf":1.0},"696":{"tf":1.4142135623730951},"697":{"tf":1.0},"698":{"tf":1.0},"704":{"tf":1.0},"708":{"tf":1.0},"728":{"tf":1.4142135623730951},"738":{"tf":1.7320508075688772},"743":{"tf":1.4142135623730951},"745":{"tf":1.7320508075688772},"746":{"tf":1.0},"758":{"tf":1.0},"760":{"tf":1.0},"763":{"tf":1.0},"778":{"tf":1.0},"827":{"tf":1.0},"842":{"tf":1.0},"87":{"tf":2.23606797749979},"896":{"tf":1.7320508075688772},"908":{"tf":1.0},"911":{"tf":1.7320508075688772},"918":{"tf":1.0},"925":{"tf":1.0},"927":{"tf":1.7320508075688772},"929":{"tf":1.7320508075688772},"931":{"tf":1.4142135623730951},"932":{"tf":1.4142135623730951},"935":{"tf":1.0},"937":{"tf":1.0},"939":{"tf":1.4142135623730951},"943":{"tf":1.0},"944":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":2.6457513110645907},"969":{"tf":1.4142135623730951},"970":{"tf":1.0},"976":{"tf":1.0},"997":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":53,"docs":{"1000":{"tf":1.4142135623730951},"1015":{"tf":1.0},"1055":{"tf":1.0},"1083":{"tf":1.0},"1119":{"tf":1.0},"1127":{"tf":1.0},"1131":{"tf":1.4142135623730951},"1200":{"tf":1.0},"125":{"tf":1.0},"1297":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.0},"1312":{"tf":1.4142135623730951},"1361":{"tf":1.0},"1369":{"tf":1.0},"1384":{"tf":1.0},"1392":{"tf":1.0},"1403":{"tf":1.7320508075688772},"1404":{"tf":1.0},"1419":{"tf":1.0},"1441":{"tf":1.0},"1451":{"tf":1.0},"1475":{"tf":1.0},"1507":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.4142135623730951},"303":{"tf":1.4142135623730951},"365":{"tf":1.0},"370":{"tf":1.0},"451":{"tf":1.0},"458":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.4142135623730951},"528":{"tf":1.0},"599":{"tf":1.0},"604":{"tf":1.0},"687":{"tf":1.0},"705":{"tf":1.0},"719":{"tf":1.0},"739":{"tf":1.0},"746":{"tf":1.0},"77":{"tf":1.0},"81":{"tf":1.0},"810":{"tf":1.4142135623730951},"812":{"tf":1.4142135623730951},"816":{"tf":1.7320508075688772},"892":{"tf":1.0},"893":{"tf":1.0},"897":{"tf":1.0},"976":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"725":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"\"":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1404":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"723":{"tf":1.0},"724":{"tf":1.0}}}}}}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1446":{"tf":1.0}},"s":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"902":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"p":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"899":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"900":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1446":{"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":{},"h":{"a":{"df":0,"docs":{},"r":{"(":{"1":{"0":{"0":{"df":1,"docs":{"1300":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":1,"docs":{"1449":{"tf":1.0}},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":40,"docs":{"1066":{"tf":1.4142135623730951},"1079":{"tf":1.0},"113":{"tf":2.0},"1159":{"tf":1.4142135623730951},"116":{"tf":1.0},"1160":{"tf":1.0},"1161":{"tf":1.0},"1215":{"tf":1.0},"125":{"tf":1.0},"1342":{"tf":1.4142135623730951},"139":{"tf":1.7320508075688772},"1430":{"tf":1.4142135623730951},"1436":{"tf":1.0},"1447":{"tf":1.4142135623730951},"1448":{"tf":1.7320508075688772},"1449":{"tf":1.0},"1452":{"tf":1.4142135623730951},"1454":{"tf":1.4142135623730951},"1456":{"tf":1.0},"1497":{"tf":1.0},"1506":{"tf":1.4142135623730951},"1507":{"tf":1.7320508075688772},"1512":{"tf":1.0},"160":{"tf":1.0},"336":{"tf":1.7320508075688772},"339":{"tf":1.0},"437":{"tf":1.4142135623730951},"563":{"tf":1.7320508075688772},"566":{"tf":1.0},"660":{"tf":1.7320508075688772},"681":{"tf":1.4142135623730951},"682":{"tf":1.0},"88":{"tf":1.0},"892":{"tf":1.0},"903":{"tf":2.0},"908":{"tf":1.0},"911":{"tf":1.0},"925":{"tf":1.4142135623730951},"963":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":1,"docs":{"1048":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":2,"docs":{"1054":{"tf":1.0},"235":{"tf":1.0}}}}}}},"df":14,"docs":{"1324":{"tf":1.0},"1325":{"tf":1.0},"1330":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.4142135623730951},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1428":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":1.0},"1500":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0}},"e":{"c":{"!":{"[":{"\"":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"884":{"tf":2.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"845":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"733":{"tf":1.0},"776":{"tf":1.0},"789":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"\\":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"554":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":2,"docs":{"554":{"tf":1.4142135623730951},"578":{"tf":1.7320508075688772}}}},"r":{"=":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1003":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"1324":{"tf":1.0},"134":{"tf":1.4142135623730951},"136":{"tf":1.7320508075688772},"1419":{"tf":1.4142135623730951},"1420":{"tf":1.4142135623730951},"1421":{"tf":1.4142135623730951},"1428":{"tf":1.4142135623730951},"1497":{"tf":1.7320508075688772},"179":{"tf":1.0},"191":{"tf":1.4142135623730951},"297":{"tf":1.0},"899":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":180,"docs":{"1006":{"tf":1.0},"1008":{"tf":1.0},"1013":{"tf":1.4142135623730951},"1018":{"tf":1.0},"1045":{"tf":1.0},"1050":{"tf":1.0},"1053":{"tf":1.4142135623730951},"1075":{"tf":1.0},"1142":{"tf":1.4142135623730951},"1163":{"tf":1.0},"1175":{"tf":1.0},"1176":{"tf":1.0},"1177":{"tf":1.0},"1194":{"tf":1.0},"1196":{"tf":1.0},"1197":{"tf":1.0},"1200":{"tf":1.0},"1214":{"tf":2.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1245":{"tf":1.0},"1246":{"tf":1.4142135623730951},"1249":{"tf":1.0},"1260":{"tf":1.4142135623730951},"1261":{"tf":1.0},"1278":{"tf":1.0},"1282":{"tf":1.0},"1286":{"tf":1.0},"1292":{"tf":1.0},"1302":{"tf":1.0},"1313":{"tf":1.0},"1315":{"tf":1.7320508075688772},"1321":{"tf":1.0},"1324":{"tf":2.0},"1330":{"tf":1.0},"1334":{"tf":1.7320508075688772},"1339":{"tf":2.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1365":{"tf":1.0},"1367":{"tf":1.0},"1388":{"tf":1.0},"1394":{"tf":1.0},"1404":{"tf":2.0},"1421":{"tf":1.7320508075688772},"1429":{"tf":1.0},"1436":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.4142135623730951},"1469":{"tf":1.7320508075688772},"1473":{"tf":1.4142135623730951},"1493":{"tf":1.7320508075688772},"1494":{"tf":1.7320508075688772},"1503":{"tf":1.0},"1507":{"tf":1.0},"1529":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"169":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.7320508075688772},"206":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":2.0},"231":{"tf":1.4142135623730951},"232":{"tf":2.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"24":{"tf":1.4142135623730951},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"242":{"tf":1.0},"243":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"28":{"tf":1.0},"304":{"tf":1.0},"31":{"tf":1.0},"382":{"tf":1.4142135623730951},"384":{"tf":1.0},"386":{"tf":1.0},"402":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":1.7320508075688772},"445":{"tf":1.4142135623730951},"446":{"tf":1.0},"449":{"tf":1.0},"451":{"tf":1.0},"454":{"tf":1.4142135623730951},"461":{"tf":1.0},"463":{"tf":1.0},"465":{"tf":1.0},"477":{"tf":1.4142135623730951},"482":{"tf":1.0},"490":{"tf":1.0},"491":{"tf":1.0},"50":{"tf":1.0},"501":{"tf":1.0},"520":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"616":{"tf":1.4142135623730951},"618":{"tf":1.0},"62":{"tf":1.0},"620":{"tf":1.0},"636":{"tf":1.4142135623730951},"697":{"tf":1.0},"725":{"tf":1.0},"751":{"tf":1.0},"757":{"tf":1.0},"763":{"tf":1.7320508075688772},"773":{"tf":1.4142135623730951},"776":{"tf":1.0},"788":{"tf":1.0},"816":{"tf":1.0},"84":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.4142135623730951},"849":{"tf":1.0},"896":{"tf":1.4142135623730951},"909":{"tf":1.4142135623730951},"911":{"tf":1.0},"913":{"tf":1.0},"915":{"tf":1.0},"916":{"tf":1.0},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":1.7320508075688772},"930":{"tf":1.0},"932":{"tf":1.0},"935":{"tf":1.0},"936":{"tf":1.7320508075688772},"938":{"tf":1.4142135623730951},"939":{"tf":1.0},"94":{"tf":1.0},"941":{"tf":1.7320508075688772},"942":{"tf":1.0},"943":{"tf":1.7320508075688772},"946":{"tf":1.4142135623730951},"948":{"tf":1.0},"950":{"tf":1.4142135623730951},"957":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951},"965":{"tf":1.4142135623730951},"969":{"tf":1.0},"97":{"tf":1.0},"970":{"tf":1.4142135623730951},"975":{"tf":1.4142135623730951},"976":{"tf":1.7320508075688772},"979":{"tf":1.0},"980":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.4142135623730951},"991":{"tf":1.0},"992":{"tf":1.7320508075688772},"994":{"tf":1.0},"997":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"d":{"a":{"df":0,"docs":{},"t":{"a":{".":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"382":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":1,"docs":{"382":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"382":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"616":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"382":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1365":{"tf":1.0},"382":{"tf":1.0},"616":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1388":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"1390":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":8,"docs":{"364":{"tf":1.0},"367":{"tf":1.0},"368":{"tf":1.0},"380":{"tf":1.7320508075688772},"598":{"tf":1.0},"601":{"tf":1.0},"602":{"tf":1.0},"613":{"tf":1.7320508075688772}}}}}}}}}}}}},"df":0,"docs":{}},"df":283,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"1007":{"tf":1.0},"101":{"tf":1.4142135623730951},"1011":{"tf":1.0},"1012":{"tf":1.4142135623730951},"1045":{"tf":1.0},"1047":{"tf":1.0},"1048":{"tf":1.0},"105":{"tf":1.4142135623730951},"11":{"tf":1.0},"1142":{"tf":1.0},"1146":{"tf":1.0},"1149":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"1173":{"tf":1.0},"1177":{"tf":1.0},"1185":{"tf":1.4142135623730951},"1194":{"tf":1.4142135623730951},"1196":{"tf":1.4142135623730951},"1197":{"tf":1.0},"1200":{"tf":1.4142135623730951},"1206":{"tf":2.0},"1208":{"tf":1.0},"1209":{"tf":1.4142135623730951},"1212":{"tf":1.4142135623730951},"1214":{"tf":1.4142135623730951},"1222":{"tf":1.0},"1227":{"tf":1.0},"1232":{"tf":2.0},"1238":{"tf":1.0},"1240":{"tf":1.0},"1246":{"tf":1.0},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1256":{"tf":1.0},"1259":{"tf":1.0},"1260":{"tf":1.0},"1263":{"tf":1.0},"1267":{"tf":1.0},"1270":{"tf":1.4142135623730951},"1271":{"tf":1.4142135623730951},"1273":{"tf":1.4142135623730951},"1274":{"tf":1.4142135623730951},"128":{"tf":3.1622776601683795},"1282":{"tf":1.0},"1290":{"tf":1.4142135623730951},"1292":{"tf":1.0},"1313":{"tf":1.7320508075688772},"1315":{"tf":1.0},"1318":{"tf":1.4142135623730951},"1321":{"tf":2.0},"1324":{"tf":3.0},"1325":{"tf":1.4142135623730951},"1329":{"tf":1.0},"1330":{"tf":1.4142135623730951},"1333":{"tf":1.7320508075688772},"1334":{"tf":2.6457513110645907},"1339":{"tf":1.4142135623730951},"1340":{"tf":2.0},"1342":{"tf":1.0},"1343":{"tf":1.0},"1345":{"tf":1.0},"1346":{"tf":1.0},"1352":{"tf":1.7320508075688772},"1356":{"tf":1.4142135623730951},"136":{"tf":2.8284271247461903},"1365":{"tf":1.0},"1369":{"tf":1.0},"1375":{"tf":1.7320508075688772},"1378":{"tf":2.0},"1379":{"tf":1.4142135623730951},"1388":{"tf":1.0},"139":{"tf":1.0},"1390":{"tf":1.4142135623730951},"1392":{"tf":1.0},"1394":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.7320508075688772},"1403":{"tf":1.4142135623730951},"1404":{"tf":1.4142135623730951},"141":{"tf":1.4142135623730951},"1415":{"tf":1.0},"1421":{"tf":3.1622776601683795},"1425":{"tf":1.4142135623730951},"1427":{"tf":1.4142135623730951},"143":{"tf":2.0},"1436":{"tf":1.7320508075688772},"146":{"tf":1.0},"1460":{"tf":1.0},"1471":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"1481":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.4142135623730951},"1491":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1495":{"tf":1.0},"1497":{"tf":1.0},"1499":{"tf":2.0},"1503":{"tf":1.4142135623730951},"1510":{"tf":1.4142135623730951},"1512":{"tf":1.4142135623730951},"1513":{"tf":1.4142135623730951},"1517":{"tf":1.0},"1526":{"tf":1.0},"1528":{"tf":2.0},"1529":{"tf":2.449489742783178},"1530":{"tf":1.7320508075688772},"162":{"tf":1.4142135623730951},"163":{"tf":1.7320508075688772},"164":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"190":{"tf":1.7320508075688772},"191":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":2.0},"205":{"tf":1.7320508075688772},"206":{"tf":1.0},"208":{"tf":1.4142135623730951},"21":{"tf":1.0},"210":{"tf":1.4142135623730951},"214":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.4142135623730951},"240":{"tf":1.4142135623730951},"242":{"tf":2.8284271247461903},"246":{"tf":1.4142135623730951},"249":{"tf":1.0},"252":{"tf":1.4142135623730951},"253":{"tf":1.0},"255":{"tf":1.4142135623730951},"256":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":2.23606797749979},"277":{"tf":1.4142135623730951},"288":{"tf":1.4142135623730951},"299":{"tf":1.0},"31":{"tf":1.7320508075688772},"317":{"tf":1.0},"318":{"tf":1.0},"319":{"tf":1.0},"327":{"tf":1.7320508075688772},"34":{"tf":1.0},"349":{"tf":1.0},"357":{"tf":1.0},"358":{"tf":1.0},"364":{"tf":1.4142135623730951},"367":{"tf":1.0},"368":{"tf":1.7320508075688772},"380":{"tf":1.0},"382":{"tf":1.7320508075688772},"39":{"tf":1.0},"396":{"tf":1.4142135623730951},"397":{"tf":1.7320508075688772},"398":{"tf":1.7320508075688772},"40":{"tf":1.0},"404":{"tf":1.7320508075688772},"410":{"tf":2.0},"415":{"tf":2.0},"420":{"tf":1.0},"424":{"tf":1.0},"43":{"tf":2.0},"440":{"tf":1.0},"446":{"tf":1.0},"454":{"tf":1.4142135623730951},"456":{"tf":1.0},"458":{"tf":1.0},"459":{"tf":1.4142135623730951},"461":{"tf":2.0},"463":{"tf":1.4142135623730951},"465":{"tf":1.4142135623730951},"468":{"tf":1.0},"470":{"tf":1.0},"471":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0},"48":{"tf":1.0},"482":{"tf":1.0},"483":{"tf":1.0},"489":{"tf":2.0},"490":{"tf":1.0},"50":{"tf":1.0},"505":{"tf":1.4142135623730951},"520":{"tf":1.4142135623730951},"521":{"tf":1.7320508075688772},"527":{"tf":1.0},"529":{"tf":1.4142135623730951},"530":{"tf":1.0},"531":{"tf":2.23606797749979},"538":{"tf":1.0},"539":{"tf":1.0},"54":{"tf":1.0},"555":{"tf":1.7320508075688772},"576":{"tf":1.0},"58":{"tf":1.0},"587":{"tf":1.0},"588":{"tf":1.0},"591":{"tf":1.0},"592":{"tf":1.0},"598":{"tf":1.4142135623730951},"601":{"tf":1.0},"602":{"tf":1.4142135623730951},"613":{"tf":1.0},"616":{"tf":1.7320508075688772},"617":{"tf":1.0},"630":{"tf":1.4142135623730951},"631":{"tf":1.7320508075688772},"632":{"tf":1.7320508075688772},"638":{"tf":1.7320508075688772},"644":{"tf":2.0},"649":{"tf":2.0},"654":{"tf":1.0},"663":{"tf":1.0},"664":{"tf":1.0},"669":{"tf":1.0},"670":{"tf":1.0},"676":{"tf":1.0},"688":{"tf":1.4142135623730951},"697":{"tf":1.4142135623730951},"698":{"tf":1.7320508075688772},"704":{"tf":1.0},"706":{"tf":1.4142135623730951},"707":{"tf":1.0},"708":{"tf":2.23606797749979},"714":{"tf":1.0},"716":{"tf":1.0},"72":{"tf":1.4142135623730951},"725":{"tf":1.0},"758":{"tf":1.0},"772":{"tf":2.449489742783178},"795":{"tf":1.4142135623730951},"829":{"tf":1.0},"831":{"tf":1.4142135623730951},"833":{"tf":1.0},"846":{"tf":1.0},"847":{"tf":1.0},"850":{"tf":1.0},"856":{"tf":1.4142135623730951},"87":{"tf":3.3166247903554},"88":{"tf":1.7320508075688772},"89":{"tf":1.4142135623730951},"90":{"tf":1.0},"916":{"tf":1.4142135623730951},"918":{"tf":1.0},"92":{"tf":1.0},"922":{"tf":2.0},"937":{"tf":1.7320508075688772},"938":{"tf":1.0},"939":{"tf":1.7320508075688772},"94":{"tf":2.0},"940":{"tf":1.0},"941":{"tf":2.23606797749979},"942":{"tf":1.7320508075688772},"944":{"tf":1.0},"948":{"tf":1.0},"95":{"tf":1.4142135623730951},"950":{"tf":1.0},"951":{"tf":1.4142135623730951},"969":{"tf":1.0},"970":{"tf":1.4142135623730951},"972":{"tf":1.0},"976":{"tf":2.8284271247461903},"977":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951},"979":{"tf":1.4142135623730951},"98":{"tf":1.0},"981":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.7320508075688772},"997":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"1273":{"tf":1.0},"1282":{"tf":1.0},"1356":{"tf":1.0},"459":{"tf":1.0},"463":{"tf":1.0},"474":{"tf":1.0},"477":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"676":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"\"":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"676":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":1,"docs":{"458":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"458":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"934":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"303":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1365":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1388":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{}}},"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"367":{"tf":1.4142135623730951},"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}}},"1":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"2":{"[":{"'":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1404":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1404":{"tf":1.0}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1208":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"846":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"n":{"d":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"725":{"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":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"l":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"617":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"b":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1402":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"1151":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1375":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1402":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1375":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"1302":{"tf":1.0},"1404":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"1390":{"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":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1436":{"tf":1.0},"43":{"tf":1.4142135623730951},"94":{"tf":1.0},"97":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"43":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"(":{"&":{"d":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"991":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"(":{"&":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"1216":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"545":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1315":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1403":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"1151":{"tf":1.0},"545":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"'":{".":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1352":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1352":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"i":{"d":{"df":1,"docs":{"1301":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1185":{"tf":1.0},"1265":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"1176":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":5,"docs":{"1151":{"tf":1.0},"1185":{"tf":1.0},"424":{"tf":1.0},"456":{"tf":1.0},"545":{"tf":1.0}},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"1265":{"tf":1.0},"456":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"545":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.4142135623730951}},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":1,"docs":{"545":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1487":{"tf":1.0}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1302":{"tf":1.0}}}}}},"df":6,"docs":{"1103":{"tf":1.0},"1300":{"tf":1.4142135623730951},"1301":{"tf":1.7320508075688772},"1302":{"tf":2.23606797749979},"1306":{"tf":2.0},"1522":{"tf":2.0}}},"df":0,"docs":{}}},"df":148,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"1001":{"tf":2.23606797749979},"1002":{"tf":1.7320508075688772},"1003":{"tf":1.7320508075688772},"101":{"tf":1.7320508075688772},"1047":{"tf":2.0},"1052":{"tf":1.4142135623730951},"1059":{"tf":1.4142135623730951},"1067":{"tf":1.4142135623730951},"1069":{"tf":1.0},"107":{"tf":2.0},"1071":{"tf":1.0},"1082":{"tf":1.0},"1083":{"tf":1.4142135623730951},"1084":{"tf":1.0},"1098":{"tf":1.7320508075688772},"11":{"tf":1.0},"1114":{"tf":1.0},"1132":{"tf":1.4142135623730951},"1133":{"tf":1.4142135623730951},"1134":{"tf":1.4142135623730951},"1135":{"tf":1.7320508075688772},"115":{"tf":1.0},"1151":{"tf":1.4142135623730951},"1158":{"tf":1.0},"1179":{"tf":1.0},"1186":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"1204":{"tf":1.0},"1206":{"tf":1.0},"1255":{"tf":1.0},"1307":{"tf":1.4142135623730951},"1314":{"tf":1.7320508075688772},"1321":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":2.23606797749979},"135":{"tf":1.0},"1353":{"tf":1.4142135623730951},"1355":{"tf":1.0},"1358":{"tf":1.4142135623730951},"1359":{"tf":1.0},"1365":{"tf":1.0},"1376":{"tf":1.4142135623730951},"1378":{"tf":1.0},"1381":{"tf":1.0},"1388":{"tf":1.0},"1401":{"tf":1.7320508075688772},"1402":{"tf":1.4142135623730951},"1403":{"tf":2.23606797749979},"1404":{"tf":1.0},"1405":{"tf":1.0},"1409":{"tf":2.0},"1420":{"tf":1.4142135623730951},"1441":{"tf":1.0},"1482":{"tf":2.449489742783178},"1502":{"tf":1.0},"1503":{"tf":2.23606797749979},"1515":{"tf":1.4142135623730951},"1522":{"tf":1.4142135623730951},"1529":{"tf":1.4142135623730951},"1530":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"180":{"tf":1.7320508075688772},"181":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"199":{"tf":3.1622776601683795},"2":{"tf":1.0},"204":{"tf":1.0},"209":{"tf":1.0},"21":{"tf":1.0},"224":{"tf":1.0},"23":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"292":{"tf":1.0},"322":{"tf":1.0},"348":{"tf":1.0},"351":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"370":{"tf":1.4142135623730951},"371":{"tf":1.0},"400":{"tf":1.0},"411":{"tf":1.0},"418":{"tf":1.0},"42":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"44":{"tf":1.0},"442":{"tf":1.0},"443":{"tf":1.0},"445":{"tf":1.0},"45":{"tf":1.7320508075688772},"451":{"tf":1.0},"46":{"tf":2.0},"522":{"tf":1.0},"536":{"tf":1.0},"549":{"tf":1.0},"583":{"tf":1.4142135623730951},"60":{"tf":1.7320508075688772},"604":{"tf":1.4142135623730951},"605":{"tf":1.0},"61":{"tf":2.0},"634":{"tf":1.0},"64":{"tf":1.0},"645":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"699":{"tf":1.0},"722":{"tf":1.0},"739":{"tf":1.0},"740":{"tf":2.0},"744":{"tf":1.7320508075688772},"751":{"tf":1.0},"756":{"tf":1.7320508075688772},"776":{"tf":1.7320508075688772},"779":{"tf":2.449489742783178},"782":{"tf":1.0},"783":{"tf":1.0},"798":{"tf":2.23606797749979},"816":{"tf":1.7320508075688772},"836":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.4142135623730951},"864":{"tf":1.0},"874":{"tf":2.0},"894":{"tf":1.0},"895":{"tf":1.7320508075688772},"908":{"tf":1.0},"914":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"926":{"tf":1.7320508075688772},"942":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"986":{"tf":2.0},"987":{"tf":2.23606797749979},"988":{"tf":2.0},"989":{"tf":1.7320508075688772},"991":{"tf":1.7320508075688772},"992":{"tf":1.0},"994":{"tf":1.4142135623730951},"998":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1522":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":4,"docs":{"1301":{"tf":1.4142135623730951},"1305":{"tf":1.7320508075688772},"1306":{"tf":1.4142135623730951},"1307":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}},"i":{"a":{"df":25,"docs":{"1212":{"tf":1.0},"1222":{"tf":1.4142135623730951},"1296":{"tf":1.4142135623730951},"1453":{"tf":1.0},"1456":{"tf":1.0},"1505":{"tf":1.0},"160":{"tf":1.0},"192":{"tf":1.0},"298":{"tf":1.0},"302":{"tf":1.0},"310":{"tf":1.0},"482":{"tf":1.0},"72":{"tf":1.0},"853":{"tf":1.0},"861":{"tf":1.0},"864":{"tf":1.0},"871":{"tf":1.0},"877":{"tf":1.0},"881":{"tf":1.0},"911":{"tf":1.4142135623730951},"918":{"tf":1.4142135623730951},"922":{"tf":1.0},"925":{"tf":1.4142135623730951},"932":{"tf":1.0},"95":{"tf":1.0}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"4":{"df":1,"docs":{"1426":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":2,"docs":{"1155":{"tf":1.0},"771":{"tf":1.0}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"554":{"tf":1.0},"577":{"tf":1.4142135623730951},"578":{"tf":1.0}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1086":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"1129":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"586":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"1068":{"tf":1.0}}}}}},"p":{"c":{"df":1,"docs":{"1106":{"tf":1.0}}},"df":0,"docs":{}},"s":{"df":3,"docs":{"185":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"978":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"911":{"tf":1.0},"969":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"1474":{"tf":1.0},"1475":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"431":{"tf":1.0},"543":{"tf":1.0},"976":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"1515":{"tf":1.0},"43":{"tf":1.0},"95":{"tf":1.0},"96":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":10,"docs":{"1194":{"tf":1.0},"1439":{"tf":1.0},"1506":{"tf":1.0},"243":{"tf":1.0},"297":{"tf":1.0},"299":{"tf":1.0},"892":{"tf":1.0},"899":{"tf":1.4142135623730951},"928":{"tf":1.4142135623730951},"930":{"tf":1.0}}}},"s":{"df":0,"docs":{},"m":{"3":{"2":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":2,"docs":{"1087":{"tf":1.0},"1451":{"tf":1.0}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"1474":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"/":{"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1340":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"=":{"$":{"df":0,"docs":{},"{":{"1":{"df":1,"docs":{"1340":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"1340":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":2,"docs":{"1340":{"tf":2.0},"171":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":5,"docs":{"1":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"294":{"tf":1.0},"43":{"tf":1.0}}}},"df":10,"docs":{"1140":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1388":{"tf":1.0},"1390":{"tf":1.0},"1392":{"tf":1.0},"1404":{"tf":1.4142135623730951},"661":{"tf":1.0},"79":{"tf":1.0},"88":{"tf":1.0}},"e":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"68":{"tf":1.0}}}},"r":{"df":1,"docs":{"21":{"tf":1.0}}}},"a":{"df":0,"docs":{},"k":{"df":2,"docs":{"918":{"tf":1.0},"925":{"tf":1.7320508075688772}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"109":{"tf":1.0},"110":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":43,"docs":{"1042":{"tf":1.0},"1182":{"tf":1.0},"1192":{"tf":1.0},"1262":{"tf":1.7320508075688772},"1263":{"tf":1.4142135623730951},"1264":{"tf":1.0},"1265":{"tf":1.4142135623730951},"1266":{"tf":1.0},"1267":{"tf":1.0},"1268":{"tf":1.0},"1269":{"tf":1.0},"1270":{"tf":1.0},"1271":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1275":{"tf":1.0},"1276":{"tf":1.0},"1277":{"tf":1.0},"1278":{"tf":1.0},"1279":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1283":{"tf":1.0},"1284":{"tf":1.0},"1285":{"tf":1.0},"1286":{"tf":1.0},"1287":{"tf":1.0},"1288":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1291":{"tf":1.0},"1292":{"tf":1.0},"1293":{"tf":1.0},"1294":{"tf":1.0},"1406":{"tf":1.0},"1451":{"tf":1.4142135623730951},"321":{"tf":1.0},"434":{"tf":1.0},"5":{"tf":1.4142135623730951},"67":{"tf":1.0},"964":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1405":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"(":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1405":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"1405":{"tf":3.605551275463989}},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1405":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":6,"docs":{"1174":{"tf":1.0},"1176":{"tf":1.0},"1182":{"tf":1.0},"424":{"tf":1.0},"429":{"tf":1.0},"541":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"860":{"tf":1.4142135623730951}}}}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"0":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":16,"docs":{"1212":{"tf":1.0},"1213":{"tf":2.23606797749979},"1217":{"tf":1.0},"1219":{"tf":1.0},"1222":{"tf":1.0},"1243":{"tf":1.4142135623730951},"1244":{"tf":1.4142135623730951},"1245":{"tf":1.4142135623730951},"1247":{"tf":1.0},"1248":{"tf":1.0},"1251":{"tf":1.0},"1259":{"tf":1.0},"375":{"tf":1.4142135623730951},"383":{"tf":1.0},"608":{"tf":1.4142135623730951},"617":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1437":{"tf":1.0},"1454":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"941":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"97":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":9,"docs":{"127":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.4142135623730951},"17":{"tf":1.0},"223":{"tf":1.0},"759":{"tf":1.0},"788":{"tf":1.0},"831":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"863":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"232":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0},"93":{"tf":1.0},"960":{"tf":1.0}}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"1112":{"tf":1.4142135623730951},"1330":{"tf":1.4142135623730951},"1399":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":9,"docs":{"109":{"tf":1.0},"1154":{"tf":1.0},"322":{"tf":1.0},"549":{"tf":1.0},"554":{"tf":1.0},"578":{"tf":1.0},"586":{"tf":1.7320508075688772},"911":{"tf":1.0},"934":{"tf":1.0}},"m":{"df":1,"docs":{"501":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"855":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":11,"docs":{"1209":{"tf":1.0},"1399":{"tf":1.0},"309":{"tf":1.0},"422":{"tf":1.0},"51":{"tf":1.4142135623730951},"831":{"tf":1.0},"850":{"tf":1.0},"852":{"tf":1.0},"911":{"tf":1.0},"934":{"tf":1.0},"950":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":28,"docs":{"1088":{"tf":1.4142135623730951},"1092":{"tf":1.0},"1194":{"tf":1.0},"1222":{"tf":1.0},"1246":{"tf":1.0},"127":{"tf":1.0},"1436":{"tf":1.0},"1449":{"tf":1.0},"1484":{"tf":1.0},"21":{"tf":1.0},"248":{"tf":1.0},"368":{"tf":1.0},"371":{"tf":1.0},"394":{"tf":1.4142135623730951},"43":{"tf":1.0},"506":{"tf":1.0},"519":{"tf":1.0},"602":{"tf":1.0},"605":{"tf":1.0},"628":{"tf":1.4142135623730951},"696":{"tf":1.0},"82":{"tf":1.0},"94":{"tf":1.0},"940":{"tf":1.0},"95":{"tf":1.0},"950":{"tf":1.0},"97":{"tf":1.0},"984":{"tf":1.0}}}}}}},"z":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1225":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":3,"docs":{"1286":{"tf":1.0},"242":{"tf":1.0},"479":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"d":{"df":2,"docs":{"77":{"tf":1.0},"81":{"tf":1.0}}},"df":0,"docs":{},"k":{"\"":{")":{".":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"873":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"df":100,"docs":{"1080":{"tf":1.4142135623730951},"1145":{"tf":1.0},"1177":{"tf":1.4142135623730951},"1182":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1426":{"tf":1.4142135623730951},"1447":{"tf":1.0},"1449":{"tf":1.0},"145":{"tf":1.0},"1452":{"tf":1.0},"1506":{"tf":1.0},"16":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.7320508075688772},"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.4142135623730951},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.7320508075688772},"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},"231":{"tf":1.0},"232":{"tf":1.0},"246":{"tf":1.0},"255":{"tf":1.0},"267":{"tf":1.4142135623730951},"29":{"tf":1.0},"31":{"tf":1.4142135623730951},"327":{"tf":1.0},"383":{"tf":1.0},"39":{"tf":1.0},"405":{"tf":1.4142135623730951},"424":{"tf":1.4142135623730951},"47":{"tf":1.0},"48":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"555":{"tf":1.0},"617":{"tf":1.0},"639":{"tf":1.4142135623730951},"655":{"tf":1.4142135623730951},"664":{"tf":1.0},"668":{"tf":1.4142135623730951},"669":{"tf":1.0},"793":{"tf":1.4142135623730951},"799":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.4142135623730951},"808":{"tf":2.0},"814":{"tf":1.4142135623730951},"815":{"tf":1.4142135623730951},"816":{"tf":1.0},"824":{"tf":1.0},"825":{"tf":1.4142135623730951},"828":{"tf":1.0},"851":{"tf":1.0},"852":{"tf":1.0},"855":{"tf":1.0},"857":{"tf":1.0},"87":{"tf":1.4142135623730951},"885":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"932":{"tf":1.4142135623730951},"940":{"tf":1.0},"944":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"726":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"1330":{"tf":1.0}}}}},"df":32,"docs":{"1115":{"tf":1.0},"1144":{"tf":1.0},"1248":{"tf":1.4142135623730951},"13":{"tf":1.0},"1317":{"tf":1.0},"1327":{"tf":1.4142135623730951},"1330":{"tf":1.7320508075688772},"1397":{"tf":1.0},"140":{"tf":1.4142135623730951},"1417":{"tf":1.0},"1427":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"21":{"tf":1.0},"226":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"359":{"tf":1.0},"548":{"tf":1.0},"590":{"tf":1.0},"593":{"tf":1.0},"6":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"732":{"tf":1.0},"747":{"tf":1.0},"773":{"tf":1.0},"802":{"tf":1.0},"804":{"tf":1.0},"808":{"tf":1.0},"821":{"tf":1.4142135623730951},"833":{"tf":1.0},"88":{"tf":1.4142135623730951},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"a":{"c":{"df":1,"docs":{"841":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"d":{"df":7,"docs":{"1021":{"tf":1.0},"268":{"tf":1.0},"32":{"tf":1.4142135623730951},"519":{"tf":1.0},"656":{"tf":1.0},"67":{"tf":1.0},"696":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"1216":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":18,"docs":{"1176":{"tf":1.0},"1182":{"tf":1.0},"1183":{"tf":1.4142135623730951},"1216":{"tf":1.4142135623730951},"1218":{"tf":1.0},"1524":{"tf":1.0},"422":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"429":{"tf":1.0},"528":{"tf":1.0},"541":{"tf":1.0},"669":{"tf":1.0},"675":{"tf":1.0},"686":{"tf":1.4142135623730951},"705":{"tf":1.0},"718":{"tf":1.4142135623730951},"829":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"1183":{"tf":1.7320508075688772},"669":{"tf":1.0},"670":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"317":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":15,"docs":{"116":{"tf":1.0},"1422":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.7320508075688772},"1489":{"tf":1.4142135623730951},"226":{"tf":1.0},"302":{"tf":1.0},"536":{"tf":1.0},"661":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772},"822":{"tf":1.0},"871":{"tf":1.0},"873":{"tf":1.0}},"r":{"df":3,"docs":{"1206":{"tf":1.0},"76":{"tf":1.0},"80":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":6,"docs":{"1286":{"tf":1.0},"1292":{"tf":1.0},"1465":{"tf":1.0},"479":{"tf":1.0},"509":{"tf":1.0},"941":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"l":{"df":2,"docs":{"322":{"tf":1.0},"549":{"tf":1.0}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"109":{"tf":1.7320508075688772},"549":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"1122":{"tf":1.0},"1169":{"tf":1.0},"1405":{"tf":1.4142135623730951},"1437":{"tf":1.4142135623730951},"1442":{"tf":1.4142135623730951},"822":{"tf":1.0}},"y":{"df":0,"docs":{},"z":{"7":{"8":{"9":{"df":1,"docs":{"999":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"814":{"tf":1.0}}}},"z":{"df":0,"docs":{},"f":{"df":1,"docs":{"1095":{"tf":1.0}}}}},"y":{"%":{"df":0,"docs":{},"m":{"%":{"d":{")":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"1097":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"322":{"tf":1.0},"325":{"tf":1.7320508075688772}}}}},"df":0,"docs":{},"e":{"df":21,"docs":{"1175":{"tf":2.23606797749979},"127":{"tf":1.0},"132":{"tf":1.4142135623730951},"135":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"1439":{"tf":1.7320508075688772},"1440":{"tf":1.4142135623730951},"1441":{"tf":1.4142135623730951},"152":{"tf":1.7320508075688772},"181":{"tf":2.8284271247461903},"756":{"tf":2.6457513110645907},"757":{"tf":1.4142135623730951},"759":{"tf":1.7320508075688772},"778":{"tf":1.7320508075688772},"779":{"tf":2.0},"782":{"tf":2.449489742783178},"786":{"tf":1.0},"788":{"tf":1.7320508075688772},"790":{"tf":1.4142135623730951},"808":{"tf":1.7320508075688772},"811":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":2,"docs":{"1140":{"tf":1.0},"1392":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1456":{"tf":1.0}}}},"r":{"df":4,"docs":{"17":{"tf":1.0},"228":{"tf":1.0},"511":{"tf":1.0},"976":{"tf":1.4142135623730951}}},"v":{"df":1,"docs":{"89":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"z":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"(":{"[":{"\"":{"a":{"d":{"d":{"df":1,"docs":{"1358":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{}}}},"df":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":{"1179":{"tf":1.4142135623730951},"1358":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"{":{"df":0,"docs":{},"}":{")":{".":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"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":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1401":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1358":{"tf":1.0},"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"(":{")":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"e":{"(":{"\"":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"1401":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":5,"docs":{"1179":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"760":{"tf":1.0}}}},"o":{"d":{"df":6,"docs":{"1179":{"tf":1.0},"1349":{"tf":1.0},"1358":{"tf":1.0},"1401":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":6,"docs":{"1300":{"tf":1.4142135623730951},"1474":{"tf":1.0},"1522":{"tf":1.0},"237":{"tf":1.4142135623730951},"245":{"tf":1.0},"976":{"tf":1.0}}}}}}}},"title":{"root":{"0":{".":{"2":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"3":{".":{"df":0,"docs":{},"x":{"df":1,"docs":{"1508":{"tf":1.0}}}},"df":0,"docs":{}},"5":{".":{"1":{"df":1,"docs":{"1504":{"tf":1.0}}},"2":{"df":1,"docs":{"1504":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"1215":{"tf":1.0}}},"df":9,"docs":{"1168":{"tf":1.0},"1202":{"tf":1.0},"1284":{"tf":1.0},"1312":{"tf":1.0},"822":{"tf":1.0},"84":{"tf":1.0},"913":{"tf":1.0},"94":{"tf":1.0},"962":{"tf":1.0}}},"2":{"df":9,"docs":{"1169":{"tf":1.0},"1203":{"tf":1.0},"1285":{"tf":1.0},"1313":{"tf":1.0},"823":{"tf":1.0},"85":{"tf":1.0},"914":{"tf":1.0},"95":{"tf":1.0},"963":{"tf":1.0}}},"3":{"df":9,"docs":{"1170":{"tf":1.0},"1204":{"tf":1.0},"1286":{"tf":1.0},"1314":{"tf":1.0},"824":{"tf":1.0},"86":{"tf":1.0},"915":{"tf":1.0},"96":{"tf":1.0},"964":{"tf":1.0}}},"4":{"df":7,"docs":{"1171":{"tf":1.0},"1205":{"tf":1.0},"1287":{"tf":1.0},"1315":{"tf":1.0},"825":{"tf":1.0},"965":{"tf":1.0},"97":{"tf":1.0}}},"5":{"3":{"df":1,"docs":{"237":{"tf":1.0}}},"df":3,"docs":{"826":{"tf":1.0},"966":{"tf":1.0},"98":{"tf":1.0}}},"a":{"2":{"a":{"df":1,"docs":{"1211":{"tf":1.0}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"281":{"tf":1.0},"489":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"1158":{"tf":1.0},"156":{"tf":1.0},"810":{"tf":1.0},"811":{"tf":1.0}}}}}}},"d":{"d":{"df":1,"docs":{"1212":{"tf":1.0}}},"df":5,"docs":{"1522":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"258":{"tf":1.0},"797":{"tf":1.0}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"842":{"tf":1.0}}}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"1118":{"tf":1.0},"499":{"tf":1.0}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"1061":{"tf":1.0},"1069":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"918":{"tf":1.0},"934":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"95":{"tf":1.0}}},".":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"525":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"523":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"519":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"695":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"518":{"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":{},"g":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"710":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"701":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"705":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"703":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"533":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"524":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"528":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"526":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"u":{"df":0,"docs":{},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"709":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"532":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"522":{"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":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"708":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"697":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"706":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"707":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"531":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"520":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"529":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"530":{"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":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"521":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}}}},"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"700":{"tf":1.0}}},"df":0,"docs":{}}},"df":104,"docs":{"0":{"tf":1.0},"1139":{"tf":1.0},"1145":{"tf":1.4142135623730951},"1151":{"tf":1.0},"1206":{"tf":1.0},"1209":{"tf":1.0},"1233":{"tf":1.0},"1234":{"tf":1.0},"1236":{"tf":1.0},"1246":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"1277":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"1331":{"tf":1.0},"1332":{"tf":1.0},"1334":{"tf":1.0},"1397":{"tf":1.0},"1414":{"tf":1.0},"1415":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"1499":{"tf":1.0},"151":{"tf":1.0},"1518":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"157":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"170":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"226":{"tf":1.0},"23":{"tf":1.0},"230":{"tf":1.0},"233":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"261":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"35":{"tf":1.0},"387":{"tf":1.0},"388":{"tf":1.0},"40":{"tf":1.0},"409":{"tf":1.0},"41":{"tf":1.0},"410":{"tf":1.0},"411":{"tf":1.0},"412":{"tf":1.0},"42":{"tf":1.0},"478":{"tf":1.0},"487":{"tf":1.0},"621":{"tf":1.0},"622":{"tf":1.0},"643":{"tf":1.0},"644":{"tf":1.0},"645":{"tf":1.0},"646":{"tf":1.0},"673":{"tf":1.0},"72":{"tf":1.0},"749":{"tf":1.0},"753":{"tf":1.0},"755":{"tf":1.0},"757":{"tf":1.0},"76":{"tf":1.0},"765":{"tf":1.0},"766":{"tf":1.0},"767":{"tf":1.0},"768":{"tf":1.0},"772":{"tf":1.0},"80":{"tf":1.0},"82":{"tf":1.0},"823":{"tf":1.0},"829":{"tf":1.0},"84":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0},"894":{"tf":1.0},"948":{"tf":1.0},"949":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0},"986":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"523":{"tf":1.0}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":2,"docs":{"378":{"tf":1.0},"611":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"l":{"df":2,"docs":{"1050":{"tf":1.0},"984":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"700":{"tf":1.0},"701":{"tf":1.0},"702":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":54,"docs":{"1143":{"tf":1.0},"1144":{"tf":1.0},"1145":{"tf":1.0},"1327":{"tf":1.0},"1328":{"tf":1.0},"1329":{"tf":1.0},"1330":{"tf":1.0},"1360":{"tf":1.0},"1361":{"tf":1.0},"1362":{"tf":1.0},"1363":{"tf":1.0},"138":{"tf":1.0},"1383":{"tf":1.0},"1384":{"tf":1.0},"1385":{"tf":1.0},"1386":{"tf":1.0},"142":{"tf":1.0},"1423":{"tf":1.0},"1483":{"tf":1.0},"1484":{"tf":1.0},"1487":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"218":{"tf":1.0},"222":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"227":{"tf":1.0},"30":{"tf":1.0},"405":{"tf":1.0},"406":{"tf":1.0},"407":{"tf":1.0},"408":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"639":{"tf":1.0},"640":{"tf":1.0},"641":{"tf":1.0},"642":{"tf":1.0},"785":{"tf":1.0},"786":{"tf":1.0},"813":{"tf":1.0},"814":{"tf":1.0},"815":{"tf":1.0},"824":{"tf":1.0},"858":{"tf":1.0},"952":{"tf":1.0},"953":{"tf":1.0},"954":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":3,"docs":{"523":{"tf":1.0},"524":{"tf":1.0},"525":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"i":{"df":3,"docs":{"153":{"tf":1.0},"33":{"tf":1.0},"765":{"tf":1.0}}},"l":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":16,"docs":{"1014":{"tf":1.0},"1015":{"tf":1.0},"1040":{"tf":1.0},"1047":{"tf":1.0},"1050":{"tf":1.0},"1467":{"tf":1.0},"1472":{"tf":1.0},"1514":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"341":{"tf":1.0},"568":{"tf":1.0},"57":{"tf":1.0},"958":{"tf":1.0},"959":{"tf":1.0},"960":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1485":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"36":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"35":{"tf":1.0}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"143":{"tf":1.0},"241":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":20,"docs":{"1084":{"tf":1.0},"1400":{"tf":1.0},"1525":{"tf":1.0},"1526":{"tf":1.0},"257":{"tf":1.0},"357":{"tf":1.0},"359":{"tf":1.0},"360":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"513":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0},"594":{"tf":1.0},"685":{"tf":1.0},"690":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0}}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"317":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1082":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"c":{"df":3,"docs":{"349":{"tf":1.0},"507":{"tf":1.0},"576":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1116":{"tf":1.0}}}}}}}}},"r":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"403":{"tf":1.0},"404":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1176":{"tf":1.0},"729":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"1121":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"823":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"919":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"1426":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"186":{"tf":1.0},"193":{"tf":1.0},"269":{"tf":1.0},"371":{"tf":1.0},"381":{"tf":1.0},"395":{"tf":1.0},"401":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0},"614":{"tf":1.0},"629":{"tf":1.0},"635":{"tf":1.0},"787":{"tf":1.0},"797":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"k":{"df":1,"docs":{"934":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"369":{"tf":1.0}}}}}},"df":6,"docs":{"1288":{"tf":1.0},"1403":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"916":{"tf":1.4142135623730951},"966":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1442":{"tf":1.0},"503":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1486":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"493":{"tf":1.0}}}},"df":0,"docs":{}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":4,"docs":{"1055":{"tf":1.0},"108":{"tf":1.0},"1451":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"1287":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"989":{"tf":1.0}}}},"df":5,"docs":{"1064":{"tf":1.4142135623730951},"1490":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"237":{"tf":1.0}}},"z":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"239":{"tf":1.0}}}}}},"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":11,"docs":{"1054":{"tf":1.0},"1055":{"tf":1.0},"1296":{"tf":1.0},"1451":{"tf":1.0},"1452":{"tf":1.0},"1456":{"tf":1.0},"1489":{"tf":1.0},"1511":{"tf":1.0},"285":{"tf":1.0},"337":{"tf":1.0},"564":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"p":{"df":3,"docs":{"1096":{"tf":1.0},"1097":{"tf":1.0},"1098":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"940":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":10,"docs":{"1162":{"tf":1.0},"1249":{"tf":1.0},"1333":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"230":{"tf":1.0},"25":{"tf":1.0},"943":{"tf":1.0}}},"i":{"c":{"df":20,"docs":{"1111":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"1425":{"tf":1.0},"188":{"tf":1.0},"216":{"tf":1.0},"334":{"tf":1.0},"349":{"tf":1.0},"386":{"tf":1.0},"391":{"tf":1.0},"426":{"tf":1.0},"458":{"tf":1.0},"485":{"tf":1.0},"576":{"tf":1.0},"620":{"tf":1.0},"625":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"1315":{"tf":1.0},"1338":{"tf":1.0},"1389":{"tf":1.0},"1390":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"1453":{"tf":1.0},"928":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"36":{"tf":1.0},"62":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":15,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}}},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"1456":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"353":{"tf":1.0},"585":{"tf":1.0}}}}},"d":{"df":1,"docs":{"1255":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"1287":{"tf":1.0},"509":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"819":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1067":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":2,"docs":{"1296":{"tf":1.0},"304":{"tf":1.0}}}}}}},"c":{"a":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1103":{"tf":1.0},"1307":{"tf":1.0},"250":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1185":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"94":{"tf":1.0}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1083":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"d":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1244":{"tf":1.0}}}}}}},"df":1,"docs":{"1234":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"1165":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"e":{"df":11,"docs":{"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"1169":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"730":{"tf":1.0},"792":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"927":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"972":{"tf":1.0},"988":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"1509":{"tf":1.0},"209":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"973":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1018":{"tf":1.0},"1024":{"tf":1.0},"1030":{"tf":1.0},"1036":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"1363":{"tf":1.0},"1386":{"tf":1.0},"1498":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"246":{"tf":1.0},"408":{"tf":1.0},"642":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1011":{"tf":1.0},"1012":{"tf":1.0},"1529":{"tf":1.0},"967":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"i":{"/":{"c":{"d":{"df":2,"docs":{"1157":{"tf":1.0},"255":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":6,"docs":{"936":{"tf":1.0},"937":{"tf":1.0},"938":{"tf":1.0},"939":{"tf":1.0},"975":{"tf":1.0},"977":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"516":{"tf":1.0},"693":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"312":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"1229":{"tf":1.0},"1317":{"tf":1.0},"1407":{"tf":1.0},"1458":{"tf":1.0},"4":{"tf":1.0},"70":{"tf":1.0},"771":{"tf":1.0},"8":{"tf":1.0},"907":{"tf":1.0},"996":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"474":{"tf":1.0}}}},"df":17,"docs":{"1189":{"tf":1.0},"1202":{"tf":1.0},"1272":{"tf":1.0},"1273":{"tf":1.0},"1274":{"tf":1.0},"1282":{"tf":1.0},"1285":{"tf":1.0},"1356":{"tf":1.0},"1359":{"tf":1.0},"1379":{"tf":1.0},"1382":{"tf":1.0},"427":{"tf":1.0},"443":{"tf":1.0},"457":{"tf":1.0},"458":{"tf":1.0},"474":{"tf":1.0},"667":{"tf":1.0}}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"935":{"tf":1.0}}}},"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"1073":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"238":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":5,"docs":{"1345":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1457":{"tf":1.0},"1458":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1304":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"311":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":18,"docs":{"120":{"tf":1.0},"1229":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"1407":{"tf":1.0},"1408":{"tf":1.0},"1412":{"tf":1.0},"1414":{"tf":1.0},"1416":{"tf":1.0},"1418":{"tf":1.0},"1423":{"tf":1.0},"234":{"tf":1.0},"979":{"tf":1.0},"996":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"852":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":13,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"140":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"1528":{"tf":1.0},"207":{"tf":1.0},"350":{"tf":1.0},"451":{"tf":1.0},"582":{"tf":1.0},"678":{"tf":1.0},"724":{"tf":1.0},"976":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":2,"docs":{"0":{"tf":1.0},"19":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1048":{"tf":1.0}}}}}}},"t":{"df":6,"docs":{"1503":{"tf":1.0},"16":{"tf":1.0},"353":{"tf":1.0},"585":{"tf":1.0},"66":{"tf":1.0},"940":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"1078":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":21,"docs":{"1144":{"tf":1.0},"1312":{"tf":1.0},"1330":{"tf":1.0},"1355":{"tf":1.0},"1378":{"tf":1.0},"1437":{"tf":1.0},"223":{"tf":1.0},"288":{"tf":1.0},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"616":{"tf":1.0},"654":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"825":{"tf":1.0},"826":{"tf":1.0},"902":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"985":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"51":{"tf":1.0},"733":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"501":{"tf":1.0},"741":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"1052":{"tf":1.0},"983":{"tf":1.0}}}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"26":{"tf":1.0},"39":{"tf":1.0},"455":{"tf":1.0}}}}}},"d":{"a":{"df":2,"docs":{"552":{"tf":1.0},"579":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1119":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"1413":{"tf":1.0},"436":{"tf":1.0}},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"542":{"tf":1.0},"543":{"tf":1.0}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"r":{"df":94,"docs":{"1019":{"tf":1.0},"1025":{"tf":1.0},"1031":{"tf":1.0},"1037":{"tf":1.0},"1056":{"tf":1.0},"1058":{"tf":1.0},"1065":{"tf":1.0},"1074":{"tf":1.0},"1079":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"1187":{"tf":1.0},"1188":{"tf":1.0},"1189":{"tf":1.0},"1215":{"tf":1.0},"1226":{"tf":1.0},"1227":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"1277":{"tf":1.0},"1341":{"tf":1.0},"1343":{"tf":1.0},"1412":{"tf":1.0},"1434":{"tf":1.0},"1437":{"tf":1.0},"1438":{"tf":1.0},"1439":{"tf":1.0},"1440":{"tf":1.0},"1441":{"tf":1.0},"1444":{"tf":1.0},"1445":{"tf":1.0},"1446":{"tf":1.0},"1449":{"tf":1.0},"1450":{"tf":1.0},"1452":{"tf":1.0},"1454":{"tf":1.0},"1459":{"tf":1.0},"1460":{"tf":1.0},"1461":{"tf":1.0},"1495":{"tf":1.0},"1498":{"tf":1.0},"1509":{"tf":1.0},"160":{"tf":1.0},"244":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"284":{"tf":1.0},"294":{"tf":1.0},"295":{"tf":1.0},"308":{"tf":1.0},"310":{"tf":1.0},"333":{"tf":1.0},"334":{"tf":1.0},"335":{"tf":1.0},"389":{"tf":1.0},"418":{"tf":1.0},"435":{"tf":1.0},"462":{"tf":1.0},"484":{"tf":1.0},"485":{"tf":1.0},"486":{"tf":1.0},"559":{"tf":1.0},"560":{"tf":1.0},"561":{"tf":1.0},"562":{"tf":1.0},"623":{"tf":1.0},"652":{"tf":1.0},"658":{"tf":1.0},"661":{"tf":1.0},"671":{"tf":1.0},"672":{"tf":1.0},"720":{"tf":1.0},"721":{"tf":1.0},"722":{"tf":1.0},"731":{"tf":1.0},"737":{"tf":1.0},"85":{"tf":1.0},"887":{"tf":1.0},"891":{"tf":1.0},"892":{"tf":1.0},"893":{"tf":1.0},"896":{"tf":1.0},"898":{"tf":1.0},"899":{"tf":1.0},"900":{"tf":1.0},"901":{"tf":1.0},"902":{"tf":1.0},"904":{"tf":1.0},"929":{"tf":1.0},"933":{"tf":1.0},"945":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1491":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":16,"docs":{"1005":{"tf":1.0},"1027":{"tf":1.0},"1033":{"tf":1.0},"1039":{"tf":1.0},"1049":{"tf":1.0},"1062":{"tf":1.0},"1070":{"tf":1.0},"1087":{"tf":1.0},"1104":{"tf":1.0},"1279":{"tf":1.0},"1455":{"tf":1.0},"247":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"942":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1121":{"tf":1.0},"746":{"tf":1.0}}}}}},"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"517":{"tf":1.0},"694":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"157":{"tf":1.0},"754":{"tf":1.0},"761":{"tf":1.0},"762":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1279":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"194":{"tf":1.0},"33":{"tf":1.0},"476":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":4,"docs":{"1173":{"tf":1.0},"217":{"tf":1.0},"422":{"tf":1.0},"523":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1130":{"tf":1.0},"1213":{"tf":1.0},"1397":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"876":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"819":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":13,"docs":{"22":{"tf":1.0},"260":{"tf":1.0},"329":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"455":{"tf":1.0},"515":{"tf":1.0},"557":{"tf":1.0},"692":{"tf":1.0},"756":{"tf":1.0},"777":{"tf":1.0},"807":{"tf":1.0},"912":{"tf":1.0}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"1153":{"tf":1.0},"1154":{"tf":1.0},"1155":{"tf":1.0},"1156":{"tf":1.0}}}},"df":0,"docs":{}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"103":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":44,"docs":{"1110":{"tf":1.0},"124":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"1323":{"tf":1.0},"1328":{"tf":1.0},"1332":{"tf":1.0},"1336":{"tf":1.0},"134":{"tf":1.0},"1351":{"tf":1.0},"1361":{"tf":1.0},"1374":{"tf":1.0},"1384":{"tf":1.0},"141":{"tf":1.0},"1419":{"tf":1.0},"146":{"tf":1.0},"148":{"tf":1.0},"175":{"tf":1.0},"208":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"274":{"tf":1.0},"388":{"tf":1.0},"390":{"tf":1.0},"406":{"tf":1.0},"418":{"tf":1.0},"622":{"tf":1.0},"624":{"tf":1.0},"640":{"tf":1.0},"652":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"742":{"tf":1.0},"76":{"tf":1.0},"768":{"tf":1.0},"77":{"tf":1.0},"794":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"822":{"tf":1.0},"845":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"536":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"430":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"542":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"(":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"543":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":1,"docs":{"431":{"tf":1.0}}},"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":5,"docs":{"391":{"tf":1.0},"625":{"tf":1.0},"82":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1390":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"1099":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":10,"docs":{"1014":{"tf":1.0},"1463":{"tf":1.0},"1514":{"tf":1.0},"158":{"tf":1.0},"341":{"tf":1.0},"56":{"tf":1.0},"568":{"tf":1.0},"781":{"tf":1.0},"913":{"tf":1.0},"984":{"tf":1.0}},"i":{"df":2,"docs":{"1254":{"tf":1.0},"24":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"219":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":17,"docs":{"1108":{"tf":1.0},"1110":{"tf":1.0},"1124":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1332":{"tf":1.0},"151":{"tf":1.0},"178":{"tf":1.0},"198":{"tf":1.0},"278":{"tf":1.0},"284":{"tf":1.0},"295":{"tf":1.0},"392":{"tf":1.0},"495":{"tf":1.0},"626":{"tf":1.0},"738":{"tf":1.0},"742":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"519":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"b":{"a":{"df":0,"docs":{},"s":{"df":6,"docs":{"1077":{"tf":1.4142135623730951},"1295":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1521":{"tf":1.0},"1522":{"tf":1.0}}}},"df":0,"docs":{}},"df":8,"docs":{"1093":{"tf":1.0},"34":{"tf":1.0},"403":{"tf":1.0},"404":{"tf":1.0},"637":{"tf":1.0},"638":{"tf":1.0},"655":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":8,"docs":{"1198":{"tf":1.0},"1199":{"tf":1.0},"1293":{"tf":1.0},"1496":{"tf":1.0},"448":{"tf":1.0},"449":{"tf":1.0},"450":{"tf":1.0},"679":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":5,"docs":{"283":{"tf":1.0},"294":{"tf":1.0},"338":{"tf":1.0},"565":{"tf":1.0},"928":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1120":{"tf":1.0},"151":{"tf":1.0},"377":{"tf":1.0},"610":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1008":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":2,"docs":{"680":{"tf":1.0},"682":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":2,"docs":{"1506":{"tf":1.0},"545":{"tf":1.0}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":6,"docs":{"13":{"tf":1.0},"1300":{"tf":1.0},"1304":{"tf":1.0},"170":{"tf":1.0},"204":{"tf":1.0},"23":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"298":{"tf":1.0},"302":{"tf":1.0},"307":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"1444":{"tf":1.0},"314":{"tf":1.0},"346":{"tf":1.0},"554":{"tf":1.0},"573":{"tf":1.0},"928":{"tf":1.0},"968":{"tf":1.0}}}}},"x":{"df":1,"docs":{"1219":{"tf":1.0}}}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"979":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"220":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"1028":{"tf":1.4142135623730951},"344":{"tf":1.0},"571":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1059":{"tf":1.0},"1228":{"tf":1.0},"1462":{"tf":1.0},"177":{"tf":1.0},"190":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"s":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1249":{"tf":1.0}}}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"305":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"n":{"df":27,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.0},"1004":{"tf":1.0},"1235":{"tf":1.0},"1249":{"tf":1.0},"1250":{"tf":1.0},"1251":{"tf":1.0},"129":{"tf":1.0},"1333":{"tf":1.0},"1473":{"tf":1.0},"1475":{"tf":1.0},"1476":{"tf":1.0},"1477":{"tf":1.0},"165":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"234":{"tf":1.0},"236":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"252":{"tf":1.0},"266":{"tf":1.0},"763":{"tf":1.0},"896":{"tf":1.0},"943":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":4,"docs":{"1474":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"253":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"682":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":98,"docs":{"1115":{"tf":1.0},"1142":{"tf":1.0},"1231":{"tf":1.0},"1232":{"tf":1.0},"1312":{"tf":1.0},"1322":{"tf":1.0},"1323":{"tf":1.0},"1324":{"tf":1.0},"1325":{"tf":1.0},"133":{"tf":1.0},"1338":{"tf":1.0},"134":{"tf":1.0},"1340":{"tf":1.0},"135":{"tf":1.0},"1350":{"tf":1.0},"1351":{"tf":1.0},"1352":{"tf":1.0},"1353":{"tf":1.0},"136":{"tf":1.0},"1364":{"tf":1.0},"1373":{"tf":1.0},"1374":{"tf":1.0},"1375":{"tf":1.0},"1376":{"tf":1.0},"1387":{"tf":1.0},"1390":{"tf":1.0},"1403":{"tf":1.0},"1404":{"tf":1.0},"141":{"tf":1.0},"1418":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1425":{"tf":1.0},"1478":{"tf":1.0},"1481":{"tf":1.0},"167":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"192":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"390":{"tf":1.0},"391":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":1.0},"624":{"tf":1.0},"625":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"655":{"tf":1.0},"656":{"tf":1.0},"657":{"tf":1.0},"732":{"tf":1.0},"736":{"tf":1.0},"76":{"tf":1.0},"774":{"tf":1.0},"780":{"tf":1.0},"793":{"tf":1.0},"794":{"tf":1.0},"795":{"tf":1.0},"796":{"tf":1.0},"80":{"tf":1.0},"843":{"tf":1.0},"845":{"tf":1.0},"849":{"tf":1.0},"914":{"tf":1.0},"921":{"tf":1.0},"922":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"244":{"tf":1.0}}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"978":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"e":{"d":{"2":{"5":{"5":{"1":{"9":{"df":4,"docs":{"1016":{"tf":1.4142135623730951},"1515":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":1,"docs":{"1169":{"tf":1.0}}}},"df":0,"docs":{},"m":{"b":{"df":5,"docs":{"185":{"tf":1.0},"366":{"tf":1.0},"371":{"tf":1.0},"519":{"tf":1.0},"522":{"tf":1.0}},"e":{"d":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":4,"docs":{"600":{"tf":1.0},"605":{"tf":1.0},"696":{"tf":1.0},"699":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":7,"docs":{"1091":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"194":{"tf":1.0},"789":{"tf":1.0},"790":{"tf":1.0},"841":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":5,"docs":{"1199":{"tf":1.0},"1497":{"tf":1.0},"301":{"tf":1.0},"306":{"tf":1.0},"449":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"815":{"tf":1.0}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1149":{"tf":1.0},"1243":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"939":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"746":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1066":{"tf":1.0},"113":{"tf":1.0},"1159":{"tf":1.0},"1341":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1430":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.0},"577":{"tf":1.0},"660":{"tf":1.0},"903":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":40,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"1171":{"tf":1.0},"1280":{"tf":1.0},"1281":{"tf":1.0},"1282":{"tf":1.0},"1344":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"1457":{"tf":1.0},"1459":{"tf":1.0},"1463":{"tf":1.0},"1468":{"tf":1.0},"1473":{"tf":1.0},"1478":{"tf":1.0},"1483":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1490":{"tf":1.0},"1491":{"tf":1.0},"1492":{"tf":1.0},"1495":{"tf":1.0},"286":{"tf":1.0},"352":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"477":{"tf":1.0},"496":{"tf":1.0},"497":{"tf":1.0},"498":{"tf":1.0},"546":{"tf":1.0},"584":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"678":{"tf":1.0},"723":{"tf":1.0},"941":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"1192":{"tf":1.0},"1205":{"tf":1.0}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"1115":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":46,"docs":{"1021":{"tf":1.0},"1063":{"tf":1.0},"1072":{"tf":1.0},"1084":{"tf":1.0},"1128":{"tf":1.0},"1185":{"tf":1.0},"1206":{"tf":1.0},"1216":{"tf":1.0},"1217":{"tf":1.0},"1218":{"tf":1.0},"1248":{"tf":1.0},"1301":{"tf":1.0},"1302":{"tf":1.0},"1305":{"tf":1.0},"1317":{"tf":1.0},"1337":{"tf":1.0},"1348":{"tf":1.0},"1371":{"tf":1.0},"1396":{"tf":1.0},"1437":{"tf":1.0},"1454":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"226":{"tf":1.0},"288":{"tf":1.0},"32":{"tf":1.0},"356":{"tf":1.0},"382":{"tf":1.0},"420":{"tf":1.0},"441":{"tf":1.0},"472":{"tf":1.0},"507":{"tf":1.0},"590":{"tf":1.0},"616":{"tf":1.0},"654":{"tf":1.0},"764":{"tf":1.0},"791":{"tf":1.0},"816":{"tf":1.0},"839":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"859":{"tf":1.0},"872":{"tf":1.0},"883":{"tf":1.0},"902":{"tf":1.0},"997":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"615":{"tf":1.0},"724":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1524":{"tf":1.0},"1526":{"tf":1.0},"400":{"tf":1.0},"634":{"tf":1.0}}}},"t":{"df":4,"docs":{"1345":{"tf":1.0},"1429":{"tf":1.0},"144":{"tf":1.0},"1458":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"1219":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"933":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1095":{"tf":1.0}}}}}}}}},"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"606":{"tf":1.0}}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"372":{"tf":1.0}}}},"df":2,"docs":{"1234":{"tf":1.0},"318":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"1267":{"tf":1.0}}}},"df":6,"docs":{"1354":{"tf":1.0},"1355":{"tf":1.0},"1526":{"tf":1.0},"460":{"tf":1.0},"461":{"tf":1.0},"481":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"1124":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"739":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"1092":{"tf":1.0},"412":{"tf":1.0},"646":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1309":{"tf":1.0},"1326":{"tf":1.0},"137":{"tf":1.0},"1422":{"tf":1.0},"194":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1215":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":8,"docs":{"1259":{"tf":1.0},"1260":{"tf":1.0},"1469":{"tf":1.0},"1474":{"tf":1.0},"1480":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"253":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1346":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":3,"docs":{"1270":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"1381":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"107":{"tf":1.0},"1075":{"tf":1.0},"108":{"tf":1.0},"1118":{"tf":1.0},"2":{"tf":1.0},"259":{"tf":1.0},"292":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":2,"docs":{"1259":{"tf":1.0},"459":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":32,"docs":{"1117":{"tf":1.0},"1134":{"tf":1.0},"1309":{"tf":1.0},"181":{"tf":1.0},"398":{"tf":1.0},"46":{"tf":1.0},"632":{"tf":1.0},"744":{"tf":1.0},"756":{"tf":1.0},"757":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"777":{"tf":1.0},"781":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"792":{"tf":1.0},"807":{"tf":1.0},"808":{"tf":1.0},"809":{"tf":1.0},"811":{"tf":1.0},"835":{"tf":1.0},"836":{"tf":1.0},"854":{"tf":1.0},"856":{"tf":1.0},"865":{"tf":1.0},"866":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"878":{"tf":1.0},"890":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":32,"docs":{"1090":{"tf":1.0},"1091":{"tf":1.0},"1092":{"tf":1.0},"1365":{"tf":1.0},"1388":{"tf":1.0},"1431":{"tf":1.0},"1432":{"tf":1.0},"1433":{"tf":1.0},"1446":{"tf":1.0},"164":{"tf":1.0},"176":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"310":{"tf":1.0},"335":{"tf":1.0},"338":{"tf":1.0},"389":{"tf":1.0},"393":{"tf":1.0},"436":{"tf":1.0},"560":{"tf":1.0},"565":{"tf":1.0},"623":{"tf":1.0},"627":{"tf":1.0},"659":{"tf":1.0},"672":{"tf":1.0},"721":{"tf":1.0},"737":{"tf":1.0},"787":{"tf":1.0},"788":{"tf":1.0},"838":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":7,"docs":{"1057":{"tf":1.0},"1094":{"tf":1.0},"1097":{"tf":1.0},"1101":{"tf":1.0},"1105":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"826":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}}}}}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":4,"docs":{"1320":{"tf":1.0},"148":{"tf":1.0},"23":{"tf":1.0},"72":{"tf":1.0}}}}},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"1140":{"tf":1.0},"1160":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"259":{"tf":1.0},"292":{"tf":1.0}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"1271":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"17":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"1184":{"tf":1.0},"1247":{"tf":1.0},"1265":{"tf":1.0},"456":{"tf":1.0},"997":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"13":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":12,"docs":{"1044":{"tf":1.0},"1431":{"tf":1.0},"1465":{"tf":1.0},"1471":{"tf":1.0},"1519":{"tf":1.0},"235":{"tf":1.0},"495":{"tf":1.0},"657":{"tf":1.0},"66":{"tf":1.0},"721":{"tf":1.0},"745":{"tf":1.0},"987":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1051":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"d":{"df":8,"docs":{"1462":{"tf":1.0},"1464":{"tf":1.0},"1475":{"tf":1.0},"1481":{"tf":1.0},"1484":{"tf":1.0},"252":{"tf":1.0},"351":{"tf":1.0},"583":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1264":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"s":{"df":1,"docs":{"1057":{"tf":1.0}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"1310":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"416":{"tf":1.0},"534":{"tf":1.0},"545":{"tf":1.0},"650":{"tf":1.0},"688":{"tf":1.0},"711":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1138":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"15":{"tf":1.0}}}}},"z":{"df":0,"docs":{},"z":{"df":3,"docs":{"1164":{"tf":1.0},"1165":{"tf":1.0},"1166":{"tf":1.0}}}}}},"g":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"1400":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":7,"docs":{"1004":{"tf":1.0},"1043":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"234":{"tf":1.0},"843":{"tf":1.0},"924":{"tf":1.0}}}}},"t":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"597":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"607":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"609":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"608":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"363":{"tf":1.0}}}}}}}}}}},"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"(":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"374":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":5,"docs":{"119":{"tf":1.0},"1195":{"tf":1.0},"1196":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0}},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"376":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"375":{"tf":1.0}}}}}}}}}}}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"1158":{"tf":1.0}}},"df":0,"docs":{}}}}},"l":{"df":0,"docs":{},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"1408":{"tf":1.0},"1428":{"tf":1.0},"497":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":2,"docs":{"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"1117":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"954":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"d":{"df":5,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"1112":{"tf":1.0},"1502":{"tf":1.0},"68":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"a":{"df":0,"docs":{},"i":{".":{"a":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"j":{"a":{"c":{"df":3,"docs":{"1182":{"tf":1.0},"329":{"tf":1.0},"5":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"331":{"tf":1.0}}}}}},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"330":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":4,"docs":{"1073":{"tf":1.4142135623730951},"1207":{"tf":1.0},"739":{"tf":1.0},"792":{"tf":1.0}}},"n":{"d":{"df":0,"docs":{},"l":{"df":24,"docs":{"1171":{"tf":1.0},"1280":{"tf":1.0},"1314":{"tf":1.0},"1344":{"tf":1.0},"1346":{"tf":1.0},"1366":{"tf":1.0},"1367":{"tf":1.0},"1393":{"tf":1.0},"1394":{"tf":1.0},"286":{"tf":1.0},"384":{"tf":1.0},"419":{"tf":1.0},"463":{"tf":1.0},"477":{"tf":1.0},"488":{"tf":1.0},"490":{"tf":1.0},"492":{"tf":1.0},"496":{"tf":1.0},"546":{"tf":1.0},"618":{"tf":1.0},"653":{"tf":1.0},"677":{"tf":1.0},"723":{"tf":1.0},"963":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"497":{"tf":1.0}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"83":{"tf":1.0}}}}}},"r":{"df":1,"docs":{"1145":{"tf":1.0}}},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"1046":{"tf":1.0},"227":{"tf":1.0},"417":{"tf":1.0},"651":{"tf":1.0},"784":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"535":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"1442":{"tf":1.0},"181":{"tf":1.0},"756":{"tf":1.0},"807":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":2,"docs":{"119":{"tf":1.0},"1411":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"491":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"871":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"587":{"tf":1.0},"725":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"1314":{"tf":1.0},"199":{"tf":1.0},"798":{"tf":1.0},"998":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"1492":{"tf":1.0}}}},"df":0,"docs":{}}},"df":12,"docs":{"1149":{"tf":1.0},"1272":{"tf":1.0},"1354":{"tf":1.0},"1356":{"tf":1.0},"1377":{"tf":1.0},"1379":{"tf":1.0},"1525":{"tf":1.0},"331":{"tf":1.0},"434":{"tf":1.0},"453":{"tf":1.0},"457":{"tf":1.0},"537":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"766":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"1034":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"i":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"1071":{"tf":1.0}}}},"d":{"df":2,"docs":{"1114":{"tf":1.0},"587":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"1208":{"tf":1.0},"1225":{"tf":1.0},"1333":{"tf":1.0},"233":{"tf":1.0},"41":{"tf":1.0},"894":{"tf":1.0},"913":{"tf":1.0},"95":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"778":{"tf":1.0}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"882":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"1204":{"tf":1.0},"1399":{"tf":1.0},"1401":{"tf":1.0},"1402":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0}}}}}}},"i":{"c":{"df":1,"docs":{"930":{"tf":1.0}}},"df":0,"docs":{}}}}},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"440":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"1308":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1123":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"1410":{"tf":1.0}},"i":{"df":8,"docs":{"121":{"tf":1.0},"1225":{"tf":1.0},"1258":{"tf":1.0},"283":{"tf":1.0},"387":{"tf":1.0},"621":{"tf":1.0},"673":{"tf":1.0},"71":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1432":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":16,"docs":{"102":{"tf":1.0},"105":{"tf":1.0},"1223":{"tf":1.0},"321":{"tf":1.0},"323":{"tf":1.0},"327":{"tf":1.0},"514":{"tf":1.0},"548":{"tf":1.0},"550":{"tf":1.0},"554":{"tf":1.0},"555":{"tf":1.0},"691":{"tf":1.0},"70":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0},"99":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":26,"docs":{"1147":{"tf":1.0},"1148":{"tf":1.0},"1157":{"tf":1.0},"1221":{"tf":1.0},"1266":{"tf":1.0},"1269":{"tf":1.0},"1297":{"tf":1.0},"1298":{"tf":1.0},"1299":{"tf":1.0},"1303":{"tf":1.0},"1306":{"tf":1.0},"1357":{"tf":1.0},"1380":{"tf":1.0},"1396":{"tf":1.0},"1447":{"tf":1.0},"1523":{"tf":1.0},"17":{"tf":1.0},"255":{"tf":1.0},"330":{"tf":1.0},"383":{"tf":1.0},"422":{"tf":1.0},"503":{"tf":1.0},"617":{"tf":1.0},"663":{"tf":1.0},"674":{"tf":1.0},"914":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"82":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"95":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1211":{"tf":1.0},"1213":{"tf":1.0}}}}}}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":4,"docs":{"1461":{"tf":1.0},"1465":{"tf":1.0},"1471":{"tf":1.0},"1479":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"1131":{"tf":1.0}}}},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"596":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"362":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"1168":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":10,"docs":{"1200":{"tf":1.0},"1292":{"tf":1.0},"1528":{"tf":1.0},"350":{"tf":1.0},"354":{"tf":1.0},"451":{"tf":1.0},"509":{"tf":1.0},"582":{"tf":1.0},"586":{"tf":1.0},"976":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":4,"docs":{"867":{"tf":1.0},"868":{"tf":1.0},"869":{"tf":1.0},"871":{"tf":1.0}}}}}},"j":{"a":{"c":{"df":44,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"11":{"tf":1.0},"1151":{"tf":1.0},"1166":{"tf":1.0},"1175":{"tf":1.0},"12":{"tf":1.0},"1212":{"tf":1.0},"1225":{"tf":1.0},"1258":{"tf":1.0},"1381":{"tf":1.0},"1382":{"tf":1.0},"1409":{"tf":1.0},"1410":{"tf":1.0},"1411":{"tf":1.0},"1413":{"tf":1.0},"1415":{"tf":1.0},"1417":{"tf":1.0},"1419":{"tf":1.0},"1420":{"tf":1.0},"1421":{"tf":1.0},"1422":{"tf":1.0},"1524":{"tf":1.0},"1526":{"tf":1.0},"174":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"22":{"tf":1.0},"258":{"tf":1.0},"31":{"tf":1.0},"37":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"436":{"tf":1.0},"46":{"tf":1.0},"487":{"tf":1.0},"506":{"tf":1.0},"6":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"672":{"tf":1.0},"675":{"tf":1.0},"71":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"712":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"713":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"715":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"467":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"469":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"714":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"716":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"468":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}}}}}}}}}}}}},"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"1242":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1239":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"_":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1241":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"1237":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"1238":{"tf":1.0}}},"y":{"_":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"1240":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"516":{"tf":1.0},"558":{"tf":1.0},"693":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"470":{"tf":1.0},"538":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"k":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"471":{"tf":1.0},"539":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"m":{"c":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}}},"df":1,"docs":{"670":{"tf":1.0}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"669":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"(":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":2,"docs":{"686":{"tf":1.0},"718":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"1183":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"429":{"tf":1.0},"541":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1369":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":7,"docs":{"0":{"tf":1.0},"1287":{"tf":1.0},"1479":{"tf":1.0},"176":{"tf":1.0},"510":{"tf":1.0},"728":{"tf":1.0},"94":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"581":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"602":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"602":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}}},"df":43,"docs":{"1000":{"tf":1.0},"1001":{"tf":1.0},"1002":{"tf":1.0},"1006":{"tf":1.0},"1043":{"tf":1.0},"1044":{"tf":1.0},"1052":{"tf":1.0},"1163":{"tf":1.0},"1202":{"tf":1.0},"1204":{"tf":1.0},"1253":{"tf":1.0},"1259":{"tf":1.0},"1285":{"tf":1.0},"1436":{"tf":1.0},"1462":{"tf":1.0},"1464":{"tf":1.0},"1465":{"tf":1.0},"1466":{"tf":1.0},"1519":{"tf":1.0},"1520":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"26":{"tf":1.0},"447":{"tf":1.0},"478":{"tf":1.0},"59":{"tf":1.0},"657":{"tf":1.0},"892":{"tf":1.0},"90":{"tf":1.0},"923":{"tf":1.0},"924":{"tf":1.0},"925":{"tf":1.0},"926":{"tf":1.0},"962":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"983":{"tf":1.0},"991":{"tf":1.0},"992":{"tf":1.0},"993":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"/":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1244":{"tf":1.0}}}},"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"1245":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"1243":{"tf":1.0}}}}}},"o":{"a":{"df":3,"docs":{"1268":{"tf":1.0},"464":{"tf":1.0},"465":{"tf":1.0}}},"df":0,"docs":{}},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"687":{"tf":1.0},"719":{"tf":1.0}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"1181":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"1130":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":9,"docs":{"1276":{"tf":1.0},"182":{"tf":1.0},"297":{"tf":1.0},"500":{"tf":1.0},"711":{"tf":1.0},"780":{"tf":1.0},"937":{"tf":1.0},"946":{"tf":1.0},"977":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"106":{"tf":1.0},"257":{"tf":1.0},"4":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":5,"docs":{"1425":{"tf":1.0},"214":{"tf":1.0},"42":{"tf":1.0},"50":{"tf":1.0},"855":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"863":{"tf":1.0}}}}},"o":{"a":{"d":{"(":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"595":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"361":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"265":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"388":{"tf":1.0},"43":{"tf":1.0},"561":{"tf":1.0},"622":{"tf":1.0},"659":{"tf":1.0},"904":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"734":{"tf":1.0},"750":{"tf":1.0},"775":{"tf":1.0},"801":{"tf":1.0},"830":{"tf":1.0},"888":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"1487":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":14,"docs":{"1199":{"tf":1.0},"1205":{"tf":1.0},"1288":{"tf":1.0},"1293":{"tf":1.0},"1439":{"tf":1.0},"296":{"tf":1.0},"297":{"tf":1.0},"298":{"tf":1.0},"299":{"tf":1.0},"317":{"tf":1.0},"449":{"tf":1.0},"502":{"tf":1.0},"899":{"tf":1.0},"966":{"tf":1.0}}},"o":{"df":0,"docs":{},"k":{"df":2,"docs":{"1001":{"tf":1.0},"241":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":5,"docs":{"1233":{"tf":1.0},"1251":{"tf":1.0},"130":{"tf":1.0},"1477":{"tf":1.0},"992":{"tf":1.0}}}}}}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"827":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":7,"docs":{"1335":{"tf":1.0},"447":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"658":{"tf":1.0},"923":{"tf":1.0},"947":{"tf":1.0}}}},"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"112":{"tf":1.0},"150":{"tf":1.0},"463":{"tf":1.0},"676":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"1041":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1286":{"tf":1.0},"982":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"p":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"443":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"442":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":31,"docs":{"1148":{"tf":1.0},"1152":{"tf":1.0},"1173":{"tf":1.0},"1174":{"tf":1.0},"1175":{"tf":1.0},"1207":{"tf":1.0},"1357":{"tf":1.0},"1358":{"tf":1.0},"1359":{"tf":1.0},"1380":{"tf":1.0},"1382":{"tf":1.0},"1400":{"tf":1.0},"1523":{"tf":1.0},"1524":{"tf":1.0},"330":{"tf":1.0},"383":{"tf":1.0},"422":{"tf":1.0},"423":{"tf":1.0},"424":{"tf":1.0},"426":{"tf":1.0},"427":{"tf":1.0},"540":{"tf":1.0},"617":{"tf":1.0},"663":{"tf":1.0},"666":{"tf":1.0},"667":{"tf":1.0},"684":{"tf":1.0},"717":{"tf":1.0},"847":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"1114":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1129":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":5,"docs":{"1088":{"tf":1.0},"340":{"tf":1.0},"567":{"tf":1.0},"841":{"tf":1.0},"848":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"820":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":10,"docs":{"1184":{"tf":1.0},"1186":{"tf":1.0},"197":{"tf":1.0},"438":{"tf":1.0},"439":{"tf":1.0},"440":{"tf":1.0},"445":{"tf":1.0},"878":{"tf":1.0},"941":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"149":{"tf":1.0},"150":{"tf":1.0},"558":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"1440":{"tf":1.0},"300":{"tf":1.0},"301":{"tf":1.0},"302":{"tf":1.0},"303":{"tf":1.0},"304":{"tf":1.0},"318":{"tf":1.0},"900":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"d":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":14,"docs":{"1275":{"tf":1.0},"1278":{"tf":1.0},"1286":{"tf":1.0},"1495":{"tf":1.0},"461":{"tf":1.0},"462":{"tf":1.0},"465":{"tf":1.0},"479":{"tf":1.0},"481":{"tf":1.0},"484":{"tf":1.0},"500":{"tf":1.0},"501":{"tf":1.0},"502":{"tf":1.0},"675":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":17,"docs":{"1047":{"tf":1.0},"1093":{"tf":1.0},"1135":{"tf":1.0},"1456":{"tf":1.0},"1502":{"tf":1.0},"1504":{"tf":1.0},"1505":{"tf":1.0},"1508":{"tf":1.0},"1510":{"tf":1.0},"1511":{"tf":1.0},"1514":{"tf":1.0},"1516":{"tf":1.0},"1519":{"tf":1.0},"1521":{"tf":1.0},"1523":{"tf":1.0},"1525":{"tf":1.0},"1527":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"264":{"tf":1.0},"840":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"1467":{"tf":1.0},"1482":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":4,"docs":{"1460":{"tf":1.0},"1470":{"tf":1.0},"319":{"tf":1.0},"490":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"1150":{"tf":1.0},"1151":{"tf":1.0},"1152":{"tf":1.0},"506":{"tf":1.0}}}},"d":{"df":0,"docs":{},"e":{"df":4,"docs":{"1197":{"tf":1.0},"243":{"tf":1.0},"266":{"tf":1.0},"446":{"tf":1.0}},"l":{"df":10,"docs":{"1082":{"tf":1.0},"1173":{"tf":1.0},"1193":{"tf":1.0},"1214":{"tf":1.0},"248":{"tf":1.0},"422":{"tf":1.0},"881":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"917":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":11,"docs":{"329":{"tf":1.0},"351":{"tf":1.0},"515":{"tf":1.0},"537":{"tf":1.0},"540":{"tf":1.0},"557":{"tf":1.0},"583":{"tf":1.0},"688":{"tf":1.0},"692":{"tf":1.0},"711":{"tf":1.0},"717":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"j":{"a":{"c":{"df":1,"docs":{"98":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"d":{"b":{"df":1,"docs":{"1303":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":11,"docs":{"1003":{"tf":1.0},"1206":{"tf":1.0},"1361":{"tf":1.0},"1384":{"tf":1.0},"1397":{"tf":1.0},"1404":{"tf":1.0},"142":{"tf":1.0},"226":{"tf":1.0},"35":{"tf":1.0},"858":{"tf":1.0},"88":{"tf":1.0}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"1277":{"tf":1.0},"1343":{"tf":1.0},"200":{"tf":1.0},"210":{"tf":1.0},"487":{"tf":1.0}}}}}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"1203":{"tf":1.0}}}}}}},"w":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"699":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"522":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}},"df":4,"docs":{"1340":{"tf":1.0},"1507":{"tf":1.0},"401":{"tf":1.0},"635":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":21,"docs":{"117":{"tf":1.0},"1261":{"tf":1.0},"145":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}}}}},"o":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"696":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"j":{"df":17,"docs":{"1127":{"tf":1.0},"1156":{"tf":1.0},"1179":{"tf":1.0},"1182":{"tf":1.0},"1218":{"tf":1.0},"1266":{"tf":1.0},"1273":{"tf":1.0},"1301":{"tf":1.0},"1348":{"tf":1.0},"1401":{"tf":1.0},"1517":{"tf":1.0},"321":{"tf":1.0},"5":{"tf":1.0},"74":{"tf":1.0},"770":{"tf":1.0},"9":{"tf":1.0},"906":{"tf":1.0}}}},"df":1,"docs":{"97":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"82":{"tf":1.0},"915":{"tf":1.0}}},"s":{"a":{"df":0,"docs":{},"v":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"581":{"tf":1.0}}}}}},"df":5,"docs":{"1085":{"tf":1.0},"110":{"tf":1.0},"1505":{"tf":1.0},"450":{"tf":1.0},"850":{"tf":1.0}}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"1405":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"324":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":6,"docs":{"1438":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"284":{"tf":1.0},"290":{"tf":1.0},"898":{"tf":1.0}}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"1221":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"311":{"tf":1.0}}}}}}}}}}}},"r":{"df":8,"docs":{"1142":{"tf":1.0},"1322":{"tf":1.0},"1331":{"tf":1.0},"1350":{"tf":1.0},"1373":{"tf":1.0},"171":{"tf":1.0},"409":{"tf":1.0},"643":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":1,"docs":{"1100":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":14,"docs":{"107":{"tf":1.0},"1227":{"tf":1.0},"1428":{"tf":1.0},"179":{"tf":1.0},"368":{"tf":1.0},"432":{"tf":1.0},"64":{"tf":1.0},"722":{"tf":1.0},"836":{"tf":1.0},"856":{"tf":1.0},"866":{"tf":1.0},"869":{"tf":1.0},"880":{"tf":1.0},"891":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1286":{"tf":1.0},"479":{"tf":1.0}}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"767":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"837":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"439":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"696":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":6,"docs":{"1433":{"tf":1.0},"1497":{"tf":1.0},"179":{"tf":1.0},"191":{"tf":1.0},"393":{"tf":1.0},"627":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"519":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"36":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"1007":{"tf":1.0}}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":19,"docs":{"1017":{"tf":1.0},"1023":{"tf":1.0},"1029":{"tf":1.0},"1035":{"tf":1.0},"1109":{"tf":1.0},"120":{"tf":1.0},"1222":{"tf":1.0},"1263":{"tf":1.0},"1398":{"tf":1.0},"1435":{"tf":1.0},"231":{"tf":1.0},"291":{"tf":1.0},"454":{"tf":1.0},"482":{"tf":1.0},"664":{"tf":1.0},"751":{"tf":1.0},"776":{"tf":1.0},"802":{"tf":1.0},"831":{"tf":1.0}}}}}}}}}},"p":{"2":{"df":0,"docs":{},"p":{"df":1,"docs":{"1246":{"tf":1.0}}}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"328":{"tf":1.0},"556":{"tf":1.0},"74":{"tf":1.0},"78":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"348":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":2,"docs":{"509":{"tf":1.0},"656":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"1287":{"tf":1.0},"510":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1361":{"tf":1.0},"1384":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"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":2,"docs":{"1197":{"tf":1.0},"446":{"tf":1.0}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"1466":{"tf":1.0},"963":{"tf":1.0}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"1133":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":9,"docs":{"1122":{"tf":1.0},"1161":{"tf":1.0},"1275":{"tf":1.0},"1367":{"tf":1.0},"1394":{"tf":1.0},"1424":{"tf":1.0},"1443":{"tf":1.0},"499":{"tf":1.0},"674":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":2,"docs":{"489":{"tf":1.0},"490":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"486":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"1048":{"tf":1.0},"1100":{"tf":1.0},"206":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"1007":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"352":{"tf":1.0},"584":{"tf":1.0}}}}}}}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"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":{"22":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"760":{"tf":1.0}}},"p":{"df":1,"docs":{"551":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"33":{"tf":1.0}}}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"996":{"tf":1.0}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"109":{"tf":1.0},"1516":{"tf":1.0},"1518":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":1,"docs":{"326":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"553":{"tf":1.0},"580":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"1071":{"tf":1.0},"965":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"1012":{"tf":1.0},"1254":{"tf":1.0},"1515":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"l":{"df":3,"docs":{"1077":{"tf":1.0},"1296":{"tf":1.0},"1299":{"tf":1.0}}}}}}}}}}},"q":{"2":{"0":{"2":{"5":{"df":3,"docs":{"1034":{"tf":1.0},"345":{"tf":1.0},"572":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"1028":{"tf":1.0},"344":{"tf":1.0},"571":{"tf":1.0}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":15,"docs":{"1009":{"tf":1.0},"1113":{"tf":1.0},"1167":{"tf":1.0},"1201":{"tf":1.0},"1283":{"tf":1.0},"1311":{"tf":1.0},"168":{"tf":1.0},"203":{"tf":1.0},"228":{"tf":1.0},"249":{"tf":1.0},"313":{"tf":1.0},"681":{"tf":1.0},"908":{"tf":1.0},"951":{"tf":1.0},"961":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":1,"docs":{"1011":{"tf":1.0}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"912":{"tf":1.0}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"1166":{"tf":1.0},"992":{"tf":1.0}}}}}}},"v":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1464":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"1530":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":9,"docs":{"1338":{"tf":1.0},"1389":{"tf":1.0},"210":{"tf":1.0},"34":{"tf":1.0},"54":{"tf":1.0},"58":{"tf":1.0},"920":{"tf":1.0},"991":{"tf":1.0},"993":{"tf":1.0}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":8,"docs":{"1284":{"tf":1.0},"14":{"tf":1.0},"1445":{"tf":1.0},"315":{"tf":1.0},"680":{"tf":1.0},"908":{"tf":1.0},"929":{"tf":1.0},"969":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"562":{"tf":1.0},"661":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"347":{"tf":1.0},"574":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"f":{"df":1,"docs":{"15":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":7,"docs":{"1122":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1170":{"tf":1.0},"755":{"tf":1.0},"806":{"tf":1.0},"834":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"1253":{"tf":1.0},"1276":{"tf":1.0},"918":{"tf":1.0},"925":{"tf":1.0},"934":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"1173":{"tf":1.0},"422":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"98":{"tf":1.0}},"n":{"df":1,"docs":{"97":{"tf":1.0}}}},"i":{"d":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"1022":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"j":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"704":{"tf":1.0},"710":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"704":{"tf":1.0},"710":{"tf":1.0}}}}}},"df":1,"docs":{"1259":{"tf":1.0}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":2,"docs":{"527":{"tf":1.0},"533":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"527":{"tf":1.0},"533":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"843":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1392":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"10":{"tf":1.0},"1126":{"tf":1.0},"1155":{"tf":1.0},"1180":{"tf":1.0},"1183":{"tf":1.0},"1217":{"tf":1.0},"1269":{"tf":1.0},"1274":{"tf":1.0},"1302":{"tf":1.0},"1371":{"tf":1.0},"1402":{"tf":1.0},"1517":{"tf":1.0},"548":{"tf":1.0},"561":{"tf":1.0},"6":{"tf":1.0},"769":{"tf":1.0},"78":{"tf":1.0},"905":{"tf":1.0},"97":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":6,"docs":{"1254":{"tf":1.0},"1515":{"tf":1.0},"344":{"tf":1.0},"345":{"tf":1.0},"571":{"tf":1.0},"572":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1083":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"700":{"tf":1.0}}}}}},"df":1,"docs":{"523":{"tf":1.0}}}}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":14,"docs":{"1178":{"tf":1.0},"122":{"tf":1.0},"1318":{"tf":1.0},"149":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"889":{"tf":1.0},"979":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"1160":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":2,"docs":{"1131":{"tf":1.0},"125":{"tf":1.0}},"i":{"df":1,"docs":{"14":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"32":{"tf":1.0}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"603":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"103":{"tf":1.0},"1165":{"tf":1.0},"149":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"d":{"df":9,"docs":{"1003":{"tf":1.0},"1004":{"tf":1.0},"1129":{"tf":1.0},"1235":{"tf":1.0},"1250":{"tf":1.0},"1475":{"tf":1.0},"236":{"tf":1.0},"252":{"tf":1.0},"303":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":3,"docs":{"1096":{"tf":1.0},"974":{"tf":1.0},"983":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"1307":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":17,"docs":{"1318":{"tf":1.0},"1407":{"tf":1.0},"1434":{"tf":1.0},"185":{"tf":1.0},"360":{"tf":1.0},"428":{"tf":1.0},"466":{"tf":1.0},"513":{"tf":1.0},"594":{"tf":1.0},"685":{"tf":1.0},"690":{"tf":1.0},"747":{"tf":1.0},"838":{"tf":1.0},"857":{"tf":1.0},"870":{"tf":1.0},"885":{"tf":1.0},"977":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"1099":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"(":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"373":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"r":{"df":2,"docs":{"1208":{"tf":1.0},"783":{"tf":1.0}}}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"1117":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"809":{"tf":1.0},"817":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"934":{"tf":1.0}}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"1099":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"1339":{"tf":1.0}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"915":{"tf":1.0}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":8,"docs":{"1146":{"tf":1.0},"1265":{"tf":1.0},"413":{"tf":1.0},"456":{"tf":1.0},"463":{"tf":1.0},"647":{"tf":1.0},"676":{"tf":1.0},"955":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"1493":{"tf":1.0},"414":{"tf":1.0},"488":{"tf":1.0},"648":{"tf":1.0},"956":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"1448":{"tf":1.0},"1466":{"tf":1.0},"1476":{"tf":1.0},"181":{"tf":1.0},"245":{"tf":1.0},"322":{"tf":1.0},"46":{"tf":1.0},"549":{"tf":1.0},"744":{"tf":1.0},"754":{"tf":1.0},"835":{"tf":1.0},"854":{"tf":1.0},"865":{"tf":1.0},"868":{"tf":1.0},"879":{"tf":1.0},"890":{"tf":1.0},"985":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"575":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"312":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"1436":{"tf":1.0},"991":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":9,"docs":{"1494":{"tf":1.0},"221":{"tf":1.0},"415":{"tf":1.0},"492":{"tf":1.0},"494":{"tf":1.0},"495":{"tf":1.0},"511":{"tf":1.0},"649":{"tf":1.0},"957":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"1313":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1120":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"1006":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":3,"docs":{"1016":{"tf":1.0},"342":{"tf":1.0},"569":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"1367":{"tf":1.0},"1394":{"tf":1.0}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"542":{"tf":1.0},"543":{"tf":1.0}}},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"1530":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"t":{"df":10,"docs":{"1010":{"tf":1.0},"1011":{"tf":1.0},"1012":{"tf":1.0},"1204":{"tf":1.0},"926":{"tf":1.0},"981":{"tf":1.0},"982":{"tf":1.0},"993":{"tf":1.0},"994":{"tf":1.0},"997":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"1276":{"tf":1.0},"237":{"tf":1.0},"486":{"tf":1.0},"505":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"500":{"tf":1.0}}}}}}},"s":{"a":{"df":3,"docs":{"1022":{"tf":1.0},"343":{"tf":1.0},"570":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":3,"docs":{"743":{"tf":1.0},"827":{"tf":1.0},"978":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"116":{"tf":1.0},"1215":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"t":{"df":13,"docs":{"101":{"tf":1.0},"1084":{"tf":1.0},"1154":{"tf":1.0},"1160":{"tf":1.0},"1216":{"tf":1.0},"257":{"tf":1.0},"4":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0},"844":{"tf":1.0},"860":{"tf":1.0},"873":{"tf":1.0},"884":{"tf":1.0}}}}}},"s":{"3":{"df":10,"docs":{"1064":{"tf":1.0},"1094":{"tf":1.0},"1098":{"tf":1.0},"1102":{"tf":1.0},"1106":{"tf":1.0},"1490":{"tf":1.0},"1512":{"tf":1.0},"1513":{"tf":1.0},"339":{"tf":1.0},"566":{"tf":1.0}}},"a":{"c":{"df":0,"docs":{},"r":{"df":1,"docs":{"1194":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"287":{"tf":1.0},"726":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"308":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"273":{"tf":1.0},"394":{"tf":1.0},"628":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"1010":{"tf":1.0}}}}},"df":0,"docs":{},"m":{"a":{"df":55,"docs":{"1081":{"tf":1.0},"1108":{"tf":1.0},"1110":{"tf":1.0},"1113":{"tf":1.0},"1118":{"tf":1.0},"1123":{"tf":1.0},"1124":{"tf":1.0},"1128":{"tf":1.0},"1132":{"tf":1.0},"1300":{"tf":1.0},"1427":{"tf":1.0},"1480":{"tf":1.0},"178":{"tf":1.0},"189":{"tf":1.0},"278":{"tf":1.0},"392":{"tf":1.0},"626":{"tf":1.0},"728":{"tf":1.0},"729":{"tf":1.0},"730":{"tf":1.0},"731":{"tf":1.0},"732":{"tf":1.0},"733":{"tf":1.0},"734":{"tf":1.0},"735":{"tf":1.0},"738":{"tf":1.0},"741":{"tf":1.0},"742":{"tf":1.0},"747":{"tf":1.0},"749":{"tf":1.0},"750":{"tf":1.0},"752":{"tf":1.0},"759":{"tf":1.0},"762":{"tf":1.0},"774":{"tf":1.0},"775":{"tf":1.0},"786":{"tf":1.0},"788":{"tf":1.0},"790":{"tf":1.0},"800":{"tf":1.0},"801":{"tf":1.0},"803":{"tf":1.0},"811":{"tf":1.0},"812":{"tf":1.0},"829":{"tf":1.0},"830":{"tf":1.0},"832":{"tf":1.0},"852":{"tf":1.0},"853":{"tf":1.0},"863":{"tf":1.0},"864":{"tf":1.0},"876":{"tf":1.0},"877":{"tf":1.0},"888":{"tf":1.0},"895":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1337":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1309":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"1310":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"1051":{"tf":1.0}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":37,"docs":{"1005":{"tf":1.0},"1008":{"tf":1.0},"1049":{"tf":1.0},"1085":{"tf":1.0},"1104":{"tf":1.0},"1170":{"tf":1.0},"1193":{"tf":1.0},"1205":{"tf":1.0},"1252":{"tf":1.0},"1283":{"tf":1.0},"1400":{"tf":1.0},"1455":{"tf":1.0},"15":{"tf":1.0},"169":{"tf":1.0},"205":{"tf":1.0},"247":{"tf":1.0},"444":{"tf":1.0},"475":{"tf":1.0},"56":{"tf":1.0},"681":{"tf":1.0},"850":{"tf":1.0},"897":{"tf":1.0},"910":{"tf":1.0},"911":{"tf":1.0},"912":{"tf":1.0},"916":{"tf":1.0},"930":{"tf":1.0},"942":{"tf":1.0},"946":{"tf":1.0},"950":{"tf":1.0},"952":{"tf":1.0},"955":{"tf":1.0},"958":{"tf":1.0},"961":{"tf":1.0},"964":{"tf":1.0},"967":{"tf":1.0},"971":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":28,"docs":{"1013":{"tf":1.0},"1053":{"tf":1.0},"1107":{"tf":1.0},"1136":{"tf":1.0},"1172":{"tf":1.0},"1210":{"tf":1.0},"1294":{"tf":1.0},"1316":{"tf":1.0},"1347":{"tf":1.0},"1370":{"tf":1.0},"1395":{"tf":1.0},"1406":{"tf":1.0},"1501":{"tf":1.0},"1531":{"tf":1.0},"385":{"tf":1.0},"547":{"tf":1.0},"619":{"tf":1.0},"727":{"tf":1.0},"748":{"tf":1.0},"773":{"tf":1.0},"799":{"tf":1.0},"828":{"tf":1.0},"851":{"tf":1.0},"862":{"tf":1.0},"875":{"tf":1.0},"886":{"tf":1.0},"909":{"tf":1.0},"980":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"1040":{"tf":1.0},"1089":{"tf":1.0},"960":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1144":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"d":{"df":1,"docs":{"494":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"1131":{"tf":1.0}}}}},"t":{"df":2,"docs":{"1192":{"tf":1.0},"98":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"1145":{"tf":1.0},"1202":{"tf":1.0},"1285":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"j":{"df":1,"docs":{"473":{"tf":1.0}}}},"df":22,"docs":{"1188":{"tf":1.0},"1192":{"tf":1.0},"1202":{"tf":1.0},"1207":{"tf":1.0},"1262":{"tf":1.0},"1281":{"tf":1.0},"1285":{"tf":1.0},"1354":{"tf":1.0},"1355":{"tf":1.0},"1358":{"tf":1.0},"1377":{"tf":1.0},"1378":{"tf":1.0},"1381":{"tf":1.0},"1524":{"tf":1.0},"331":{"tf":1.0},"426":{"tf":1.0},"442":{"tf":1.0},"453":{"tf":1.0},"460":{"tf":1.0},"464":{"tf":1.0},"473":{"tf":1.0},"666":{"tf":1.0}}}},"i":{"c":{"df":5,"docs":{"1404":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"758":{"tf":1.0},"759":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":5,"docs":{"1449":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"938":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":20,"docs":{"1078":{"tf":1.0},"1139":{"tf":1.0},"1224":{"tf":1.0},"1320":{"tf":1.0},"1321":{"tf":1.0},"1349":{"tf":1.0},"1369":{"tf":1.0},"1372":{"tf":1.0},"1392":{"tf":1.0},"311":{"tf":1.0},"346":{"tf":1.0},"348":{"tf":1.0},"573":{"tf":1.0},"575":{"tf":1.0},"577":{"tf":1.0},"581":{"tf":1.0},"588":{"tf":1.0},"75":{"tf":1.0},"79":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":2,"docs":{"1518":{"tf":1.0},"208":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"e":{"df":3,"docs":{"1281":{"tf":1.0},"1282":{"tf":1.0},"973":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"600":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"599":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":17,"docs":{"1045":{"tf":1.0},"1255":{"tf":1.0},"1260":{"tf":1.0},"1468":{"tf":1.0},"1470":{"tf":1.0},"1471":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"58":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"782":{"tf":1.0},"920":{"tf":1.0},"931":{"tf":1.0},"933":{"tf":1.0},"990":{"tf":1.0},"995":{"tf":1.0}},"e":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"704":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"698":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"527":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"521":{"tf":1.0}}},"df":0,"docs":{}}}}}}}}}},"df":47,"docs":{"1146":{"tf":1.0},"1186":{"tf":1.0},"1194":{"tf":1.0},"1195":{"tf":1.0},"1231":{"tf":1.0},"1329":{"tf":1.0},"1351":{"tf":1.0},"1362":{"tf":1.0},"1374":{"tf":1.0},"1385":{"tf":1.0},"1397":{"tf":1.0},"141":{"tf":1.0},"1472":{"tf":1.0},"1485":{"tf":1.0},"1500":{"tf":1.0},"201":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"402":{"tf":1.0},"403":{"tf":1.0},"407":{"tf":1.0},"412":{"tf":1.0},"413":{"tf":1.0},"414":{"tf":1.0},"438":{"tf":1.0},"493":{"tf":1.0},"511":{"tf":1.0},"636":{"tf":1.0},"637":{"tf":1.0},"641":{"tf":1.0},"646":{"tf":1.0},"647":{"tf":1.0},"648":{"tf":1.0},"656":{"tf":1.0},"676":{"tf":1.0},"73":{"tf":1.0},"824":{"tf":1.0},"843":{"tf":1.0},"846":{"tf":1.0},"848":{"tf":1.0},"849":{"tf":1.0},"921":{"tf":1.0},"956":{"tf":1.0}},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":2,"docs":{"379":{"tf":1.0},"612":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"366":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"(":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"365":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"1365":{"tf":1.0},"1388":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":4,"docs":{"357":{"tf":1.0},"359":{"tf":1.0},"591":{"tf":1.0},"593":{"tf":1.0}}}}}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"1256":{"tf":1.0},"842":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"976":{"tf":1.0}}}},"v":{"df":1,"docs":{"21":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"104":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"309":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":8,"docs":{"1452":{"tf":1.0},"164":{"tf":1.0},"235":{"tf":1.0},"398":{"tf":1.0},"632":{"tf":1.0},"757":{"tf":1.0},"808":{"tf":1.0},"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"q":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"1306":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":2,"docs":{"1192":{"tf":1.0},"434":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"0":{"tf":1.0},"25":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":15,"docs":{"1178":{"tf":1.0},"122":{"tf":1.0},"1319":{"tf":1.0},"18":{"tf":1.0},"293":{"tf":1.0},"358":{"tf":1.0},"425":{"tf":1.0},"483":{"tf":1.0},"592":{"tf":1.0},"665":{"tf":1.0},"68":{"tf":1.0},"7":{"tf":1.0},"814":{"tf":1.0},"824":{"tf":1.0},"889":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":8,"docs":{"1209":{"tf":1.0},"804":{"tf":1.0},"805":{"tf":1.0},"827":{"tf":1.0},"829":{"tf":1.0},"833":{"tf":1.0},"840":{"tf":1.0},"845":{"tf":1.0}}},"u":{"df":9,"docs":{"1000":{"tf":1.0},"1230":{"tf":1.0},"1363":{"tf":1.0},"1386":{"tf":1.0},"222":{"tf":1.0},"246":{"tf":1.0},"408":{"tf":1.0},"642":{"tf":1.0},"855":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"1191":{"tf":1.0},"433":{"tf":1.0},"450":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":23,"docs":{"1112":{"tf":1.4142135623730951},"117":{"tf":1.0},"1261":{"tf":1.0},"145":{"tf":1.0},"1510":{"tf":1.0},"172":{"tf":1.0},"211":{"tf":1.0},"229":{"tf":1.0},"256":{"tf":1.0},"289":{"tf":1.0},"320":{"tf":1.0},"355":{"tf":1.0},"38":{"tf":1.0},"421":{"tf":1.0},"452":{"tf":1.0},"480":{"tf":1.0},"512":{"tf":1.0},"589":{"tf":1.0},"662":{"tf":1.0},"67":{"tf":1.0},"689":{"tf":1.0},"88":{"tf":1.0},"994":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":28,"docs":{"1054":{"tf":1.0},"1057":{"tf":1.0},"1064":{"tf":1.0},"1073":{"tf":1.0},"1077":{"tf":1.0},"1088":{"tf":1.0},"1089":{"tf":1.0},"1090":{"tf":1.0},"1450":{"tf":1.0},"1451":{"tf":1.0},"1453":{"tf":1.0},"1456":{"tf":1.0},"1488":{"tf":1.0},"1489":{"tf":1.0},"1511":{"tf":1.0},"1522":{"tf":1.0},"161":{"tf":1.0},"285":{"tf":1.0},"337":{"tf":1.0},"339":{"tf":1.0},"340":{"tf":1.0},"564":{"tf":1.0},"566":{"tf":1.0},"567":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"893":{"tf":1.0},"962":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":8,"docs":{"1312":{"tf":1.0},"1364":{"tf":1.0},"1365":{"tf":1.0},"1387":{"tf":1.0},"1388":{"tf":1.0},"947":{"tf":1.0},"950":{"tf":1.0},"998":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":2,"docs":{"1135":{"tf":1.0},"1308":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"1144":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"417":{"tf":1.0},"651":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"97":{"tf":1.0}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":24,"docs":{"1045":{"tf":1.0},"1059":{"tf":1.0},"1067":{"tf":1.0},"1111":{"tf":1.0},"1186":{"tf":1.0},"1228":{"tf":1.0},"167":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"328":{"tf":1.0},"347":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"53":{"tf":1.0},"556":{"tf":1.0},"574":{"tf":1.0},"752":{"tf":1.0},"803":{"tf":1.0},"832":{"tf":1.0},"953":{"tf":1.0},"990":{"tf":1.0},"999":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"u":{"b":{"df":1,"docs":{"818":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"1290":{"tf":1.0}}}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"972":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":11,"docs":{"1002":{"tf":1.0},"1015":{"tf":1.0},"109":{"tf":1.0},"1181":{"tf":1.0},"1264":{"tf":1.0},"19":{"tf":1.0},"332":{"tf":1.0},"544":{"tf":1.0},"57":{"tf":1.0},"587":{"tf":1.0},"959":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"935":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":6,"docs":{"1206":{"tf":1.0},"1397":{"tf":1.0},"1403":{"tf":1.0},"1405":{"tf":1.0},"338":{"tf":1.0},"565":{"tf":1.0}}}}}}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"1081":{"tf":1.0}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"1166":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"df":28,"docs":{"131":{"tf":1.0},"132":{"tf":1.0},"1335":{"tf":1.0},"1336":{"tf":1.0},"1416":{"tf":1.0},"1417":{"tf":1.0},"196":{"tf":1.0},"225":{"tf":1.0},"274":{"tf":1.0},"29":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"73":{"tf":1.0},"77":{"tf":1.0},"800":{"tf":1.0},"804":{"tf":1.0},"806":{"tf":1.0},"808":{"tf":1.0},"81":{"tf":1.0},"817":{"tf":1.0},"818":{"tf":1.0},"819":{"tf":1.0},"820":{"tf":1.0},"821":{"tf":1.0},"822":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"1404":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":35,"docs":{"1137":{"tf":1.0},"1138":{"tf":1.0},"1139":{"tf":1.0},"1140":{"tf":1.0},"1141":{"tf":1.0},"1142":{"tf":1.0},"1143":{"tf":1.0},"1146":{"tf":1.0},"1147":{"tf":1.0},"1148":{"tf":1.0},"1149":{"tf":1.0},"1153":{"tf":1.0},"1159":{"tf":1.0},"1160":{"tf":1.0},"1162":{"tf":1.0},"1163":{"tf":1.0},"1168":{"tf":1.0},"1169":{"tf":1.0},"1170":{"tf":1.0},"1171":{"tf":1.0},"1289":{"tf":1.0},"1290":{"tf":1.0},"1368":{"tf":1.0},"1369":{"tf":1.0},"1391":{"tf":1.0},"1500":{"tf":1.0},"340":{"tf":1.0},"504":{"tf":1.0},"505":{"tf":1.0},"506":{"tf":1.0},"567":{"tf":1.0},"588":{"tf":1.0},"683":{"tf":1.0},"684":{"tf":1.0},"96":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"1310":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":3,"docs":{"287":{"tf":1.0},"726":{"tf":1.0},"881":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"917":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"24":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":2,"docs":{"1078":{"tf":1.0},"1320":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"1477":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":1,"docs":{"931":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":1,"docs":{"1496":{"tf":1.0}}}},"l":{"df":3,"docs":{"1203":{"tf":1.0},"1284":{"tf":1.0},"927":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"o":{"df":2,"docs":{"863":{"tf":1.0},"867":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":9,"docs":{"1165":{"tf":1.0},"1185":{"tf":1.0},"1207":{"tf":1.0},"1208":{"tf":1.0},"1209":{"tf":1.0},"1236":{"tf":1.0},"1400":{"tf":1.0},"684":{"tf":1.0},"847":{"tf":1.0}}}}},"r":{"a":{"c":{"df":0,"docs":{},"e":{"df":7,"docs":{"1441":{"tf":1.0},"305":{"tf":1.0},"306":{"tf":1.0},"307":{"tf":1.0},"309":{"tf":1.0},"319":{"tf":1.0},"901":{"tf":1.0}}},"k":{"df":2,"docs":{"209":{"tf":1.0},"837":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"1403":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"805":{"tf":1.0},"995":{"tf":1.0}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":9,"docs":{"1152":{"tf":1.0},"1190":{"tf":1.0},"1203":{"tf":1.0},"432":{"tf":1.0},"433":{"tf":1.0},"434":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"964":{"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":10,"docs":{"114":{"tf":1.0},"1220":{"tf":1.0},"1257":{"tf":1.0},"1291":{"tf":1.0},"1527":{"tf":1.0},"251":{"tf":1.0},"316":{"tf":1.0},"508":{"tf":1.0},"92":{"tf":1.0},"975":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":7,"docs":{"24":{"tf":1.0},"248":{"tf":1.0},"919":{"tf":1.0},"947":{"tf":1.0},"948":{"tf":1.0},"950":{"tf":1.0},"998":{"tf":1.0}},"e":{"d":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"999":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"1161":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}}},"t":{"df":0,"docs":{},"l":{"=":{"3":{"6":{"0":{"0":{"df":1,"docs":{"607":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"374":{"tf":1.0}}}},"w":{"df":0,"docs":{},"o":{"df":1,"docs":{"1145":{"tf":1.0}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":15,"docs":{"1279":{"tf":1.0},"152":{"tf":1.0},"195":{"tf":1.0},"260":{"tf":1.0},"377":{"tf":1.0},"47":{"tf":1.0},"476":{"tf":1.0},"498":{"tf":1.0},"55":{"tf":1.0},"587":{"tf":1.0},"610":{"tf":1.0},"725":{"tf":1.0},"753":{"tf":1.0},"760":{"tf":1.0},"833":{"tf":1.0}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"332":{"tf":1.0},"354":{"tf":1.0},"544":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"1345":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"1520":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"1141":{"tf":1.0},"505":{"tf":1.0},"684":{"tf":1.0},"812":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"16":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":2,"docs":{"1472":{"tf":1.0},"202":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"494":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"949":{"tf":1.0}}}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"1325":{"tf":1.0},"135":{"tf":1.0},"1353":{"tf":1.0},"1376":{"tf":1.0},"1420":{"tf":1.0},"166":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.0},"271":{"tf":1.0},"399":{"tf":1.0},"400":{"tf":1.0},"401":{"tf":1.0},"411":{"tf":1.0},"633":{"tf":1.0},"634":{"tf":1.0},"635":{"tf":1.0},"645":{"tf":1.0},"796":{"tf":1.0}},"e":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"604":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"605":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"370":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"371":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":5,"docs":{"1001":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"241":{"tf":1.0}},"g":{"df":0,"docs":{},"r":{"a":{"d":{"df":1,"docs":{"978":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":5,"docs":{"118":{"tf":1.0},"1256":{"tf":1.0},"386":{"tf":1.0},"458":{"tf":1.0},"620":{"tf":1.0}}}},"df":37,"docs":{"1020":{"tf":1.0},"1026":{"tf":1.0},"1032":{"tf":1.0},"1038":{"tf":1.0},"1042":{"tf":1.0},"106":{"tf":1.0},"1060":{"tf":1.0},"1068":{"tf":1.0},"1076":{"tf":1.0},"1086":{"tf":1.0},"11":{"tf":1.0},"1114":{"tf":1.0},"1116":{"tf":1.0},"1203":{"tf":1.0},"1284":{"tf":1.0},"1298":{"tf":1.0},"1342":{"tf":1.0},"212":{"tf":1.0},"299":{"tf":1.0},"309":{"tf":1.0},"324":{"tf":1.0},"325":{"tf":1.0},"326":{"tf":1.0},"359":{"tf":1.0},"37":{"tf":1.0},"459":{"tf":1.0},"461":{"tf":1.0},"465":{"tf":1.0},"551":{"tf":1.0},"552":{"tf":1.0},"553":{"tf":1.0},"578":{"tf":1.0},"579":{"tf":1.0},"580":{"tf":1.0},"593":{"tf":1.0},"735":{"tf":1.0},"93":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"416":{"tf":1.0},"534":{"tf":1.0},"650":{"tf":1.0}}}}}},"v":{"0":{".":{"6":{".":{"0":{"df":2,"docs":{"82":{"tf":1.0},"911":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":18,"docs":{"1116":{"tf":1.0},"1119":{"tf":1.0},"1125":{"tf":1.0},"1126":{"tf":1.0},"1127":{"tf":1.0},"1278":{"tf":1.0},"1427":{"tf":1.0},"1474":{"tf":1.0},"1480":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"278":{"tf":1.0},"491":{"tf":1.0},"738":{"tf":1.0},"743":{"tf":1.0},"745":{"tf":1.0},"927":{"tf":1.0},"931":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"1000":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"a":{"b":{"df":0,"docs":{},"l":{"df":15,"docs":{"1066":{"tf":1.0},"113":{"tf":1.0},"1159":{"tf":1.0},"1342":{"tf":1.0},"139":{"tf":1.0},"1430":{"tf":1.0},"1447":{"tf":1.0},"1448":{"tf":1.0},"1506":{"tf":1.0},"1507":{"tf":1.0},"336":{"tf":1.0},"437":{"tf":1.0},"563":{"tf":1.0},"660":{"tf":1.0},"903":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"789":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"578":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":2,"docs":{"1497":{"tf":1.0},"191":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":31,"docs":{"1214":{"tf":1.0},"1246":{"tf":1.0},"1260":{"tf":1.0},"1315":{"tf":1.0},"1334":{"tf":1.0},"1339":{"tf":1.0},"1469":{"tf":1.0},"1473":{"tf":1.0},"1493":{"tf":1.0},"1494":{"tf":1.0},"1529":{"tf":1.0},"165":{"tf":1.0},"188":{"tf":1.0},"230":{"tf":1.0},"232":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.0},"402":{"tf":1.0},"43":{"tf":1.0},"445":{"tf":1.0},"636":{"tf":1.0},"763":{"tf":1.0},"846":{"tf":1.0},"936":{"tf":1.0},"938":{"tf":1.0},"943":{"tf":1.0},"957":{"tf":1.0},"965":{"tf":1.0},"970":{"tf":1.0},"975":{"tf":1.0},"989":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"380":{"tf":1.0},"613":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":45,"docs":{"101":{"tf":1.0},"105":{"tf":1.0},"1196":{"tf":1.0},"1232":{"tf":1.0},"128":{"tf":1.0},"1313":{"tf":1.0},"1321":{"tf":1.0},"1324":{"tf":1.0},"1352":{"tf":1.0},"136":{"tf":1.0},"1375":{"tf":1.0},"1421":{"tf":1.0},"143":{"tf":1.0},"1436":{"tf":1.0},"1499":{"tf":1.0},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"187":{"tf":1.0},"189":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"240":{"tf":1.0},"242":{"tf":1.0},"272":{"tf":1.0},"327":{"tf":1.0},"396":{"tf":1.0},"397":{"tf":1.0},"398":{"tf":1.0},"404":{"tf":1.0},"410":{"tf":1.0},"415":{"tf":1.0},"489":{"tf":1.0},"555":{"tf":1.0},"630":{"tf":1.0},"631":{"tf":1.0},"632":{"tf":1.0},"638":{"tf":1.0},"644":{"tf":1.0},"649":{"tf":1.0},"772":{"tf":1.0},"795":{"tf":1.0},"87":{"tf":1.0},"922":{"tf":1.0},"94":{"tf":1.0}}},"y":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"601":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"367":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"598":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.0}},"e":{"(":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"602":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":1,"docs":{"364":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"(":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"368":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":24,"docs":{"1002":{"tf":1.0},"1003":{"tf":1.0},"101":{"tf":1.0},"1132":{"tf":1.0},"1133":{"tf":1.0},"1134":{"tf":1.0},"1314":{"tf":1.0},"1409":{"tf":1.0},"1482":{"tf":1.0},"1503":{"tf":1.0},"199":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"740":{"tf":1.0},"779":{"tf":1.0},"798":{"tf":1.0},"861":{"tf":1.0},"874":{"tf":1.0},"895":{"tf":1.0},"986":{"tf":1.0},"987":{"tf":1.0},"988":{"tf":1.0},"989":{"tf":1.0},"998":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"577":{"tf":1.0}}}},"df":0,"docs":{}}}}},"s":{"df":3,"docs":{"185":{"tf":1.0},"43":{"tf":1.0},"978":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"1340":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"b":{"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":{"110":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"1262":{"tf":1.0}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":1,"docs":{"1405":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":3,"docs":{"1243":{"tf":1.0},"1244":{"tf":1.0},"1245":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"586":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"394":{"tf":1.0},"628":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":17,"docs":{"1080":{"tf":1.0},"1177":{"tf":1.0},"1426":{"tf":1.0},"173":{"tf":1.0},"200":{"tf":1.0},"267":{"tf":1.0},"31":{"tf":1.0},"405":{"tf":1.0},"424":{"tf":1.0},"639":{"tf":1.0},"655":{"tf":1.0},"668":{"tf":1.0},"793":{"tf":1.0},"825":{"tf":1.0},"87":{"tf":1.0},"932":{"tf":1.0},"944":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":10,"docs":{"1248":{"tf":1.0},"1327":{"tf":1.0},"1330":{"tf":1.0},"140":{"tf":1.0},"1427":{"tf":1.0},"207":{"tf":1.0},"226":{"tf":1.0},"34":{"tf":1.0},"821":{"tf":1.0},"88":{"tf":1.0}}}}}}},"l":{"d":{"df":1,"docs":{"32":{"tf":1.0}}},"df":0,"docs":{}}}}},"y":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"325":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"'":{"df":0,"docs":{},"v":{"df":1,"docs":{"89":{"tf":1.0}}}},"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/jacs/docs/jacsbook/src/README.md b/jacs/docs/jacsbook/src/README.md
index d7d420e75..a325d7b82 100644
--- a/jacs/docs/jacsbook/src/README.md
+++ b/jacs/docs/jacsbook/src/README.md
@@ -51,7 +51,8 @@ Choose your implementation and get started in minutes:
 
 ### Rust CLI
 ```bash
-cargo install jacs
+cargo install jacs --features cli
+# Upgrade to latest: cargo install jacs --features cli --force
 jacs init  # Create config, keys, and agent
 ```
 
diff --git a/jacs/docs/jacsbook/src/cli/installation.md b/jacs/docs/jacsbook/src/cli/installation.md
index 1976a3758..d678c7ee4 100644
--- a/jacs/docs/jacsbook/src/cli/installation.md
+++ b/jacs/docs/jacsbook/src/cli/installation.md
@@ -1,6 +1,6 @@
 ## setting up
 
-Once you've installed the jacs cli with `cargo install jacs` 
+Once you've installed the jacs CLI with `cargo install jacs --features cli` 
 
 First, create your configuration which can also be loaded loaded as environment variables.
 
diff --git a/jacs/docs/jacsbook/src/getting-started/quick-start.md b/jacs/docs/jacsbook/src/getting-started/quick-start.md
index a9ac76ca6..ee6964372 100644
--- a/jacs/docs/jacsbook/src/getting-started/quick-start.md
+++ b/jacs/docs/jacsbook/src/getting-started/quick-start.md
@@ -14,13 +14,14 @@ Select the implementation that best fits your needs:
 
 ### Install Rust CLI
 ```bash
-# Install from crates.io
-cargo install jacs
+# Install from crates.io (--features cli is required for the binary)
+cargo install jacs --features cli
+# Upgrade to latest: cargo install jacs --features cli --force
 
 # Or build from source
 git clone https://github.com/HumanAssisted/JACS
 cd JACS/jacs
-cargo install --path . --features="cli"
+cargo install --path . --features cli
 ```
 
 ### Initialize JACS
diff --git a/jacs/jacs.config.json b/jacs/jacs.config.json
index 22d78abeb..2e19d4e0d 100644
--- a/jacs/jacs.config.json
+++ b/jacs/jacs.config.json
@@ -10,7 +10,6 @@
     "jacs_agent_schema_version": "v1",
     "jacs_header_schema_version": "v1",
     "jacs_signature_schema_version": "v1",
-    "jacs_private_key_password": "secretpassord",
     "jacs_default_storage": "fs",
     "jacs_agent_id_and_version": "ddf35096-d212-4ca9-a299-feda597d5525:b57d480f-b8d4-46e7-9d7c-942f2b132717"
 }
\ No newline at end of file
diff --git a/jacs/src/agent/mod.rs b/jacs/src/agent/mod.rs
index 280658722..d1c352710 100644
--- a/jacs/src/agent/mod.rs
+++ b/jacs/src/agent/mod.rs
@@ -261,8 +261,16 @@ impl Agent {
         }
     }
 
-    pub fn ready(&mut self) -> bool {
-        true
+    /// Returns true if the agent is fully initialized and ready for signing/verification.
+    ///
+    /// Checks that all required state is present: ID, version, keys, config, and value.
+    pub fn ready(&self) -> bool {
+        self.id.is_some()
+            && self.version.is_some()
+            && self.public_key.is_some()
+            && self.private_key.is_some()
+            && self.config.is_some()
+            && self.value.is_some()
     }
 
     /// Get the agent's JSON value
@@ -1379,6 +1387,13 @@ mod builder_tests {
         assert!(agent.config.is_some());
     }
 
+    #[test]
+    fn test_ready_false_on_fresh_agent() {
+        let agent = Agent::builder().build().expect("Should build");
+        // A freshly built agent has config but no id, keys, or value
+        assert!(!agent.ready(), "ready() should be false without keys/id/value");
+    }
+
     #[test]
     fn test_agent_builder_new_equals_default() {
         // AgentBuilder::new() and AgentBuilder::default() should produce equivalent builders
diff --git a/jacs/src/crypt/aes_encrypt.rs b/jacs/src/crypt/aes_encrypt.rs
index 679339d50..38dfbf08d 100644
--- a/jacs/src/crypt/aes_encrypt.rs
+++ b/jacs/src/crypt/aes_encrypt.rs
@@ -221,22 +221,29 @@ fn validate_password(password: &str) -> Result<(), Box> {
     // Check against common weak passwords (case-insensitive)
     let lower = trimmed.to_lowercase();
     if WEAK_PASSWORDS.contains(&lower.as_str()) {
-        return Err(
-            "Password is too common and easily guessable. Please use a unique password.".into(),
-        );
+        return Err(format!(
+            "Password is too common and easily guessable. Please use a unique password.\n\n{}",
+            password_requirements()
+        )
+        .into());
     }
 
     // Check for excessive repetition
     if has_excessive_repetition(trimmed) {
-        return Err(
-            "Password contains too many repeated characters (4+ in a row). Use more variety."
-                .into(),
-        );
+        return Err(format!(
+            "Password contains too many repeated characters (4+ in a row). Use more variety.\n\n{}",
+            password_requirements()
+        )
+        .into());
     }
 
     // Check for sequential patterns
     if has_sequential_pattern(trimmed) {
-        return Err("Password contains sequential characters (like '12345' or 'abcde'). Use a less predictable pattern.".into());
+        return Err(format!(
+            "Password contains sequential characters (like '12345' or 'abcde'). Use a less predictable pattern.\n\n{}",
+            password_requirements()
+        )
+        .into());
     }
 
     // Calculate entropy
@@ -264,14 +271,23 @@ fn validate_password(password: &str) -> Result<(), Box> {
     let char_classes = count_character_classes(trimmed);
     if char_classes < 2 && entropy < SINGLE_CLASS_MIN_ENTROPY_BITS {
         return Err(JacsError::CryptoError(format!(
-            "Password uses only {} character class(es) with insufficient length. Use at least 2 character types (uppercase, lowercase, digits, symbols) or use a longer password.",
-            char_classes
+            "Password uses only {} character class(es) with insufficient length. Use at least 2 character types (uppercase, lowercase, digits, symbols) or use a longer password.\n\n{}",
+            char_classes,
+            password_requirements()
         )).into());
     }
 
     Ok(())
 }
 
+/// Check if a password meets JACS requirements without performing any encryption.
+///
+/// Returns `Ok(())` if the password is acceptable, or `Err` with a detailed message
+/// explaining which rule failed and the full requirements.
+pub fn check_password_strength(password: &str) -> Result<(), Box> {
+    validate_password(password)
+}
+
 /// Derive a 256-bit key from a password using PBKDF2-HMAC-SHA256 with a specific iteration count.
 fn derive_key_with_iterations(
     password: &str,
diff --git a/jacs/src/dns/bootstrap.rs b/jacs/src/dns/bootstrap.rs
index f134ba0a7..4f35f1ea0 100644
--- a/jacs/src/dns/bootstrap.rs
+++ b/jacs/src/dns/bootstrap.rs
@@ -478,3 +478,50 @@ pub fn verify_hai_registration_sync(
         public_key_hash: registered_hash.to_string(),
     })
 }
+
+pub fn dnssec_guidance(provider: &str) -> &'static str {
+    match provider {
+        "aws" | "route53" => "Enable DNSSEC signing in Route53 hosted zone settings, then publish the DS record at your registrar.",
+        "cloudflare" => "DNSSEC is one-click in the Cloudflare dashboard under DNS > Settings. Copy the DS record to your registrar.",
+        "azure" => "Enable DNSSEC signing on the Azure DNS zone, then publish the DS record at your registrar.",
+        "gcloud" | "google" => "Enable DNSSEC on the Cloud DNS zone (gcloud dns managed-zones update --dnssec-state on), then publish DS at registrar.",
+        _ => "Enable DNSSEC zone signing with your DNS provider, then publish the DS record at your domain registrar.",
+    }
+}
+
+pub fn tld_requirement_text() -> &'static str {
+    "You must own a registered domain (TLD or subdomain of a TLD you control). Example: example.com or agents.example.com. The JACS TXT record is placed at _v1.agent.jacs.{your-domain}."
+}
+
+#[cfg(test)]
+mod tests {
+    use super::*;
+
+    #[test]
+    fn test_dnssec_guidance_known_providers() {
+        for provider in &["aws", "route53", "cloudflare", "azure", "gcloud", "google"] {
+            let text = dnssec_guidance(provider);
+            assert!(!text.is_empty(), "guidance for {} should be non-empty", provider);
+            assert!(
+                text.contains("DNSSEC"),
+                "guidance for {} should contain 'DNSSEC', got: {}",
+                provider,
+                text
+            );
+        }
+    }
+
+    #[test]
+    fn test_dnssec_guidance_unknown_provider() {
+        let text = dnssec_guidance("unknown-provider");
+        assert!(text.contains("DNSSEC"));
+        assert!(text.contains("DNS provider"));
+    }
+
+    #[test]
+    fn test_tld_requirement_text() {
+        let text = tld_requirement_text();
+        assert!(!text.is_empty());
+        assert!(text.contains("_v1.agent.jacs"));
+    }
+}
diff --git a/jacs/src/simple.rs b/jacs/src/simple.rs
index 9b5531d94..d2546c4ad 100644
--- a/jacs/src/simple.rs
+++ b/jacs/src/simple.rs
@@ -68,7 +68,30 @@ use serde_json::{Value, json};
 use std::fs;
 use std::path::Path;
 use std::sync::Mutex;
-use tracing::{debug, info};
+use tracing::{debug, info, warn};
+
+// =============================================================================
+// Diagnostics (standalone, no agent required)
+// =============================================================================
+
+/// Returns diagnostic information about the JACS installation.
+/// Does not require a loaded agent.
+pub fn diagnostics() -> serde_json::Value {
+    serde_json::json!({
+        "jacs_version": env!("CARGO_PKG_VERSION"),
+        "rust_version": option_env!("CARGO_PKG_RUST_VERSION").unwrap_or("unknown"),
+        "os": std::env::consts::OS,
+        "arch": std::env::consts::ARCH,
+        "config_path": std::env::var("JACS_CONFIG").unwrap_or_default(),
+        "data_directory": std::env::var("JACS_DATA_DIRECTORY").unwrap_or_default(),
+        "key_directory": std::env::var("JACS_KEY_DIRECTORY").unwrap_or_default(),
+        "key_algorithm": std::env::var("JACS_AGENT_KEY_ALGORITHM").unwrap_or_default(),
+        "default_storage": std::env::var("JACS_DEFAULT_STORAGE").unwrap_or_default(),
+        "strict_mode": std::env::var("JACS_STRICT_MODE").unwrap_or_default(),
+        "agent_loaded": false,
+        "agent_id": serde_json::Value::Null,
+    })
+}
 
 // =============================================================================
 // Verify link constants (HAI / public verification URLs)
@@ -295,6 +318,34 @@ mod base64_bytes {
     }
 }
 
+/// Setup instructions for publishing a JACS agent's DNS record, enabling DNSSEC,
+/// and registering with HAI.ai.
+#[derive(Debug, Clone, Serialize, Deserialize)]
+pub struct SetupInstructions {
+    /// BIND-format DNS record line (e.g. `_v1.agent.jacs.example.com. 3600 IN TXT "..."`)
+    pub dns_record_bind: String,
+    /// The raw TXT record value (without the owner/TTL/class prefix).
+    pub dns_record_value: String,
+    /// The DNS owner name (e.g. `_v1.agent.jacs.example.com.`)
+    pub dns_owner: String,
+    /// Provider-specific CLI/API commands keyed by provider name.
+    pub provider_commands: std::collections::HashMap,
+    /// Provider-specific DNSSEC guidance keyed by provider name.
+    pub dnssec_instructions: std::collections::HashMap,
+    /// Guidance about domain ownership requirements.
+    pub tld_requirement: String,
+    /// JSON payload for `/.well-known/jacs-agent.json`.
+    pub well_known_json: String,
+    /// HAI.ai registration URL.
+    pub hai_registration_url: String,
+    /// JSON payload to POST to HAI.ai for registration.
+    pub hai_registration_payload: String,
+    /// Human-readable instructions for HAI.ai registration.
+    pub hai_registration_instructions: String,
+    /// Human-readable summary of all setup steps.
+    pub summary: String,
+}
+
 // =============================================================================
 // Programmatic Creation Parameters
 // =============================================================================
@@ -755,7 +806,7 @@ impl SimpleAgent {
             params.name, algorithm
         );
 
-        // Create directories
+        // Create directories (including agent/ and public_keys/ subdirs that save() expects)
         let keys_dir = Path::new(¶ms.key_directory);
         let data_dir = Path::new(¶ms.data_directory);
 
@@ -763,10 +814,16 @@ impl SimpleAgent {
             path: keys_dir.to_string_lossy().to_string(),
             reason: e.to_string(),
         })?;
-        fs::create_dir_all(data_dir).map_err(|e| JacsError::DirectoryCreateFailed {
-            path: data_dir.to_string_lossy().to_string(),
+        fs::create_dir_all(data_dir.join("agent")).map_err(|e| JacsError::DirectoryCreateFailed {
+            path: data_dir.join("agent").to_string_lossy().to_string(),
             reason: e.to_string(),
         })?;
+        fs::create_dir_all(data_dir.join("public_keys")).map_err(|e| {
+            JacsError::DirectoryCreateFailed {
+                path: data_dir.join("public_keys").to_string_lossy().to_string(),
+                reason: e.to_string(),
+            }
+        })?;
 
         let env_keys = [
             "JACS_PRIVATE_KEY_PASSWORD",
@@ -824,29 +881,122 @@ impl SimpleAgent {
 
         let lookup_id = format!("{}:{}", agent_id, version);
 
-        // Save the agent
-        agent.save().map_err(|e| JacsError::Internal {
-            message: format!("Failed to save agent: {}", e),
-        })?;
+        // Resolve the config: if one already exists at config_path, read it
+        // and only update the agent ID. Log differences between existing values
+        // and params so the caller knows. If no config exists, create one fresh.
+        let config_path = Path::new(¶ms.config_path);
+        let config_str = if config_path.exists() {
+            let existing_str = fs::read_to_string(config_path).map_err(|e| JacsError::Internal {
+                message: format!("Failed to read existing config '{}': {}", params.config_path, e),
+            })?;
+            let mut existing: serde_json::Value =
+                serde_json::from_str(&existing_str).map_err(|e| JacsError::Internal {
+                    message: format!("Failed to parse existing config: {}", e),
+                })?;
 
-        // Create config file using Config::builder
-        let config_json = json!({
-            "$schema": "https://hai.ai/schemas/jacs.config.schema.json",
-            "jacs_agent_id_and_version": lookup_id,
-            "jacs_data_directory": params.data_directory,
-            "jacs_key_directory": params.key_directory,
-            "jacs_agent_private_key_filename": DEFAULT_PRIVATE_KEY_FILENAME,
-            "jacs_agent_public_key_filename": DEFAULT_PUBLIC_KEY_FILENAME,
-            "jacs_agent_key_algorithm": algorithm,
-            "jacs_default_storage": params.default_storage,
-        });
+            // Log differences between existing config and params
+            let check = |field: &str, existing_val: Option<&str>, param_val: &str| {
+                if let Some(ev) = existing_val {
+                    if ev != param_val {
+                        warn!(
+                            "Config '{}' differs: existing='{}', param='{}'. Keeping existing value.",
+                            field, ev, param_val
+                        );
+                    }
+                }
+            };
+            check(
+                "jacs_data_directory",
+                existing.get("jacs_data_directory").and_then(|v| v.as_str()),
+                ¶ms.data_directory,
+            );
+            check(
+                "jacs_key_directory",
+                existing.get("jacs_key_directory").and_then(|v| v.as_str()),
+                ¶ms.key_directory,
+            );
+            check(
+                "jacs_agent_key_algorithm",
+                existing.get("jacs_agent_key_algorithm").and_then(|v| v.as_str()),
+                &algorithm,
+            );
+            check(
+                "jacs_default_storage",
+                existing.get("jacs_default_storage").and_then(|v| v.as_str()),
+                ¶ms.default_storage,
+            );
+
+            // Only update the agent ID (the new agent we just created)
+            if let Some(obj) = existing.as_object_mut() {
+                obj.insert(
+                    "jacs_agent_id_and_version".to_string(),
+                    json!(lookup_id),
+                );
+            }
 
-        let config_str =
-            serde_json::to_string_pretty(&config_json).map_err(|e| JacsError::Internal {
-                message: format!("Failed to serialize config: {}", e),
+            let updated_str =
+                serde_json::to_string_pretty(&existing).map_err(|e| JacsError::Internal {
+                    message: format!("Failed to serialize updated config: {}", e),
+                })?;
+            fs::write(config_path, &updated_str).map_err(|e| JacsError::Internal {
+                message: format!("Failed to write config to '{}': {}", params.config_path, e),
+            })?;
+            info!(
+                "Updated existing config '{}' with new agent ID {}",
+                params.config_path, lookup_id
+            );
+            updated_str
+        } else {
+            // No config exists -- create one from params
+            let config_json = json!({
+                "$schema": "https://hai.ai/schemas/jacs.config.schema.json",
+                "jacs_agent_id_and_version": lookup_id,
+                "jacs_data_directory": params.data_directory,
+                "jacs_key_directory": params.key_directory,
+                "jacs_agent_private_key_filename": DEFAULT_PRIVATE_KEY_FILENAME,
+                "jacs_agent_public_key_filename": DEFAULT_PUBLIC_KEY_FILENAME,
+                "jacs_agent_key_algorithm": algorithm,
+                "jacs_default_storage": params.default_storage,
+            });
+
+            let new_str =
+                serde_json::to_string_pretty(&config_json).map_err(|e| JacsError::Internal {
+                    message: format!("Failed to serialize config: {}", e),
+                })?;
+            // Create parent directories if needed
+            if let Some(parent) = config_path.parent() {
+                if !parent.as_os_str().is_empty() {
+                    fs::create_dir_all(parent).map_err(|e| JacsError::DirectoryCreateFailed {
+                        path: parent.to_string_lossy().to_string(),
+                        reason: e.to_string(),
+                    })?;
+                }
+            }
+            fs::write(config_path, &new_str).map_err(|e| JacsError::Internal {
+                message: format!("Failed to write config to '{}': {}", params.config_path, e),
             })?;
-        fs::write(¶ms.config_path, &config_str).map_err(|e| JacsError::Internal {
-            message: format!("Failed to write config to '{}': {}", params.config_path, e),
+            info!(
+                "Created new config '{}' for agent {}",
+                params.config_path, lookup_id
+            );
+            new_str
+        };
+
+        // Set the agent's in-memory config from the resolved config so save()
+        // uses the correct data_directory and key_directory.
+        let validated_config_value =
+            crate::config::validate_config(&config_str).map_err(|e| JacsError::Internal {
+                message: format!("Failed to validate config: {}", e),
+            })?;
+        agent.config = Some(
+            serde_json::from_value(validated_config_value).map_err(|e| JacsError::Internal {
+                message: format!("Failed to parse config: {}", e),
+            })?,
+        );
+
+        // Save the agent (uses directories from the resolved config)
+        agent.save().map_err(|e| JacsError::Internal {
+            message: format!("Failed to save agent: {}", e),
         })?;
 
         // Handle DNS record generation if domain is set
@@ -1720,11 +1870,168 @@ impl SimpleAgent {
         })
     }
 
+    /// Returns diagnostic information including loaded agent details.
+    pub fn diagnostics(&self) -> serde_json::Value {
+        let mut info = diagnostics(); // call the standalone version
+
+        if let Ok(agent) = self.agent.lock() {
+            if agent.ready() {
+                info["agent_loaded"] = serde_json::json!(true);
+                if let Some(value) = agent.get_value() {
+                    info["agent_id"] =
+                        serde_json::json!(value.get("jacsId").and_then(|v| v.as_str()));
+                    info["agent_version"] =
+                        serde_json::json!(value.get("jacsVersion").and_then(|v| v.as_str()));
+                }
+            }
+            if let Some(config) = &agent.config {
+                if let Some(dir) = config.jacs_data_directory().as_ref() {
+                    info["data_directory"] = serde_json::json!(dir);
+                }
+                if let Some(dir) = config.jacs_key_directory().as_ref() {
+                    info["key_directory"] = serde_json::json!(dir);
+                }
+                if let Some(storage) = config.jacs_default_storage().as_ref() {
+                    info["default_storage"] = serde_json::json!(storage);
+                }
+                if let Some(algo) = config.jacs_agent_key_algorithm().as_ref() {
+                    info["key_algorithm"] = serde_json::json!(algo);
+                }
+            }
+        }
+
+        info
+    }
+
     /// Returns the path to the configuration file, if available.
     pub fn config_path(&self) -> Option<&str> {
         self.config_path.as_deref()
     }
 
+    /// Returns setup instructions for publishing the agent's DNS record,
+    /// enabling DNSSEC, and registering with HAI.ai.
+    ///
+    /// # Arguments
+    ///
+    /// * `domain` - The domain to publish the DNS TXT record under
+    /// * `ttl` - TTL in seconds for the DNS record (e.g. 3600)
+    pub fn get_setup_instructions(
+        &self,
+        domain: &str,
+        ttl: u32,
+    ) -> Result {
+        use crate::dns::bootstrap::{
+            DigestEncoding, build_dns_record, dnssec_guidance, emit_azure_cli, emit_cloudflare_curl,
+            emit_gcloud_dns, emit_plain_bind, emit_route53_change_batch, tld_requirement_text,
+        };
+
+        let agent = self.agent.lock().map_err(|e| JacsError::Internal {
+            message: format!("Failed to lock agent: {}", e),
+        })?;
+
+        let agent_value = agent.get_value().cloned().unwrap_or(json!({}));
+        let agent_id = agent_value.get_str_or("jacsId", "");
+        if agent_id.is_empty() {
+            return Err(JacsError::AgentNotLoaded);
+        }
+
+        let pk = agent.get_public_key().map_err(|e| JacsError::Internal {
+            message: format!("Failed to get public key: {}", e),
+        })?;
+        let digest = crate::dns::bootstrap::pubkey_digest_b64(&pk);
+        let rr = build_dns_record(domain, ttl, &agent_id, &digest, DigestEncoding::Base64);
+
+        let dns_record_bind = emit_plain_bind(&rr);
+        let dns_record_value = rr.txt.clone();
+        let dns_owner = rr.owner.clone();
+
+        // Provider commands
+        let mut provider_commands = std::collections::HashMap::new();
+        provider_commands.insert("bind".to_string(), dns_record_bind.clone());
+        provider_commands.insert("route53".to_string(), emit_route53_change_batch(&rr));
+        provider_commands.insert(
+            "gcloud".to_string(),
+            emit_gcloud_dns(&rr, "YOUR_ZONE_NAME"),
+        );
+        provider_commands.insert(
+            "azure".to_string(),
+            emit_azure_cli(&rr, "YOUR_RG", domain, "_v1.agent.jacs"),
+        );
+        provider_commands.insert(
+            "cloudflare".to_string(),
+            emit_cloudflare_curl(&rr, "YOUR_ZONE_ID"),
+        );
+
+        // DNSSEC guidance per provider
+        let mut dnssec_instructions = std::collections::HashMap::new();
+        for name in &["aws", "cloudflare", "azure", "gcloud"] {
+            dnssec_instructions.insert(name.to_string(), dnssec_guidance(name).to_string());
+        }
+
+        let tld_requirement = tld_requirement_text().to_string();
+
+        // .well-known JSON
+        let well_known = json!({
+            "jacs_agent_id": agent_id,
+            "jacs_public_key_hash": digest,
+            "jacs_dns_record": dns_owner,
+        });
+        let well_known_json =
+            serde_json::to_string_pretty(&well_known).unwrap_or_default();
+
+        // HAI registration
+        let hai_url = std::env::var("HAI_API_URL")
+            .unwrap_or_else(|_| "https://api.hai.ai".to_string());
+        let hai_registration_url = format!("{}/v1/agents", hai_url.trim_end_matches('/'));
+        let hai_payload = json!({
+            "agent_id": agent_id,
+            "public_key_hash": digest,
+            "domain": domain,
+        });
+        let hai_registration_payload =
+            serde_json::to_string_pretty(&hai_payload).unwrap_or_default();
+        let hai_registration_instructions = format!(
+            "POST the payload to {} with your HAI API key in the Authorization header.",
+            hai_registration_url
+        );
+
+        // Build summary
+        let summary = format!(
+            "Setup instructions for agent {agent_id} on domain {domain}:\n\
+             \n\
+             1. DNS: Publish the following TXT record:\n\
+             {bind}\n\
+             \n\
+             2. DNSSEC: {dnssec}\n\
+             \n\
+             3. Domain requirement: {tld}\n\
+             \n\
+             4. .well-known: Serve the well-known JSON at /.well-known/jacs-agent.json\n\
+             \n\
+             5. HAI registration: {hai_instr}",
+            agent_id = agent_id,
+            domain = domain,
+            bind = dns_record_bind,
+            dnssec = dnssec_guidance("aws"),
+            tld = tld_requirement,
+            hai_instr = hai_registration_instructions,
+        );
+
+        Ok(SetupInstructions {
+            dns_record_bind,
+            dns_record_value,
+            dns_owner,
+            provider_commands,
+            dnssec_instructions,
+            tld_requirement,
+            well_known_json,
+            hai_registration_url,
+            hai_registration_payload,
+            hai_registration_instructions,
+            summary,
+        })
+    }
+
     /// Verifies multiple signed documents in a batch operation.
     ///
     /// This method processes each document sequentially, verifying signatures
@@ -2066,6 +2373,85 @@ impl SimpleAgent {
             pending: unsigned,
         })
     }
+
+    /// Register the loaded agent with HAI.ai.
+    ///
+    /// POSTs the exported agent JSON to the HAI registration endpoint.
+    /// If `preview` is true, returns a preview result without actually registering.
+    ///
+    /// # Arguments
+    /// * `api_key` - HAI API key (or reads `HAI_API_KEY` env var if `None`)
+    /// * `hai_url` - Base URL for HAI (e.g. `"https://hai.ai"`)
+    /// * `preview` - If true, validate without registering
+    #[cfg(not(target_arch = "wasm32"))]
+    pub fn register_with_hai(
+        &self,
+        api_key: Option<&str>,
+        hai_url: &str,
+        preview: bool,
+    ) -> Result> {
+        if preview {
+            return Ok(RegistrationInfo {
+                hai_registered: false,
+                hai_error: "preview mode".to_string(),
+                dns_record: String::new(),
+                dns_route53: String::new(),
+            });
+        }
+
+        let key = match api_key {
+            Some(k) => k.to_string(),
+            None => std::env::var("HAI_API_KEY").map_err(|_| {
+                "No API key provided and HAI_API_KEY environment variable not set"
+            })?,
+        };
+
+        let agent_json = self.export_agent()?;
+
+        let url = format!(
+            "{}/api/v1/agents/register",
+            hai_url.trim_end_matches('/')
+        );
+
+        let client = reqwest::blocking::Client::builder()
+            .timeout(std::time::Duration::from_secs(30))
+            .build()?;
+
+        let response = client
+            .post(&url)
+            .header("Authorization", format!("Bearer {}", key))
+            .header("Content-Type", "application/json")
+            .json(&serde_json::json!({ "agent_json": agent_json }))
+            .send()?;
+
+        if !response.status().is_success() {
+            let status = response.status();
+            let body = response.text().unwrap_or_default();
+            return Ok(RegistrationInfo {
+                hai_registered: false,
+                hai_error: format!("HTTP {}: {}", status, body),
+                dns_record: String::new(),
+                dns_route53: String::new(),
+            });
+        }
+
+        let body: Value = response.json()?;
+
+        Ok(RegistrationInfo {
+            hai_registered: true,
+            hai_error: String::new(),
+            dns_record: body
+                .get("dns_record")
+                .and_then(|v| v.as_str())
+                .unwrap_or_default()
+                .to_string(),
+            dns_route53: body
+                .get("dns_route53")
+                .and_then(|v| v.as_str())
+                .unwrap_or_default()
+                .to_string(),
+        })
+    }
 }
 
 // =============================================================================
@@ -2349,6 +2735,16 @@ fn extract_attachments(doc: &Value) -> Vec {
 mod tests {
     use super::*;
 
+    #[test]
+    fn test_diagnostics_returns_version() {
+        let info = diagnostics();
+        let version = info["jacs_version"].as_str().unwrap();
+        assert!(!version.is_empty(), "jacs_version should not be empty");
+        assert_eq!(info["agent_loaded"], false);
+        assert!(info["os"].as_str().is_some());
+        assert!(info["arch"].as_str().is_some());
+    }
+
     #[test]
     fn test_agent_info_serialization() {
         let info = AgentInfo {
@@ -2672,4 +3068,53 @@ mod tests {
         let result = agent.verify("");
         assert!(result.is_err());
     }
+
+    #[test]
+    fn test_register_with_hai_preview() {
+        let agent = SimpleAgent {
+            agent: Mutex::new(crate::get_empty_agent()),
+            config_path: None,
+        };
+
+        let result = agent
+            .register_with_hai(None, "https://hai.ai", true)
+            .expect("preview should succeed");
+        assert!(!result.hai_registered);
+        assert_eq!(result.hai_error, "preview mode");
+        assert!(result.dns_record.is_empty());
+        assert!(result.dns_route53.is_empty());
+    }
+
+    #[test]
+    fn test_setup_instructions_serialization() {
+        let instr = SetupInstructions {
+            dns_record_bind: "example.com. 3600 IN TXT \"test\"".to_string(),
+            dns_record_value: "test".to_string(),
+            dns_owner: "_v1.agent.jacs.example.com.".to_string(),
+            provider_commands: std::collections::HashMap::new(),
+            dnssec_instructions: std::collections::HashMap::new(),
+            tld_requirement: "You must own a domain".to_string(),
+            well_known_json: "{}".to_string(),
+            hai_registration_url: "https://api.hai.ai/v1/agents".to_string(),
+            hai_registration_payload: "{}".to_string(),
+            hai_registration_instructions: "POST to the URL".to_string(),
+            summary: "Setup summary".to_string(),
+        };
+
+        let json = serde_json::to_string(&instr).unwrap();
+        assert!(json.contains("dns_record_bind"));
+        assert!(json.contains("_v1.agent.jacs.example.com."));
+        assert!(json.contains("hai_registration_url"));
+    }
+
+    #[test]
+    fn test_get_setup_instructions_requires_loaded_agent() {
+        let agent = SimpleAgent {
+            agent: Mutex::new(crate::get_empty_agent()),
+            config_path: None,
+        };
+
+        let result = agent.get_setup_instructions("example.com", 3600);
+        assert!(result.is_err(), "should fail without a loaded agent");
+    }
 }
diff --git a/jacs/tests/fixtures/dns/jacs.config.json b/jacs/tests/fixtures/dns/jacs.config.json
index 6222d6679..2744d41b8 100644
--- a/jacs/tests/fixtures/dns/jacs.config.json
+++ b/jacs/tests/fixtures/dns/jacs.config.json
@@ -8,6 +8,5 @@
   "jacs_data_directory": "./jacs",
   "jacs_default_storage": "fs",
   "jacs_key_directory": "./jacs_keys",
-  "jacs_private_key_password": "hello",
   "jacs_use_security": "false"
 }
\ No newline at end of file
diff --git a/jacs/tests/fixtures/keys/lifecycle-test.private.pem.enc b/jacs/tests/fixtures/keys/lifecycle-test.private.pem.enc
index 2cdfe6454..4cda4e302 100644
Binary files a/jacs/tests/fixtures/keys/lifecycle-test.private.pem.enc and b/jacs/tests/fixtures/keys/lifecycle-test.private.pem.enc differ
diff --git a/jacs/tests/fixtures/raw/pq.jacs.config.json b/jacs/tests/fixtures/raw/pq.jacs.config.json
index 3eaa571ae..777572f75 100644
--- a/jacs/tests/fixtures/raw/pq.jacs.config.json
+++ b/jacs/tests/fixtures/raw/pq.jacs.config.json
@@ -10,7 +10,6 @@
     "jacs_agent_schema_version": "v1",
     "jacs_header_schema_version": "v1",
     "jacs_signature_schema_version": "v1",
-    "jacs_private_key_password": "",
     "jacs_agent_id_and_version": "",
     "jacs_default_storage": "fs"
   }
\ No newline at end of file
diff --git a/jacs/tests/fixtures/raw/ring.jacs.config.json b/jacs/tests/fixtures/raw/ring.jacs.config.json
index 9a6dc8914..8b1d429e5 100644
--- a/jacs/tests/fixtures/raw/ring.jacs.config.json
+++ b/jacs/tests/fixtures/raw/ring.jacs.config.json
@@ -10,7 +10,6 @@
     "jacs_agent_schema_version": "v1",
     "jacs_header_schema_version": "v1",
     "jacs_signature_schema_version": "v1",
-    "jacs_private_key_password": "",
     "jacs_agent_id_and_version": "",
     "jacs_default_storage": "fs"
   }
\ No newline at end of file
diff --git a/jacsnpm/examples/jacs.client.config.json b/jacsnpm/examples/jacs.client.config.json
index e8260f536..710ab1cac 100644
--- a/jacsnpm/examples/jacs.client.config.json
+++ b/jacsnpm/examples/jacs.client.config.json
@@ -7,6 +7,5 @@
   "jacs_data_directory": "./jacs",
   "jacs_default_storage": "fs",
   "jacs_key_directory": "./jacs_keys",
-  "jacs_private_key_password": "hello",
   "jacs_use_security": "false"
 }
\ No newline at end of file
diff --git a/jacsnpm/examples/jacs.server.config.json b/jacsnpm/examples/jacs.server.config.json
index 2df76c86d..75fce0d16 100644
--- a/jacsnpm/examples/jacs.server.config.json
+++ b/jacsnpm/examples/jacs.server.config.json
@@ -7,6 +7,5 @@
   "jacs_data_directory": "./jacs",
   "jacs_default_storage": "fs",
   "jacs_key_directory": "./jacs_keys",
-  "jacs_private_key_password": "hello",
   "jacs_use_security": "false"
 }
\ No newline at end of file
diff --git a/jacsnpm/simple.d.ts b/jacsnpm/simple.d.ts
index c2b68f46b..cd4ec139e 100644
--- a/jacsnpm/simple.d.ts
+++ b/jacsnpm/simple.d.ts
@@ -375,6 +375,23 @@ export declare function getAgentInfo(): AgentInfo | null;
  * @returns true if an agent is loaded, false otherwise
  */
 export declare function isLoaded(): boolean;
+/**
+ * Clear global agent state. Useful for test isolation.
+ *
+ * After calling reset(), you must call load() or create() again before
+ * using any signing or verification functions.
+ */
+export declare function reset(): void;
+/**
+ * Return JACS diagnostic info (version, config, agent status).
+ *
+ * Returns an object with keys like jacs_version, os, arch, agent_loaded,
+ * data_directory, key_directory, etc. If an agent is loaded, includes
+ * agent_id and agent_version.
+ *
+ * @returns Diagnostic information object
+ */
+export declare function debugInfo(): Record;
 /**
  * Returns the DNS TXT record line for the loaded agent (for DNS-based discovery).
  * Format: _v1.agent.jacs.{domain}. TTL IN TXT "v=hai.ai; jacs_agent_id=...; alg=SHA-256; enc=base64; jac_public_key_hash=..."
@@ -390,6 +407,14 @@ export declare function getWellKnownJson(): {
     algorithm: string;
     agentId: string;
 };
+/**
+ * Get comprehensive setup instructions for DNS, DNSSEC, and HAI registration.
+ *
+ * @param domain - The domain to publish the DNS TXT record under
+ * @param ttl - TTL in seconds for the DNS record (default: 3600)
+ * @returns Structured setup instructions
+ */
+export declare function getSetupInstructions(domain: string, ttl?: number): Record;
 /**
  * Register the loaded agent with HAI.ai.
  * Requires a loaded agent (uses exportAgent() for the payload).
diff --git a/jacsnpm/simple.ts b/jacsnpm/simple.ts
index 5649b3c34..b7d4362a2 100644
--- a/jacsnpm/simple.ts
+++ b/jacsnpm/simple.ts
@@ -792,6 +792,43 @@ export function isLoaded(): boolean {
   return globalAgent !== null;
 }
 
+/**
+ * Return JACS diagnostic info (version, config, agent status).
+ *
+ * Returns an object with keys like jacs_version, os, arch, agent_loaded,
+ * data_directory, key_directory, etc. If an agent is loaded, includes
+ * agent_id and agent_version.
+ *
+ * @returns Diagnostic information object
+ *
+ * @example
+ * ```typescript
+ * const info = jacs.debugInfo();
+ * console.log(`Version: ${info.jacs_version}, OS: ${info.os}`);
+ * ```
+ */
+export function debugInfo(): Record {
+  if (!globalAgent) {
+    return { jacs_version: 'unknown', agent_loaded: false };
+  }
+  try {
+    return JSON.parse(globalAgent.diagnostics());
+  } catch {
+    return { jacs_version: 'unknown', agent_loaded: false };
+  }
+}
+
+/**
+ * Clear global agent state. Useful for test isolation.
+ *
+ * After calling reset(), you must call load() or create() again before
+ * using any signing or verification functions.
+ */
+export function reset(): void {
+  globalAgent = null;
+  agentInfo = null;
+}
+
 /**
  * Returns the DNS TXT record line for the loaded agent (for DNS-based discovery).
  * Format: _v1.agent.jacs.{domain}. TTL IN TXT "v=hai.ai; jacs_agent_id=...; alg=SHA-256; enc=base64; jac_public_key_hash=..."
@@ -845,6 +882,36 @@ export function getWellKnownJson(): {
   };
 }
 
+/**
+ * Get comprehensive setup instructions for publishing DNS records, enabling DNSSEC,
+ * and registering with HAI.ai.
+ *
+ * Returns structured data with provider-specific commands for AWS Route53, Cloudflare,
+ * Azure DNS, Google Cloud DNS, and plain BIND format. Also includes DNSSEC guidance,
+ * well-known JSON payload, HAI registration details, and a human-readable summary.
+ *
+ * @param domain - The domain to publish the DNS TXT record under
+ * @param ttl - TTL in seconds for the DNS record (default: 3600)
+ * @returns Structured setup instructions
+ *
+ * @example
+ * ```typescript
+ * const instructions = jacs.getSetupInstructions('example.com');
+ * console.log(instructions.summary);
+ * console.log(instructions.providerCommands.route53);
+ * ```
+ */
+export function getSetupInstructions(
+  domain: string,
+  ttl: number = 3600,
+): Record {
+  if (!globalAgent) {
+    throw new Error('No agent loaded. Call load() first.');
+  }
+  const json = globalAgent.getSetupInstructions(domain, ttl);
+  return JSON.parse(json) as Record;
+}
+
 /**
  * Register the loaded agent with HAI.ai.
  * Requires a loaded agent (uses exportAgent() for the payload).
diff --git a/jacsnpm/src/lib.rs b/jacsnpm/src/lib.rs
index 19f02e43d..a9145af80 100644
--- a/jacsnpm/src/lib.rs
+++ b/jacsnpm/src/lib.rs
@@ -216,6 +216,39 @@ impl JacsAgent {
             .to_napi()
     }
 
+    /// Get setup instructions for publishing DNS records, DNSSEC, and HAI registration.
+    /// Returns a JSON string with dns_record_bind, provider_commands, dnssec_instructions, etc.
+    #[napi]
+    pub fn get_setup_instructions(&self, domain: String, ttl: Option) -> Result {
+        self.inner
+            .get_setup_instructions(&domain, ttl.unwrap_or(3600))
+            .to_napi()
+    }
+
+    /// Register this agent with HAI.ai.
+    /// Returns a JSON string with hai_registered, hai_error, dns_record, dns_route53.
+    #[napi]
+    pub fn register_with_hai(
+        &self,
+        api_key: Option,
+        hai_url: Option,
+        preview: Option,
+    ) -> Result {
+        self.inner
+            .register_with_hai(
+                api_key.as_deref(),
+                hai_url.as_deref().unwrap_or("https://hai.ai"),
+                preview.unwrap_or(false),
+            )
+            .to_napi()
+    }
+
+    /// Returns diagnostic information as a JSON string.
+    #[napi]
+    pub fn diagnostics(&self) -> String {
+        self.inner.diagnostics()
+    }
+
     /// Verify a document looked up by ID from storage.
     ///
     /// The document_id should be in "uuid:version" format.
diff --git a/jacspy/examples/fastmcp/jacs_server.py b/jacspy/examples/fastmcp/jacs_server.py
index b24f5a181..00ffaea9f 100644
--- a/jacspy/examples/fastmcp/jacs_server.py
+++ b/jacspy/examples/fastmcp/jacs_server.py
@@ -14,7 +14,7 @@
 # Import simplified JACS API
 import jacs
 from jacs import simple
-from jacs.mcp_simple import sign_mcp_message, verify_mcp_message
+from jacs.mcp import sign_mcp_message, verify_mcp_message
 
 # Configuration
 CONFIG_PATH = os.environ.get("JACS_CONFIG_PATH", "./jacs.config.json")
diff --git a/jacspy/examples/http/jacs.server.config.json b/jacspy/examples/http/jacs.server.config.json
index 748883791..e20be303c 100644
--- a/jacspy/examples/http/jacs.server.config.json
+++ b/jacspy/examples/http/jacs.server.config.json
@@ -7,6 +7,5 @@
   "jacs_data_directory": "./jacs",
   "jacs_default_storage": "fs",
   "jacs_key_directory": "./jacs_keys",
-  "jacs_private_key_password": "hello",
   "jacs_use_security": "false"
 }
\ No newline at end of file
diff --git a/jacspy/examples/langchain/README.md b/jacspy/examples/langchain/README.md
index 13a64c3d8..34d2e9d50 100644
--- a/jacspy/examples/langchain/README.md
+++ b/jacspy/examples/langchain/README.md
@@ -344,7 +344,7 @@ Ensure the JACS MCP server is running. You can start it with:
 ```bash
 python -m jacs.mcp_server
 # or
-fastmcp run jacs.mcp_simple:mcp
+fastmcp run jacs.mcp:mcp
 ```
 
 ### Signature verification failed
diff --git a/jacspy/examples/mcp/jacs.client.config.json b/jacspy/examples/mcp/jacs.client.config.json
index 85967bf66..60df1bee6 100644
--- a/jacspy/examples/mcp/jacs.client.config.json
+++ b/jacspy/examples/mcp/jacs.client.config.json
@@ -7,6 +7,5 @@
   "jacs_data_directory": "./jacs",
   "jacs_default_storage": "fs",
   "jacs_key_directory": "./jacs_keys",
-  "jacs_private_key_password": "hello",
   "jacs_use_security": "false"
 }
\ No newline at end of file
diff --git a/jacspy/examples/mcp/jacs.server.config.json b/jacspy/examples/mcp/jacs.server.config.json
index 748883791..e20be303c 100644
--- a/jacspy/examples/mcp/jacs.server.config.json
+++ b/jacspy/examples/mcp/jacs.server.config.json
@@ -7,6 +7,5 @@
   "jacs_data_directory": "./jacs",
   "jacs_default_storage": "fs",
   "jacs_key_directory": "./jacs_keys",
-  "jacs_private_key_password": "hello",
   "jacs_use_security": "false"
 }
\ No newline at end of file
diff --git a/jacspy/python/jacs/__init__.py b/jacspy/python/jacs/__init__.py
index 0952be23a..3d0536a63 100644
--- a/jacspy/python/jacs/__init__.py
+++ b/jacspy/python/jacs/__init__.py
@@ -83,9 +83,9 @@
 
 # Make MCP helpers available (optional, may fail if fastmcp not installed)
 try:
-    from . import mcp_simple
+    from . import mcp
 except ImportError:
-    mcp_simple = None  # fastmcp not installed
+    mcp = None  # fastmcp not installed
 
 # Make HAI.ai integration available (optional, may fail if httpx not installed)
 try:
diff --git a/jacspy/python/jacs/async_simple.py b/jacspy/python/jacs/async_simple.py
index f8f6d2a42..89640d166 100644
--- a/jacspy/python/jacs/async_simple.py
+++ b/jacspy/python/jacs/async_simple.py
@@ -574,6 +574,37 @@ async def fetch_remote_key(agent_id: str, version: str = "latest"):
     return await asyncio.to_thread(simple.fetch_remote_key, agent_id, version)
 
 
+async def get_setup_instructions(domain: str, ttl: int = 3600) -> dict:
+    """Get setup instructions for DNS, DNSSEC, and HAI registration.
+
+    Args:
+        domain: The domain to publish the DNS TXT record under.
+        ttl: TTL in seconds for the DNS record (default: 3600).
+
+    Returns:
+        Dict with dns_record_bind, provider_commands, dnssec_instructions, etc.
+    """
+    return await asyncio.to_thread(simple.get_setup_instructions, domain, ttl)
+
+
+async def register_with_hai(
+    api_key: Optional[str] = None,
+    hai_url: str = "https://hai.ai",
+    preview: bool = False,
+) -> dict:
+    """Register this agent with HAI.ai.
+
+    Args:
+        api_key: HAI API key (reads HAI_API_KEY env var if None).
+        hai_url: Base URL for HAI (default: "https://hai.ai").
+        preview: If True, validate without actually registering.
+
+    Returns:
+        Dict with hai_registered, hai_error, dns_record, dns_route53.
+    """
+    return await asyncio.to_thread(simple.register_with_hai, api_key, hai_url, preview)
+
+
 def get_agent_info() -> Optional[AgentInfo]:
     """Get information about the currently loaded agent.
 
@@ -596,6 +627,14 @@ def is_loaded() -> bool:
     return simple.is_loaded()
 
 
+def reset():
+    """Clear global agent state. Useful for test isolation.
+
+    Note: This is synchronous as it delegates to simple.reset().
+    """
+    simple.reset()
+
+
 __all__ = [
     # Core operations
     "create",
@@ -626,8 +665,13 @@ def is_loaded() -> bool:
     "untrust_agent",
     "is_trusted",
     "get_trusted_agent",
+    # Test utilities
+    "reset",
     # Remote key fetch
     "fetch_remote_key",
+    # Setup and registration
+    "get_setup_instructions",
+    "register_with_hai",
     # Types (re-exported for convenience)
     "AgentInfo",
     "SignedDocument",
diff --git a/jacspy/python/jacs/mcp.py b/jacspy/python/jacs/mcp.py
index 46e5ee86e..3ad133439 100644
--- a/jacspy/python/jacs/mcp.py
+++ b/jacspy/python/jacs/mcp.py
@@ -1,52 +1,108 @@
-"""JACS MCP (Model Context Protocol) Transport Interceptors.
+"""JACS MCP (Model Context Protocol) Integration.
 
-Provides client and server wrappers that add JACS signing and verification
-to MCP transports. Messages are signed on send and verified on receive.
+Provides both class-based and simplified wrappers for adding JACS
+cryptographic signing and verification to MCP transports and servers.
 
-Requires: fastmcp, mcp, starlette
+Quick start (simple API):
+    from jacs.mcp import create_jacs_mcp_server
+    mcp = create_jacs_mcp_server("My Server", "./jacs.config.json")
+    mcp.run()
 
-Example (Client):
+Class-based client:
     from jacs.mcp import JACSMCPClient
     client = JACSMCPClient("http://localhost:8000/sse", "jacs.config.json")
     async with client.connect() as session:
         result = await session.call_tool("my_tool", {"arg": "value"})
 
-Example (Server):
+Class-based server:
     from jacs.mcp import JACSMCPServer
     from fastmcp import FastMCP
     mcp = FastMCP("My Server")
     mcp = JACSMCPServer(mcp, "jacs.config.json")
+
+Requires (optional): fastmcp, mcp, starlette
 """
 
 import contextlib
 import json
 import logging
+import os
+from typing import Any, Callable, Dict, Optional
+from functools import wraps
+
+from . import simple
+
+
+def _resolve_strict(strict: bool) -> bool:
+    """Return True if strict mode is active (parameter or env var)."""
+    if strict:
+        return True
+    return os.environ.get("JACS_STRICT_MODE", "").lower() in ("1", "true", "yes")
+
+try:
+    import jacs
+    from jacs import JacsAgent
+except ImportError:
+    JacsAgent = None  # type: ignore[assignment, misc]
+
+try:
+    from fastmcp import Client
+    from fastmcp.client.transports import SSETransport
+except ImportError:
+    Client = None  # type: ignore[assignment, misc]
+    SSETransport = None  # type: ignore[assignment, misc]
+
+try:
+    from mcp.client.sse import sse_client
+    from mcp import ClientSession
+except ImportError:
+    sse_client = None  # type: ignore[assignment]
+    ClientSession = None  # type: ignore[assignment, misc]
+
+try:
+    from starlette.responses import Response, JSONResponse
+except ImportError:
+    Response = None  # type: ignore[assignment, misc]
+    JSONResponse = None  # type: ignore[assignment, misc]
 
-import jacs
-from jacs import JacsAgent
-
-from fastmcp import Client
-from fastmcp.client.transports import SSETransport
-from mcp.client.sse import sse_client
-from mcp import ClientSession
-from starlette.responses import Response
 
 LOGGER = logging.getLogger("jacs.mcp")
 
 
-def JACSMCPClient(url, config_path="./jacs.config.json", **kwargs):
+# ---------------------------------------------------------------------------
+# Class-based API (uses JacsAgent instances)
+# ---------------------------------------------------------------------------
+
+
+def JACSMCPClient(url, config_path="./jacs.config.json", strict=False, **kwargs):
     """Creates a FastMCP client with JACS signing/verification interceptors.
 
     Args:
         url: The SSE endpoint URL
         config_path: Path to jacs.config.json
+        strict: If True, config failures raise instead of falling back to
+            unsigned transport. Also enabled by JACS_STRICT_MODE env var.
         **kwargs: Additional arguments passed to FastMCP Client
     """
+    if Client is None or SSETransport is None:
+        raise ImportError(
+            "fastmcp is required for JACSMCPClient. Install with: pip install fastmcp"
+        )
+    if JacsAgent is None:
+        raise ImportError("jacs native module is required for JACSMCPClient")
+
+    strict = _resolve_strict(strict)
     agent = JacsAgent()
     agent_ready = True
     try:
         agent.load(config_path)
     except Exception as e:
+        if strict:
+            raise simple.ConfigError(
+                f"JACS strict mode: refusing to run unsigned. "
+                f"Fix config at '{config_path}' or set strict=False to allow "
+                f"unsigned transport. Error: {e}"
+            ) from e
         LOGGER.warning(
             "Failed to load JACS config '%s' for MCP client; transport will run unsigned: %s",
             config_path,
@@ -90,21 +146,33 @@ async def intercepted_receive(**receive_kwargs):
     return Client(transport, **kwargs)
 
 
-def JACSMCPServer(mcp_server, config_path="./jacs.config.json"):
+def JACSMCPServer(mcp_server, config_path="./jacs.config.json", strict=False):
     """Creates a FastMCP server with JACS signing/verification interceptors.
 
     Args:
         mcp_server: A FastMCP server instance
         config_path: Path to jacs.config.json
+        strict: If True, config failures raise instead of falling back to
+            unsigned passthrough. Also enabled by JACS_STRICT_MODE env var.
     """
     if not hasattr(mcp_server, "sse_app"):
         raise AttributeError("mcp_server is missing required attribute 'sse_app'")
 
+    if JacsAgent is None:
+        raise ImportError("jacs native module is required for JACSMCPServer")
+
+    strict = _resolve_strict(strict)
     agent = JacsAgent()
     agent_ready = True
     try:
         agent.load(config_path)
     except Exception as e:
+        if strict:
+            raise simple.ConfigError(
+                f"JACS strict mode: refusing to run unsigned. "
+                f"Fix config at '{config_path}' or set strict=False to allow "
+                f"unsigned passthrough. Error: {e}"
+            ) from e
         LOGGER.warning(
             "Failed to load JACS config '%s' for MCP server; middleware will pass through unsigned: %s",
             config_path,
@@ -155,3 +223,351 @@ async def jacs_authentication_middleware(request, call_next):
 
     mcp_server.sse_app = patched_sse_app
     return mcp_server
+
+
+# ---------------------------------------------------------------------------
+# Simple API (uses module-level simple.* globals)
+# ---------------------------------------------------------------------------
+
+
+def sign_mcp_message(message: Dict[str, Any]) -> str:
+    """Sign an MCP message and return signed JSON string.
+
+    Args:
+        message: The MCP message dict (JSON-RPC format)
+
+    Returns:
+        Signed JACS document as JSON string
+
+    Example:
+        signed = sign_mcp_message({"jsonrpc": "2.0", "method": "hello"})
+    """
+    if not simple.is_loaded():
+        raise simple.AgentNotLoadedError(
+            "No agent loaded. Call jacs.load() first."
+        )
+
+    signed = simple.sign_message(json.dumps(message))
+    return signed.raw_json
+
+
+def verify_mcp_message(signed_json: str) -> Dict[str, Any]:
+    """Verify a signed MCP message and return the payload.
+
+    Args:
+        signed_json: Signed JACS document as JSON string
+
+    Returns:
+        The original MCP message dict
+
+    Raises:
+        VerificationError: If signature verification fails
+
+    Example:
+        message = verify_mcp_message(signed_json)
+        print(message["method"])
+    """
+    if not simple.is_loaded():
+        raise simple.AgentNotLoadedError(
+            "No agent loaded. Call jacs.load() first."
+        )
+
+    result = simple.verify(signed_json)
+
+    if not result.valid:
+        raise simple.VerificationError(
+            f"MCP message verification failed: {result.error}"
+        )
+
+    doc = json.loads(signed_json)
+    payload = doc.get("jacsDocument", {})
+
+    if isinstance(payload.get("content"), str):
+        try:
+            return json.loads(payload["content"])
+        except json.JSONDecodeError:
+            return payload
+
+    return payload
+
+
+def jacs_tool(func: Callable) -> Callable:
+    """Decorator to add JACS signing to an MCP tool.
+
+    Use this decorator on MCP tool functions to automatically
+    sign the response.
+
+    Example:
+        @mcp.tool()
+        @jacs_tool
+        def my_tool(arg: str) -> str:
+            return f"Result: {arg}"
+    """
+    @wraps(func)
+    async def wrapper(*args, **kwargs):
+        result = func(*args, **kwargs)
+
+        if hasattr(result, '__await__'):
+            result = await result
+
+        if simple.is_loaded():
+            signed = simple.sign_message(json.dumps(result))
+            return json.loads(signed.raw_json)
+
+        return result
+
+    return wrapper
+
+
+def jacs_middleware():
+    """Create Starlette HTTP middleware for JACS authentication.
+
+    Returns middleware that can be added to FastMCP servers via
+    ``app.middleware("http")`` to automatically sign all JSON responses
+    and verify incoming requests that carry a JACS signature.
+
+    Uses the simplified ``simple.*`` module API (module-level globals).
+
+    Example:
+        from starlette.applications import Starlette
+        app = Starlette()
+
+        @app.middleware("http")
+        async def mw(request, call_next):
+            return await jacs_middleware()(request, call_next)
+    """
+    async def middleware(request, call_next):
+        # Verify incoming request if it has a JACS signature
+        body = await request.body()
+        if body:
+            try:
+                data = json.loads(body)
+                if "jacsSignature" in data:
+                    result = simple.verify(body.decode())
+                    if not result.valid:
+                        if JSONResponse is not None:
+                            return JSONResponse(
+                                {"error": f"JACS verification failed: {result.error}"},
+                                status_code=401,
+                            )
+            except json.JSONDecodeError:
+                pass
+
+        response = await call_next(request)
+
+        # Sign outgoing JSON responses
+        if simple.is_loaded() and Response is not None:
+            content_type = response.headers.get("content-type", "")
+            if "application/json" in content_type:
+                resp_body = b""
+                async for chunk in response.body_iterator:
+                    resp_body += chunk
+
+                try:
+                    data = json.loads(resp_body.decode())
+                    signed = simple.sign_message(json.dumps(data))
+                    return Response(
+                        content=signed.raw_json.encode(),
+                        status_code=response.status_code,
+                        headers=dict(response.headers),
+                        media_type=response.media_type,
+                    )
+                except Exception as e:
+                    LOGGER.warning("JACS response signing failed: %s", e)
+
+        return response
+
+    return middleware
+
+
+class JacsSSETransport:
+    """SSE transport wrapper with JACS signing/verification.
+
+    Wraps fastmcp's ``SSETransport`` and intercepts ``send``/``receive``
+    to transparently sign outgoing messages and verify incoming ones,
+    using the simplified ``simple.*`` module API.
+
+    Example:
+        import jacs.simple as jacs
+        from jacs.mcp import JacsSSETransport
+        from fastmcp import Client
+
+        jacs.load("./jacs.config.json")
+        transport = JacsSSETransport("http://localhost:8000/sse")
+        client = Client(transport)
+        async with client:
+            result = await client.call_tool("hello", {"name": "World"})
+    """
+
+    def __init__(self, url: str, headers: Optional[Dict[str, str]] = None):
+        if SSETransport is None:
+            raise ImportError(
+                "fastmcp is required for JacsSSETransport. "
+                "Install with: pip install fastmcp"
+            )
+        self._inner = SSETransport(url, headers=headers)
+
+    # Proxy attributes so fastmcp.Client can use this as a transport
+    @property
+    def url(self):
+        return self._inner.url
+
+    @property
+    def headers(self):
+        return self._inner.headers
+
+    @contextlib.asynccontextmanager
+    async def connect_session(self, **session_kwargs):
+        """Connect with JACS signing/verification interceptors."""
+        if sse_client is None or ClientSession is None:
+            raise ImportError(
+                "mcp is required for JacsSSETransport. "
+                "Install with: pip install mcp"
+            )
+
+        agent_ready = simple.is_loaded()
+
+        async with sse_client(self._inner.url, headers=self._inner.headers) as transport_streams:
+            original_read_stream, original_write_stream = transport_streams
+
+            original_send = original_write_stream.send
+            async def intercepted_send(message, **send_kwargs):
+                if agent_ready and isinstance(message.root, dict):
+                    signed = sign_mcp_message(message.root)
+                    message.root = json.loads(signed)
+                return await original_send(message, **send_kwargs)
+
+            original_write_stream.send = intercepted_send
+
+            original_receive = original_read_stream.receive
+            async def intercepted_receive(**receive_kwargs):
+                message = await original_receive(**receive_kwargs)
+                if agent_ready and isinstance(message.root, dict):
+                    try:
+                        payload = verify_mcp_message(json.dumps(message.root))
+                        message.root = payload
+                    except Exception as e:
+                        LOGGER.warning("JACS verification on receive failed: %s", e)
+                return message
+
+            original_read_stream.receive = intercepted_receive
+
+            async with ClientSession(
+                original_read_stream, original_write_stream, **session_kwargs
+            ) as session:
+                await session.initialize()
+                yield session
+
+
+def create_jacs_mcp_server(name: str, config_path: Optional[str] = None):
+    """Create a FastMCP server with JACS authentication built-in.
+
+    This is the simplest way to create an authenticated MCP server.
+    It loads the JACS agent from ``config_path``, creates a FastMCP
+    server, and wires up ``jacs_middleware()`` so every JSON response
+    is signed and every signed request is verified automatically.
+
+    Args:
+        name: Server name
+        config_path: Path to JACS config (default: ./jacs.config.json)
+
+    Returns:
+        Configured FastMCP server instance
+
+    Example:
+        mcp = create_jacs_mcp_server("My Server")
+
+        @mcp.tool()
+        def hello(name: str) -> str:
+            return f"Hello, {name}!"
+
+        mcp.run()
+    """
+    try:
+        from fastmcp import FastMCP
+    except ImportError:
+        raise ImportError(
+            "fastmcp is required for MCP server support. "
+            "Install with: pip install fastmcp"
+        )
+
+    # Load JACS agent via the simple module-level API
+    simple.load(config_path)
+
+    # Create FastMCP server
+    mcp_server = FastMCP(name)
+
+    # Wire JACS middleware into the SSE app
+    original_sse_app = mcp_server.sse_app
+    middleware_fn = jacs_middleware()
+
+    def patched_sse_app():
+        app = original_sse_app()
+
+        @app.middleware("http")
+        async def _jacs_mw(request, call_next):
+            return await middleware_fn(request, call_next)
+
+        return app
+
+    mcp_server.sse_app = patched_sse_app
+    return mcp_server
+
+
+async def jacs_call(
+    server_url: str,
+    method: str,
+    **params: Any,
+) -> Any:
+    """Make an authenticated MCP call to a server.
+
+    This is a convenience function for making one-off MCP calls
+    with JACS authentication.
+
+    Args:
+        server_url: URL of the MCP server
+        method: MCP method to call
+        **params: Parameters for the method
+
+    Returns:
+        The method result
+
+    Example:
+        result = await jacs_call(
+            "http://localhost:8000",
+            "hello",
+            name="World"
+        )
+    """
+    if not simple.is_loaded():
+        raise simple.AgentNotLoadedError(
+            "No agent loaded. Call jacs.load() first."
+        )
+
+    if Client is None or SSETransport is None:
+        raise ImportError(
+            "fastmcp is required for MCP client support. "
+            "Install with: pip install fastmcp"
+        )
+
+    transport = SSETransport(server_url)
+    client = Client(transport)
+
+    async with client:
+        result = await client.call_tool(method, params)
+        return result
+
+
+__all__ = [
+    # Class-based API
+    "JACSMCPClient",
+    "JACSMCPServer",
+    # Simple API
+    "sign_mcp_message",
+    "verify_mcp_message",
+    "jacs_tool",
+    "jacs_middleware",
+    "JacsSSETransport",
+    "create_jacs_mcp_server",
+    "jacs_call",
+]
diff --git a/jacspy/python/jacs/mcp_simple.py b/jacspy/python/jacs/mcp_simple.py
deleted file mode 100644
index ea4211581..000000000
--- a/jacspy/python/jacs/mcp_simple.py
+++ /dev/null
@@ -1,330 +0,0 @@
-"""
-JACS MCP Integration Helpers
-
-Simplified MCP server and client wrappers that automatically
-handle JACS signing and verification for all messages.
-
-Example Server:
-    from fastmcp import FastMCP
-    import jacs.simple as jacs
-    from jacs.mcp_simple import jacs_server
-
-    mcp = FastMCP("My Server")
-    jacs.load("./jacs.config.json")
-
-    @mcp.tool()
-    def hello(name: str) -> str:
-        return f"Hello, {name}!"
-
-    # Wrap with JACS authentication
-    app = jacs_server(mcp)
-    app.run()
-
-Example Client:
-    import jacs.simple as jacs
-    from jacs.mcp_simple import jacs_call
-
-    jacs.load("./jacs.config.json")
-
-    # Make authenticated MCP call
-    result = await jacs_call("http://localhost:8000", "hello", name="World")
-"""
-
-import json
-from typing import Any, Dict, Optional, Callable
-from functools import wraps
-
-# Import simplified API
-from . import simple
-
-
-def sign_mcp_message(message: Dict[str, Any]) -> str:
-    """Sign an MCP message and return signed JSON string.
-
-    Args:
-        message: The MCP message dict (JSON-RPC format)
-
-    Returns:
-        Signed JACS document as JSON string
-
-    Example:
-        signed = sign_mcp_message({"jsonrpc": "2.0", "method": "hello"})
-    """
-    if not simple.is_loaded():
-        raise simple.AgentNotLoadedError(
-            "No agent loaded. Call jacs.load() first."
-        )
-
-    # Sign the message as a document
-    signed = simple.sign_message(json.dumps(message))
-    return signed.raw_json
-
-
-def verify_mcp_message(signed_json: str) -> Dict[str, Any]:
-    """Verify a signed MCP message and return the payload.
-
-    Args:
-        signed_json: Signed JACS document as JSON string
-
-    Returns:
-        The original MCP message dict
-
-    Raises:
-        VerificationError: If signature verification fails
-
-    Example:
-        message = verify_mcp_message(signed_json)
-        print(message["method"])
-    """
-    if not simple.is_loaded():
-        raise simple.AgentNotLoadedError(
-            "No agent loaded. Call jacs.load() first."
-        )
-
-    # Verify the document
-    result = simple.verify(signed_json)
-
-    if not result.valid:
-        raise simple.VerificationError(
-            f"MCP message verification failed: {result.error}"
-        )
-
-    # Extract the original message from the signed document
-    doc = json.loads(signed_json)
-    payload = doc.get("jacsDocument", {})
-
-    # If payload is a string (the original JSON), parse it
-    if isinstance(payload.get("content"), str):
-        try:
-            return json.loads(payload["content"])
-        except json.JSONDecodeError:
-            return payload
-
-    return payload
-
-
-def jacs_tool(func: Callable) -> Callable:
-    """Decorator to add JACS signing to an MCP tool.
-
-    Use this decorator on MCP tool functions to automatically
-    sign the response.
-
-    Example:
-        @mcp.tool()
-        @jacs_tool
-        def my_tool(arg: str) -> str:
-            return f"Result: {arg}"
-    """
-    @wraps(func)
-    async def wrapper(*args, **kwargs):
-        # Call the original function
-        result = func(*args, **kwargs)
-
-        # Handle async functions
-        if hasattr(result, '__await__'):
-            result = await result
-
-        # Sign the result
-        if simple.is_loaded():
-            signed = simple.sign_message(json.dumps(result))
-            return json.loads(signed.raw_json)
-
-        return result
-
-    return wrapper
-
-
-def jacs_middleware():
-    """Create ASGI middleware for JACS authentication.
-
-    Returns middleware that can be added to FastMCP servers
-    to automatically sign all responses and verify all requests.
-
-    Example:
-        from fastmcp import FastMCP
-
-        mcp = FastMCP("My Server")
-        mcp.add_middleware(jacs_middleware())
-    """
-    async def middleware(request, call_next):
-        """ASGI middleware for JACS authentication."""
-        # Verify incoming request if it has JACS signature
-        body = await request.body()
-        if body:
-            try:
-                data = json.loads(body)
-                if "jacsSignature" in data:
-                    # Verify and extract original message
-                    result = simple.verify(body.decode())
-                    if not result.valid:
-                        from starlette.responses import JSONResponse
-                        return JSONResponse(
-                            {"error": f"JACS verification failed: {result.error}"},
-                            status_code=401,
-                        )
-            except json.JSONDecodeError:
-                pass
-
-        # Process request
-        response = await call_next(request)
-
-        # Sign outgoing response if we have an agent loaded
-        if simple.is_loaded():
-            # This would need to intercept response body
-            # Implementation depends on ASGI framework
-            pass
-
-        return response
-
-    return middleware
-
-
-class JacsSSETransport:
-    """SSE transport wrapper with JACS signing/verification.
-
-    Use this instead of the standard SSE transport for authenticated
-    MCP communication.
-
-    Example:
-        from jacs.mcp_simple import JacsSSETransport
-        from mcp import Client
-
-        transport = JacsSSETransport("http://localhost:8000")
-        client = Client(transport)
-    """
-
-    def __init__(self, url: str, headers: Optional[Dict[str, str]] = None):
-        """Initialize the transport.
-
-        Args:
-            url: Server URL for SSE connection
-            headers: Optional HTTP headers
-        """
-        self.url = url
-        self.headers = headers or {}
-
-    async def send(self, message: Dict[str, Any]) -> None:
-        """Send a signed message.
-
-        Args:
-            message: MCP message to send
-        """
-        signed = sign_mcp_message(message)
-        # Actual sending would depend on underlying transport
-        # This is a placeholder for the interface
-        raise NotImplementedError("Use with actual transport implementation")
-
-    async def receive(self) -> Dict[str, Any]:
-        """Receive and verify a message.
-
-        Returns:
-            Verified MCP message
-
-        Raises:
-            VerificationError: If verification fails
-        """
-        # Actual receiving would depend on underlying transport
-        # This is a placeholder for the interface
-        raise NotImplementedError("Use with actual transport implementation")
-
-
-def create_jacs_mcp_server(name: str, config_path: Optional[str] = None):
-    """Create a FastMCP server with JACS authentication built-in.
-
-    This is the simplest way to create an authenticated MCP server.
-
-    Args:
-        name: Server name
-        config_path: Path to JACS config (default: ./jacs.config.json)
-
-    Returns:
-        Configured FastMCP server instance
-
-    Example:
-        mcp = create_jacs_mcp_server("My Server")
-
-        @mcp.tool()
-        def hello(name: str) -> str:
-            return f"Hello, {name}!"
-
-        mcp.run()
-    """
-    try:
-        from fastmcp import FastMCP
-    except ImportError:
-        raise ImportError(
-            "fastmcp is required for MCP server support. "
-            "Install with: pip install fastmcp"
-        )
-
-    # Load JACS agent
-    simple.load(config_path)
-
-    # Create FastMCP server
-    mcp = FastMCP(name)
-
-    # Add JACS middleware (placeholder - actual implementation
-    # would depend on FastMCP's middleware API)
-
-    return mcp
-
-
-async def jacs_call(
-    server_url: str,
-    method: str,
-    **params: Any,
-) -> Any:
-    """Make an authenticated MCP call to a server.
-
-    This is a convenience function for making one-off MCP calls
-    with JACS authentication.
-
-    Args:
-        server_url: URL of the MCP server
-        method: MCP method to call
-        **params: Parameters for the method
-
-    Returns:
-        The method result
-
-    Example:
-        result = await jacs_call(
-            "http://localhost:8000",
-            "hello",
-            name="World"
-        )
-    """
-    if not simple.is_loaded():
-        raise simple.AgentNotLoadedError(
-            "No agent loaded. Call jacs.load() first."
-        )
-
-    try:
-        from fastmcp import Client
-        from fastmcp.client.transports import SSETransport
-    except ImportError:
-        raise ImportError(
-            "fastmcp is required for MCP client support. "
-            "Install with: pip install fastmcp"
-        )
-
-    # Create client and transport
-    transport = SSETransport(server_url)
-    client = Client(transport)
-
-    # Make the call
-    async with client:
-        # Call the method
-        result = await client.call_tool(method, params)
-        return result
-
-
-__all__ = [
-    "sign_mcp_message",
-    "verify_mcp_message",
-    "jacs_tool",
-    "jacs_middleware",
-    "JacsSSETransport",
-    "create_jacs_mcp_server",
-    "jacs_call",
-]
diff --git a/jacspy/python/jacs/simple.py b/jacspy/python/jacs/simple.py
index d32515ee1..621b22d82 100644
--- a/jacspy/python/jacs/simple.py
+++ b/jacspy/python/jacs/simple.py
@@ -116,6 +116,17 @@
 _global_agent: Optional[JacsAgent] = None
 _agent_info: Optional[AgentInfo] = None
 
+def reset():
+    """Clear global agent state. Useful for test isolation.
+
+    After calling reset(), you must call load() or create() again before
+    using any signing or verification functions.
+    """
+    global _global_agent, _agent_info
+    _global_agent = None
+    _agent_info = None
+
+
 # Verify link constants (HAI / public verification URLs)
 MAX_VERIFY_URL_LEN = 2048
 MAX_VERIFY_DOCUMENT_BYTES = 1515
@@ -1153,6 +1164,24 @@ def is_loaded() -> bool:
     return _global_agent is not None
 
 
+def debug_info() -> dict:
+    """Return JACS diagnostic info (version, config, agent status).
+
+    Returns a dict with keys like jacs_version, os, arch, agent_loaded,
+    data_directory, key_directory, etc. If an agent is loaded, includes
+    agent_id and agent_version.
+
+    Returns:
+        dict with diagnostic information
+    """
+    if _global_agent is not None:
+        try:
+            return json.loads(_global_agent.diagnostics())
+        except Exception:
+            pass
+    return {"jacs_version": "unknown", "agent_loaded": False}
+
+
 def trust_agent(agent_json: str) -> str:
     """Add an agent to the local trust store.
 
@@ -1372,6 +1401,64 @@ def fetch_remote_key(agent_id: str, version: str = "latest") -> PublicKeyInfo:
         raise
 
 
+def get_setup_instructions(domain: str, ttl: int = 3600) -> dict:
+    """Get comprehensive setup instructions for DNS, DNSSEC, and HAI registration.
+
+    Returns structured data with provider-specific commands for AWS Route53,
+    Cloudflare, Azure DNS, Google Cloud DNS, and plain BIND format. Also includes
+    DNSSEC guidance, well-known JSON payload, HAI registration details, and a
+    human-readable summary.
+
+    Args:
+        domain: The domain to publish the DNS TXT record under.
+        ttl: TTL in seconds for the DNS record (default: 3600).
+
+    Returns:
+        Dict with keys: dns_record_bind, dns_record_value, dns_owner,
+        provider_commands, dnssec_instructions, tld_requirement, well_known_json,
+        hai_registration_url, hai_registration_payload,
+        hai_registration_instructions, summary.
+
+    Example:
+        instructions = jacs.get_setup_instructions("example.com")
+        print(instructions["summary"])
+        print(instructions["provider_commands"]["route53"])
+    """
+    agent = _require_agent()
+    try:
+        json_str = agent.get_setup_instructions(domain, ttl)
+        return json.loads(json_str)
+    except Exception as e:
+        raise JacsError(f"Failed to get setup instructions: {e}") from e
+
+
+def register_with_hai(
+    api_key: Optional[str] = None,
+    hai_url: str = "https://hai.ai",
+    preview: bool = False,
+) -> dict:
+    """Register this agent with HAI.ai.
+
+    Args:
+        api_key: HAI API key (reads HAI_API_KEY env var if None).
+        hai_url: Base URL for HAI (default: "https://hai.ai").
+        preview: If True, validate without actually registering.
+
+    Returns:
+        Dict with hai_registered, hai_error, dns_record, dns_route53.
+
+    Example:
+        result = jacs.register_with_hai(preview=True)
+        print(f"Registered: {result['hai_registered']}")
+    """
+    agent = _require_agent()
+    try:
+        json_str = agent.register_with_hai(api_key, hai_url, preview)
+        return json.loads(json_str)
+    except Exception as e:
+        raise JacsError(f"HAI registration failed: {e}") from e
+
+
 __all__ = [
     # Core operations
     "create",
@@ -1404,8 +1491,15 @@ def fetch_remote_key(agent_id: str, version: str = "latest") -> PublicKeyInfo:
     "untrust_agent",
     "is_trusted",
     "get_trusted_agent",
+    # Diagnostics
+    "debug_info",
+    # Test utilities
+    "reset",
     # Remote key fetch
     "fetch_remote_key",
+    # Setup and registration
+    "get_setup_instructions",
+    "register_with_hai",
     # Types (re-exported for convenience)
     "AgentInfo",
     "Attachment",
diff --git a/jacspy/src/lib.rs b/jacspy/src/lib.rs
index c7a9603e4..750ad17d0 100644
--- a/jacspy/src/lib.rs
+++ b/jacspy/src/lib.rs
@@ -276,6 +276,47 @@ impl JacsAgent {
         self.inner.get_agent_json().to_py()
     }
 
+    /// Get setup instructions for publishing DNS records, DNSSEC, and HAI registration.
+    ///
+    /// Args:
+    ///     domain: The domain to publish DNS TXT records under
+    ///     ttl: TTL in seconds for the DNS record (e.g. 3600)
+    ///
+    /// Returns:
+    ///     JSON string with dns_record_bind, provider_commands, dnssec_instructions, etc.
+    #[pyo3(signature = (domain, ttl=3600))]
+    fn get_setup_instructions(&self, domain: &str, ttl: Option) -> PyResult {
+        self.inner
+            .get_setup_instructions(domain, ttl.unwrap_or(3600))
+            .to_py()
+    }
+
+    /// Register this agent with HAI.ai.
+    ///
+    /// Args:
+    ///     api_key: HAI API key (or reads HAI_API_KEY env var if None)
+    ///     hai_url: Base URL for HAI (default: "https://hai.ai")
+    ///     preview: If True, validate without registering (default: False)
+    ///
+    /// Returns:
+    ///     JSON string with hai_registered, hai_error, dns_record, dns_route53
+    #[pyo3(signature = (api_key=None, hai_url="https://hai.ai", preview=false))]
+    fn register_with_hai(
+        &self,
+        api_key: Option<&str>,
+        hai_url: &str,
+        preview: bool,
+    ) -> PyResult {
+        self.inner
+            .register_with_hai(api_key, hai_url, preview)
+            .to_py()
+    }
+
+    /// Returns diagnostic information as a JSON string.
+    fn diagnostics(&self) -> PyResult {
+        Ok(self.inner.diagnostics())
+    }
+
     /// Hash a string using the JACS hash function.
     #[staticmethod]
     fn hash_string(data: &str) -> PyResult {